@kitbag/router 0.24.0 → 0.24.2
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/kitbag-router.d.ts +0 -1
- package/dist/kitbag-router.js +6163 -6223
- package/dist/kitbag-router.umd.cjs +3 -3
- package/dist/{components → src/components}/routerLink.d.ts +5 -4
- package/dist/{components → src/components}/routerView.d.ts +3 -3
- package/dist/{compositions → src/compositions}/useComponentsStore.d.ts +2 -2
- package/dist/{compositions → src/compositions}/useLink.d.ts +6 -6
- package/dist/{compositions → src/compositions}/usePrefetching.d.ts +3 -3
- package/dist/{compositions → src/compositions}/usePropStore.d.ts +2 -2
- package/dist/{compositions → src/compositions}/useQueryValue.d.ts +3 -3
- package/dist/{compositions → src/compositions}/useRejection.d.ts +2 -2
- package/dist/{compositions → src/compositions}/useRoute.d.ts +2 -2
- package/dist/{compositions → src/compositions}/useRouter.d.ts +1 -1
- package/dist/{compositions → src/compositions}/useRouterDepth.d.ts +1 -1
- package/dist/{compositions → src/compositions}/useRouterHooks.d.ts +2 -2
- package/dist/{compositions → src/compositions}/useVisibilityObserver.d.ts +1 -1
- package/dist/{devtools → src/devtools}/createRouterDevtools.d.ts +2 -2
- package/dist/{devtools → src/devtools}/filters.d.ts +1 -1
- package/dist/{errors → src/errors}/contextAbortError.d.ts +1 -1
- package/dist/{errors → src/errors}/contextPushError.d.ts +1 -1
- package/dist/{errors → src/errors}/contextRejectionError.d.ts +1 -1
- package/dist/{errors → src/errors}/invalidRouteParamValueError.d.ts +1 -1
- package/dist/{guards → src/guards}/routes.d.ts +2 -2
- package/dist/{main.d.ts → src/main.d.ts} +2 -2
- package/dist/{models → src/models}/hooks.d.ts +2 -2
- package/dist/{services → src/services}/arrayOf.d.ts +2 -2
- package/dist/{services → src/services}/combineHash.d.ts +2 -2
- package/dist/{services → src/services}/combinePath.d.ts +2 -2
- package/dist/{services → src/services}/combineQuery.d.ts +2 -2
- package/dist/{services → src/services}/combineState.d.ts +1 -1
- package/dist/{services → src/services}/combineUrl.d.ts +2 -2
- package/dist/{services → src/services}/component.d.ts +2 -2
- package/dist/{services → src/services}/createComponentHooks.d.ts +4 -4
- package/dist/{services → src/services}/createComponentsStore.d.ts +2 -2
- package/dist/{services → src/services}/createCurrentRejection.d.ts +4 -1
- package/dist/{services → src/services}/createCurrentRoute.d.ts +4 -4
- package/dist/{services → src/services}/createExternalRoute.d.ts +4 -4
- package/dist/{services → src/services}/createParam.d.ts +3 -3
- package/dist/{services → src/services}/createPropStore.d.ts +3 -3
- package/dist/src/services/createRejection.d.ts +8 -0
- package/dist/{services → src/services}/createRejectionHooks.d.ts +3 -3
- package/dist/src/services/createResolvedRoute.d.ts +4 -0
- package/dist/{services → src/services}/createResolvedRouteQuery.d.ts +1 -1
- package/dist/{services → src/services}/createRoute.d.ts +5 -5
- package/dist/{services → src/services}/createRouteHooks.d.ts +5 -5
- package/dist/{services → src/services}/createRouteRedirects.d.ts +2 -2
- package/dist/{services → src/services}/createRouter.d.ts +3 -3
- package/dist/{services → src/services}/createRouterAssets.d.ts +10 -10
- package/dist/{services → src/services}/createRouterCallbackContext.d.ts +7 -7
- package/dist/{services → src/services}/createRouterHistory.d.ts +1 -1
- package/dist/{services → src/services}/createRouterHooks.d.ts +2 -2
- package/dist/{services → src/services}/createRouterKeyStore.d.ts +1 -1
- package/dist/{services → src/services}/createRouterPlugin.d.ts +3 -3
- package/dist/{services → src/services}/createRouterRoute.d.ts +4 -4
- package/dist/{services → src/services}/createUrl.d.ts +1 -1
- package/dist/src/services/getGlobalHooksForRouter.d.ts +3 -0
- package/dist/{services → src/services}/getGlobalRouteHooks.d.ts +2 -2
- package/dist/{services → src/services}/getMatchesForUrl.d.ts +3 -3
- package/dist/{services → src/services}/getParamsForString.d.ts +2 -2
- package/dist/src/services/getRejectionHooks.d.ts +3 -0
- package/dist/{services → src/services}/getRouteHooks.d.ts +2 -2
- package/dist/{services → src/services}/getRoutesForRouter.d.ts +6 -6
- package/dist/{services → src/services}/hooks.d.ts +2 -2
- package/dist/{services → src/services}/insertBaseRoute.d.ts +1 -1
- package/dist/{services → src/services}/literal.d.ts +1 -1
- package/dist/{services → src/services}/params.d.ts +3 -3
- package/dist/{services → src/services}/queryParamFilter.d.ts +1 -1
- package/dist/{services → src/services}/routeRegex.d.ts +1 -1
- package/dist/{services → src/services}/state.d.ts +1 -1
- package/dist/{services → src/services}/tupleOf.d.ts +2 -2
- package/dist/src/services/unionOf.d.ts +3 -0
- package/dist/{services → src/services}/urlParser.d.ts +2 -2
- package/dist/{services → src/services}/valibot.d.ts +1 -1
- package/dist/{services → src/services}/withDefault.d.ts +2 -2
- package/dist/{services → src/services}/withParams.d.ts +4 -4
- package/dist/{services → src/services}/zod.d.ts +2 -2
- package/dist/{types → src/types}/createRouteOptions.d.ts +22 -18
- package/dist/{types → src/types}/hooks.d.ts +12 -12
- package/dist/{types → src/types}/paramTypes.d.ts +2 -2
- package/dist/{types → src/types}/params.d.ts +1 -1
- package/dist/{types → src/types}/props.d.ts +2 -2
- package/dist/{types → src/types}/register.d.ts +1 -1
- package/dist/{types → src/types}/rejection.d.ts +6 -10
- package/dist/{types → src/types}/resolved.d.ts +4 -4
- package/dist/{types → src/types}/route.d.ts +10 -10
- package/dist/src/types/routeTitle.d.ts +22 -0
- package/dist/{types → src/types}/routeUpdate.d.ts +2 -2
- package/dist/{types → src/types}/routeWithParams.d.ts +3 -3
- package/dist/{types → src/types}/router.d.ts +13 -13
- package/dist/{types → src/types}/routerLink.d.ts +9 -5
- package/dist/{types → src/types}/routerPlugin.d.ts +2 -2
- package/dist/{types → src/types}/routerPush.d.ts +8 -8
- package/dist/{types → src/types}/routerReject.d.ts +1 -1
- package/dist/{types → src/types}/routerReplace.d.ts +8 -8
- package/dist/{types → src/types}/routerResolve.d.ts +7 -7
- package/dist/{types → src/types}/routerRoute.d.ts +3 -3
- package/dist/{types → src/types}/routesMap.d.ts +2 -2
- package/dist/{types → src/types}/state.d.ts +6 -6
- package/dist/{types → src/types}/url.d.ts +6 -6
- package/dist/{types → src/types}/useLink.d.ts +5 -5
- package/dist/{utilities → src/utilities}/checkDuplicateNames.d.ts +1 -1
- package/dist/{utilities → src/utilities}/isNamedRoute.d.ts +1 -1
- package/dist/{utilities → src/utilities}/prefetch.d.ts +1 -1
- package/dist/src/utilities/setDocumentTitle.d.ts +2 -0
- package/dist/{utilities → src/utilities}/testHelpers.d.ts +100 -100
- package/dist/{utilities → src/utilities}/urlSearchParams.d.ts +1 -1
- package/package.json +12 -12
- package/dist/services/createRejection.d.ts +0 -7
- package/dist/services/createResolvedRoute.d.ts +0 -4
- package/dist/services/getGlobalHooksForRouter.d.ts +0 -3
- package/dist/services/getRejectionHooks.d.ts +0 -3
- package/dist/services/unionOf.d.ts +0 -3
- package/dist/types/titles.d.ts +0 -22
- package/dist/utilities/setDocumentTitle.d.ts +0 -2
- /package/dist/{components → src/components}/echo.d.ts +0 -0
- /package/dist/{components → src/components}/helloWorld.d.ts +0 -0
- /package/dist/{components → src/components}/rejection.d.ts +0 -0
- /package/dist/{components → src/components}/routerLink.browser.spec.d.ts +0 -0
- /package/dist/{components → src/components}/routerView.browser.spec.d.ts +0 -0
- /package/dist/{components → src/components}/routerView.spec.d.ts +0 -0
- /package/dist/{compositions → src/compositions}/useEventListener.d.ts +0 -0
- /package/dist/{compositions → src/compositions}/useQueryValue.browser.spec.d.ts +0 -0
- /package/dist/{compositions → src/compositions}/useQueryValue.spec-d.d.ts +0 -0
- /package/dist/{compositions → src/compositions}/useRoute.browser.spec.d.ts +0 -0
- /package/dist/{compositions → src/compositions}/useRoute.spec-d.d.ts +0 -0
- /package/dist/{devtools → src/devtools}/getDevtoolsLabel.d.ts +0 -0
- /package/dist/{devtools → src/devtools}/types.d.ts +0 -0
- /package/dist/{errors → src/errors}/contextError.d.ts +0 -0
- /package/dist/{errors → src/errors}/duplicateNamesError.d.ts +0 -0
- /package/dist/{errors → src/errors}/duplicateParamsError.d.ts +0 -0
- /package/dist/{errors → src/errors}/initialRouteMissingError.d.ts +0 -0
- /package/dist/{errors → src/errors}/invalidRouteRedirectError.d.ts +0 -0
- /package/dist/{errors → src/errors}/metaPropertyConflict.d.ts +0 -0
- /package/dist/{errors → src/errors}/multipleRouteRedirectsError.d.ts +0 -0
- /package/dist/{errors → src/errors}/routeNotFoundError.d.ts +0 -0
- /package/dist/{errors → src/errors}/routerNotInstalledError.d.ts +0 -0
- /package/dist/{errors → src/errors}/useRouteInvalidError.d.ts +0 -0
- /package/dist/{guards → src/guards}/routes.spec-d.d.ts +0 -0
- /package/dist/{keys.d.ts → src/keys.d.ts} +0 -0
- /package/dist/{services → src/services}/arrayOf.spec.d.ts +0 -0
- /package/dist/{services → src/services}/combineHash.spec.d.ts +0 -0
- /package/dist/{services → src/services}/combineMeta.d.ts +0 -0
- /package/dist/{services → src/services}/combineMeta.spec.d.ts +0 -0
- /package/dist/{services → src/services}/combinePath.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/combinePath.spec.d.ts +0 -0
- /package/dist/{services → src/services}/combineQuery.spec.d.ts +0 -0
- /package/dist/{services → src/services}/combineState.spec.d.ts +0 -0
- /package/dist/{services → src/services}/combineUrl.spec.d.ts +0 -0
- /package/dist/{services → src/services}/component.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createExternalRoute.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createIsExternal.d.ts +0 -0
- /package/dist/{services → src/services}/createIsExternal.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createResolvedRoute.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRoute.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/createRoute.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRouteId.d.ts +0 -0
- /package/dist/{services → src/services}/createRouteRedirects.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRouter.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRouter.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/createRouter.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRouterHistory.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRouterPlugin.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createRouterPlugin.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/createRouterRoute.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createUniqueIdSequence.d.ts +0 -0
- /package/dist/{services → src/services}/createUrl.spec.d.ts +0 -0
- /package/dist/{services → src/services}/createVisibilityObserver.d.ts +0 -0
- /package/dist/{services → src/services}/createVueAppStore.d.ts +0 -0
- /package/dist/{services → src/services}/getInitialUrl.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/getInitialUrl.d.ts +0 -0
- /package/dist/{services → src/services}/getInitialUrl.spec.d.ts +0 -0
- /package/dist/{services → src/services}/getMatchesForUrl.spec.d.ts +0 -0
- /package/dist/{services → src/services}/getRouteHooks.spec.d.ts +0 -0
- /package/dist/{services → src/services}/getRoutesForRouter.spec.d.ts +0 -0
- /package/dist/{services → src/services}/history.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/history.d.ts +0 -0
- /package/dist/{services → src/services}/hooks.browser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/hooks.spec.d.ts +0 -0
- /package/dist/{services → src/services}/insertBaseRoute.spec.d.ts +0 -0
- /package/dist/{services → src/services}/params.spec.d.ts +0 -0
- /package/dist/{services → src/services}/paramsFinder.d.ts +0 -0
- /package/dist/{services → src/services}/paramsFinder.spec.d.ts +0 -0
- /package/dist/{services → src/services}/queryParamFilter.spec.d.ts +0 -0
- /package/dist/{services → src/services}/routeRegex.spec.d.ts +0 -0
- /package/dist/{services → src/services}/state.spec.d.ts +0 -0
- /package/dist/{services → src/services}/tupleOf.spec.d.ts +0 -0
- /package/dist/{services → src/services}/unionOf.spec.d.ts +0 -0
- /package/dist/{services → src/services}/urlParser.spec.d.ts +0 -0
- /package/dist/{services → src/services}/valibot.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/valibot.spec.d.ts +0 -0
- /package/dist/{services → src/services}/withParams.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/withParams.spec.d.ts +0 -0
- /package/dist/{services → src/services}/zod.spec-d.d.ts +0 -0
- /package/dist/{services → src/services}/zod.spec.d.ts +0 -0
- /package/dist/{tests → src/tests}/hooks.spec.d.ts +0 -0
- /package/dist/{tests → src/tests}/routeProps.browser.spec.d.ts +0 -0
- /package/dist/{tests → src/tests}/routeProps.spec.d.ts +0 -0
- /package/dist/{types → src/types}/callbackContext.d.ts +0 -0
- /package/dist/{types → src/types}/meta.d.ts +0 -0
- /package/dist/{types → src/types}/name.d.ts +0 -0
- /package/dist/{types → src/types}/prefetch.d.ts +0 -0
- /package/dist/{types → src/types}/querySource.d.ts +0 -0
- /package/dist/{types → src/types}/redirects.d.ts +0 -0
- /package/dist/{types → src/types}/redirects.spec-d.d.ts +0 -0
- /package/dist/{types → src/types}/register.spec.d.ts +0 -0
- /package/dist/{types → src/types}/resolved.spec-d.d.ts +0 -0
- /package/dist/{types → src/types}/route.spec-d.d.ts +0 -0
- /package/dist/{types → src/types}/routeContext.d.ts +0 -0
- /package/dist/{types/routeWithParams.spec-d.d.ts → src/types/routeTitle.browser.spec.d.ts} +0 -0
- /package/dist/{types/routesMap.spec-ts.d.ts → src/types/routeWithParams.spec-d.d.ts} +0 -0
- /package/dist/{types → src/types}/routerAbort.d.ts +0 -0
- /package/dist/{types/titles.browser.spec.d.ts → src/types/routesMap.spec-ts.d.ts} +0 -0
- /package/dist/{types → src/types}/urlString.d.ts +0 -0
- /package/dist/{types → src/types}/utilities.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/array.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/checkDuplicateNames.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/checkDuplicateParams.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/checkDuplicateParams.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/components.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/components.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/guards.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/guards.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/index.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/isBrowser.browser.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/isBrowser.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/isBrowser.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/makeOptional.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/prefetch.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/promises.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/props.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/trailingSlashes.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/trailingSlashes.spec.d.ts +0 -0
- /package/dist/{utilities → src/utilities}/urlSearchParams.spec.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(N,S){typeof exports=="object"&&typeof module<"u"?S(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],S):(N=typeof globalThis<"u"?globalThis:N||self,S(N["@kitbag/router"]={},N.Vue))})(this,(function(N,S){"use strict";class Vn extends Error{constructor(t){super(`Child property on meta for ${t} conflicts with the parent meta.`)}}function jo(e,t){return Ho(e,t),{...e,...t}}function Ho(e,t){const n=Object.keys(e).find(r=>r in t&&typeof t[r]!=typeof e[r]);if(n)throw new Vn(n)}class xn extends Error{constructor(t){super(`Invalid Param "${t}": Router does not support multiple params by the same name. All param names must be unique.`)}}function Zo(e,t){return e.filter(n=>t===n).length}function Be(...e){const t=e.flatMap(n=>Array.isArray(n)?n:Object.keys(n));for(const n of t)if(Zo(t,n)>1)throw new xn(n)}function Go(e,t){return Be(e,t),{...e,...t}}const Mt=Symbol("IS_ROUTE_SYMBOL");function te(e){return typeof e=="object"&&e!==null&&Mt in e}const $o=["NotFound"],Mn=Symbol("IS_REJECTION_SYMBOL");function Bt(e){return typeof e=="object"&&e!==null&&Mn in e}function fe(e){return e&&(te(e)||Bt(e))?e.hooks:[]}function Bn(e,t){return[...fe(e),...fe(t)]}function jt(e){return"parent"in e&&!!e.parent}function Ht(e){return"component"in e&&!!e.component}function Zt(e){return"props"in e&&typeof e.props=="function"}function Gt(e){return"components"in e&&!!e.components}function $t(e){return"props"in e&&typeof e.props=="object"}function qt(e,t){if(!te(e)||!te(t))throw new Error("combineRoutes called with invalid route arguments");return{...t,meta:jo(e.meta,t.meta),state:Go(e.state,t.state),hooks:Bn(e,t),matches:[...e.matches,t.matched],context:[...e.context,...t.context],depth:e.depth+1}}function K(e){return typeof e!="string"?!1:/^(https?:\/\/|\/).*/g.test(e)}function jn(e){return K(e)?e:`/${e}`}class pe extends Error{constructor(){super("Router not installed")}}class Hn extends Error{constructor(t,n){super(`useRoute called with incorrect route. Given ${t}, expected ${n}`)}}function ot(){let e=0;return()=>(++e).toString()}const qo=ot()();function Fo(e){return e===qo}const Ft=ot();function Zn(e){return e===void 0?"":e}class ie{redirects=new Set;onBeforeRouteEnter=new Set;onBeforeRouteUpdate=new Set;onBeforeRouteLeave=new Set;onAfterRouteEnter=new Set;onAfterRouteUpdate=new Set;onAfterRouteLeave=new Set;onError=new Set;onRejection=new Set}class zo extends Error{constructor(t){super(`Invalid Route Redirect "${t}": Router does not support multiple redirects to the same route. All redirects must be unique.`)}}function st(){const e=new ie;return{redirect:(g,p)=>{if(e.redirects.size>0)throw new zo(g.name);const u=(c,{replace:d})=>{d(g.name,p?.(c.params))};return e.redirects.add(u),()=>e.redirects.delete(u)},onBeforeRouteEnter:g=>(e.onBeforeRouteEnter.add(g),()=>e.onBeforeRouteEnter.delete(g)),onBeforeRouteUpdate:g=>(e.onBeforeRouteUpdate.add(g),()=>e.onBeforeRouteUpdate.delete(g)),onBeforeRouteLeave:g=>(e.onBeforeRouteLeave.add(g),()=>e.onBeforeRouteLeave.delete(g)),onAfterRouteEnter:g=>(e.onAfterRouteEnter.add(g),()=>e.onAfterRouteEnter.delete(g)),onAfterRouteUpdate:g=>(e.onAfterRouteUpdate.add(g),()=>e.onAfterRouteUpdate.delete(g)),onAfterRouteLeave:g=>(e.onAfterRouteLeave.add(g),()=>e.onAfterRouteLeave.delete(g)),onError:g=>(e.onError.add(g),()=>e.onError.delete(g)),onRejection:g=>(e.onRejection.add(g),()=>e.onRejection.delete(g)),store:e}}class zt extends Error{context;constructor(t={}){super(t.message??"Uncaught InvalidRouteParamValueError"),this.context={isOptional:!1,isGetter:!1,isSetter:!1,...t}}}const je="[",it="]";function Wo(e){return e!==String&&e!==Boolean&&e!==Number&&e!==Date}function Ko(e){return typeof e=="function"&&Wo(e)}function at(e){return typeof e=="object"&&"get"in e&&typeof e.get=="function"&&"set"in e&&typeof e.set=="function"}function Wt(e){return typeof e=="string"||typeof e=="number"||typeof e=="boolean"}function Gn(e,t){return at(e)?{...e,defaultValue:t??e.defaultValue}:{get:n=>he(n,{param:e}),set:n=>ae(n,{param:e}),defaultValue:t}}function ct(e){return at(e)&&e.defaultValue!==void 0}function Jo(e,t){return Gn(e,t)}function Yo(e){return e!==void 0}function Te(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function Qo(e){return typeof e=="string"||typeof e=="number"||typeof e=="symbol"}function ne(e){return typeof e=="string"&&e.length>0}const $n=Symbol("IS_URL_SYMBOL");function Oe(e){return typeof e=="object"&&e!==null&&$n in e}let P=null;async function Xo(){const{ZodType:e,ZodString:t,ZodIPv4:n,ZodIPv6:r,ZodCIDRv4:o,ZodCIDRv6:s,ZodURL:i,ZodEmail:a,ZodUUID:f,ZodBase64:E,ZodCUID:g,ZodCUID2:p,ZodULID:u,ZodJWT:c,ZodBigInt:d,ZodNaN:m,ZodBoolean:R,ZodDate:h,ZodISODateTime:T,ZodISODate:y,ZodISOTime:l,ZodNumber:_,ZodLiteral:O,ZodObject:A,ZodEnum:k,ZodArray:j,ZodTuple:Z,ZodUnion:Y,ZodDiscriminatedUnion:Ve,ZodRecord:ue,ZodMap:ee,ZodSet:xe,ZodIntersection:z,ZodPromise:b}=await import("zod");return{ZodType:e,ZodString:t,ZodIPv4:n,ZodIPv6:r,ZodCIDRv4:o,ZodCIDRv6:s,ZodURL:i,ZodEmail:a,ZodUUID:f,ZodBase64:E,ZodCUID:g,ZodCUID2:p,ZodULID:u,ZodJWT:c,ZodBigInt:d,ZodNaN:m,ZodBoolean:R,ZodDate:h,ZodISODateTime:T,ZodISODate:y,ZodISOTime:l,ZodNumber:_,ZodLiteral:O,ZodObject:A,ZodEnum:k,ZodArray:j,ZodTuple:Z,ZodUnion:Y,ZodDiscriminatedUnion:Ve,ZodRecord:ue,ZodMap:ee,ZodSet:xe,ZodIntersection:z,ZodPromise:b}}function es(e){return Object.values(e).some(t=>Oe(t)?Object.values(t.schema.host.params).some(({param:n})=>Kt(n))||Object.values(t.schema.path.params).some(({param:n})=>Kt(n))||Object.values(t.schema.query.params).some(({param:n})=>Kt(n)):!1)}function Kt(e){return Te(e)&&"parse"in e&&typeof e.parse=="function"&&"~standard"in e&&Te(e["~standard"])&&"vendor"in e["~standard"]&&e["~standard"].vendor==="zod"}async function ts(){try{P=await Xo()}catch{throw new Error("Failed to initialize Zod")}}function qn(e){return P?e instanceof P.ZodType:!1}function Fn(e){return{get:(t,{invalid:n})=>{try{return Jt(t,e)}catch{throw n()}},set:(t,{invalid:n})=>{try{return Yt(t,e)}catch{throw n()}}}}const ns=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/;function we(e,t){if(typeof t=="string"&&ns.test(t)){const n=new Date(t);return isNaN(n.getTime())?t:n}return t}function He(e){for(const t of e)try{return t()}catch{continue}throw new Error("All functions failed")}function ut(e,t){return P?.ZodString&&e instanceof P.ZodString?1:P?.ZodString&&t instanceof P.ZodString?-1:0}function Jt(e,t){if(!P)throw new Error("Zod is not initialized");if(t instanceof P.ZodString)return t.parse(e);if(t instanceof P.ZodBoolean)return t.parse(!!e);if(t instanceof P.ZodDate)return t.parse(new Date(e));if(t instanceof P.ZodNumber)return t.parse(Number(e));if(t instanceof P.ZodBigInt)return t.parse(BigInt(e));if(t instanceof P.ZodNaN)return t.parse(Number(e));if(t instanceof P.ZodLiteral)return He([()=>t.parse(Number(e)),()=>t.parse(!!e),()=>t.parse(e)]);if(t instanceof P.ZodObject)return t.parse(JSON.parse(e,we));if(t instanceof P.ZodEnum)return t.parse(e);if(t instanceof P.ZodArray||t instanceof P.ZodTuple)return t.parse(JSON.parse(e,we));if(t instanceof P.ZodUnion){const n=Array.from(t.def.options).sort(ut).map(r=>()=>Jt(e,r));return He(n)}if(t instanceof P.ZodDiscriminatedUnion){const n=Array.from(t.options).sort(ut).map(r=>()=>Jt(e,r));return He(n)}if(t instanceof P.ZodRecord)return t.parse(JSON.parse(e,we));if(t instanceof P.ZodMap)return t.parse(new Map(JSON.parse(e,we)));if(t instanceof P.ZodSet)return t.parse(new Set(JSON.parse(e,we)));if(t instanceof P.ZodIntersection)throw new Error("Intersection schemas are not supported");if(t instanceof P.ZodPromise)throw new Error("Promise schemas are not supported");return t.parse(e)}function Yt(e,t){if(!P)throw new Error("Zod is not initialized");if(t instanceof P.ZodString||t instanceof P.ZodISODateTime||t instanceof P.ZodISODate||t instanceof P.ZodISOTime||t instanceof P.ZodIPv4||t instanceof P.ZodIPv6||t instanceof P.ZodCIDRv4||t instanceof P.ZodCIDRv6||t instanceof P.ZodURL||t instanceof P.ZodEmail||t instanceof P.ZodUUID||t instanceof P.ZodBase64||t instanceof P.ZodCUID||t instanceof P.ZodCUID2||t instanceof P.ZodULID||t instanceof P.ZodJWT)return t.parse(e);if(t instanceof P.ZodBoolean)return t.parse(e).toString();if(t instanceof P.ZodDate)return t.parse(e).toISOString();if(t instanceof P.ZodNumber)return t.parse(Number(e)).toString();if(t instanceof P.ZodBigInt)return t.parse(BigInt(String(e))).toString();if(t instanceof P.ZodNaN)return t.parse(e).toString();if(t instanceof P.ZodLiteral){const n=t.parse(e);return n!=null?n.toString():String(n)}if(t instanceof P.ZodObject)return JSON.stringify(t.parse(e));if(t instanceof P.ZodEnum){const n=t.parse(e);return typeof n=="string"?n:String(n)}if(t instanceof P.ZodArray||t instanceof P.ZodTuple)return JSON.stringify(t.parse(e));if(t instanceof P.ZodUnion){const n=Array.from(t.def.options).sort(ut).map(r=>()=>Yt(e,r));return He(n)}if(t instanceof P.ZodDiscriminatedUnion){const n=Array.from(t.options).sort(ut).map(r=>()=>Yt(e,r));return He(n)}if(t instanceof P.ZodRecord)return JSON.stringify(t.parse(e));if(t instanceof P.ZodMap){const n=t.parse(e);return JSON.stringify(Array.from(n.entries()))}if(t instanceof P.ZodSet){const n=t.parse(e);return JSON.stringify(Array.from(n.values()))}if(t instanceof P.ZodIntersection)throw new Error("Intersection schemas are not supported");if(t instanceof P.ZodPromise)throw new Error("Promise schemas are not supported");return JSON.stringify(t.parse(e))}function Qt(e){return typeof e=="object"&&e!==null&&"then"in e}function C(e,t){const n=e["~standard"].validate(t);if(Qt(n))throw new Error("Promise schemas are not supported");if(n.issues)throw new Error("Validation failed");return n.value}function rs(e){return Te(e)&&"type"in e&&typeof e.type=="string"&&"~standard"in e&&Te(e["~standard"])&&"vendor"in e["~standard"]&&e["~standard"].vendor==="valibot"}function zn(e){return rs(e)}function Wn(e){return{get:(t,{invalid:n})=>{try{return Xt(t,e)}catch{throw n()}},set:(t,{invalid:n})=>{try{return en(t,e)}catch{throw n()}}}}const os=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/;function Pe(e,t){if(typeof t=="string"&&os.test(t)){const n=new Date(t);return isNaN(n.getTime())?t:n}return t}function Ie(e){for(const t of e)try{return t()}catch{continue}throw new Error("All functions failed")}function ft(e,t){return e.type==="string"?1:t.type==="string"?-1:0}function Xt(e,t){if(t.type==="boolean")return C(t,!!e);if(t.type==="date")return C(t,new Date(e));if(t.type==="number")return C(t,Number(e));if(t.type==="literal")return Ie([()=>C(t,Number(e)),()=>C(t,!!e),()=>C(t,e)]);if(t.type==="object")return C(t,JSON.parse(e,Pe));if(t.type==="enum")return Ie([()=>C(t,Number(e)),()=>C(t,!!e),()=>C(t,e)]);if(t.type==="array"||t.type==="tuple")return C(t,JSON.parse(e,Pe));if(t.type==="union"&&"options"in t){const n=t.options.sort(ft).map(r=>()=>Xt(e,r));return Ie(n)}if(t.type==="variant"&&"options"in t){const n=t.options.sort(ft).map(r=>()=>Xt(e,r));return Ie(n)}if(t.type==="record")return C(t,JSON.parse(e,Pe));if(t.type==="map")return C(t,new Map(JSON.parse(e,Pe)));if(t.type==="set")return C(t,new Set(JSON.parse(e,Pe)));if(t.type==="intersection")throw new Error("Intersection schemas are not supported");if(t.type==="promise")throw new Error("Promise schemas are not supported");if(t.type==="function")throw new Error("Function schemas are not supported");return C(t,e)}function en(e,t){if(t.type==="string"||t.type==="boolean")return C(t,e).toString();if(t.type==="date")return C(t,e).toISOString();if(t.type==="number")return C(t,Number(e)).toString();if(t.type==="literal")return C(t,e).toString();if(t.type==="object")return JSON.stringify(C(t,e));if(t.type==="enum"||t.type==="nativeEnum")return C(t,e).toString();if(t.type==="array"||t.type==="tuple")return JSON.stringify(C(t,e));if(t.type==="union"&&"options"in t){const n=t.options.sort(ft).map(r=>()=>en(e,r));return Ie(n)}if(t.type==="variant"&&"options"in t){const n=t.options.sort(ft).map(r=>()=>en(e,r));return Ie(n)}if(t.type==="record")return JSON.stringify(C(t,e));if(t.type==="map"){const n=C(t,e);return JSON.stringify(Array.from(n.entries()))}if(t.type==="set"){const n=C(t,e);return JSON.stringify(Array.from(n.values()))}if(t.type==="intersection")throw new Error("Intersection schemas are not supported");if(t.type==="promise")throw new Error("Promise schemas are not supported");if(t.type==="function")throw new Error("Function schemas are not supported");return JSON.stringify(C(t,e))}function tn(e){return{get:(t,{invalid:n})=>{if(`${e}`===t)return e;throw n(`Expected value to be ${e}, received ${JSON.stringify(t)}`)},set:(t,{invalid:n})=>{if(e!==t)throw n(`Expected value to be literal ${e}, received ${JSON.stringify(t)}`);return t.toString()}}}function ss(e,t){return e[t]??String}function Kn(e){return{invalid:t=>{throw new zt({...e,message:t})}}}const is={get:e=>e,set:(e,{invalid:t})=>{if(typeof e!="string")throw t(`Expected string value, received ${JSON.stringify(e)}`);return e}},Jn={get:(e,{invalid:t})=>{if(e==="true")return!0;if(e==="false")return!1;throw t(`Expected boolean value, received ${JSON.stringify(e)}`)},set:(e,{invalid:t})=>{if(typeof e!="boolean")throw t(`Expected boolean value, received ${JSON.stringify(e)}`);return e.toString()}},Yn={get:(e,{invalid:t})=>{const n=Number(e);if(isNaN(n))throw t(`Expected number value, received ${JSON.stringify(e)}`);return n},set:(e,{invalid:t})=>{if(typeof e!="number")throw t(`Expected number value, received ${JSON.stringify(e)}`);return e.toString()}},Qn={get:(e,{invalid:t})=>{const n=new Date(e);if(isNaN(n.getTime()))throw t(`Expected date value, received ${JSON.stringify(e)}`);return n},set:(e,{invalid:t})=>{if(typeof e!="object"||!(e instanceof Date))throw t(`Expected date value, received ${JSON.stringify(e)}`);return e.toISOString()}},Xn={get:(e,{invalid:t})=>{try{return JSON.parse(e)}catch{throw t(`Expected JSON value, received "${e}"`)}},set:(e,{invalid:t})=>{try{return JSON.stringify(e)}catch{throw t(`Expected JSON value, received "${e}"`)}}};function he(e,{param:t=String,isOptional:n=!1}={}){const r=Kn({param:t,value:e,isGetter:!0});if(e===void 0||!ne(e)){if(ct(t))return t.defaultValue;if(n)return;throw r.invalid(`Param is not optional, received ${JSON.stringify(e)}`)}if(t===String)return is.get(e,r);if(t===Boolean)return Jn.get(e,r);if(t===Number)return Yn.get(e,r);if(t===Date)return Qn.get(e,r);if(t===JSON)return Xn.get(e,r);if(Ko(t))return t(e,r);if(at(t))return t.get(e,r);if(t instanceof RegExp){if(t.test(e))return e;throw r.invalid(`Expected value to match regex ${t.toString()}, received ${JSON.stringify(e)}`)}return Wt(t)?tn(t).get(e,r):qn(t)?Fn(t).get(e,r):zn(t)?Wn(t).get(e,r):e}function nn(e,t){try{return he(e,t)}catch(n){if(n instanceof zt)return;throw n}}function as(e,t){try{return ae(e,t)}catch(n){if(n instanceof zt)return;throw n}}function ae(e,{param:t=String,isOptional:n=!1}={}){const r=Kn({param:t,value:e,isSetter:!0});if(e===void 0){if(n)return"";throw r.invalid(`Param is not optional, received ${JSON.stringify(e)}`)}if(t===Boolean)return Jn.set(e,r);if(t===Number)return Yn.set(e,r);if(t===Date)return Qn.set(e,r);if(t===JSON)return Xn.set(e,r);if(at(t))return t.set(e,r);if(Wt(t))return tn(t).set(e,r);if(qn(t))return Fn(t).set(e,r);if(zn(t))return Wn(t).set(e,r);try{return e.toString()}catch{throw r.invalid(`Unable to set param value, received ${JSON.stringify(e)}`)}}const lt=`\\${je}\\??([\\w-_]+)\\*?\\${it}`,cs=`\\${je}\\?([\\w-_]+)\\*?\\${it}`,us=`\\${je}\\??([\\w-_]+)\\*\\${it}`,fs="[^/]*",ls=".*",ds="([^/]*)",ps="(.*)";function rn(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function hs(e,t){const n=Array.from(e.matchAll(t));if(n.length===0)return[e];let r=0;const o=n.reduce((i,a)=>{const f=rn(e.slice(r,a.index));f.length&&i.push(f);const[E]=a;return i.push(E),r=a.index+E.length,i},[]),s=e.slice(r);return s&&o.push(s),o}function Es(e){const t=dt(e);return new RegExp(`^${t||".*"}$`,"i")}function er(e){const t=dt(e);return new RegExp(`^${t}$`,"i")}function gs(e){const t=e.replace(/^#*/,""),n=dt(t);return new RegExp(`^#?${n||".*"}$`,"i")}function _s(e){const t=new URLSearchParams(e);return Array.from(t.entries()).filter(([,n])=>!nr(n)).map(([n,r])=>{const o=dt(r);return new RegExp(`${rn(n)}=${o}(&|$)`,"i")})}function dt(e){return hs(e,new RegExp(lt,"g")).map(t=>t.startsWith(je)?tr(t):rn(t)).join("")}function tr(e){return e.replace(new RegExp(lt,"g"),t=>rr(t)?ls:fs)}function ms(e,t){const n=or(t),{isGreedy:r=!1}=e.params[t]??{},o=r?ps:ds;return e.value.replace(n,o)}function nr(e){return new RegExp(cs,"g").test(e)}function rr(e){return new RegExp(us,"g").test(e)}function pt(e){const[t]=sr(e,new RegExp(lt,"g"));return t}function or(e){return new RegExp(`\\${je}\\??${e}\\*?\\${it}`,"g")}function sr(e,t){return Array.from(e.matchAll(t)).flatMap(([,...r])=>r.map(o=>ne(o)?o:""))}function ys(e="",t={}){return ne(e)?Array.from(e.matchAll(new RegExp(lt,"g"))).reduce((r,[o,s])=>{const i=pt(o);if(!i)return r;const a=ss(t,i),f=nr(o)||ct(a),E=rr(o);return Be([i],r),r[s]={param:a,isOptional:f,isGreedy:E},r},{}):{}}const ir=Symbol("UrlPartsWithParams");function ar(e){return Te(e)&&e[ir]===!0}function Q(e){return e===void 0?ht():ar(e)?e:ht(e,{})}function ht(e,t){return{value:e??"",params:ys(e,t),[ir]:!0}}function Et(e){if(typeof e=="string"||typeof e>"u"||ar(e))return Q(e);const t=Array.isArray(e)?e:Object.entries(e),n=[],r={};for(const[o,s]of t)if(Wt(s))n.push(`${o}=${s}`);else{const i=`[${o}]`,a=pt(i);a&&(r[a]=s),n.push(`${a}=${i}`)}return ht(n.join("&"),r)}function Rs(e,t,n){const r=ms(t,n),o=tr(r),[s]=sr(e,new RegExp(o,"g"));return s}function Ss(e,t,n,r){const o=ae(r,t.params[n]);return e.replace(or(n),o)}function cr(...e){const t=new URLSearchParams;for(const n of e){const r=new URLSearchParams(n);for(const[o,s]of r.entries())t.append(o,s)}return t}const gt="https://internal.invalid";function _t(e){const t=new URL(e.host??gt,gt);return t.pathname=e.path??"",t.search=new URLSearchParams(e.query).toString(),t.hash=e.hash??"",jn(t.toString().replace(new RegExp(`^${gt}/*`),"/"))}function X(e){return!e.startsWith("http")?Os(e):Ts(e)}function Ze(e,t){if(typeof e=="string"){const r=Ze(X(e),t);return _t(r)}const n=new URLSearchParams(t.query);return{host:ne(t.host)?t.host:e.host,path:ne(t.path)?t.path:e.path??"",query:cr(e.query,n),hash:ne(t.hash)?t.hash:e.hash??""}}function Ts(e){const{protocol:t,host:n,pathname:r,searchParams:o,hash:s}=new URL(e,e);return{host:`${t}//${n}`,path:r,query:o,hash:s}}function Os(e){const{pathname:t,searchParams:n,hash:r}=new URL(e,gt);return{path:t,query:n,hash:r}}function Ne(e){const t={host:Q(e.host),path:Q(e.path),query:Ps(Et(e.query)),hash:ws(Q(e.hash))};Be(t.path.params,t.query.params,t.host.params,t.hash.params);const n={...t.host,regexp:Es(t.host.value),stringify(u={}){return on(t.host,u)}},r={...t.path,regexp:{trailingSlashIgnored:er(t.path.value),trailingSlashRemoved:er(t.path.value.replace(/^(.+)\/$/,"$1"))},stringify(u={}){return on(t.path,u)}},o={...t.query,regexp:_s(t.query.value),stringify(u={}){return Is(t.query,u).toString()}},s={...t.hash,regexp:gs(t.hash.value),stringify(u={}){return on(t.hash,u)}};function i(u={}){return _t({host:n.stringify(u),path:r.stringify(u),query:o.stringify(u),hash:s.stringify(u)})}function a(u,c={}){const d=X(u),m=c.removeTrailingSlashes??!0;if(!n.regexp.test(d.host??""))throw new Error("Host does not match");if(!(m?r.regexp.trailingSlashRemoved:r.regexp.trailingSlashIgnored).test(d.path))throw new Error("Path does not match");const h=d.query.toString();if(!o.regexp.every(T=>T.test(h)))throw new Error("Query does not match");if(!s.regexp.test(d.hash))throw new Error("Hash does not match")}function f(u,c={}){a(u,c);const d=X(u);return{...sn(n,d.host??""),...sn(r,d.path),...Ns(o,d.query.toString()),...sn(s,d.hash)}}function E(u,c={}){try{return{success:!0,params:f(u,c)}}catch(d){return{success:!1,params:{},error:new Error("Failed to parse url",{cause:d})}}}return{...{[$n]:!0,schema:{host:n,path:r,query:o,hash:s},params:{}},isRelative:!ne(t.host.value),stringify:i,parse:f,tryParse:E}}function ws(e){return{...e,value:e.value.replace(/^#/,"")}}function Ps(e){return{...e,value:e.value.replace(/^\?/,"")}}function on(e,t){return Object.keys(e.params).reduce((n,r)=>Ss(n,e,r,t[r]),e.value)}function Is(e,t){const n=new URLSearchParams(e.value);if(!e.value)return n;for(const[r,o]of Array.from(n.entries())){const s=pt(o);if(!s)continue;const a=ae(t[s],e.params[s]),f=t[s]===void 0&&a==="";e.params[s].isOptional&&f?n.delete(r,o):n.set(r,a)}return n}function sn(e,t){const n={},r=decodeURIComponent(t);for(const[o,s]of Object.entries(e.params)){const i=Rs(r,e,o),a=he(i,s);n[o]=a}return n}function Ns(e,t){const n={},r=new URLSearchParams(e.value),o=new URLSearchParams(t);for(const[s,i]of Array.from(r.entries())){const a=pt(i);if(!a)continue;const E=o.get(s)??void 0,g=he(E,e.params[a]);n[a]=g}return n}class ur extends Error{constructor(t){super(`Invalid Route Redirect "${t}": Route does not support redirects. Use createRouteRedirects to create redirects.`)}}function fr({getRoute:e}){return{redirectTo:(...[r,o])=>{const s=e();if(!te(s))throw new ur(s.name);r.context.push(s),s.context.push(r),s.redirect(r,o)},redirectFrom:(r,o)=>{const s=e();if(!te(r))throw new ur(r.name);s.context.push(r),r.context.push(s),r.redirect(s,o)}}}function an(e,t){Be(e.params,t.params);const n=`${e.value}${t.value}`;return{...e,value:n,params:{...e.params,...t.params}}}function lr(e,t){Be(e.params,t.params);const n=[e.value,t.value].filter(ne).join("&");return{...e,value:n,params:{...e.params,...t.params}}}function dr(e,t){return an(e,t)}function cn(e,t){if(!Oe(e))throw new Error("Parent is not a valid url");if(!Oe(t))return Ne({host:e.schema.host,path:an(e.schema.path,Q(t.path)),query:lr(e.schema.query,Et(t.query)),hash:dr(e.schema.hash,Q(t.hash))});if(!Oe(t))throw new Error("Child is not a valid url");return Ne({host:e.schema.host,path:an(e.schema.path,t.schema.path),query:lr(e.schema.query,t.schema.query),hash:dr(e.schema.hash,t.schema.hash)})}function pr(e){let t;return{setTitle:o=>{t=o},getTitle:async o=>{const s=async()=>{if(e&&te(e))return e.getTitle(o)};return t?t(o,{from:o,getParentTitle:s}):s()}}}function Ee(e,t){const n=Ft(),r=Zn(e.name),o=Q(e.path),s=Et(e.query),i=Q(e.hash),a=e.meta??{},f=e.state??{},E=e.context??[],{store:g,redirect:p,...u}=st(),{setTitle:c,getTitle:d}=pr(e.parent),m=S.markRaw({...e,id:n,meta:a,state:f,props:t,name:r}),R=fr({getRoute:()=>y}),h=Ne({path:o,query:s,hash:i}),T={[Mt]:!0,depth:1,hooks:[g],getTitle:d,redirect:p},y={id:n,matched:m,matches:[m],name:r,meta:a,state:f,context:E,prefetch:e.prefetch,setTitle:c,...R,...h,...u,...T};if(jt(e)){const l=qt(e.parent,y),_=cn(e.parent,{path:o,query:s,hash:i});return{...l,..._}}return y}function As(){const e=new ie;return{onRejection:n=>(e.onRejection.add(n),()=>e.onRejection.delete(n)),store:e}}function bs(e){return S.defineComponent(()=>()=>S.h("h1",e),{name:e,props:[]})}function hr(e){const t=new URLSearchParams(e);return{get:(...n)=>t.get(...n),getAll:(...n)=>t.getAll(...n),set:(...n)=>{t.set(...n)},append:(...n)=>{t.append(...n)},delete:(...n)=>{t.delete(...n)},toString:(...n)=>t.toString(...n),forEach:(...n)=>{t.forEach(...n)},entries:(...n)=>t.entries(...n),keys:(...n)=>t.keys(...n),values:(...n)=>t.values(...n),has:(...n)=>t.has(...n),size:t.size,sort:()=>{t.sort()},[Symbol.iterator]:()=>t[Symbol.iterator]()}}function Er(e){const t=S.markRaw(e.component??bs(e.type)),n=ks(e.type,t),{store:r,...o}=As(),s={[Mn]:!0,route:n,hooks:[r]};return{type:e.type,component:t,...o,...s}}function ks(e,t){const n={id:Ft(),component:t,meta:{},state:{}};return{id:n.id,matched:n,matches:[n],name:e,query:hr(""),params:{},state:{},href:"/",hash:"",title:Promise.resolve(void 0)}}function Cs(e){const t=Ft(),n=Zn(e.name),r=Q(e.path),o=Et(e.query),s=Q(e.hash),i=e.meta??{},a=Q(e.host),f=e.context??[],{store:E,redirect:g,...p}=st(),{getTitle:u,setTitle:c}=pr(e.parent),d=fr({getRoute:()=>T}),m=S.markRaw({id:t,meta:{},state:{},...e}),R=Ne({host:a,path:r,query:o,hash:s}),h={[Mt]:!0,depth:1,hooks:[E],getTitle:u,redirect:g},T={id:t,matched:m,matches:[m],name:n,meta:i,state:{},context:f,setTitle:c,...p,...d,...R,...h};if(jt(e)){const y=qt(e.parent,T),l=cn(e.parent,{path:r,query:o,hash:s});return{...y,...l}}return T}function Ge(){const e=new Map;return t=>{const n=e.get(t);if(!n){const r=Symbol();return e.set(t,r),r}return n}}const Us=Ge();function gr(e){const t=Us(e);return({increment:n=!1}={})=>{const r=S.inject(t,0);return n&&S.provide(t,r+1),r}}const $e=(e,t,n)=>{const r=e.matches,o=t?.matches??[];return r.at(n)?.id!==o.at(n)?.id},qe=(e,t,n)=>{const r=e.matches,o=t?.matches??[];return r.at(n)?.id!==o.at(n)?.id},Fe=(e,t,n)=>e.matches.at(n)?.id===t?.matches.at(n)?.id;function vs(e){switch(e){case"onBeforeRouteEnter":case"onAfterRouteEnter":return $e;case"onBeforeRouteUpdate":case"onAfterRouteUpdate":return Fe;case"onBeforeRouteLeave":case"onAfterRouteLeave":return qe;default:throw new Error(`Switch is not exhaustive for lifecycle: ${e}`)}}class mt extends Error{}class ce extends mt{response;constructor(t){super("Uncaught ContextPushError"),this.response={status:"PUSH",to:t}}}class ge extends mt{response;constructor(t){super("Uncaught ContextRejectionError"),this.response={status:"REJECT",type:t}}}class _r extends mt{response;constructor(){super("Uncaught ContextAbortError"),this.response={status:"ABORT"}}}function Ls(e,t){const n=new ie;return fe(e).forEach((r,o)=>{if(r.redirects.forEach(s=>n.redirects.add(s)),$e(e,t,o))return r.onBeforeRouteEnter.forEach(s=>n.onBeforeRouteEnter.add(s));if(Fe(e,t,o))return r.onBeforeRouteUpdate.forEach(s=>n.onBeforeRouteUpdate.add(s))}),fe(t).forEach((r,o)=>{if(qe(e,t,o))return r.onBeforeRouteLeave.forEach(s=>n.onBeforeRouteLeave.add(s))}),n}function Ds(e,t){const n=new ie;return fe(e).forEach((r,o)=>{if($e(e,t,o))return r.onAfterRouteEnter.forEach(s=>n.onAfterRouteEnter.add(s));if(Fe(e,t,o))return r.onAfterRouteUpdate.forEach(s=>n.onAfterRouteUpdate.add(s))}),fe(t).forEach((r,o)=>{if(qe(e,t,o))return r.onAfterRouteLeave.forEach(s=>n.onAfterRouteLeave.add(s))}),n}function Vs(e,t,n){const r=new ie;return e.matches.forEach((o,s)=>{$e(e,t,s)&&n.onBeforeRouteEnter.forEach(i=>r.onBeforeRouteEnter.add(i)),Fe(e,t,s)&&n.onBeforeRouteUpdate.forEach(i=>r.onBeforeRouteUpdate.add(i))}),t?.matches.forEach((o,s)=>{qe(e,t,s)&&n.onBeforeRouteLeave.forEach(i=>r.onBeforeRouteLeave.add(i))}),r}function xs(e,t,n){const r=new ie;return e.matches.forEach((o,s)=>{$e(e,t,s)&&n.onAfterRouteEnter.forEach(i=>r.onAfterRouteEnter.add(i)),Fe(e,t,s)&&n.onAfterRouteUpdate.forEach(i=>r.onAfterRouteUpdate.add(i))}),t?.matches.forEach((o,s)=>{qe(e,t,s)&&n.onAfterRouteLeave.forEach(i=>r.onAfterRouteLeave.add(i))}),r}function Ms(e){const t=new ie;return fe(e).forEach(n=>{n.onRejection.forEach(r=>t.onRejection.add(r))}),t}function mr(){let e=null;function t(r){e=r}function n(r){return e?e.runWithContext(r):r()}return{setVueApp:t,runWithContext:n}}function ze({to:e}){const t=i=>{throw new ge(i)},n=(...i)=>{throw new ce(i)};return{reject:t,push:n,replace:(i,a,f)=>{if(K(i)){const p=a??{};throw new ce([i,{...p,replace:!0}])}const E=a,g=f??{};throw new ce([i,E,{...g,replace:!0}])},update:(i,a,f)=>{if(typeof i=="object"){const g={...e.params,...i};return n(e.name,g,a)}const E={...e.params,[i]:a};return n(e.name,E,f)},abort:()=>{throw new _r}}}const yr=Ge();function Bs(){const{setVueApp:e,runWithContext:t}=mr(),{store:n,...r}=st(),o=new ie,s=async({to:p,from:u})=>{const{reject:c,push:d,replace:m,update:R,abort:h}=ze({to:p}),T=Ls(p,u),y=Vs(p,u,n),l=[...T.redirects,...y.onBeforeRouteEnter,...T.onBeforeRouteEnter,...y.onBeforeRouteUpdate,...T.onBeforeRouteUpdate,...o.onBeforeRouteUpdate,...y.onBeforeRouteLeave,...T.onBeforeRouteLeave,...o.onBeforeRouteLeave];try{const _=l.map(O=>t(()=>O(p,{from:u,reject:c,push:d,replace:m,update:R,abort:h})));await Promise.all(_)}catch(_){if(_ instanceof ce||_ instanceof ge||_ instanceof _r)return _.response;try{a(_,{to:p,from:u,source:"hook"})}catch(O){if(O instanceof ce||O instanceof ge)return O.response;throw O}}return{status:"SUCCESS"}},i=async({to:p,from:u})=>{const{reject:c,push:d,replace:m,update:R}=ze({to:p}),h=Ds(p,u),T=xs(p,u,n),y=[...o.onAfterRouteLeave,...h.onAfterRouteLeave,...T.onAfterRouteLeave,...o.onAfterRouteUpdate,...h.onAfterRouteUpdate,...T.onAfterRouteUpdate,...o.onAfterRouteEnter,...h.onAfterRouteEnter,...T.onAfterRouteEnter];try{const l=y.map(_=>t(()=>_(p,{from:u,reject:c,push:d,replace:m,update:R})));await Promise.all(l)}catch(l){if(l instanceof ce||l instanceof ge)return l.response;try{a(l,{to:p,from:u,source:"hook"})}catch(_){if(_ instanceof ce||_ instanceof ge)return _.response;throw _}}return{status:"SUCCESS"}},a=(p,{to:u,from:c,source:d})=>{const{reject:m,push:R,replace:h,update:T}=ze({to:u});for(const y of n.onError)try{y(p,{to:u,from:c,source:d,reject:m,push:R,replace:h,update:T});return}catch(l){if(l instanceof mt)throw l;if(l===p)continue;throw l}};return{runBeforeRouteHooks:s,runAfterRouteHooks:i,runErrorHooks:a,runRejectionHooks:(p,{to:u,from:c})=>{const m=[...Ms(p).onRejection,...n.onRejection];for(const R of m)R(p.type,{to:u,from:c})},addComponentHook:({lifecycle:p,depth:u,hook:c})=>{const d=vs(p),m=o[p],R=(h,T)=>{if(d(h,T.from,u))return c(h,T)};return m.add(R),()=>m.delete(R)},addGlobalRouteHooks:p=>{p.onBeforeRouteEnter.forEach(u=>r.onBeforeRouteEnter(u)),p.onBeforeRouteUpdate.forEach(u=>r.onBeforeRouteUpdate(u)),p.onBeforeRouteLeave.forEach(u=>r.onBeforeRouteLeave(u)),p.onAfterRouteEnter.forEach(u=>r.onAfterRouteEnter(u)),p.onAfterRouteUpdate.forEach(u=>r.onAfterRouteUpdate(u)),p.onAfterRouteLeave.forEach(u=>r.onAfterRouteLeave(u)),p.onError.forEach(u=>r.onError(u))},setVueApp:e,...r}}function js(e){const t=yr(e);return()=>{const n=S.inject(t);if(!n)throw new pe;return n}}function yt(e,t){const n=gr(e),r=js(e);return o=>{const s=n(),a=r().addComponentHook({lifecycle:t,hook:o,depth:s-1});return S.onUnmounted(a),a}}function Hs(e){const t=yt(e,"onBeforeRouteLeave"),n=yt(e,"onBeforeRouteUpdate"),r=yt(e,"onAfterRouteLeave"),o=yt(e,"onAfterRouteUpdate");return{onBeforeRouteLeave:t,onBeforeRouteUpdate:n,onAfterRouteLeave:r,onAfterRouteUpdate:o}}const Rr=Ge();function Zs(e){const t=Rr(e);return()=>{const n=S.inject(t);if(!n)throw new pe;return n}}const Sr=Ge();function Tr(e){const t=Sr(e);return()=>{const n=S.inject(t);if(!n)throw new pe;return n}}function We(e){return()=>{const t=S.inject(e);if(!t)throw new pe;return t}}const Or=Symbol("isRouterRouteSymbol");function Gs(e,t){return typeof t=="object"&&t!==null&&Or in t&&e in t}function $s(e,t,n){function r(y){const l=_t({...X(t.href),query:void 0}),_=Ze(l,{query:y});n(_)}function o(y,l,_){if(Qo(y))return o({[y]:l},_);const O=y,A=l,k={...t.params,...O};return n(t.name,k,A)}const s=(...y)=>{const l=new URLSearchParams(t.query);l.set(...y),r(l)},i=(...y)=>{const l=new URLSearchParams(t.query);l.append(...y),r(l)},a=(...y)=>{const l=new URLSearchParams(t.query);l.delete(...y),r(l)},{id:f,matched:E,matches:g,name:p,hash:u,href:c}=S.toRefs(t),d=new Proxy({},{get(y,l,_){return Reflect.get(t.params,l,_)},set(y,l,_){return o(l,_),!0},ownKeys(){return Reflect.ownKeys(t.params)},getOwnPropertyDescriptor(y,l){return Reflect.getOwnPropertyDescriptor(t.params,l)}}),m=S.computed({get(){return d},set(y){o(y)}}),R=S.computed({get(){return new Proxy(t.query,{get(y,l,_){switch(l){case"append":return i;case"set":return s;case"delete":return a;default:return Reflect.get(y,l,_)}}})},set(y){r(y)}}),h=S.computed({get(){return new Proxy(t.state,{set(y,l,_){return o({},{state:{...t.state,[l]:_}}),!0}})},set(y){o({},{state:y})}});return S.reactive({...t,id:f,matched:E,matches:g,state:h,query:R,hash:u,params:m,name:p,href:c,update:o,[Or]:!0,[e]:!0})}function un(e){return(t,n,{exact:r}={})=>Gs(e,t)?n===void 0?!0:r?t.matched.name===n:t.matches.map(o=>o.name).includes(n):!1}function Rt(e){const t=We(e),n=un(e);return(r,o)=>{const s=t();function i(){if(!r)return;if(!n(s.route,r,o))throw new Hn(r,s.route.name)}return S.watch(s.route,i,{immediate:!0,deep:!0}),s.route}}function fn(e){const t=Rt(e),n=We(e),r=Tr(e),o=gr(e),s=Zs(e);return S.defineComponent((i,a)=>{const f=t(),E=n(),g=r(),p=o({increment:!0});S.onServerPrefetch(async()=>{await E.start()});const{getRouteComponents:u}=s(),c=S.computed(()=>{if(!E.started.value)return null;if(g.value)return g.value.component;const d=f.matches.at(p);if(!d)return null;const m=u(d),R=i.name??"default";return m[R]});return()=>a.slots.default?a.slots.default({route:f,component:c.value,rejection:g.value}):c.value?S.h(c.value):null},{name:"RouterView",props:["name"]})}const wr=Ge();function Pr(e){const t=wr(e);return()=>{const n=S.inject(t);if(!n)throw new pe;return n}}const qs="lazy",Fs={components:!0,props:!1};function St(e){return["eager","lazy","intent"].includes(e)}function Ir({routerPrefetch:e,routePrefetch:t,linkPrefetch:n},r){const o=ln(n,r),s=ln(t,r),i=ln(e,r),a=[o,s,i,Fs[r],qs].reduce((f,E)=>St(f)?f:f===!0&&St(E)?E:f===!0&&!St(E)?f:f===void 0?E:f,void 0);return St(a)?a:!1}function ln(e,t){return Te(e)?e[t]:e}const zs=S.defineAsyncComponent(()=>new Promise(e=>{e({default:{template:"foo"}})}));function Nr(e){return e.name===zs.name&&"__asyncLoader"in e}const Ar=Symbol("visibilityObserver");function Ws(e){const t=S.inject(Ar);if(!t)throw new pe;return S.watch(e,(r,o)=>{r&&t.observe(r),o&&t.unobserve(o)},{immediate:!0}),S.onUnmounted(()=>{e.value&&t.unobserve(e.value)}),{isElementVisible:S.computed(()=>e.value?t.isElementVisible(e.value):!1)}}function br(e,t,n){S.watch(e,(r,o)=>{r&&r.addEventListener(t,n),o&&o.removeEventListener(t,n)},{immediate:!0}),S.onUnmounted(()=>{e.value&&e.value.removeEventListener(t,n)})}function Ks(e){const t=Pr(e);return n=>{const r=new Map,o=S.ref(),{getPrefetchProps:s,setPrefetchProps:i}=t(),{isElementVisible:a}=Ws(o),f=()=>{const p=Array.from(r.values()).reduce((u,c)=>(Object.assign(u,c),u),{});i(p)};S.watch(()=>S.toValue(n),({route:p,...u})=>{r.clear(),p&&g("eager",p,u)},{immediate:!0}),S.watch(a,p=>{const{route:u,...c}=S.toValue(n);!u||!p||g("lazy",u,c)},{immediate:!0}),br(o,"focusin",E),br(o,"mouseover",E);function E(){const{route:p,...u}=S.toValue(n);p&&g("intent",p,u)}function g(p,u,c){Js(p,u,c),r.has(p)||r.set(p,s(p,u,c))}return{element:o,commit:f}}}function Js(e,t,n){t.matches.forEach(r=>{Ir({...n,routePrefetch:r.prefetch},"components")===e&&(Ht(r)&&Nr(r.component)&&r.component.__asyncLoader(),Gt(r)&&Object.values(r.components).forEach(s=>{Nr(s)&&s.__asyncLoader()}))})}function kr(e){const t=We(e),n=Ks(e),r=un(e);return(o,s={},i={})=>{const a=t(),f=S.computed(()=>{const l=S.toValue(o);return typeof l!="string"?l:K(l)?a.find(l,S.toValue(i)):a.resolve(l,S.toValue(s),S.toValue(i))}),E=S.computed(()=>{if(f.value)return f.value.href;const l=S.toValue(o);if(K(l))return l;console.error(new Error("Failed to resolve route in RouterLink."))}),g=S.computed(()=>r(a.route)&&a.route.matches.some(l=>l.id===f.value?.id)),p=S.computed(()=>a.route.id===f.value?.id),u=S.computed(()=>r(a.route)&&Yo(f.value)&&a.route.href.startsWith(f.value.href)),c=S.computed(()=>a.route.href===f.value?.href),d=S.computed(()=>!!E.value&&a.isExternal(E.value)),m=S.computed(()=>{const l=S.toValue(o);return typeof l!="string"||K(l)?S.toValue(s):S.toValue(i)}),{element:R,commit:h}=n(()=>({route:f.value,routerPrefetch:a.prefetch,linkPrefetch:m.value.prefetch})),T=l=>{h();const _={replace:l?.replace??m.value.replace,query:cr(l?.query,m.value.query),hash:l?.hash??m.value.hash,state:{...m.value.state,...l?.state}},O=S.toValue(o);return K(O)||typeof O=="object"?a.push(O,_):a.push(O,S.toValue(s),_)};return{element:R,route:f,href:E,isMatch:g,isExactMatch:p,isActive:u,isExactActive:c,isExternal:d,push:T,replace:l=>T({...l,replace:!0})}}}function Cr(e){const t=We(e),n=kr(e);return S.defineComponent((r,o)=>{const s=t(),i=S.computed(()=>h(r.to)),a=S.computed(()=>T(r.to)),f=S.computed(()=>{const{to:l,..._}=r;return _}),{element:E,isMatch:g,isExactMatch:p,isActive:u,isExactActive:c,isExternal:d,push:m}=n(()=>typeof r.to=="function"?r.to(s.resolve):r.to,f),R=S.computed(()=>({"router-link--match":g.value,"router-link--exact-match":p.value,"router-link--active":u.value,"router-link--exact-active":c.value}));function h(l){if(typeof l=="function"){const _=l(s.resolve);return h(_)}return K(l)?s.find(l):l}function T(l){if(typeof l=="function"){const _=l(s.resolve);return T(_)}return K(l)?l:l?.href}function y(l){Ys(l)||(l.preventDefault(),m())}return()=>S.h("a",{href:a.value,class:["router-link",R.value],ref:E,onClick:y},o.slots.default?.({route:i.value,isMatch:g.value,isExactMatch:p.value,isActive:u.value,isExactActive:c.value,isExternal:d.value}))},{name:"RouterLink",props:["to","prefetch","query","hash","replace","state"]})}function Ys(e){return e.defaultPrevented||e.button!==0||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey}function Qs(e){const t=Rt(e);return(n,r=String)=>{const o=t(),s=S.computed({get(){const a=o.query.get(S.toValue(n));return a===null?ct(r)?r.defaultValue:null:nn(a,{param:r})},set(a){o.query.set(S.toValue(n),ae(a,{param:r}))}}),i=S.computed({get(){const a=o.query.getAll(S.toValue(n));return a.length===0&&ct(r)?[r.defaultValue]:a.map(f=>nn(f,{param:r})).filter(f=>f!==null)},set(a){const f=new URLSearchParams(o.query);f.delete(S.toValue(n)),a.forEach(E=>{f.append(S.toValue(n),ae(E,{param:r}))}),o.query=f}});return{value:s,values:i,remove:()=>{o.query.delete(S.toValue(n))}}}}function Ur(e){const t=typeof e=="object"?e.key:e,{onBeforeRouteLeave:n,onBeforeRouteUpdate:r,onAfterRouteLeave:o,onAfterRouteUpdate:s}=Hs(t),i=un(t),a=fn(t),f=Cr(t),E=Rt(t),g=We(t),p=Qs(t),u=kr(t),c=Tr(t);return{onBeforeRouteLeave:n,onBeforeRouteUpdate:r,onAfterRouteLeave:o,onAfterRouteUpdate:s,isRoute:i,RouterView:a,RouterLink:f,useRoute:E,useRouter:g,useQueryValue:p,useLink:u,useRejection:c}}const vr=Symbol("IS_ROUTER_PLUGIN_SYMBOL");function Xs(e){return typeof e=="object"&&e!==null&&vr in e}function ei(e){const{store:t,...n}=st(),r={[vr]:!0,hooks:t};return{routes:e.routes??[],rejections:e.rejections??[],...n,...r}}function Lr(e){return{get:(t,{invalid:n})=>{for(const r of e){const o=nn(t,{param:r,isOptional:!1,isGreedy:!1});if(o!==void 0)return o}throw n(`Value "${t}" does not satisfy any of the possible values`)},set:(t,{invalid:n})=>{for(const r of e){const o=as(t,{param:r,isOptional:!1,isGreedy:!1});if(o!==void 0)return o}throw n(`Value "${t}" does not satisfy any of the possible values`)}}}const ti={separator:","};function ni(e,t={}){const{separator:n}={...ti,...t},r=Lr(e);return{get:(o,s)=>o.split(n).map(i=>r.get(i,s)),set:(o,s)=>{if(!Array.isArray(o))throw s.invalid("Expected an array");return o.map(i=>r.set(i,s)).join(n)}}}const ri={separator:","};function oi(e,t={}){const{separator:n}={...ri,...t};return{get:r=>{const o=r.split(n);return e.map((s,i)=>he(o.at(i),{param:s}))},set:(r,{invalid:o})=>{if(!Array.isArray(r))throw o("Expected a tuple");if(r.length!==e.length)throw o(`Expected tuple with ${e.length} values but received ${r.length} values`);return e.map((s,i)=>ae(r.at(i),{param:s})).join(n)}}}function Ae(){let e=[];return{get length(){return e.length},push(t){return e.push(t),()=>{e=e.filter(n=>n!==t)}},call(t){e.forEach(n=>n(t))}}}function Tt(){return Math.random().toString(36).slice(2,10)}function Dr(e,t,n){return Math.min(Math.max(e,t),n)}function Ot(e){e.preventDefault(),e.returnValue=""}function _e({pathname:e="/",search:t="",hash:n=""}){let r=e;return t&&t!=="?"&&(r+=t.startsWith("?")?t:"?"+t),n&&n!=="#"&&(r+=n.startsWith("#")?n:"#"+n),r}function Ke(e){const t={};if(e){const n=e.indexOf("#");n>=0&&(t.hash=e.slice(n),e=e.slice(0,n));const r=e.indexOf("?");r>=0&&(t.search=e.slice(r),e=e.slice(0,r)),e&&(t.pathname=e)}return t}function be(e){return Object.freeze(e)}const wt="beforeunload",Vr="popstate",si="hashchange";function xr(e={}){const{window:t=document.defaultView}=e,n=t.history;function r(){const{pathname:l,search:_,hash:O}=t.location,A=n.state??{};return[A.idx,be({pathname:l,search:_,hash:O,state:A.usr??null,key:A.key??"default"})]}let o=null;function s(){if(o)g.call(o),o=null;else{const[_,O]=r();if(g.length){if(_!=null){const A=a??0-_;A&&(o={action:"POP",location:O,retry(){T(A*-1)}},T(A))}}else m("POP")}}t.addEventListener(Vr,s);let i="POP",[a,f]=r();const E=Ae(),g=Ae();a==null&&(a=0,n.replaceState({...n.state,idx:a},"",p(f)));function p(l){return typeof l=="string"?l:_e(l)}function u(l,_=null){return be({pathname:f.pathname,hash:"",search:"",...typeof l=="string"?Ke(l):l,state:_,key:Tt()})}function c(l,_){return[{usr:l.state,key:l.key,idx:_},p(l)]}function d(l,_,O){return g.length?(g.call({action:l,location:_,retry:O}),!1):!0}function m(l){i=l,[a,f]=r(),E.call({action:i,location:f})}function R(l,_){const O="PUSH",A=u(l,_);function k(){R(l,_)}if(d(O,A,k)){const[j,Z]=c(A,(a??0)+1);try{n.pushState(j,"",Z)}catch{t.location.assign(Z)}m(O)}}function h(l,_){const O="REPLACE",A=u(l,_);function k(){h(l,_)}if(d(O,A,k)){const[j,Z]=c(A,a??0);n.replaceState(j,"",Z),m(O)}}function T(l){n.go(l)}return{get action(){return i},get location(){return f},createHref:p,push:R,replace:h,go:T,back(){T(-1)},forward(){T(1)},listen(l){return E.push(l)},block(l){const _=g.push(l);return g.length===1&&t.addEventListener(wt,Ot),()=>{_(),g.length||t.removeEventListener(wt,Ot)}}}}function ii(e={}){const{window:t=document.defaultView}=e,n=t.history;function r(){const{pathname:_="/",search:O="",hash:A=""}=Ke(t.location.hash.slice(1)),k=n.state??{};return[k.idx,be({pathname:_,search:O,hash:A,state:k.usr??null,key:k.key??"default"})]}let o=null;function s(){if(o)g.call(o),o=null;else{const[O,A]=r();if(g.length){if(O!=null){const k=(a??0)-O;k&&(o={action:"POP",location:A,retry(){y(k*-1)}},y(k))}}else R("POP")}}t.addEventListener(Vr,s),t.addEventListener(si,()=>{const[,_]=r();_e(_)!==_e(f)&&s()});let i="POP",[a,f]=r();const E=Ae(),g=Ae();a==null&&(a=0,n.replaceState({...n.state,idx:a},""));function p(){const _=document.querySelector("base");let O="";if(_?.getAttribute("href")){const A=t.location.href,k=A.indexOf("#");O=k===-1?A:A.slice(0,k)}return O}function u(_){return p()+"#"+(typeof _=="string"?_:_e(_))}function c(_,O=null){return be({pathname:f.pathname,hash:"",search:"",...typeof _=="string"?Ke(_):_,state:O,key:Tt()})}function d(_,O){return[{usr:_.state,key:_.key,idx:O},u(_)]}function m(_,O,A){return g.length?(g.call({action:_,location:O,retry:A}),!1):!0}function R(_){i=_,[a,f]=r(),E.call({action:i,location:f})}function h(_,O){const A="PUSH",k=c(_,O);function j(){h(_,O)}if(m(A,k,j)){const[Z,Y]=d(k,(a??0)+1);try{n.pushState(Z,"",Y)}catch{t.location.assign(Y)}R(A)}}function T(_,O){const A="REPLACE",k=c(_,O);function j(){T(_,O)}if(m(A,k,j)){const[Z,Y]=d(k,a??0);n.replaceState(Z,"",Y),R(A)}}function y(_){n.go(_)}return{get action(){return i},get location(){return f},createHref:u,push:h,replace:T,go:y,back(){y(-1)},forward(){y(1)},listen(_){return E.push(_)},block(_){const O=g.push(_);return g.length===1&&t.addEventListener(wt,Ot),()=>{O(),g.length||t.removeEventListener(wt,Ot)}}}}function Mr(e={}){const{initialEntries:t=["/"],initialIndex:n}=e,r=t.map(h=>be({pathname:"/",search:"",hash:"",state:null,key:Tt(),...typeof h=="string"?Ke(h):h}));let o=Dr(n??r.length-1,0,r.length-1),s="POP",i=r[o];const a=Ae(),f=Ae();function E(h){return typeof h=="string"?h:_e(h)}function g(h,T=null){return be({pathname:i.pathname,search:"",hash:"",...typeof h=="string"?Ke(h):h,state:T,key:Tt()})}function p(h,T,y){return f.length?(f.call({action:h,location:T,retry:y}),!1):!0}function u(h,T){s=h,i=T,a.call({action:s,location:i})}function c(h,T){const y="PUSH",l=g(h,T);function _(){c(h,T)}p(y,l,_)&&(o+=1,r.splice(o,r.length,l),u(y,l))}function d(h,T){const y="REPLACE",l=g(h,T);function _(){d(h,T)}p(y,l,_)&&(r[o]=l,u(y,l))}function m(h){const T=Dr(o+h,0,r.length-1),y="POP",l=r[T];function _(){m(h)}p(y,l,_)&&(o=T,u(y,l))}return{get index(){return o},get action(){return s},get location(){return i},createHref:E,push:c,replace:d,go:m,back(){m(-1)},forward(){m(1)},listen(h){return a.push(h)},block(h){return f.push(h)}}}function ai(e,t,n){const r=S.reactive({...t}),o=a=>{Object.assign(r,{...a})},s=r,i=$s(e,s,n);return{currentRoute:s,routerRoute:i,updateRoute:o}}function ci(e){return t=>{const{host:n}=X(t);return!(n===void 0||n===e)}}function Br(e){try{const t=e();return Qt(t)?t.catch(n=>n):t}catch(t){return t}}function ui(){const{setVueApp:e,runWithContext:t}=mr(),n=S.reactive(new Map),r=(u,c,d)=>{const{push:m,replace:R,reject:h,update:T}=ze({to:c});return c.matches.filter(y=>Ir({...d,routePrefetch:y.prefetch},"props")===u).flatMap(y=>g(y)).reduce((y,{id:l,name:_,props:O})=>{if(!O)return y;const A=E(l,_,c),k=t(()=>Br(()=>O(c,{push:m,replace:R,reject:h,update:T,parent:a(c,!0)})));return y[A]=k,y},{})},o=u=>{Object.entries(u).forEach(([c,d])=>{n.set(c,d)})},s=async u=>{const{push:c,replace:d,reject:m,update:R}=ze({to:u}),h=u.matches.flatMap(g),T=[],y=[];for(const{id:l,name:_,props:O}of h){if(!O)continue;const A=E(l,_,u);if(T.push(A),!n.has(A)){const k=t(()=>Br(()=>O(u,{push:c,replace:d,reject:m,update:R,parent:a(u)})));n.set(A,k)}y.push((async()=>{const k=await n.get(A);if(k instanceof Error)throw k})())}p(T);try{return await Promise.all(y),{status:"SUCCESS"}}catch(l){if(l instanceof ce||l instanceof ge)return l.response;throw l}},i=(u,c,d)=>{const m=E(u,c,d);return n.get(m)};function a(u,c=!1){const d=u.matches.at(-2);if(d)return Zt(d)?{name:d.name??"",get props(){return f(d,"default",u,c)}}:$t(d)?{name:d.name??"",props:new Proxy({},{get(m,R){return typeof R!="string"?Reflect.get(m,R):f(d,R,u,c)}})}:{name:d.name??"",props:void 0}}function f(u,c,d,m=!1){const R=i(u.id,c,d);if(m&&!R){const h=u.name??"unknown",T=d.name||"unknown";console.warn(`
|
|
2
|
-
Unable to access parent props "${
|
|
1
|
+
(function(e,t){typeof exports==`object`&&typeof module<`u`?t(exports,require(`vue`)):typeof define==`function`&&define.amd?define([`exports`,`vue`],t):(e=typeof globalThis<`u`?globalThis:e||self,t(e[`@kitbag/router`]={},e.Vue))})(this,function(e,t){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});function n(e){return typeof e==`string`?/^(https?:\/\/|\/).*/g.test(e):!1}function r(e){return n(e)?e:`/${e}`}var i=class extends Error{constructor(e){super(`Invalid Param "${e}": Router does not support multiple params by the same name. All param names must be unique.`)}},a=class extends Error{constructor(e){super(`Child property on meta for ${e} conflicts with the parent meta.`)}},o=class extends Error{constructor(){super(`Router not installed`)}},s=class extends Error{constructor(e,t){super(`useRoute called with incorrect route. Given ${e}, expected ${t}`)}};function c(){let e=0;return()=>(++e).toString()}var l=c()();function u(e){return e===l}var d=c();function f(e,t){return p(e,t),{...e,...t}}function p(e,t){let n=Object.keys(e).find(n=>n in t&&typeof t[n]!=typeof e[n]);if(n)throw new a(n)}function m(e,t){return e.filter(e=>t===e).length}function h(...e){let t=e.flatMap(e=>Array.isArray(e)?e:Object.keys(e));for(let e of t)if(m(t,e)>1)throw new i(e)}function g(e,t){return h(e,t),{...e,...t}}var _=Symbol(`IS_ROUTE_SYMBOL`);function v(e){return typeof e==`object`&&!!e&&_ in e}var y=[`NotFound`],b=Symbol(`IS_REJECTION_SYMBOL`);function x(e){return typeof e==`object`&&!!e&&b in e}function S(e){return e&&(v(e)||x(e))?e.hooks:[]}function C(e,t){return[...S(e),...S(t)]}function w(e){return`parent`in e&&!!e.parent}function T(e){return`component`in e&&!!e.component}function E(e){return`props`in e&&typeof e.props==`function`}function D(e){return`components`in e&&!!e.components}function O(e){return`props`in e&&typeof e.props==`object`}function k(e,t){if(!v(e)||!v(t))throw Error(`combineRoutes called with invalid route arguments`);return{...t,meta:f(e.meta,t.meta),state:g(e.state,t.state),hooks:C(e,t),matches:[...e.matches,t.matched],context:[...e.context,...t.context],depth:e.depth+1}}function A(e){return e===void 0?``:e}var j=class{redirects=new Set;onBeforeRouteEnter=new Set;onBeforeRouteUpdate=new Set;onBeforeRouteLeave=new Set;onAfterRouteEnter=new Set;onAfterRouteUpdate=new Set;onAfterRouteLeave=new Set;onError=new Set;onRejection=new Set},ee=class extends Error{constructor(e){super(`Invalid Route Redirect "${e}": Router does not support multiple redirects to the same route. All redirects must be unique.`)}};function te(){let e=new j;return{redirect:(t,n)=>{if(e.redirects.size>0)throw new ee(t.name);let r=(e,{replace:r})=>{r(t.name,n?.(e.params))};return e.redirects.add(r),()=>e.redirects.delete(r)},onBeforeRouteEnter:t=>(e.onBeforeRouteEnter.add(t),()=>e.onBeforeRouteEnter.delete(t)),onBeforeRouteUpdate:t=>(e.onBeforeRouteUpdate.add(t),()=>e.onBeforeRouteUpdate.delete(t)),onBeforeRouteLeave:t=>(e.onBeforeRouteLeave.add(t),()=>e.onBeforeRouteLeave.delete(t)),onAfterRouteEnter:t=>(e.onAfterRouteEnter.add(t),()=>e.onAfterRouteEnter.delete(t)),onAfterRouteUpdate:t=>(e.onAfterRouteUpdate.add(t),()=>e.onAfterRouteUpdate.delete(t)),onAfterRouteLeave:t=>(e.onAfterRouteLeave.add(t),()=>e.onAfterRouteLeave.delete(t)),onError:t=>(e.onError.add(t),()=>e.onError.delete(t)),onRejection:t=>(e.onRejection.add(t),()=>e.onRejection.delete(t)),store:e}}var ne=class extends Error{context;constructor(e={}){super(e.message??`Uncaught InvalidRouteParamValueError`),this.context={isOptional:!1,isGetter:!1,isSetter:!1,...e}}};function re(e){return e!==String&&e!==Boolean&&e!==Number&&e!==Date}function ie(e){return typeof e==`function`&&re(e)}function ae(e){return typeof e==`object`&&`get`in e&&typeof e.get==`function`&&`set`in e&&typeof e.set==`function`}function oe(e){return typeof e==`string`||typeof e==`number`||typeof e==`boolean`}function se(e,t){return ae(e)?{...e,defaultValue:t??e.defaultValue}:{get:t=>Ge(t,{param:e}),set:t=>F(t,{param:e}),defaultValue:t}}function ce(e){return ae(e)&&e.defaultValue!==void 0}function le(e,t){return se(e,t)}function ue(e){return e!==void 0}function de(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function fe(e){return typeof e==`string`||typeof e==`number`||typeof e==`symbol`}function M(e){return typeof e==`string`&&e.length>0}var pe=Symbol(`IS_URL_SYMBOL`);function me(e){return typeof e==`object`&&!!e&&pe in e}var N=null;async function he(){let{ZodType:e,ZodString:t,ZodIPv4:n,ZodIPv6:r,ZodCIDRv4:i,ZodCIDRv6:a,ZodURL:o,ZodEmail:s,ZodUUID:c,ZodBase64:l,ZodCUID:u,ZodCUID2:d,ZodULID:f,ZodJWT:p,ZodBigInt:m,ZodNaN:h,ZodBoolean:g,ZodDate:_,ZodISODateTime:v,ZodISODate:y,ZodISOTime:b,ZodNumber:x,ZodLiteral:S,ZodObject:C,ZodEnum:w,ZodArray:T,ZodTuple:E,ZodUnion:D,ZodDiscriminatedUnion:O,ZodRecord:k,ZodMap:A,ZodSet:j,ZodIntersection:ee,ZodPromise:te}=await import(`zod`);return{ZodType:e,ZodString:t,ZodIPv4:n,ZodIPv6:r,ZodCIDRv4:i,ZodCIDRv6:a,ZodURL:o,ZodEmail:s,ZodUUID:c,ZodBase64:l,ZodCUID:u,ZodCUID2:d,ZodULID:f,ZodJWT:p,ZodBigInt:m,ZodNaN:h,ZodBoolean:g,ZodDate:_,ZodISODateTime:v,ZodISODate:y,ZodISOTime:b,ZodNumber:x,ZodLiteral:S,ZodObject:C,ZodEnum:w,ZodArray:T,ZodTuple:E,ZodUnion:D,ZodDiscriminatedUnion:O,ZodRecord:k,ZodMap:A,ZodSet:j,ZodIntersection:ee,ZodPromise:te}}function ge(e){return Object.values(e).some(e=>me(e)?Object.values(e.schema.host.params).some(({param:e})=>_e(e))||Object.values(e.schema.path.params).some(({param:e})=>_e(e))||Object.values(e.schema.query.params).some(({param:e})=>_e(e)):!1)}function _e(e){return de(e)&&`parse`in e&&typeof e.parse==`function`&&`~standard`in e&&de(e[`~standard`])&&`vendor`in e[`~standard`]&&e[`~standard`].vendor===`zod`}async function ve(){try{N=await he()}catch{throw Error(`Failed to initialize Zod`)}}function ye(e){return N?e instanceof N.ZodType:!1}function be(e){return{get:(t,{invalid:n})=>{try{return Te(t,e)}catch{throw n()}},set:(t,{invalid:n})=>{try{return Ee(t,e)}catch{throw n()}}}}var xe=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/;function Se(e,t){if(typeof t==`string`&&xe.test(t)){let e=new Date(t);return isNaN(e.getTime())?t:e}return t}function Ce(e){for(let t of e)try{return t()}catch{continue}throw Error(`All functions failed`)}function we(e,t){return N?.ZodString&&e instanceof N.ZodString?1:N?.ZodString&&t instanceof N.ZodString?-1:0}function Te(e,t){if(!N)throw Error(`Zod is not initialized`);if(t instanceof N.ZodString)return t.parse(e);if(t instanceof N.ZodBoolean)return t.parse(!!e);if(t instanceof N.ZodDate)return t.parse(new Date(e));if(t instanceof N.ZodNumber)return t.parse(Number(e));if(t instanceof N.ZodBigInt)return t.parse(BigInt(e));if(t instanceof N.ZodNaN)return t.parse(Number(e));if(t instanceof N.ZodLiteral)return Ce([()=>t.parse(Number(e)),()=>t.parse(!!e),()=>t.parse(e)]);if(t instanceof N.ZodObject)return t.parse(JSON.parse(e,Se));if(t instanceof N.ZodEnum)return t.parse(e);if(t instanceof N.ZodArray||t instanceof N.ZodTuple)return t.parse(JSON.parse(e,Se));if(t instanceof N.ZodUnion)return Ce(Array.from(t.def.options).sort(we).map(t=>()=>Te(e,t)));if(t instanceof N.ZodDiscriminatedUnion)return Ce(Array.from(t.options).sort(we).map(t=>()=>Te(e,t)));if(t instanceof N.ZodRecord)return t.parse(JSON.parse(e,Se));if(t instanceof N.ZodMap)return t.parse(new Map(JSON.parse(e,Se)));if(t instanceof N.ZodSet)return t.parse(new Set(JSON.parse(e,Se)));if(t instanceof N.ZodIntersection)throw Error(`Intersection schemas are not supported`);if(t instanceof N.ZodPromise)throw Error(`Promise schemas are not supported`);return t.parse(e)}function Ee(e,t){if(!N)throw Error(`Zod is not initialized`);if(t instanceof N.ZodString||t instanceof N.ZodISODateTime||t instanceof N.ZodISODate||t instanceof N.ZodISOTime||t instanceof N.ZodIPv4||t instanceof N.ZodIPv6||t instanceof N.ZodCIDRv4||t instanceof N.ZodCIDRv6||t instanceof N.ZodURL||t instanceof N.ZodEmail||t instanceof N.ZodUUID||t instanceof N.ZodBase64||t instanceof N.ZodCUID||t instanceof N.ZodCUID2||t instanceof N.ZodULID||t instanceof N.ZodJWT)return t.parse(e);if(t instanceof N.ZodBoolean)return t.parse(e).toString();if(t instanceof N.ZodDate)return t.parse(e).toISOString();if(t instanceof N.ZodNumber)return t.parse(Number(e)).toString();if(t instanceof N.ZodBigInt)return t.parse(BigInt(String(e))).toString();if(t instanceof N.ZodNaN)return t.parse(e).toString();if(t instanceof N.ZodLiteral){let n=t.parse(e);return n==null?String(n):n.toString()}if(t instanceof N.ZodObject)return JSON.stringify(t.parse(e));if(t instanceof N.ZodEnum){let n=t.parse(e);return typeof n==`string`?n:String(n)}if(t instanceof N.ZodArray||t instanceof N.ZodTuple)return JSON.stringify(t.parse(e));if(t instanceof N.ZodUnion)return Ce(Array.from(t.def.options).sort(we).map(t=>()=>Ee(e,t)));if(t instanceof N.ZodDiscriminatedUnion)return Ce(Array.from(t.options).sort(we).map(t=>()=>Ee(e,t)));if(t instanceof N.ZodRecord)return JSON.stringify(t.parse(e));if(t instanceof N.ZodMap){let n=t.parse(e);return JSON.stringify(Array.from(n.entries()))}if(t instanceof N.ZodSet){let n=t.parse(e);return JSON.stringify(Array.from(n.values()))}if(t instanceof N.ZodIntersection)throw Error(`Intersection schemas are not supported`);if(t instanceof N.ZodPromise)throw Error(`Promise schemas are not supported`);return JSON.stringify(t.parse(e))}function De(e){return typeof e==`object`&&!!e&&`then`in e}function P(e,t){let n=e[`~standard`].validate(t);if(De(n))throw Error(`Promise schemas are not supported`);if(n.issues)throw Error(`Validation failed`);return n.value}function Oe(e){return de(e)&&`type`in e&&typeof e.type==`string`&&`~standard`in e&&de(e[`~standard`])&&`vendor`in e[`~standard`]&&e[`~standard`].vendor===`valibot`}function ke(e){return Oe(e)}function Ae(e){return{get:(t,{invalid:n})=>{try{return Fe(t,e)}catch{throw n()}},set:(t,{invalid:n})=>{try{return Ie(t,e)}catch{throw n()}}}}var je=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/;function Me(e,t){if(typeof t==`string`&&je.test(t)){let e=new Date(t);return isNaN(e.getTime())?t:e}return t}function Ne(e){for(let t of e)try{return t()}catch{continue}throw Error(`All functions failed`)}function Pe(e,t){return e.type===`string`?1:t.type===`string`?-1:0}function Fe(e,t){if(t.type===`boolean`)return P(t,!!e);if(t.type===`date`)return P(t,new Date(e));if(t.type===`number`)return P(t,Number(e));if(t.type===`literal`)return Ne([()=>P(t,Number(e)),()=>P(t,!!e),()=>P(t,e)]);if(t.type===`object`)return P(t,JSON.parse(e,Me));if(t.type===`enum`)return Ne([()=>P(t,Number(e)),()=>P(t,!!e),()=>P(t,e)]);if(t.type===`array`||t.type===`tuple`)return P(t,JSON.parse(e,Me));if(t.type===`union`&&`options`in t||t.type===`variant`&&`options`in t)return Ne(t.options.sort(Pe).map(t=>()=>Fe(e,t)));if(t.type===`record`)return P(t,JSON.parse(e,Me));if(t.type===`map`)return P(t,new Map(JSON.parse(e,Me)));if(t.type===`set`)return P(t,new Set(JSON.parse(e,Me)));if(t.type===`intersection`)throw Error(`Intersection schemas are not supported`);if(t.type===`promise`)throw Error(`Promise schemas are not supported`);if(t.type===`function`)throw Error(`Function schemas are not supported`);return P(t,e)}function Ie(e,t){if(t.type===`string`||t.type===`boolean`)return P(t,e).toString();if(t.type===`date`)return P(t,e).toISOString();if(t.type===`number`)return P(t,Number(e)).toString();if(t.type===`literal`)return P(t,e).toString();if(t.type===`object`)return JSON.stringify(P(t,e));if(t.type===`enum`||t.type===`nativeEnum`)return P(t,e).toString();if(t.type===`array`||t.type===`tuple`)return JSON.stringify(P(t,e));if(t.type===`union`&&`options`in t||t.type===`variant`&&`options`in t)return Ne(t.options.sort(Pe).map(t=>()=>Ie(e,t)));if(t.type===`record`)return JSON.stringify(P(t,e));if(t.type===`map`){let n=P(t,e);return JSON.stringify(Array.from(n.entries()))}if(t.type===`set`){let n=P(t,e);return JSON.stringify(Array.from(n.values()))}if(t.type===`intersection`)throw Error(`Intersection schemas are not supported`);if(t.type===`promise`)throw Error(`Promise schemas are not supported`);if(t.type===`function`)throw Error(`Function schemas are not supported`);return JSON.stringify(P(t,e))}function Le(e){return{get:(t,{invalid:n})=>{if(`${e}`===t)return e;throw n(`Expected value to be ${e}, received ${JSON.stringify(t)}`)},set:(t,{invalid:n})=>{if(e!==t)throw n(`Expected value to be literal ${e}, received ${JSON.stringify(t)}`);return t.toString()}}}function Re(e,t){return e[t]??String}function ze(e){return{invalid:t=>{throw new ne({...e,message:t})}}}var Be={get:e=>e,set:(e,{invalid:t})=>{if(typeof e!=`string`)throw t(`Expected string value, received ${JSON.stringify(e)}`);return e}},Ve={get:(e,{invalid:t})=>{if(e===`true`)return!0;if(e===`false`)return!1;throw t(`Expected boolean value, received ${JSON.stringify(e)}`)},set:(e,{invalid:t})=>{if(typeof e!=`boolean`)throw t(`Expected boolean value, received ${JSON.stringify(e)}`);return e.toString()}},He={get:(e,{invalid:t})=>{let n=Number(e);if(isNaN(n))throw t(`Expected number value, received ${JSON.stringify(e)}`);return n},set:(e,{invalid:t})=>{if(typeof e!=`number`)throw t(`Expected number value, received ${JSON.stringify(e)}`);return e.toString()}},Ue={get:(e,{invalid:t})=>{let n=new Date(e);if(isNaN(n.getTime()))throw t(`Expected date value, received ${JSON.stringify(e)}`);return n},set:(e,{invalid:t})=>{if(typeof e!=`object`||!(e instanceof Date))throw t(`Expected date value, received ${JSON.stringify(e)}`);return e.toISOString()}},We={get:(e,{invalid:t})=>{try{return JSON.parse(e)}catch{throw t(`Expected JSON value, received "${e}"`)}},set:(e,{invalid:t})=>{try{return JSON.stringify(e)}catch{throw t(`Expected JSON value, received "${e}"`)}}};function Ge(e,{param:t=String,isOptional:n=!1}={}){let r=ze({param:t,value:e,isGetter:!0});if(e===void 0||!M(e)){if(ce(t))return t.defaultValue;if(n)return;throw r.invalid(`Param is not optional, received ${JSON.stringify(e)}`)}if(t===String)return Be.get(e,r);if(t===Boolean)return Ve.get(e,r);if(t===Number)return He.get(e,r);if(t===Date)return Ue.get(e,r);if(t===JSON)return We.get(e,r);if(ie(t))return t(e,r);if(ae(t))return t.get(e,r);if(t instanceof RegExp){if(t.test(e))return e;throw r.invalid(`Expected value to match regex ${t.toString()}, received ${JSON.stringify(e)}`)}return oe(t)?Le(t).get(e,r):ye(t)?be(t).get(e,r):ke(t)?Ae(t).get(e,r):e}function Ke(e,t){try{return Ge(e,t)}catch(e){if(e instanceof ne)return;throw e}}function qe(e,t){try{return F(e,t)}catch(e){if(e instanceof ne)return;throw e}}function F(e,{param:t=String,isOptional:n=!1}={}){let r=ze({param:t,value:e,isSetter:!0});if(e===void 0){if(n)return``;throw r.invalid(`Param is not optional, received ${JSON.stringify(e)}`)}if(t===Boolean)return Ve.set(e,r);if(t===Number)return He.set(e,r);if(t===Date)return Ue.set(e,r);if(t===JSON)return We.set(e,r);if(ae(t))return t.set(e,r);if(oe(t))return Le(t).set(e,r);if(ye(t))return be(t).set(e,r);if(ke(t))return Ae(t).set(e,r);try{return e.toString()}catch{throw r.invalid(`Unable to set param value, received ${JSON.stringify(e)}`)}}var Je=`\\[\\??([\\w-_]+)\\*?\\]`,Ye=`\\[\\?([\\w-_]+)\\*?\\]`,Xe=`\\[\\??([\\w-_]+)\\*\\]`,Ze=`[^/]*`,Qe=`([^/]*)`,$e=`(.*)`;function et(e){return e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`)}function tt(e,t){let n=Array.from(e.matchAll(t));if(n.length===0)return[e];let r=0,i=n.reduce((t,n)=>{let i=et(e.slice(r,n.index));i.length&&t.push(i);let[a]=n;return t.push(a),r=n.index+a.length,t},[]),a=e.slice(r);return a&&i.push(a),i}function nt(e){let t=ot(e);return RegExp(`^${t||`.*`}$`,`i`)}function rt(e){let t=ot(e);return RegExp(`^${t}$`,`i`)}function it(e){let t=ot(e.replace(/^#*/,``));return RegExp(`^#?${t||`.*`}$`,`i`)}function at(e){let t=new URLSearchParams(e);return Array.from(t.entries()).filter(([,e])=>!lt(e)).map(([e,t])=>{let n=ot(t);return RegExp(`${et(e)}=${n}(&|$)`,`i`)})}function ot(e){return tt(e,new RegExp(Je,`g`)).map(e=>e.startsWith(`[`)?st(e):et(e)).join(``)}function st(e){return e.replace(new RegExp(Je,`g`),e=>ut(e)?`.*`:Ze)}function ct(e,t){let n=ft(t),{isGreedy:r=!1}=e.params[t]??{},i=r?$e:Qe;return e.value.replace(n,i)}function lt(e){return new RegExp(Ye,`g`).test(e)}function ut(e){return new RegExp(Xe,`g`).test(e)}function dt(e){let[t]=pt(e,new RegExp(Je,`g`));return t}function ft(e){return RegExp(`\\[\\??${e}\\*?\\]`,`g`)}function pt(e,t){return Array.from(e.matchAll(t)).flatMap(([,...e])=>e.map(e=>M(e)?e:``))}function mt(e=``,t={}){return M(e)?Array.from(e.matchAll(new RegExp(Je,`g`))).reduce((e,[n,r])=>{let i=dt(n);if(!i)return e;let a=Re(t,i),o=lt(n)||ce(a),s=ut(n);return h([i],e),e[r]={param:a,isOptional:o,isGreedy:s},e},{}):{}}var ht=Symbol(`UrlPartsWithParams`);function gt(e){return de(e)&&e[ht]===!0}function I(e){return e===void 0?_t():gt(e)?e:_t(e,{})}function _t(e,t){return{value:e??``,params:mt(e,t),[ht]:!0}}function vt(e){if(typeof e==`string`||e===void 0||gt(e))return I(e);let t=Array.isArray(e)?e:Object.entries(e),n=[],r={};for(let[e,i]of t)if(oe(i))n.push(`${e}=${i}`);else{let t=`[${e}]`,a=dt(t);a&&(r[a]=i),n.push(`${a}=${t}`)}return _t(n.join(`&`),r)}function yt(e,t,n){let r=st(ct(t,n)),[i]=pt(e,new RegExp(r,`g`));return i}function bt(e,t,n,r){let i=F(r,t.params[n]);return e.replace(ft(n),i)}function xt(...e){let t=new URLSearchParams;for(let n of e){let e=new URLSearchParams(n);for(let[n,r]of e.entries())t.append(n,r)}return t}var St=`https://internal.invalid`;function Ct(e){let t=new URL(e.host??St,St);return t.pathname=e.path??``,t.search=new URLSearchParams(e.query).toString(),t.hash=e.hash??``,r(t.toString().replace(RegExp(`^${St}/*`),`/`))}function L(e){return e.startsWith(`http`)?Tt(e):Et(e)}function wt(e,t){if(typeof e==`string`)return Ct(wt(L(e),t));let n=new URLSearchParams(t.query);return{host:M(t.host)?t.host:e.host,path:M(t.path)?t.path:e.path??``,query:xt(e.query,n),hash:M(t.hash)?t.hash:e.hash??``}}function Tt(e){let{protocol:t,host:n,pathname:r,searchParams:i,hash:a}=new URL(e,e);return{host:`${t}//${n}`,path:r,query:i,hash:a}}function Et(e){let{pathname:t,searchParams:n,hash:r}=new URL(e,St);return{path:t,query:n,hash:r}}function Dt(e){let t={host:I(e.host),path:I(e.path),query:kt(vt(e.query)),hash:Ot(I(e.hash))};h(t.path.params,t.query.params,t.host.params,t.hash.params);let n={...t.host,regexp:nt(t.host.value),stringify(e={}){return At(t.host,e)}},r={...t.path,regexp:{trailingSlashIgnored:rt(t.path.value),trailingSlashRemoved:rt(t.path.value.replace(/^(.+)\/$/,`$1`))},stringify(e={}){return At(t.path,e)}},i={...t.query,regexp:at(t.query.value),stringify(e={}){return jt(t.query,e).toString()}},a={...t.hash,regexp:it(t.hash.value),stringify(e={}){return At(t.hash,e)}};function o(e={}){return Ct({host:n.stringify(e),path:r.stringify(e),query:i.stringify(e),hash:a.stringify(e)})}function s(e,t={}){let o=L(e),s=t.removeTrailingSlashes??!0;if(!n.regexp.test(o.host??``))throw Error(`Host does not match`);if(!(s?r.regexp.trailingSlashRemoved:r.regexp.trailingSlashIgnored).test(o.path))throw Error(`Path does not match`);let c=o.query.toString();if(!i.regexp.every(e=>e.test(c)))throw Error(`Query does not match`);if(!a.regexp.test(o.hash))throw Error(`Hash does not match`)}function c(e,t={}){s(e,t);let o=L(e);return{...Mt(n,o.host??``),...Mt(r,o.path),...Nt(i,o.query.toString()),...Mt(a,o.hash)}}function l(e,t={}){try{return{success:!0,params:c(e,t)}}catch(e){return{success:!1,params:{},error:Error(`Failed to parse url`,{cause:e})}}}return{[pe]:!0,schema:{host:n,path:r,query:i,hash:a},params:{},isRelative:!M(t.host.value),stringify:o,parse:c,tryParse:l}}function Ot(e){return{...e,value:e.value.replace(/^#/,``)}}function kt(e){return{...e,value:e.value.replace(/^\?/,``)}}function At(e,t){return Object.keys(e.params).reduce((n,r)=>bt(n,e,r,t[r]),e.value)}function jt(e,t){let n=new URLSearchParams(e.value);if(!e.value)return n;for(let[r,i]of Array.from(n.entries())){let a=dt(i);if(!a)continue;let o=F(t[a],e.params[a]),s=t[a]===void 0&&o===``;e.params[a].isOptional&&s?n.delete(r,i):n.set(r,o)}return n}function Mt(e,t){let n={},r=decodeURIComponent(t);for(let[t,i]of Object.entries(e.params))n[t]=Ge(yt(r,e,t),i);return n}function Nt(e,t){let n={},r=new URLSearchParams(e.value),i=new URLSearchParams(t);for(let[t,a]of Array.from(r.entries())){let r=dt(a);r&&(n[r]=Ge(i.get(t)??void 0,e.params[r]))}return n}var Pt=class extends Error{constructor(e){super(`Invalid Route Redirect "${e}": Route does not support redirects. Use createRouteRedirects to create redirects.`)}};function Ft({getRoute:e}){return{redirectTo:(...[t,n])=>{let r=e();if(!v(r))throw new Pt(r.name);t.context.push(r),r.context.push(t),r.redirect(t,n)},redirectFrom:(t,n)=>{let r=e();if(!v(t))throw new Pt(t.name);r.context.push(t),t.context.push(r),t.redirect(r,n)}}}function It(e,t){h(e.params,t.params);let n=`${e.value}${t.value}`;return{...e,value:n,params:{...e.params,...t.params}}}function Lt(e,t){h(e.params,t.params);let n=[e.value,t.value].filter(M).join(`&`);return{...e,value:n,params:{...e.params,...t.params}}}function Rt(e,t){return It(e,t)}function zt(e,t){if(!me(e))throw Error(`Parent is not a valid url`);if(!me(t))return Dt({host:e.schema.host,path:It(e.schema.path,I(t.path)),query:Lt(e.schema.query,vt(t.query)),hash:Rt(e.schema.hash,I(t.hash))});if(!me(t))throw Error(`Child is not a valid url`);return Dt({host:e.schema.host,path:It(e.schema.path,t.schema.path),query:Lt(e.schema.query,t.schema.query),hash:Rt(e.schema.hash,t.schema.hash)})}function Bt(e){let t;return{setTitle:e=>{t=e},getTitle:async n=>{let r=async()=>{if(e&&v(e))return e.getTitle(n)};return t?t(n,{from:n,getParentTitle:r}):r()}}}function R(e,n){let r=d(),i=A(e.name),a=I(e.path),o=vt(e.query),s=I(e.hash),c=e.meta??{},l=e.state??{},u=e.context??[],{store:f,redirect:p,...m}=te(),{setTitle:h,getTitle:g}=Bt(e.parent),v=(0,t.markRaw)({...e,id:r,meta:c,state:l,props:n,name:i}),y=Ft({getRoute:()=>S}),b=Dt({path:a,query:o,hash:s}),x={[_]:!0,depth:1,hooks:[f],getTitle:g,redirect:p},S={id:r,matched:v,matches:[v],name:i,meta:c,state:l,context:u,prefetch:e.prefetch,setTitle:h,...y,...b,...m,...x};if(w(e)){let t=k(e.parent,S);if(e.hoist)return t;let n=zt(e.parent,{path:a,query:o,hash:s});return{...t,...n}}return S}function Vt(){let e=new j;return{onRejection:t=>(e.onRejection.add(t),()=>e.onRejection.delete(t)),store:e}}function Ht(e){return(0,t.defineComponent)(()=>()=>(0,t.h)(`h1`,e),{name:e,props:[]})}function Ut({type:e,component:n}){let{store:r,...i}=Vt(),a=R({name:e,component:(0,t.markRaw)(n??Ht(e))}),{setTitle:o}=a,s={[b]:!0,route:a,hooks:[r]};return{type:e,setTitle:o,...i,...s}}function Wt(e){let n=d(),r=A(e.name),i=I(e.path),a=vt(e.query),o=I(e.hash),s=e.meta??{},c=I(e.host),l=e.context??[],{store:u,redirect:f,...p}=te(),{getTitle:m,setTitle:h}=Bt(e.parent),g=Ft({getRoute:()=>x}),v=(0,t.markRaw)({id:n,meta:{},state:{},...e}),y=Dt({host:c,path:i,query:a,hash:o}),b={[_]:!0,depth:1,hooks:[u],getTitle:m,redirect:f},x={id:n,matched:v,matches:[v],name:r,meta:s,state:{},context:l,setTitle:h,...p,...g,...y,...b};if(w(e)){let t=k(e.parent,x),n=zt(e.parent,{path:i,query:a,hash:o});return{...t,...n}}return x}function Gt(){let e=new Map;return t=>{let n=e.get(t);if(!n){let n=Symbol();return e.set(t,n),n}return n}}var Kt=Gt();function qt(e){let n=Kt(e);return({increment:e=!1}={})=>{let r=(0,t.inject)(n,0);return e&&(0,t.provide)(n,r+1),r}}var Jt=(e,t,n)=>{let r=e.matches,i=t?.matches??[];return r.at(n)?.id!==i.at(n)?.id},Yt=(e,t,n)=>{let r=e.matches,i=t?.matches??[];return r.at(n)?.id!==i.at(n)?.id},Xt=(e,t,n)=>e.matches.at(n)?.id===t?.matches.at(n)?.id;function Zt(e){switch(e){case`onBeforeRouteEnter`:case`onAfterRouteEnter`:return Jt;case`onBeforeRouteUpdate`:case`onAfterRouteUpdate`:return Xt;case`onBeforeRouteLeave`:case`onAfterRouteLeave`:return Yt;default:throw Error(`Switch is not exhaustive for lifecycle: ${e}`)}}var Qt=class extends Error{},z=class extends Qt{response;constructor(e){super(`Uncaught ContextPushError`),this.response={status:`PUSH`,to:e}}},B=class extends Qt{response;constructor(e){super(`Uncaught ContextRejectionError`),this.response={status:`REJECT`,type:e}}},$t=class extends Qt{response;constructor(){super(`Uncaught ContextAbortError`),this.response={status:`ABORT`}}};function en(e,t){let n=new j;return S(e).forEach((r,i)=>{if(r.redirects.forEach(e=>n.redirects.add(e)),Jt(e,t,i))return r.onBeforeRouteEnter.forEach(e=>n.onBeforeRouteEnter.add(e));if(Xt(e,t,i))return r.onBeforeRouteUpdate.forEach(e=>n.onBeforeRouteUpdate.add(e))}),S(t).forEach((r,i)=>{if(Yt(e,t,i))return r.onBeforeRouteLeave.forEach(e=>n.onBeforeRouteLeave.add(e))}),n}function tn(e,t){let n=new j;return S(e).forEach((r,i)=>{if(Jt(e,t,i))return r.onAfterRouteEnter.forEach(e=>n.onAfterRouteEnter.add(e));if(Xt(e,t,i))return r.onAfterRouteUpdate.forEach(e=>n.onAfterRouteUpdate.add(e))}),S(t).forEach((r,i)=>{if(Yt(e,t,i))return r.onAfterRouteLeave.forEach(e=>n.onAfterRouteLeave.add(e))}),n}function nn(e,t,n){let r=new j;return e.matches.forEach((i,a)=>{Jt(e,t,a)&&n.onBeforeRouteEnter.forEach(e=>r.onBeforeRouteEnter.add(e)),Xt(e,t,a)&&n.onBeforeRouteUpdate.forEach(e=>r.onBeforeRouteUpdate.add(e))}),t?.matches.forEach((i,a)=>{Yt(e,t,a)&&n.onBeforeRouteLeave.forEach(e=>r.onBeforeRouteLeave.add(e))}),r}function rn(e,t,n){let r=new j;return e.matches.forEach((i,a)=>{Jt(e,t,a)&&n.onAfterRouteEnter.forEach(e=>r.onAfterRouteEnter.add(e)),Xt(e,t,a)&&n.onAfterRouteUpdate.forEach(e=>r.onAfterRouteUpdate.add(e))}),t?.matches.forEach((i,a)=>{Yt(e,t,a)&&n.onAfterRouteLeave.forEach(e=>r.onAfterRouteLeave.add(e))}),r}function an(e){let t=new j;return S(e).forEach(e=>{e.onRejection.forEach(e=>t.onRejection.add(e))}),t}function on(){let e=null;function t(t){e=t}function n(t){return e?e.runWithContext(t):t()}return{setVueApp:t,runWithContext:n}}function sn({to:e}){let t=e=>{throw new B(e)},r=(...e)=>{throw new z(e)};return{reject:t,push:r,replace:(e,t,r)=>{throw n(e)?new z([e,{...t??{},replace:!0}]):new z([e,t,{...r??{},replace:!0}])},update:(t,n,i)=>{if(typeof t==`object`){let i={...e.params,...t};return r(e.name,i,n)}let a={...e.params,[t]:n};return r(e.name,a,i)},abort:()=>{throw new $t}}}var cn=Gt();function ln(){let{setVueApp:e,runWithContext:t}=on(),{store:n,...r}=te(),i=new j,a=async({to:e,from:r})=>{let{reject:a,push:o,replace:c,update:l,abort:u}=sn({to:e}),d=en(e,r),f=nn(e,r,n),p=[...d.redirects,...f.onBeforeRouteEnter,...d.onBeforeRouteEnter,...f.onBeforeRouteUpdate,...d.onBeforeRouteUpdate,...i.onBeforeRouteUpdate,...f.onBeforeRouteLeave,...d.onBeforeRouteLeave,...i.onBeforeRouteLeave];try{let n=p.map(n=>t(()=>n(e,{from:r,reject:a,push:o,replace:c,update:l,abort:u})));await Promise.all(n)}catch(t){if(t instanceof z||t instanceof B||t instanceof $t)return t.response;try{s(t,{to:e,from:r,source:`hook`})}catch(e){if(e instanceof z||e instanceof B)return e.response;throw e}}return{status:`SUCCESS`}},o=async({to:e,from:r})=>{let{reject:a,push:o,replace:c,update:l}=sn({to:e}),u=tn(e,r),d=rn(e,r,n),f=[...i.onAfterRouteLeave,...u.onAfterRouteLeave,...d.onAfterRouteLeave,...i.onAfterRouteUpdate,...u.onAfterRouteUpdate,...d.onAfterRouteUpdate,...i.onAfterRouteEnter,...u.onAfterRouteEnter,...d.onAfterRouteEnter];try{let n=f.map(n=>t(()=>n(e,{from:r,reject:a,push:o,replace:c,update:l})));await Promise.all(n)}catch(t){if(t instanceof z||t instanceof B)return t.response;try{s(t,{to:e,from:r,source:`hook`})}catch(e){if(e instanceof z||e instanceof B)return e.response;throw e}}return{status:`SUCCESS`}},s=(e,{to:t,from:r,source:i})=>{let{reject:a,push:o,replace:s,update:c}=sn({to:t});for(let l of n.onError)try{l(e,{to:t,from:r,source:i,reject:a,push:o,replace:s,update:c});return}catch(t){if(t instanceof Qt)throw t;if(t===e)continue;throw t}};return{runBeforeRouteHooks:a,runAfterRouteHooks:o,runErrorHooks:s,runRejectionHooks:(e,{to:t,from:r})=>{let i=[...an(e).onRejection,...n.onRejection];for(let n of i)n(e.type,{to:t,from:r})},addComponentHook:({lifecycle:e,depth:t,hook:n})=>{let r=Zt(e),a=i[e],o=(e,i)=>{if(r(e,i.from,t))return n(e,i)};return a.add(o),()=>a.delete(o)},addGlobalRouteHooks:e=>{e.onBeforeRouteEnter.forEach(e=>r.onBeforeRouteEnter(e)),e.onBeforeRouteUpdate.forEach(e=>r.onBeforeRouteUpdate(e)),e.onBeforeRouteLeave.forEach(e=>r.onBeforeRouteLeave(e)),e.onAfterRouteEnter.forEach(e=>r.onAfterRouteEnter(e)),e.onAfterRouteUpdate.forEach(e=>r.onAfterRouteUpdate(e)),e.onAfterRouteLeave.forEach(e=>r.onAfterRouteLeave(e)),e.onError.forEach(e=>r.onError(e))},setVueApp:e,...r}}function un(e){let n=cn(e);return()=>{let e=(0,t.inject)(n);if(!e)throw new o;return e}}function dn(e,n){let r=qt(e),i=un(e);return e=>{let a=r(),o=i().addComponentHook({lifecycle:n,hook:e,depth:a-1});return(0,t.onUnmounted)(o),o}}function fn(e){return{onBeforeRouteLeave:dn(e,`onBeforeRouteLeave`),onBeforeRouteUpdate:dn(e,`onBeforeRouteUpdate`),onAfterRouteLeave:dn(e,`onAfterRouteLeave`),onAfterRouteUpdate:dn(e,`onAfterRouteUpdate`)}}var pn=Gt();function mn(e){let n=pn(e);return()=>{let e=(0,t.inject)(n);if(!e)throw new o;return e}}var hn=Gt();function gn(e){let n=hn(e);return()=>{let e=(0,t.inject)(n);if(!e)throw new o;return e}}function _n(e){return()=>{let n=(0,t.inject)(e);if(!n)throw new o;return n}}var vn=Symbol(`isRouterRouteSymbol`);function yn(e,t){return typeof t==`object`&&!!t&&vn in t&&e in t}function bn(e,n,r){function i(e){r(wt(Ct({...L(n.href),query:void 0}),{query:e}))}function a(e,t,i){if(fe(e))return a({[e]:t},i);let o=e,s=t,c={...n.params,...o};return r(n.name,c,s)}let o=(...e)=>{let t=new URLSearchParams(n.query);t.set(...e),i(t)},s=(...e)=>{let t=new URLSearchParams(n.query);t.append(...e),i(t)},c=(...e)=>{let t=new URLSearchParams(n.query);t.delete(...e),i(t)},{id:l,matched:u,matches:d,name:f,hash:p,href:m}=(0,t.toRefs)(n),h=new Proxy({},{get(e,t,r){return Reflect.get(n.params,t,r)},set(e,t,n){return a(t,n),!0},ownKeys(){return Reflect.ownKeys(n.params)},getOwnPropertyDescriptor(e,t){return Reflect.getOwnPropertyDescriptor(n.params,t)}}),g=(0,t.computed)({get(){return h},set(e){a(e)}}),_=(0,t.computed)({get(){return new Proxy(n.query,{get(e,t,n){switch(t){case`append`:return s;case`set`:return o;case`delete`:return c;default:return Reflect.get(e,t,n)}}})},set(e){i(e)}}),v=(0,t.computed)({get(){return new Proxy(n.state,{set(e,t,r){return a({},{state:{...n.state,[t]:r}}),!0}})},set(e){a({},{state:e})}});return(0,t.reactive)({...n,id:l,matched:u,matches:d,state:v,query:_,hash:p,params:g,name:f,href:m,update:a,[vn]:!0,[e]:!0})}function xn(e){return(t,n,{exact:r}={})=>yn(e,t)?n===void 0?!0:r?t.matched.name===n:t.matches.map(e=>e.name).includes(n):!1}function Sn(e){let n=_n(e),r=xn(e);return(e,i)=>{let a=n();function o(){if(e&&!r(a.route,e,i))throw new s(e,a.route.name)}return(0,t.watch)(a.route,o,{immediate:!0,deep:!0}),a.route}}function Cn(e){let n=Sn(e),r=_n(e),i=gn(e),a=qt(e),o=mn(e);return(0,t.defineComponent)((e,s)=>{let c=n(),l=r(),u=i(),d=a({increment:!0});(0,t.onServerPrefetch)(async()=>{await l.start()});let{getRouteComponents:f}=o(),p=(0,t.computed)(()=>{if(!l.started.value)return null;if(x(u.value)&&u.value.route.matched.component)return u.value.route.matched.component;let t=c.matches.at(d);return t?f(t)[e.name??`default`]:null});return()=>s.slots.default?s.slots.default({route:c,component:p.value,rejection:u.value}):p.value?(0,t.h)(p.value):null},{name:`RouterView`,props:[`name`]})}var wn=Gt();function Tn(e){let n=wn(e);return()=>{let e=(0,t.inject)(n);if(!e)throw new o;return e}}var En=`lazy`,Dn={components:!0,props:!1};function On(e){return[`eager`,`lazy`,`intent`].includes(e)}function kn({routerPrefetch:e,routePrefetch:t,linkPrefetch:n},r){let i=[An(n,r),An(t,r),An(e,r),Dn[r],En].reduce((e,t)=>On(e)?e:e===!0&&On(t)?t:e===!0&&!On(t)?e:e===void 0?t:e,void 0);return On(i)?i:!1}function An(e,t){return de(e)?e[t]:e}var jn=(0,t.defineAsyncComponent)(()=>new Promise(e=>{e({default:{template:`foo`}})}));function Mn(e){return e.name===jn.name&&`__asyncLoader`in e}var Nn=Symbol(`visibilityObserver`);function Pn(e){let n=(0,t.inject)(Nn);if(!n)throw new o;return(0,t.watch)(e,(e,t)=>{e&&n.observe(e),t&&n.unobserve(t)},{immediate:!0}),(0,t.onUnmounted)(()=>{e.value&&n.unobserve(e.value)}),{isElementVisible:(0,t.computed)(()=>e.value?n.isElementVisible(e.value):!1)}}function Fn(e,n,r){(0,t.watch)(e,(e,t)=>{e&&e.addEventListener(n,r),t&&t.removeEventListener(n,r)},{immediate:!0}),(0,t.onUnmounted)(()=>{e.value&&e.value.removeEventListener(n,r)})}function In(e){let n=Tn(e);return e=>{let r=new Map,i=(0,t.ref)(),{getPrefetchProps:a,setPrefetchProps:o}=n(),{isElementVisible:s}=Pn(i),c=()=>{o(Array.from(r.values()).reduce((e,t)=>(Object.assign(e,t),e),{}))};(0,t.watch)(()=>(0,t.toValue)(e),({route:e,...t})=>{r.clear(),e&&u(`eager`,e,t)},{immediate:!0}),(0,t.watch)(s,n=>{let{route:r,...i}=(0,t.toValue)(e);!r||!n||u(`lazy`,r,i)},{immediate:!0}),Fn(i,`focusin`,l),Fn(i,`mouseover`,l);function l(){let{route:n,...r}=(0,t.toValue)(e);n&&u(`intent`,n,r)}function u(e,t,n){Ln(e,t,n),r.has(e)||r.set(e,a(e,t,n))}return{element:i,commit:c}}}function Ln(e,t,n){t.matches.forEach(t=>{kn({...n,routePrefetch:t.prefetch},`components`)===e&&(T(t)&&Mn(t.component)&&t.component.__asyncLoader(),D(t)&&Object.values(t.components).forEach(e=>{Mn(e)&&e.__asyncLoader()}))})}function Rn(e){let r=_n(e),i=In(e),a=xn(e);return(e,o={},s={})=>{let c=r(),l=(0,t.computed)(()=>{let r=(0,t.toValue)(e);return typeof r==`string`?n(r)?c.find(r,(0,t.toValue)(s)):c.resolve(r,(0,t.toValue)(o),(0,t.toValue)(s)):r}),u=(0,t.computed)(()=>{if(l.value)return l.value.href;let r=(0,t.toValue)(e);if(n(r))return r;console.error(Error(`Failed to resolve route in RouterLink.`))}),d=(0,t.computed)(()=>a(c.route)&&c.route.matches.some(e=>e.id===l.value?.id)),f=(0,t.computed)(()=>c.route.id===l.value?.id),p=(0,t.computed)(()=>a(c.route)&&ue(l.value)&&c.route.href.startsWith(l.value.href)),m=(0,t.computed)(()=>c.route.href===l.value?.href),h=(0,t.computed)(()=>!!u.value&&c.isExternal(u.value)),g=(0,t.computed)(()=>{let r=(0,t.toValue)(e);return typeof r!=`string`||n(r)?(0,t.toValue)(o):(0,t.toValue)(s)}),{element:_,commit:v}=i(()=>({route:l.value,routerPrefetch:c.prefetch,linkPrefetch:g.value.prefetch})),y=r=>{v();let i={replace:r?.replace??g.value.replace,query:xt(r?.query,g.value.query),hash:r?.hash??g.value.hash,state:{...g.value.state,...r?.state}},a=(0,t.toValue)(e);return n(a)||typeof a==`object`?c.push(a,i):c.push(a,(0,t.toValue)(o),i)};return{element:_,route:l,href:u,isMatch:d,isExactMatch:f,isActive:p,isExactActive:m,isExternal:h,push:y,replace:e=>y({...e,replace:!0})}}}function zn(e){let r=_n(e),i=Rn(e);return(0,t.defineComponent)((e,a)=>{let o=r(),s=(0,t.computed)(()=>v(e.to)),c=(0,t.computed)(()=>y(e.to)),l=(0,t.computed)(()=>!e.target||e.target===`_self`),{element:u,isMatch:d,isExactMatch:f,isActive:p,isExactActive:m,isExternal:h,push:g}=i(()=>typeof e.to==`function`?e.to(o.resolve):e.to,(0,t.computed)(()=>{let{to:t,...n}=e;return n})),_=(0,t.computed)(()=>({"router-link--match":d.value,"router-link--exact-match":f.value,"router-link--active":p.value,"router-link--exact-active":m.value}));function v(e){return typeof e==`function`?v(e(o.resolve)):n(e)?o.find(e):e}function y(e){return typeof e==`function`?y(e(o.resolve)):n(e)?e:e?.href}function b(e){return e.defaultPrevented||e.button!==0||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||!l.value}function x(e){b(e)||(e.preventDefault(),g())}return()=>(0,t.h)(`a`,{href:c.value,target:e.target,class:[`router-link`,_.value],ref:u,onClick:x},a.slots.default?.({route:s.value,isMatch:d.value,isExactMatch:f.value,isActive:p.value,isExactActive:m.value,isExternal:h.value}))},{name:`RouterLink`,props:[`to`,`prefetch`,`query`,`hash`,`replace`,`state`,`target`]})}function Bn(e){let n=Sn(e);return(e,r=String)=>{let i=n();return{value:(0,t.computed)({get(){let n=i.query.get((0,t.toValue)(e));return n===null?ce(r)?r.defaultValue:null:Ke(n,{param:r})},set(n){i.query.set((0,t.toValue)(e),F(n,{param:r}))}}),values:(0,t.computed)({get(){let n=i.query.getAll((0,t.toValue)(e));return n.length===0&&ce(r)?[r.defaultValue]:n.map(e=>Ke(e,{param:r})).filter(e=>e!==null)},set(n){let a=new URLSearchParams(i.query);a.delete((0,t.toValue)(e)),n.forEach(n=>{a.append((0,t.toValue)(e),F(n,{param:r}))}),i.query=a}}),remove:()=>{i.query.delete((0,t.toValue)(e))}}}}function Vn(e){let t=typeof e==`object`?e.key:e,{onBeforeRouteLeave:n,onBeforeRouteUpdate:r,onAfterRouteLeave:i,onAfterRouteUpdate:a}=fn(t);return{onBeforeRouteLeave:n,onBeforeRouteUpdate:r,onAfterRouteLeave:i,onAfterRouteUpdate:a,isRoute:xn(t),RouterView:Cn(t),RouterLink:zn(t),useRoute:Sn(t),useRouter:_n(t),useQueryValue:Bn(t),useLink:Rn(t),useRejection:gn(t)}}var Hn=Symbol(`IS_ROUTER_PLUGIN_SYMBOL`);function Un(e){return typeof e==`object`&&!!e&&Hn in e}function Wn(e){let{store:t,...n}=te(),r={[Hn]:!0,hooks:t};return{routes:e.routes??[],rejections:e.rejections??[],...n,...r}}function Gn(e){return{get:(t,{invalid:n})=>{for(let n of e){let e=Ke(t,{param:n,isOptional:!1,isGreedy:!1});if(e!==void 0)return e}throw n(`Value "${t}" does not satisfy any of the possible values`)},set:(t,{invalid:n})=>{for(let n of e){let e=qe(t,{param:n,isOptional:!1,isGreedy:!1});if(e!==void 0)return e}throw n(`Value "${t}" does not satisfy any of the possible values`)}}}var Kn={separator:`,`};function qn(e,t={}){let{separator:n}={...Kn,...t},r=Gn(e);return{get:(e,t)=>e.split(n).map(e=>r.get(e,t)),set:(e,t)=>{if(!Array.isArray(e))throw t.invalid(`Expected an array`);return e.map(e=>r.set(e,t)).join(n)}}}var Jn={separator:`,`};function Yn(e,t={}){let{separator:n}={...Jn,...t};return{get:t=>{let r=t.split(n);return e.map((e,t)=>Ge(r.at(t),{param:e}))},set:(t,{invalid:r})=>{if(!Array.isArray(t))throw r(`Expected a tuple`);if(t.length!==e.length)throw r(`Expected tuple with ${e.length} values but received ${t.length} values`);return e.map((e,n)=>F(t.at(n),{param:e})).join(n)}}}function Xn(){let e=[];return{get length(){return e.length},push(t){return e.push(t),()=>{e=e.filter(e=>e!==t)}},call(t){e.forEach(e=>e(t))}}}function Zn(){return Math.random().toString(36).slice(2,10)}function Qn(e,t,n){return Math.min(Math.max(e,t),n)}function $n(e){e.preventDefault(),e.returnValue=``}function V({pathname:e=`/`,search:t=``,hash:n=``}){let r=e;return t&&t!==`?`&&(r+=t.startsWith(`?`)?t:`?`+t),n&&n!==`#`&&(r+=n.startsWith(`#`)?n:`#`+n),r}function er(e){let t={};if(e){let n=e.indexOf(`#`);n>=0&&(t.hash=e.slice(n),e=e.slice(0,n));let r=e.indexOf(`?`);r>=0&&(t.search=e.slice(r),e=e.slice(0,r)),e&&(t.pathname=e)}return t}function tr(e){return Object.freeze(e)}var nr=`beforeunload`,rr=`popstate`,ir=`hashchange`;function ar(e={}){let{window:t=document.defaultView}=e,n=t.history;function r(){let{pathname:e,search:r,hash:i}=t.location,a=n.state??{};return[a.idx,tr({pathname:e,search:r,hash:i,state:a.usr??null,key:a.key??`default`})]}let i=null;function a(){if(i)u.call(i),i=null;else{let[e,t]=r();if(u.length){if(e!=null){let n=s??0-e;n&&(i={action:`POP`,location:t,retry(){v(n*-1)}},v(n))}}else h(`POP`)}}t.addEventListener(rr,a);let o=`POP`,[s,c]=r(),l=Xn(),u=Xn();s??(s=0,n.replaceState({...n.state,idx:s},``,d(c)));function d(e){return typeof e==`string`?e:V(e)}function f(e,t=null){return tr({pathname:c.pathname,hash:``,search:``,...typeof e==`string`?er(e):e,state:t,key:Zn()})}function p(e,t){return[{usr:e.state,key:e.key,idx:t},d(e)]}function m(e,t,n){return u.length?(u.call({action:e,location:t,retry:n}),!1):!0}function h(e){o=e,[s,c]=r(),l.call({action:o,location:c})}function g(e,r){let i=`PUSH`,a=f(e,r);function o(){g(e,r)}if(m(i,a,o)){let[e,r]=p(a,(s??0)+1);try{n.pushState(e,``,r)}catch{t.location.assign(r)}h(i)}}function _(e,t){let r=`REPLACE`,i=f(e,t);function a(){_(e,t)}if(m(r,i,a)){let[e,t]=p(i,s??0);n.replaceState(e,``,t),h(r)}}function v(e){n.go(e)}return{get action(){return o},get location(){return c},createHref:d,push:g,replace:_,go:v,back(){v(-1)},forward(){v(1)},listen(e){return l.push(e)},block(e){let n=u.push(e);return u.length===1&&t.addEventListener(nr,$n),()=>{n(),u.length||t.removeEventListener(nr,$n)}}}}function or(e={}){let{window:t=document.defaultView}=e,n=t.history;function r(){let{pathname:e=`/`,search:r=``,hash:i=``}=er(t.location.hash.slice(1)),a=n.state??{};return[a.idx,tr({pathname:e,search:r,hash:i,state:a.usr??null,key:a.key??`default`})]}let i=null;function a(){if(i)u.call(i),i=null;else{let[e,t]=r();if(u.length){if(e!=null){let n=(s??0)-e;n&&(i={action:`POP`,location:t,retry(){y(n*-1)}},y(n))}}else g(`POP`)}}t.addEventListener(rr,a),t.addEventListener(ir,()=>{let[,e]=r();V(e)!==V(c)&&a()});let o=`POP`,[s,c]=r(),l=Xn(),u=Xn();s??(s=0,n.replaceState({...n.state,idx:s},``));function d(){let e=document.querySelector(`base`),n=``;if(e?.getAttribute(`href`)){let e=t.location.href,r=e.indexOf(`#`);n=r===-1?e:e.slice(0,r)}return n}function f(e){return d()+`#`+(typeof e==`string`?e:V(e))}function p(e,t=null){return tr({pathname:c.pathname,hash:``,search:``,...typeof e==`string`?er(e):e,state:t,key:Zn()})}function m(e,t){return[{usr:e.state,key:e.key,idx:t},f(e)]}function h(e,t,n){return u.length?(u.call({action:e,location:t,retry:n}),!1):!0}function g(e){o=e,[s,c]=r(),l.call({action:o,location:c})}function _(e,r){let i=`PUSH`,a=p(e,r);function o(){_(e,r)}if(h(i,a,o)){let[e,r]=m(a,(s??0)+1);try{n.pushState(e,``,r)}catch{t.location.assign(r)}g(i)}}function v(e,t){let r=`REPLACE`,i=p(e,t);function a(){v(e,t)}if(h(r,i,a)){let[e,t]=m(i,s??0);n.replaceState(e,``,t),g(r)}}function y(e){n.go(e)}return{get action(){return o},get location(){return c},createHref:f,push:_,replace:v,go:y,back(){y(-1)},forward(){y(1)},listen(e){return l.push(e)},block(e){let n=u.push(e);return u.length===1&&t.addEventListener(nr,$n),()=>{n(),u.length||t.removeEventListener(nr,$n)}}}}function sr(e={}){let{initialEntries:t=[`/`],initialIndex:n}=e,r=t.map(e=>tr({pathname:`/`,search:``,hash:``,state:null,key:Zn(),...typeof e==`string`?er(e):e})),i=Qn(n??r.length-1,0,r.length-1),a=`POP`,o=r[i],s=Xn(),c=Xn();function l(e){return typeof e==`string`?e:V(e)}function u(e,t=null){return tr({pathname:o.pathname,search:``,hash:``,...typeof e==`string`?er(e):e,state:t,key:Zn()})}function d(e,t,n){return c.length?(c.call({action:e,location:t,retry:n}),!1):!0}function f(e,t){a=e,o=t,s.call({action:a,location:o})}function p(e,t){let n=`PUSH`,a=u(e,t);function o(){p(e,t)}d(n,a,o)&&(i+=1,r.splice(i,r.length,a),f(n,a))}function m(e,t){let n=`REPLACE`,a=u(e,t);function o(){m(e,t)}d(n,a,o)&&(r[i]=a,f(n,a))}function h(e){let t=Qn(i+e,0,r.length-1),n=r[t];function a(){h(e)}d(`POP`,n,a)&&(i=t,f(`POP`,n))}return{get index(){return i},get action(){return a},get location(){return o},createHref:l,push:p,replace:m,go:h,back(){h(-1)},forward(){h(1)},listen(e){return s.push(e)},block(e){return c.push(e)}}}function cr(e,n,r){let i=(0,t.reactive)({...n}),a=e=>{Object.assign(i,{...e})},o=i;return{currentRoute:o,routerRoute:bn(e,o,r),updateRoute:a}}function lr(e){return t=>{let{host:n}=L(t);return!(n===void 0||n===e)}}function ur(e){try{let t=e();return De(t)?t.catch(e=>e):t}catch(e){return e}}function dr(){let{setVueApp:e,runWithContext:n}=on(),r=(0,t.reactive)(new Map),i=(e,t,r)=>{let{push:i,replace:a,reject:o,update:s}=sn({to:t});return t.matches.filter(t=>kn({...r,routePrefetch:t.prefetch},`props`)===e).flatMap(e=>d(e)).reduce((e,{id:r,name:l,props:d})=>{if(!d)return e;let f=u(r,l,t);return e[f]=n(()=>ur(()=>d(t,{push:i,replace:a,reject:o,update:s,parent:c(t,!0)}))),e},{})},a=e=>{Object.entries(e).forEach(([e,t])=>{r.set(e,t)})},o=async e=>{let{push:t,replace:i,reject:a,update:o}=sn({to:e}),s=e.matches.flatMap(d),l=[],p=[];for(let{id:d,name:f,props:m}of s){if(!m)continue;let s=u(d,f,e);if(l.push(s),!r.has(s)){let l=n(()=>ur(()=>m(e,{push:t,replace:i,reject:a,update:o,parent:c(e)})));r.set(s,l)}p.push((async()=>{let e=await r.get(s);if(e instanceof Error)throw e})())}f(l);try{return await Promise.all(p),{status:`SUCCESS`}}catch(e){if(e instanceof z||e instanceof B)return e.response;throw e}},s=(e,t,n)=>{let i=u(e,t,n);return r.get(i)};function c(e,t=!1){let n=e.matches.at(-2);if(n)return E(n)?{name:n.name??``,get props(){return l(n,`default`,e,t)}}:O(n)?{name:n.name??``,props:new Proxy({},{get(r,i){return typeof i==`string`?l(n,i,e,t):Reflect.get(r,i)}})}:{name:n.name??``,props:void 0}}function l(e,t,n,r=!1){let i=s(e.id,t,n);if(r&&!i){let r=e.name??`unknown`,i=n.name||`unknown`;console.warn(`
|
|
2
|
+
Unable to access parent props "${t}" from route "${r}" while prefetching props for route "${i}".
|
|
3
3
|
This may occur if the parent route's props were not also prefetched.
|
|
4
|
-
`)}return R}function E(u,c,d){return[u,c,d.id,JSON.stringify(d.params)].join("-")}function g(u){return Zt(u)?[{id:u.id,name:"default",props:u.props}]:$t(u)?Object.entries(u.props).map(([c,d])=>({id:u.id,name:c,props:d})):[]}function p(u){for(const c of n.keys())u.includes(c)||n.delete(c)}return{getPrefetchProps:r,setPrefetchProps:o,getProps:i,setProps:s,setVueApp:e}}function Je(){return typeof window<"u"&&typeof window.document<"u"}function fi({mode:e,listener:t}){const n=li(e),r=(f,E)=>{if(E?.replace){n.replace(f,E.state);return}n.push(f,E?.state)},o=()=>{const f=_e(n.location);n.replace(f)};let s;return{...n,update:r,refresh:o,startListening:()=>{s?.(),s=n.listen(t)},stopListening:()=>{s?.()}}}function li(e="auto"){switch(e){case"auto":return Je()?xr():Mr();case"browser":return xr();case"memory":return Mr();case"hash":return ii();default:const t=e;throw new Error(`Switch is not exhaustive for mode: ${t}`)}}class di extends Error{constructor(){super("initialUrl must be set if window.location is unavailable")}}function pi(e){if(e)return e;if(Je())return window.location.toString();throw new di}function jr(e){return!!e&&typeof e=="object"}const Pt={isOptional:!0,isGreedy:!1};function hi(e,t,n){if(jr(e)&&t in e){const r=e[t];return typeof r=="string"?he(r,{param:n,...Pt}):r}return he(void 0,{param:n,...Pt})}function Ei(e,t){const n={};for(const[r,o]of Object.entries(e)){const s=hi(t,r,o);n[r]=s}return n}function gi(e,t,n){if(jr(e)&&t in e){const r=e[t];return ae(r,{param:n,...Pt})}return ae(void 0,{param:n,...Pt})}const Hr=(e,t)=>{const n={};for(const[r,o]of Object.entries(e)){const s=gi(t,r,o);n[r]=s}return n};function _i(){const e=S.reactive(new Map),t=Je()?i():null,n=a=>{e.set(a,!1),t?.observe(a)},r=a=>{e.delete(a),t?.unobserve(a)},o=()=>{t?.disconnect()},s=a=>e.get(a)??!1;function i(){return new IntersectionObserver(a=>{a.forEach(f=>{e.set(f.target,f.isIntersecting)})})}return{observe:n,unobserve:r,disconnect:o,isElementVisible:s}}class mi extends Error{constructor(t){super(`Route not found: "${t}"`)}}function Zr(e,t={},n={}){const r=e.stringify(t),o=Ze(r,{query:new URLSearchParams(n.query),hash:n.hash}),{query:s,hash:i}=X(o),{promise:a,resolve:f}=Promise.withResolvers(),E={...e,query:hr(s),state:Ei(e.state,n.state),hash:i,params:t,href:o,title:a};return yi(E).then(f),E}async function yi(e){if(te(e))return e.getTitle(e)}class Ri extends Error{constructor(t){super(`Invalid Name "${t}": Router does not support multiple routes with the same name. All name names must be unique.`)}}function Gr(e){return"name"in e&&ne(e.name)}function Si(e,t){return ne(t)?{...e,...cn(Ne({path:t}),e)}:e}function Ti(e,t=[],n={}){const r=new Map,o=new Map,s=[...e,...t.map(c=>c.routes)],i=[...$o.map(c=>Er({type:c})),...n.rejections??[],...t.map(c=>c.rejections)];function a(c){if(!te(c)||!Gr(c))return;const d=r.get(c.name);if(d&&d.id!==c.id)throw new Ri(c.name);if(!(d&&d.id===c.id)){r.set(c.name,Si(c,n.base));for(const m of c.context)te(m)&&a(m),Bt(m)&&f(m)}}function f(c){Bt(c)&&o.set(c.type,c)}function E(c){for(const d of c)a(d)}function g(c){for(const d of c)f(d)}for(const c of s){if(Oi(c)){E(c);continue}a(c)}for(const c of i){if(wi(c)){g(c);continue}f(c)}function p(c){return r.get(c)}function u(c){return o.get(c)}return{routes:Array.from(r.values()).sort(Pi),rejections:Array.from(o.values()),getRouteByName:p,getRejectionByType:u}}function Oi(e){return Array.isArray(e)}function wi(e){return Array.isArray(e)}function Pi(e,t){return t.depth-e.depth}function Ii(e=[]){const t=new ie;return e.forEach(n=>{Xs(n)&&(n.hooks.onBeforeRouteEnter.forEach(r=>t.onBeforeRouteEnter.add(r)),n.hooks.onBeforeRouteUpdate.forEach(r=>t.onBeforeRouteUpdate.add(r)),n.hooks.onBeforeRouteLeave.forEach(r=>t.onBeforeRouteLeave.add(r)),n.hooks.onAfterRouteEnter.forEach(r=>t.onAfterRouteEnter.add(r)),n.hooks.onAfterRouteUpdate.forEach(r=>t.onAfterRouteUpdate.add(r)),n.hooks.onAfterRouteLeave.forEach(r=>t.onAfterRouteLeave.add(r)))}),t}function Ni(e,{match:t,name:n,component:r}){const o=Pr(e),s=Rt(e);return S.defineComponent({name:"PropsWrapper",expose:[],setup(){const i=S.getCurrentInstance(),a=o(),f=s();return()=>{const E=a.getProps(t.id,n,f);return E instanceof Error?"":Qt(E)?i?.suspense?S.h(bi,{component:r,props:E}):S.h(Ai,{component:r,props:E}):S.h(r,E)}}})}const Ai=S.defineComponent(e=>{const t=S.ref();return S.watch(()=>e.props,async n=>{t.value=await n},{immediate:!0,deep:!0}),()=>t.value instanceof Error?"":t.value?S.h(e.component,t.value):""},{props:["component","props"]}),bi=S.defineComponent(async e=>{const t=S.ref();return t.value=await e.props,S.watch(()=>t.value,async n=>{t.value=await n},{deep:!0}),()=>t.value instanceof Error?"":t.value?S.h(e.component,t.value):""},{props:["component","props"]});function ki(e){const t=new Map;return{getRouteComponents:r=>{const o=t.get(r.id);if(o)return o;const s=Ci(e,r);return t.set(r.id,s),s}}}function Ci(e,t){const n=fn(e);return Gt(t)?$r(e,t,t.components):Ht(t)?$r(e,t,{default:t.component}):{default:n}}function $r(e,t,n){return Object.fromEntries(Object.entries(n).map(([r,o])=>[r,Ni(e,{match:t,name:r,component:o})]))}const qr=Symbol();var Ui=Object.create,Fr=Object.defineProperty,vi=Object.getOwnPropertyDescriptor,zr=Object.getOwnPropertyNames,Li=Object.getPrototypeOf,Di=Object.prototype.hasOwnProperty,Vi=(e,t)=>function(){return t||(0,e[zr(e)[0]])((t={exports:{}}).exports,t),t.exports},xi=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(var o=zr(t),s=0,i=o.length,a;s<i;s++)a=o[s],!Di.call(e,a)&&a!==n&&Fr(e,a,{get:(f=>t[f]).bind(null,a),enumerable:!(r=vi(t,a))||r.enumerable});return e},Mi=(e,t,n)=>(n=e!=null?Ui(Li(e)):{},xi(Fr(n,"default",{value:e,enumerable:!0}),e));const Wr=typeof navigator<"u",w=typeof window<"u"?window:typeof globalThis<"u"?globalThis:typeof global<"u"?global:{};typeof w.chrome<"u"&&w.chrome.devtools,Wr&&(w.self,w.top),typeof navigator<"u"&&navigator.userAgent?.toLowerCase().includes("electron");var Bi=Vi({"../../node_modules/.pnpm/rfdc@1.4.1/node_modules/rfdc/index.js":((e,t)=>{t.exports=r;function n(s){return s instanceof Buffer?Buffer.from(s):new s.constructor(s.buffer.slice(),s.byteOffset,s.length)}function r(s){if(s=s||{},s.circles)return o(s);const i=new Map;if(i.set(Date,p=>new Date(p)),i.set(Map,(p,u)=>new Map(f(Array.from(p),u))),i.set(Set,(p,u)=>new Set(f(Array.from(p),u))),s.constructorHandlers)for(const p of s.constructorHandlers)i.set(p[0],p[1]);let a=null;return s.proto?g:E;function f(p,u){const c=Object.keys(p),d=new Array(c.length);for(let m=0;m<c.length;m++){const R=c[m],h=p[R];typeof h!="object"||h===null?d[R]=h:h.constructor!==Object&&(a=i.get(h.constructor))?d[R]=a(h,u):ArrayBuffer.isView(h)?d[R]=n(h):d[R]=u(h)}return d}function E(p){if(typeof p!="object"||p===null)return p;if(Array.isArray(p))return f(p,E);if(p.constructor!==Object&&(a=i.get(p.constructor)))return a(p,E);const u={};for(const c in p){if(Object.hasOwnProperty.call(p,c)===!1)continue;const d=p[c];typeof d!="object"||d===null?u[c]=d:d.constructor!==Object&&(a=i.get(d.constructor))?u[c]=a(d,E):ArrayBuffer.isView(d)?u[c]=n(d):u[c]=E(d)}return u}function g(p){if(typeof p!="object"||p===null)return p;if(Array.isArray(p))return f(p,g);if(p.constructor!==Object&&(a=i.get(p.constructor)))return a(p,g);const u={};for(const c in p){const d=p[c];typeof d!="object"||d===null?u[c]=d:d.constructor!==Object&&(a=i.get(d.constructor))?u[c]=a(d,g):ArrayBuffer.isView(d)?u[c]=n(d):u[c]=g(d)}return u}}function o(s){const i=[],a=[],f=new Map;if(f.set(Date,c=>new Date(c)),f.set(Map,(c,d)=>new Map(g(Array.from(c),d))),f.set(Set,(c,d)=>new Set(g(Array.from(c),d))),s.constructorHandlers)for(const c of s.constructorHandlers)f.set(c[0],c[1]);let E=null;return s.proto?u:p;function g(c,d){const m=Object.keys(c),R=new Array(m.length);for(let h=0;h<m.length;h++){const T=m[h],y=c[T];if(typeof y!="object"||y===null)R[T]=y;else if(y.constructor!==Object&&(E=f.get(y.constructor)))R[T]=E(y,d);else if(ArrayBuffer.isView(y))R[T]=n(y);else{const l=i.indexOf(y);l!==-1?R[T]=a[l]:R[T]=d(y)}}return R}function p(c){if(typeof c!="object"||c===null)return c;if(Array.isArray(c))return g(c,p);if(c.constructor!==Object&&(E=f.get(c.constructor)))return E(c,p);const d={};i.push(c),a.push(d);for(const m in c){if(Object.hasOwnProperty.call(c,m)===!1)continue;const R=c[m];if(typeof R!="object"||R===null)d[m]=R;else if(R.constructor!==Object&&(E=f.get(R.constructor)))d[m]=E(R,p);else if(ArrayBuffer.isView(R))d[m]=n(R);else{const h=i.indexOf(R);h!==-1?d[m]=a[h]:d[m]=p(R)}}return i.pop(),a.pop(),d}function u(c){if(typeof c!="object"||c===null)return c;if(Array.isArray(c))return g(c,u);if(c.constructor!==Object&&(E=f.get(c.constructor)))return E(c,u);const d={};i.push(c),a.push(d);for(const m in c){const R=c[m];if(typeof R!="object"||R===null)d[m]=R;else if(R.constructor!==Object&&(E=f.get(R.constructor)))d[m]=E(R,u);else if(ArrayBuffer.isView(R))d[m]=n(R);else{const h=i.indexOf(R);h!==-1?d[m]=a[h]:d[m]=u(R)}}return i.pop(),a.pop(),d}}})}),ji=Mi(Bi());const Hi=/(?:^|[-_/])(\w)/g;function Zi(e,t){return t?t.toUpperCase():""}function Gi(e){return e&&`${e}`.replace(Hi,Zi)}function $i(e,t){let n=e.replace(/^[a-z]:/i,"").replace(/\\/g,"/");n.endsWith(`index${t}`)&&(n=n.replace(`/index${t}`,t));const r=n.lastIndexOf("/"),o=n.substring(r+1);{const s=o.lastIndexOf(t);return o.substring(0,s)}}const Kr=(0,ji.default)({circles:!0}),qi={trailing:!0};function ke(e,t=25,n={}){if(n={...qi,...n},!Number.isFinite(t))throw new TypeError("Expected `wait` to be a finite number");let r,o,s=[],i,a;const f=(p,u)=>(i=Fi(e,p,u),i.finally(()=>{if(i=null,n.trailing&&a&&!o){const c=f(p,a);return a=null,c}}),i),E=function(...p){return n.trailing&&(a=p),i||new Promise(u=>{const c=!o&&n.leading;clearTimeout(o),o=setTimeout(()=>{o=null;const d=n.leading?r:f(this,p);a=null;for(const m of s)m(d);s=[]},t),c?(r=f(this,p),u(r)):s.push(u)})},g=p=>{p&&(clearTimeout(p),o=null)};return E.isPending=()=>!!o,E.cancel=()=>{g(o),s=[],a=null},E.flush=()=>{if(g(o),!a||i)return;const p=a;return a=null,f(this,p)},E}async function Fi(e,t,n){return await e.apply(t,n)}function dn(e,t={},n){for(const r in e){const o=e[r],s=n?`${n}:${r}`:r;typeof o=="object"&&o!==null?dn(o,t,s):typeof o=="function"&&(t[s]=o)}return t}const zi={run:e=>e()},Wi=()=>zi,Jr=typeof console.createTask<"u"?console.createTask:Wi;function Ki(e,t){const n=t.shift(),r=Jr(n);return e.reduce((o,s)=>o.then(()=>r.run(()=>s(...t))),Promise.resolve())}function Ji(e,t){const n=t.shift(),r=Jr(n);return Promise.all(e.map(o=>r.run(()=>o(...t))))}function pn(e,t){for(const n of[...e])n(t)}class Yi{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,n,r={}){if(!t||typeof n!="function")return()=>{};const o=t;let s;for(;this._deprecatedHooks[t];)s=this._deprecatedHooks[t],t=s.to;if(s&&!r.allowDeprecated){let i=s.message;i||(i=`${o} hook has been deprecated`+(s.to?`, please use ${s.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}if(!n.name)try{Object.defineProperty(n,"name",{get:()=>"_"+t.replace(/\W+/g,"_")+"_hook_cb",configurable:!0})}catch{}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(n),()=>{n&&(this.removeHook(t,n),n=void 0)}}hookOnce(t,n){let r,o=(...s)=>(typeof r=="function"&&r(),r=void 0,o=void 0,n(...s));return r=this.hook(t,o),r}removeHook(t,n){if(this._hooks[t]){const r=this._hooks[t].indexOf(n);r!==-1&&this._hooks[t].splice(r,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,n){this._deprecatedHooks[t]=typeof n=="string"?{to:n}:n;const r=this._hooks[t]||[];delete this._hooks[t];for(const o of r)this.hook(t,o)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const n in t)this.deprecateHook(n,t[n])}addHooks(t){const n=dn(t),r=Object.keys(n).map(o=>this.hook(o,n[o]));return()=>{for(const o of r.splice(0,r.length))o()}}removeHooks(t){const n=dn(t);for(const r in n)this.removeHook(r,n[r])}removeAllHooks(){for(const t in this._hooks)delete this._hooks[t]}callHook(t,...n){return n.unshift(t),this.callHookWith(Ki,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(Ji,t,...n)}callHookWith(t,n,...r){const o=this._before||this._after?{name:n,args:r,context:{}}:void 0;this._before&&pn(this._before,o);const s=t(n in this._hooks?[...this._hooks[n]]:[],r);return s instanceof Promise?s.finally(()=>{this._after&&o&&pn(this._after,o)}):(this._after&&o&&pn(this._after,o),s)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{if(this._before!==void 0){const n=this._before.indexOf(t);n!==-1&&this._before.splice(n,1)}}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{if(this._after!==void 0){const n=this._after.indexOf(t);n!==-1&&this._after.splice(n,1)}}}}function Yr(){return new Yi}var Qi=Object.create,Qr=Object.defineProperty,Xi=Object.getOwnPropertyDescriptor,Xr=Object.getOwnPropertyNames,ea=Object.getPrototypeOf,ta=Object.prototype.hasOwnProperty,eo=(e,t)=>function(){return t||(0,e[Xr(e)[0]])((t={exports:{}}).exports,t),t.exports},na=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(var o=Xr(t),s=0,i=o.length,a;s<i;s++)a=o[s],!ta.call(e,a)&&a!==n&&Qr(e,a,{get:(f=>t[f]).bind(null,a),enumerable:!(r=Xi(t,a))||r.enumerable});return e},ra=(e,t,n)=>(n=e!=null?Qi(ea(e)):{},na(Qr(n,"default",{value:e,enumerable:!0}),e));function oa(e){const t=e.name||e._componentTag||e.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__||e.__name;return t==="index"&&e.__file?.endsWith("index.vue")?"":t}function sa(e){const t=e.__file;if(t)return Gi($i(t,".vue"))}function to(e,t){return e.type.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__=t,t}function hn(e){if(e.__VUE_DEVTOOLS_NEXT_APP_RECORD__)return e.__VUE_DEVTOOLS_NEXT_APP_RECORD__;if(e.root)return e.appContext.app.__VUE_DEVTOOLS_NEXT_APP_RECORD__}function no(e){const t=e.subTree?.type,n=hn(e);return n?n?.types?.Fragment===t:!1}function It(e){const t=oa(e?.type||{});if(t)return t;if(e?.root===e)return"Root";for(const r in e.parent?.type?.components)if(e.parent.type.components[r]===e?.type)return to(e,r);for(const r in e.appContext?.components)if(e.appContext.components[r]===e?.type)return to(e,r);const n=sa(e?.type||{});return n||"Anonymous Component"}function ia(e){return`${e?.appContext?.app?.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__??0}:${e===e?.root?"root":e.uid}`}function En(e,t){return t=t||`${e.id}:root`,e.instanceMap.get(t)||e.instanceMap.get(":root")}function aa(){const e={top:0,bottom:0,left:0,right:0,get width(){return e.right-e.left},get height(){return e.bottom-e.top}};return e}let Nt;function ca(e){return Nt||(Nt=document.createRange()),Nt.selectNode(e),Nt.getBoundingClientRect()}function ua(e){const t=aa();if(!e.children)return t;for(let n=0,r=e.children.length;n<r;n++){const o=e.children[n];let s;if(o.component)s=me(o.component);else if(o.el){const i=o.el;i.nodeType===1||i.getBoundingClientRect?s=i.getBoundingClientRect():i.nodeType===3&&i.data.trim()&&(s=ca(i))}s&&fa(t,s)}return t}function fa(e,t){return(!e.top||t.top<e.top)&&(e.top=t.top),(!e.bottom||t.bottom>e.bottom)&&(e.bottom=t.bottom),(!e.left||t.left<e.left)&&(e.left=t.left),(!e.right||t.right>e.right)&&(e.right=t.right),e}const ro={top:0,left:0,right:0,bottom:0,width:0,height:0};function me(e){const t=e.subTree.el;return typeof window>"u"?ro:no(e)?ua(e.subTree):t?.nodeType===1?t?.getBoundingClientRect():e.subTree.component?me(e.subTree.component):ro}function gn(e){return no(e)?la(e.subTree):e.subTree?[e.subTree.el]:[]}function la(e){if(!e.children)return[];const t=[];return e.children.forEach(n=>{n.component?t.push(...gn(n.component)):n?.el&&t.push(n.el)}),t}const oo="__vue-devtools-component-inspector__",so="__vue-devtools-component-inspector__card__",io="__vue-devtools-component-inspector__name__",ao="__vue-devtools-component-inspector__indicator__",co={display:"block",zIndex:2147483640,position:"fixed",backgroundColor:"#42b88325",border:"1px solid #42b88350",borderRadius:"5px",transition:"all 0.1s ease-in",pointerEvents:"none"},da={fontFamily:"Arial, Helvetica, sans-serif",padding:"5px 8px",borderRadius:"4px",textAlign:"left",position:"absolute",left:0,color:"#e9e9e9",fontSize:"14px",fontWeight:600,lineHeight:"24px",backgroundColor:"#42b883",boxShadow:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)"},pa={display:"inline-block",fontWeight:400,fontStyle:"normal",fontSize:"12px",opacity:.7};function Ce(){return document.getElementById(oo)}function ha(){return document.getElementById(so)}function Ea(){return document.getElementById(ao)}function ga(){return document.getElementById(io)}function _n(e){return{left:`${Math.round(e.left*100)/100}px`,top:`${Math.round(e.top*100)/100}px`,width:`${Math.round(e.width*100)/100}px`,height:`${Math.round(e.height*100)/100}px`}}function mn(e){const t=document.createElement("div");t.id=e.elementId??oo,Object.assign(t.style,{...co,..._n(e.bounds),...e.style});const n=document.createElement("span");n.id=so,Object.assign(n.style,{...da,top:e.bounds.top<35?0:"-35px"});const r=document.createElement("span");r.id=io,r.innerHTML=`<${e.name}> `;const o=document.createElement("i");return o.id=ao,o.innerHTML=`${Math.round(e.bounds.width*100)/100} x ${Math.round(e.bounds.height*100)/100}`,Object.assign(o.style,pa),n.appendChild(r),n.appendChild(o),t.appendChild(n),document.body.appendChild(t),t}function yn(e){const t=Ce(),n=ha(),r=ga(),o=Ea();t&&(Object.assign(t.style,{...co,..._n(e.bounds)}),Object.assign(n.style,{top:e.bounds.top<35?0:"-35px"}),r.innerHTML=`<${e.name}> `,o.innerHTML=`${Math.round(e.bounds.width*100)/100} x ${Math.round(e.bounds.height*100)/100}`)}function _a(e){const t=me(e);if(!t.width&&!t.height)return;const n=It(e);Ce()?yn({bounds:t,name:n}):mn({bounds:t,name:n})}function uo(){const e=Ce();e&&(e.style.display="none")}let Rn=null;function Sn(e){const t=e.target;if(t){const n=t.__vueParentComponent;if(n&&(Rn=n,n.vnode.el)){const r=me(n),o=It(n);Ce()?yn({bounds:r,name:o}):mn({bounds:r,name:o})}}}function ma(e,t){e.preventDefault(),e.stopPropagation(),Rn&&t(ia(Rn))}let At=null;function ya(){uo(),window.removeEventListener("mouseover",Sn),window.removeEventListener("click",At,!0),At=null}function Ra(){return window.addEventListener("mouseover",Sn),new Promise(e=>{function t(n){n.preventDefault(),n.stopPropagation(),ma(n,r=>{window.removeEventListener("click",t,!0),At=null,window.removeEventListener("mouseover",Sn);const o=Ce();o&&(o.style.display="none"),e(JSON.stringify({id:r}))})}At=t,window.addEventListener("click",t,!0)})}function Sa(e){const t=En(G.value,e.id);if(t){const[n]=gn(t);if(typeof n.scrollIntoView=="function")n.scrollIntoView({behavior:"smooth"});else{const r=me(t),o=document.createElement("div"),s={..._n(r),position:"absolute"};Object.assign(o.style,s),document.body.appendChild(o),o.scrollIntoView({behavior:"smooth"}),setTimeout(()=>{document.body.removeChild(o)},2e3)}setTimeout(()=>{const r=me(t);if(r.width||r.height){const o=It(t),s=Ce();s?yn({...e,name:o,bounds:r}):mn({...e,name:o,bounds:r}),setTimeout(()=>{s&&(s.style.display="none")},1500)}},1200)}}w.__VUE_DEVTOOLS_COMPONENT_INSPECTOR_ENABLED__??=!0;function Ta(e){let t=0;const n=setInterval(()=>{w.__VUE_INSPECTOR__&&(clearInterval(n),t+=30,e()),t>=5e3&&clearInterval(n)},30)}function Oa(){const e=w.__VUE_INSPECTOR__,t=e.openInEditor;e.openInEditor=async(...n)=>{e.disable(),t(...n)}}function wa(){return new Promise(e=>{function t(){Oa(),e(w.__VUE_INSPECTOR__)}w.__VUE_INSPECTOR__?t():Ta(()=>{t()})})}let bt=(function(e){return e.SKIP="__v_skip",e.IS_REACTIVE="__v_isReactive",e.IS_READONLY="__v_isReadonly",e.IS_SHALLOW="__v_isShallow",e.RAW="__v_raw",e})({});function Pa(e){return!!(e&&e[bt.IS_READONLY])}function fo(e){return Pa(e)?fo(e[bt.RAW]):!!(e&&e[bt.IS_REACTIVE])}function Tn(e){return!!(e&&e.__v_isRef===!0)}function Ye(e){const t=e&&e[bt.RAW];return t?Ye(t):e}var Ia=class{constructor(){this.refEditor=new Na}set(e,t,n,r){const o=Array.isArray(t)?t:t.split(".");for(;o.length>1;){const a=o.shift();e instanceof Map?e=e.get(a):e instanceof Set?e=Array.from(e.values())[a]:e=e[a],this.refEditor.isRef(e)&&(e=this.refEditor.get(e))}const s=o[0],i=this.refEditor.get(e)[s];r?r(e,s,n):this.refEditor.isRef(i)?this.refEditor.set(i,n):e[s]=n}get(e,t){const n=Array.isArray(t)?t:t.split(".");for(let r=0;r<n.length;r++)if(e instanceof Map?e=e.get(n[r]):e=e[n[r]],this.refEditor.isRef(e)&&(e=this.refEditor.get(e)),!e)return;return e}has(e,t,n=!1){if(typeof e>"u")return!1;const r=Array.isArray(t)?t.slice():t.split("."),o=n?2:1;for(;e&&r.length>o;){const s=r.shift();e=e[s],this.refEditor.isRef(e)&&(e=this.refEditor.get(e))}return e!=null&&Object.prototype.hasOwnProperty.call(e,r[0])}createDefaultSetCallback(e){return(t,n,r)=>{if((e.remove||e.newKey)&&(Array.isArray(t)?t.splice(n,1):Ye(t)instanceof Map?t.delete(n):Ye(t)instanceof Set?t.delete(Array.from(t.values())[n]):Reflect.deleteProperty(t,n)),!e.remove){const o=t[e.newKey||n];this.refEditor.isRef(o)?this.refEditor.set(o,r):Ye(t)instanceof Map?t.set(e.newKey||n,r):Ye(t)instanceof Set?t.add(r):t[e.newKey||n]=r}}}},Na=class{set(e,t){if(Tn(e))e.value=t;else{if(e instanceof Set&&Array.isArray(t)){e.clear(),t.forEach(o=>e.add(o));return}const n=Object.keys(t);if(e instanceof Map){const o=new Set(e.keys());n.forEach(s=>{e.set(s,Reflect.get(t,s)),o.delete(s)}),o.forEach(s=>e.delete(s));return}const r=new Set(Object.keys(e));n.forEach(o=>{Reflect.set(e,o,Reflect.get(t,o)),r.delete(o)}),r.forEach(o=>Reflect.deleteProperty(e,o))}}get(e){return Tn(e)?e.value:e}isRef(e){return Tn(e)||fo(e)}};const Aa="__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS_STATE__";function ba(){if(typeof window>"u"||!Wr||typeof localStorage>"u"||localStorage===null)return{recordingState:!1,mouseEventEnabled:!1,keyboardEventEnabled:!1,componentEventEnabled:!1,performanceEventEnabled:!1,selected:""};const e=typeof localStorage.getItem<"u"?localStorage.getItem(Aa):null;return e?JSON.parse(e):{recordingState:!1,mouseEventEnabled:!1,keyboardEventEnabled:!1,componentEventEnabled:!1,performanceEventEnabled:!1,selected:""}}w.__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS??=[];const ka=new Proxy(w.__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS,{get(e,t,n){return Reflect.get(e,t,n)}});function Ca(e,t){x.timelineLayersState[t.id]=!1,ka.push({...e,descriptorId:t.id,appRecord:hn(t.app)})}w.__VUE_DEVTOOLS_KIT_INSPECTOR__??=[];const On=new Proxy(w.__VUE_DEVTOOLS_KIT_INSPECTOR__,{get(e,t,n){return Reflect.get(e,t,n)}}),lo=ke(()=>{ve.hooks.callHook(ye.SEND_INSPECTOR_TO_CLIENT,po())});function Ua(e,t){On.push({options:e,descriptor:t,treeFilterPlaceholder:e.treeFilterPlaceholder??"Search tree...",stateFilterPlaceholder:e.stateFilterPlaceholder??"Search state...",treeFilter:"",selectedNodeId:"",appRecord:hn(t.app)}),lo()}function po(){return On.filter(e=>e.descriptor.app===G.value.app).filter(e=>e.descriptor.id!=="components").map(e=>{const t=e.descriptor,n=e.options;return{id:n.id,label:n.label,logo:t.logo,icon:`custom-ic-baseline-${n?.icon?.replace(/_/g,"-")}`,packageName:t.packageName,homepage:t.homepage,pluginId:t.id}})}function kt(e,t){return On.find(n=>n.options.id===e&&(t?n.descriptor.app===t:!0))}let H=(function(e){return e.VISIT_COMPONENT_TREE="visitComponentTree",e.INSPECT_COMPONENT="inspectComponent",e.EDIT_COMPONENT_STATE="editComponentState",e.GET_INSPECTOR_TREE="getInspectorTree",e.GET_INSPECTOR_STATE="getInspectorState",e.EDIT_INSPECTOR_STATE="editInspectorState",e.INSPECT_TIMELINE_EVENT="inspectTimelineEvent",e.TIMELINE_CLEARED="timelineCleared",e.SET_PLUGIN_SETTINGS="setPluginSettings",e})({}),L=(function(e){return e.ADD_INSPECTOR="addInspector",e.SEND_INSPECTOR_TREE="sendInspectorTree",e.SEND_INSPECTOR_STATE="sendInspectorState",e.CUSTOM_INSPECTOR_SELECT_NODE="customInspectorSelectNode",e.TIMELINE_LAYER_ADDED="timelineLayerAdded",e.TIMELINE_EVENT_ADDED="timelineEventAdded",e.GET_COMPONENT_INSTANCES="getComponentInstances",e.GET_COMPONENT_BOUNDS="getComponentBounds",e.GET_COMPONENT_NAME="getComponentName",e.COMPONENT_HIGHLIGHT="componentHighlight",e.COMPONENT_UNHIGHLIGHT="componentUnhighlight",e})({}),ye=(function(e){return e.SEND_INSPECTOR_TREE_TO_CLIENT="sendInspectorTreeToClient",e.SEND_INSPECTOR_STATE_TO_CLIENT="sendInspectorStateToClient",e.SEND_TIMELINE_EVENT_TO_CLIENT="sendTimelineEventToClient",e.SEND_INSPECTOR_TO_CLIENT="sendInspectorToClient",e.SEND_ACTIVE_APP_UNMOUNTED_TO_CLIENT="sendActiveAppUpdatedToClient",e.DEVTOOLS_STATE_UPDATED="devtoolsStateUpdated",e.DEVTOOLS_CONNECTED_UPDATED="devtoolsConnectedUpdated",e.ROUTER_INFO_UPDATED="routerInfoUpdated",e})({});function va(){const e=Yr();e.hook(L.ADD_INSPECTOR,({inspector:r,plugin:o})=>{Ua(r,o.descriptor)});const t=ke(async({inspectorId:r,plugin:o})=>{if(!r||!o?.descriptor?.app||x.highPerfModeEnabled)return;const s=kt(r,o.descriptor.app),i={app:o.descriptor.app,inspectorId:r,filter:s?.treeFilter||"",rootNodes:[]};await new Promise(a=>{e.callHookWith(async f=>{await Promise.all(f.map(E=>E(i))),a()},H.GET_INSPECTOR_TREE)}),e.callHookWith(async a=>{await Promise.all(a.map(f=>f({inspectorId:r,rootNodes:i.rootNodes})))},ye.SEND_INSPECTOR_TREE_TO_CLIENT)},120);e.hook(L.SEND_INSPECTOR_TREE,t);const n=ke(async({inspectorId:r,plugin:o})=>{if(!r||!o?.descriptor?.app||x.highPerfModeEnabled)return;const s=kt(r,o.descriptor.app),i={app:o.descriptor.app,inspectorId:r,nodeId:s?.selectedNodeId||"",state:null},a={currentTab:`custom-inspector:${r}`};i.nodeId&&await new Promise(f=>{e.callHookWith(async E=>{await Promise.all(E.map(g=>g(i,a))),f()},H.GET_INSPECTOR_STATE)}),e.callHookWith(async f=>{await Promise.all(f.map(E=>E({inspectorId:r,nodeId:i.nodeId,state:i.state})))},ye.SEND_INSPECTOR_STATE_TO_CLIENT)},120);return e.hook(L.SEND_INSPECTOR_STATE,n),e.hook(L.CUSTOM_INSPECTOR_SELECT_NODE,({inspectorId:r,nodeId:o,plugin:s})=>{const i=kt(r,s.descriptor.app);i&&(i.selectedNodeId=o)}),e.hook(L.TIMELINE_LAYER_ADDED,({options:r,plugin:o})=>{Ca(r,o.descriptor)}),e.hook(L.TIMELINE_EVENT_ADDED,({options:r,plugin:o})=>{x.highPerfModeEnabled||!x.timelineLayersState?.[o.descriptor.id]&&!["performance","component-event","keyboard","mouse"].includes(r.layerId)||e.callHookWith(async s=>{await Promise.all(s.map(i=>i(r)))},ye.SEND_TIMELINE_EVENT_TO_CLIENT)}),e.hook(L.GET_COMPONENT_INSTANCES,async({app:r})=>{const o=r.__VUE_DEVTOOLS_NEXT_APP_RECORD__;if(!o)return null;const s=o.id.toString();return[...o.instanceMap].filter(([i])=>i.split(":")[0]===s).map(([,i])=>i)}),e.hook(L.GET_COMPONENT_BOUNDS,async({instance:r})=>me(r)),e.hook(L.GET_COMPONENT_NAME,({instance:r})=>It(r)),e.hook(L.COMPONENT_HIGHLIGHT,({uid:r})=>{const o=G.value.instanceMap.get(r);o&&_a(o)}),e.hook(L.COMPONENT_UNHIGHLIGHT,()=>{uo()}),e}w.__VUE_DEVTOOLS_KIT_APP_RECORDS__??=[],w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__??={},w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__??="",w.__VUE_DEVTOOLS_KIT_CUSTOM_TABS__??=[],w.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__??=[];const Ue="__VUE_DEVTOOLS_KIT_GLOBAL_STATE__";function La(){return{connected:!1,clientConnected:!1,vitePluginDetected:!0,appRecords:[],activeAppRecordId:"",tabs:[],commands:[],highPerfModeEnabled:!0,devtoolsClientDetected:{},perfUniqueGroupId:0,timelineLayersState:ba()}}w[Ue]??=La();const Da=ke(e=>{ve.hooks.callHook(ye.DEVTOOLS_STATE_UPDATED,{state:e})});ke((e,t)=>{ve.hooks.callHook(ye.DEVTOOLS_CONNECTED_UPDATED,{state:e,oldState:t})});const Ct=new Proxy(w.__VUE_DEVTOOLS_KIT_APP_RECORDS__,{get(e,t,n){return t==="value"?w.__VUE_DEVTOOLS_KIT_APP_RECORDS__:w.__VUE_DEVTOOLS_KIT_APP_RECORDS__[t]}}),G=new Proxy(w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__,{get(e,t,n){return t==="value"?w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__:t==="id"?w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__:w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__[t]}});function ho(){Da({...w[Ue],appRecords:Ct.value,activeAppRecordId:G.id,tabs:w.__VUE_DEVTOOLS_KIT_CUSTOM_TABS__,commands:w.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__})}function Va(e){w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__=e,ho()}function xa(e){w.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__=e,ho()}const x=new Proxy(w[Ue],{get(e,t){return t==="appRecords"?Ct:t==="activeAppRecordId"?G.id:t==="tabs"?w.__VUE_DEVTOOLS_KIT_CUSTOM_TABS__:t==="commands"?w.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__:w[Ue][t]},deleteProperty(e,t){return delete e[t],!0},set(e,t,n){return{...w[Ue]},e[t]=n,w[Ue][t]=n,!0}});function Ma(e={}){const{file:t,host:n,baseUrl:r=window.location.origin,line:o=0,column:s=0}=e;if(t){if(n==="chrome-extension"){const i=t.replace(/\\/g,"\\\\"),a=window.VUE_DEVTOOLS_CONFIG?.openInEditorHost??"/";fetch(`${a}__open-in-editor?file=${encodeURI(t)}`).then(f=>{if(!f.ok){const E=`Opening component ${i} failed`;console.log(`%c${E}`,"color:red")}})}else if(x.vitePluginDetected){const i=w.__VUE_DEVTOOLS_OPEN_IN_EDITOR_BASE_URL__??r;w.__VUE_INSPECTOR__.openInEditor(i,t,o,s)}}}w.__VUE_DEVTOOLS_KIT_PLUGIN_BUFFER__??=[];const wn=new Proxy(w.__VUE_DEVTOOLS_KIT_PLUGIN_BUFFER__,{get(e,t,n){return Reflect.get(e,t,n)}});function Pn(e){const t={};return Object.keys(e).forEach(n=>{t[n]=e[n].defaultValue}),t}function In(e){return`__VUE_DEVTOOLS_NEXT_PLUGIN_SETTINGS__${e}__`}function Ba(e){return(wn.find(t=>t[0].id===e&&!!t[0]?.settings)?.[0]??null)?.settings??null}function Eo(e,t){const n=In(e);if(n){const r=localStorage.getItem(n);if(r)return JSON.parse(r)}return Pn(e?(wn.find(r=>r[0].id===e)?.[0]??null)?.settings??{}:t)}function ja(e,t){const n=In(e);localStorage.getItem(n)||localStorage.setItem(n,JSON.stringify(Pn(t)))}function Ha(e,t,n){const r=In(e),o=localStorage.getItem(r),s=JSON.parse(o||"{}"),i={...s,[t]:n};localStorage.setItem(r,JSON.stringify(i)),ve.hooks.callHookWith(a=>{a.forEach(f=>f({pluginId:e,key:t,oldValue:s[t],newValue:n,settings:i}))},H.SET_PLUGIN_SETTINGS)}let q=(function(e){return e.APP_INIT="app:init",e.APP_UNMOUNT="app:unmount",e.COMPONENT_UPDATED="component:updated",e.COMPONENT_ADDED="component:added",e.COMPONENT_REMOVED="component:removed",e.COMPONENT_EMIT="component:emit",e.PERFORMANCE_START="perf:start",e.PERFORMANCE_END="perf:end",e.ADD_ROUTE="router:add-route",e.REMOVE_ROUTE="router:remove-route",e.RENDER_TRACKED="render:tracked",e.RENDER_TRIGGERED="render:triggered",e.APP_CONNECTED="app:connected",e.SETUP_DEVTOOLS_PLUGIN="devtools-plugin:setup",e})({});const F=w.__VUE_DEVTOOLS_HOOK??=Yr(),go={on:{vueAppInit(e){F.hook(q.APP_INIT,e)},vueAppUnmount(e){F.hook(q.APP_UNMOUNT,e)},vueAppConnected(e){F.hook(q.APP_CONNECTED,e)},componentAdded(e){return F.hook(q.COMPONENT_ADDED,e)},componentEmit(e){return F.hook(q.COMPONENT_EMIT,e)},componentUpdated(e){return F.hook(q.COMPONENT_UPDATED,e)},componentRemoved(e){return F.hook(q.COMPONENT_REMOVED,e)},setupDevtoolsPlugin(e){F.hook(q.SETUP_DEVTOOLS_PLUGIN,e)},perfStart(e){return F.hook(q.PERFORMANCE_START,e)},perfEnd(e){return F.hook(q.PERFORMANCE_END,e)}},setupDevToolsPlugin(e,t){return F.callHook(q.SETUP_DEVTOOLS_PLUGIN,e,t)}};var Za=class{constructor({plugin:e,ctx:t}){this.hooks=t.hooks,this.plugin=e}get on(){return{visitComponentTree:e=>{this.hooks.hook(H.VISIT_COMPONENT_TREE,e)},inspectComponent:e=>{this.hooks.hook(H.INSPECT_COMPONENT,e)},editComponentState:e=>{this.hooks.hook(H.EDIT_COMPONENT_STATE,e)},getInspectorTree:e=>{this.hooks.hook(H.GET_INSPECTOR_TREE,e)},getInspectorState:e=>{this.hooks.hook(H.GET_INSPECTOR_STATE,e)},editInspectorState:e=>{this.hooks.hook(H.EDIT_INSPECTOR_STATE,e)},inspectTimelineEvent:e=>{this.hooks.hook(H.INSPECT_TIMELINE_EVENT,e)},timelineCleared:e=>{this.hooks.hook(H.TIMELINE_CLEARED,e)},setPluginSettings:e=>{this.hooks.hook(H.SET_PLUGIN_SETTINGS,e)}}}notifyComponentUpdate(e){if(x.highPerfModeEnabled)return;const t=po().find(n=>n.packageName===this.plugin.descriptor.packageName);if(t?.id){if(e){const n=[e.appContext.app,e.uid,e.parent?.uid,e];F.callHook(q.COMPONENT_UPDATED,...n)}else F.callHook(q.COMPONENT_UPDATED);this.hooks.callHook(L.SEND_INSPECTOR_STATE,{inspectorId:t.id,plugin:this.plugin})}}addInspector(e){this.hooks.callHook(L.ADD_INSPECTOR,{inspector:e,plugin:this.plugin}),this.plugin.descriptor.settings&&ja(e.id,this.plugin.descriptor.settings)}sendInspectorTree(e){x.highPerfModeEnabled||this.hooks.callHook(L.SEND_INSPECTOR_TREE,{inspectorId:e,plugin:this.plugin})}sendInspectorState(e){x.highPerfModeEnabled||this.hooks.callHook(L.SEND_INSPECTOR_STATE,{inspectorId:e,plugin:this.plugin})}selectInspectorNode(e,t){this.hooks.callHook(L.CUSTOM_INSPECTOR_SELECT_NODE,{inspectorId:e,nodeId:t,plugin:this.plugin})}visitComponentTree(e){return this.hooks.callHook(H.VISIT_COMPONENT_TREE,e)}now(){return x.highPerfModeEnabled?0:Date.now()}addTimelineLayer(e){this.hooks.callHook(L.TIMELINE_LAYER_ADDED,{options:e,plugin:this.plugin})}addTimelineEvent(e){x.highPerfModeEnabled||this.hooks.callHook(L.TIMELINE_EVENT_ADDED,{options:e,plugin:this.plugin})}getSettings(e){return Eo(e??this.plugin.descriptor.id,this.plugin.descriptor.settings)}getComponentInstances(e){return this.hooks.callHook(L.GET_COMPONENT_INSTANCES,{app:e})}getComponentBounds(e){return this.hooks.callHook(L.GET_COMPONENT_BOUNDS,{instance:e})}getComponentName(e){return this.hooks.callHook(L.GET_COMPONENT_NAME,{instance:e})}highlightElement(e){const t=e.__VUE_DEVTOOLS_NEXT_UID__;return this.hooks.callHook(L.COMPONENT_HIGHLIGHT,{uid:t})}unhighlightElement(){return this.hooks.callHook(L.COMPONENT_UNHIGHLIGHT)}};const Ga=Za,$a="__vue_devtool_undefined__",qa="__vue_devtool_infinity__",Fa="__vue_devtool_negative_infinity__",za="__vue_devtool_nan__",Wa={[$a]:"undefined",[za]:"NaN",[qa]:"Infinity",[Fa]:"-Infinity"};Object.entries(Wa).reduce((e,[t,n])=>(e[n]=t,e),{}),w.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__??=new Set;function Ka(e,t){return go.setupDevToolsPlugin(e,t)}function Ja(e,t){const[n,r]=e;if(n.app!==t)return;const o=new Ga({plugin:{setupFn:r,descriptor:n},ctx:ve});n.packageName==="vuex"&&o.on.editInspectorState(s=>{o.sendInspectorState(s.inspectorId)}),r(o)}function _o(e,t){w.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.has(e)||x.highPerfModeEnabled&&!t?.inspectingComponent||(w.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.add(e),wn.forEach(n=>{Ja(n,e)}))}const Ut="__VUE_DEVTOOLS_ROUTER__",Qe="__VUE_DEVTOOLS_ROUTER_INFO__";w[Qe]??={currentRoute:null,routes:[]},w[Ut]??={},new Proxy(w[Qe],{get(e,t){return w[Qe][t]}}),new Proxy(w[Ut],{get(e,t){if(t==="value")return w[Ut]}});function Ya(e){const t=new Map;return(e?.getRoutes()||[]).filter(n=>!t.has(n.path)&&t.set(n.path,1))}function Nn(e){return e.map(t=>{let{path:n,name:r,children:o,meta:s}=t;return o?.length&&(o=Nn(o)),{path:n,name:r,children:o,meta:s}})}function Qa(e){if(e){const{fullPath:t,hash:n,href:r,path:o,name:s,matched:i,params:a,query:f}=e;return{fullPath:t,hash:n,href:r,path:o,name:s,params:a,query:f,matched:Nn(i)}}return e}function Xa(e,t){function n(){const r=e.app?.config.globalProperties.$router,o=Qa(r?.currentRoute.value),s=Nn(Ya(r)),i=console.warn;console.warn=()=>{},w[Qe]={currentRoute:o?Kr(o):{},routes:Kr(s)},w[Ut]=r,console.warn=i}n(),go.on.componentUpdated(ke(()=>{t.value?.app===e.app&&(n(),!x.highPerfModeEnabled&&ve.hooks.callHook(ye.ROUTER_INFO_UPDATED,{state:w[Qe]}))},200))}function ec(e){return{async getInspectorTree(t){const n={...t,app:G.value.app,rootNodes:[]};return await new Promise(r=>{e.callHookWith(async o=>{await Promise.all(o.map(s=>s(n))),r()},H.GET_INSPECTOR_TREE)}),n.rootNodes},async getInspectorState(t){const n={...t,app:G.value.app,state:null},r={currentTab:`custom-inspector:${t.inspectorId}`};return await new Promise(o=>{e.callHookWith(async s=>{await Promise.all(s.map(i=>i(n,r))),o()},H.GET_INSPECTOR_STATE)}),n.state},editInspectorState(t){const n=new Ia,r={...t,app:G.value.app,set:(o,s=t.path,i=t.state.value,a)=>{n.set(o,s,i,a||n.createDefaultSetCallback(t.state))}};e.callHookWith(o=>{o.forEach(s=>s(r))},H.EDIT_INSPECTOR_STATE)},sendInspectorState(t){const n=kt(t);e.callHook(L.SEND_INSPECTOR_STATE,{inspectorId:t,plugin:{descriptor:n.descriptor,setupFn:()=>({})}})},inspectComponentInspector(){return Ra()},cancelInspectComponentInspector(){return ya()},getComponentRenderCode(t){const n=En(G.value,t);if(n)return typeof n?.type!="function"?n.render.toString():n.type.toString()},scrollToComponent(t){return Sa({id:t})},openInEditor:Ma,getVueInspector:wa,toggleApp(t,n){const r=Ct.value.find(o=>o.id===t);r&&(xa(t),Va(r),Xa(r,G),lo(),_o(r.app,n))},inspectDOM(t){const n=En(G.value,t);if(n){const[r]=gn(n);r&&(w.__VUE_DEVTOOLS_INSPECT_DOM_TARGET__=r)}},updatePluginSettings(t,n,r){Ha(t,n,r)},getPluginSettings(t){return{options:Ba(t),values:Eo(t)}}}}w.__VUE_DEVTOOLS_ENV__??={vitePluginDetected:!1};const mo=va();w.__VUE_DEVTOOLS_KIT_CONTEXT__??={hooks:mo,get state(){return{...x,activeAppRecordId:G.id,activeAppRecord:G.value,appRecords:Ct.value}},api:ec(mo)};const ve=w.__VUE_DEVTOOLS_KIT_CONTEXT__;var tc=eo({"../../node_modules/.pnpm/speakingurl@14.0.1/node_modules/speakingurl/lib/speakingurl.js":((e,t)=>{(function(n){var r={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"Ae",Å:"A",Æ:"AE",Ç:"C",È:"E",É:"E",Ê:"E",Ë:"E",Ì:"I",Í:"I",Î:"I",Ï:"I",Ð:"D",Ñ:"N",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"Oe",Ő:"O",Ø:"O",Ù:"U",Ú:"U",Û:"U",Ü:"Ue",Ű:"U",Ý:"Y",Þ:"TH",ß:"ss",à:"a",á:"a",â:"a",ã:"a",ä:"ae",å:"a",æ:"ae",ç:"c",è:"e",é:"e",ê:"e",ë:"e",ì:"i",í:"i",î:"i",ï:"i",ð:"d",ñ:"n",ò:"o",ó:"o",ô:"o",õ:"o",ö:"oe",ő:"o",ø:"o",ù:"u",ú:"u",û:"u",ü:"ue",ű:"u",ý:"y",þ:"th",ÿ:"y","ẞ":"SS",ا:"a",أ:"a",إ:"i",آ:"aa",ؤ:"u",ئ:"e",ء:"a",ب:"b",ت:"t",ث:"th",ج:"j",ح:"h",خ:"kh",د:"d",ذ:"th",ر:"r",ز:"z",س:"s",ش:"sh",ص:"s",ض:"dh",ط:"t",ظ:"z",ع:"a",غ:"gh",ف:"f",ق:"q",ك:"k",ل:"l",م:"m",ن:"n",ه:"h",و:"w",ي:"y",ى:"a",ة:"h",ﻻ:"la",ﻷ:"laa",ﻹ:"lai",ﻵ:"laa",گ:"g",چ:"ch",پ:"p",ژ:"zh",ک:"k",ی:"y","َ":"a","ً":"an","ِ":"e","ٍ":"en","ُ":"u","ٌ":"on","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9",က:"k",ခ:"kh",ဂ:"g",ဃ:"ga",င:"ng",စ:"s",ဆ:"sa",ဇ:"z","စျ":"za",ည:"ny",ဋ:"t",ဌ:"ta",ဍ:"d",ဎ:"da",ဏ:"na",တ:"t",ထ:"ta",ဒ:"d",ဓ:"da",န:"n",ပ:"p",ဖ:"pa",ဗ:"b",ဘ:"ba",မ:"m",ယ:"y",ရ:"ya",လ:"l",ဝ:"w",သ:"th",ဟ:"h",ဠ:"la",အ:"a","ြ":"y","ျ":"ya","ွ":"w","ြွ":"yw","ျွ":"ywa","ှ":"h",ဧ:"e","၏":"-e",ဣ:"i",ဤ:"-i",ဉ:"u",ဦ:"-u",ဩ:"aw","သြော":"aw",ဪ:"aw","၀":"0","၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","္":"","့":"","း":"",č:"c",ď:"d",ě:"e",ň:"n",ř:"r",š:"s",ť:"t",ů:"u",ž:"z",Č:"C",Ď:"D",Ě:"E",Ň:"N",Ř:"R",Š:"S",Ť:"T",Ů:"U",Ž:"Z",ހ:"h",ށ:"sh",ނ:"n",ރ:"r",ބ:"b",ޅ:"lh",ކ:"k",އ:"a",ވ:"v",މ:"m",ފ:"f",ދ:"dh",ތ:"th",ލ:"l",ގ:"g",ޏ:"gn",ސ:"s",ޑ:"d",ޒ:"z",ޓ:"t",ޔ:"y",ޕ:"p",ޖ:"j",ޗ:"ch",ޘ:"tt",ޙ:"hh",ޚ:"kh",ޛ:"th",ޜ:"z",ޝ:"sh",ޞ:"s",ޟ:"d",ޠ:"t",ޡ:"z",ޢ:"a",ޣ:"gh",ޤ:"q",ޥ:"w","ަ":"a","ާ":"aa","ި":"i","ީ":"ee","ު":"u","ޫ":"oo","ެ":"e","ޭ":"ey","ޮ":"o","ޯ":"oa","ް":"",ა:"a",ბ:"b",გ:"g",დ:"d",ე:"e",ვ:"v",ზ:"z",თ:"t",ი:"i",კ:"k",ლ:"l",მ:"m",ნ:"n",ო:"o",პ:"p",ჟ:"zh",რ:"r",ს:"s",ტ:"t",უ:"u",ფ:"p",ქ:"k",ღ:"gh",ყ:"q",შ:"sh",ჩ:"ch",ც:"ts",ძ:"dz",წ:"ts",ჭ:"ch",ხ:"kh",ჯ:"j",ჰ:"h",α:"a",β:"v",γ:"g",δ:"d",ε:"e",ζ:"z",η:"i",θ:"th",ι:"i",κ:"k",λ:"l",μ:"m",ν:"n",ξ:"ks",ο:"o",π:"p",ρ:"r",σ:"s",τ:"t",υ:"y",φ:"f",χ:"x",ψ:"ps",ω:"o",ά:"a",έ:"e",ί:"i",ό:"o",ύ:"y",ή:"i",ώ:"o",ς:"s",ϊ:"i",ΰ:"y",ϋ:"y",ΐ:"i",Α:"A",Β:"B",Γ:"G",Δ:"D",Ε:"E",Ζ:"Z",Η:"I",Θ:"TH",Ι:"I",Κ:"K",Λ:"L",Μ:"M",Ν:"N",Ξ:"KS",Ο:"O",Π:"P",Ρ:"R",Σ:"S",Τ:"T",Υ:"Y",Φ:"F",Χ:"X",Ψ:"PS",Ω:"O",Ά:"A",Έ:"E",Ί:"I",Ό:"O",Ύ:"Y",Ή:"I",Ώ:"O",Ϊ:"I",Ϋ:"Y",ā:"a",ē:"e",ģ:"g",ī:"i",ķ:"k",ļ:"l",ņ:"n",ū:"u",Ā:"A",Ē:"E",Ģ:"G",Ī:"I",Ķ:"k",Ļ:"L",Ņ:"N",Ū:"U",Ќ:"Kj",ќ:"kj",Љ:"Lj",љ:"lj",Њ:"Nj",њ:"nj",Тс:"Ts",тс:"ts",ą:"a",ć:"c",ę:"e",ł:"l",ń:"n",ś:"s",ź:"z",ż:"z",Ą:"A",Ć:"C",Ę:"E",Ł:"L",Ń:"N",Ś:"S",Ź:"Z",Ż:"Z",Є:"Ye",І:"I",Ї:"Yi",Ґ:"G",є:"ye",і:"i",ї:"yi",ґ:"g",ă:"a",Ă:"A",ș:"s",Ș:"S",ț:"t",Ț:"T",ţ:"t",Ţ:"T",а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"yo",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"c",ч:"ch",ш:"sh",щ:"sh",ъ:"",ы:"y",ь:"",э:"e",ю:"yu",я:"ya",А:"A",Б:"B",В:"V",Г:"G",Д:"D",Е:"E",Ё:"Yo",Ж:"Zh",З:"Z",И:"I",Й:"I",К:"K",Л:"L",М:"M",Н:"N",О:"O",П:"P",Р:"R",С:"S",Т:"T",У:"U",Ф:"F",Х:"Kh",Ц:"C",Ч:"Ch",Ш:"Sh",Щ:"Sh",Ъ:"",Ы:"Y",Ь:"",Э:"E",Ю:"Yu",Я:"Ya",ђ:"dj",ј:"j",ћ:"c",џ:"dz",Ђ:"Dj",Ј:"j",Ћ:"C",Џ:"Dz",ľ:"l",ĺ:"l",ŕ:"r",Ľ:"L",Ĺ:"L",Ŕ:"R",ş:"s",Ş:"S",ı:"i",İ:"I",ğ:"g",Ğ:"G",ả:"a",Ả:"A",ẳ:"a",Ẳ:"A",ẩ:"a",Ẩ:"A",đ:"d",Đ:"D",ẹ:"e",Ẹ:"E",ẽ:"e",Ẽ:"E",ẻ:"e",Ẻ:"E",ế:"e",Ế:"E",ề:"e",Ề:"E",ệ:"e",Ệ:"E",ễ:"e",Ễ:"E",ể:"e",Ể:"E",ỏ:"o",ọ:"o",Ọ:"o",ố:"o",Ố:"O",ồ:"o",Ồ:"O",ổ:"o",Ổ:"O",ộ:"o",Ộ:"O",ỗ:"o",Ỗ:"O",ơ:"o",Ơ:"O",ớ:"o",Ớ:"O",ờ:"o",Ờ:"O",ợ:"o",Ợ:"O",ỡ:"o",Ỡ:"O",Ở:"o",ở:"o",ị:"i",Ị:"I",ĩ:"i",Ĩ:"I",ỉ:"i",Ỉ:"i",ủ:"u",Ủ:"U",ụ:"u",Ụ:"U",ũ:"u",Ũ:"U",ư:"u",Ư:"U",ứ:"u",Ứ:"U",ừ:"u",Ừ:"U",ự:"u",Ự:"U",ữ:"u",Ữ:"U",ử:"u",Ử:"ư",ỷ:"y",Ỷ:"y",ỳ:"y",Ỳ:"Y",ỵ:"y",Ỵ:"Y",ỹ:"y",Ỹ:"Y",ạ:"a",Ạ:"A",ấ:"a",Ấ:"A",ầ:"a",Ầ:"A",ậ:"a",Ậ:"A",ẫ:"a",Ẫ:"A",ắ:"a",Ắ:"A",ằ:"a",Ằ:"A",ặ:"a",Ặ:"A",ẵ:"a",Ẵ:"A","⓪":"0","①":"1","②":"2","③":"3","④":"4","⑤":"5","⑥":"6","⑦":"7","⑧":"8","⑨":"9","⑩":"10","⑪":"11","⑫":"12","⑬":"13","⑭":"14","⑮":"15","⑯":"16","⑰":"17","⑱":"18","⑲":"18","⑳":"18","⓵":"1","⓶":"2","⓷":"3","⓸":"4","⓹":"5","⓺":"6","⓻":"7","⓼":"8","⓽":"9","⓾":"10","⓿":"0","⓫":"11","⓬":"12","⓭":"13","⓮":"14","⓯":"15","⓰":"16","⓱":"17","⓲":"18","⓳":"19","⓴":"20","Ⓐ":"A","Ⓑ":"B","Ⓒ":"C","Ⓓ":"D","Ⓔ":"E","Ⓕ":"F","Ⓖ":"G","Ⓗ":"H","Ⓘ":"I","Ⓙ":"J","Ⓚ":"K","Ⓛ":"L","Ⓜ":"M","Ⓝ":"N","Ⓞ":"O","Ⓟ":"P","Ⓠ":"Q","Ⓡ":"R","Ⓢ":"S","Ⓣ":"T","Ⓤ":"U","Ⓥ":"V","Ⓦ":"W","Ⓧ":"X","Ⓨ":"Y","Ⓩ":"Z","ⓐ":"a","ⓑ":"b","ⓒ":"c","ⓓ":"d","ⓔ":"e","ⓕ":"f","ⓖ":"g","ⓗ":"h","ⓘ":"i","ⓙ":"j","ⓚ":"k","ⓛ":"l","ⓜ":"m","ⓝ":"n","ⓞ":"o","ⓟ":"p","ⓠ":"q","ⓡ":"r","ⓢ":"s","ⓣ":"t","ⓤ":"u","ⓦ":"v","ⓥ":"w","ⓧ":"x","ⓨ":"y","ⓩ":"z","“":'"',"”":'"',"‘":"'","’":"'","∂":"d",ƒ:"f","™":"(TM)","©":"(C)",œ:"oe",Œ:"OE","®":"(R)","†":"+","℠":"(SM)","…":"...","˚":"o",º:"o",ª:"a","•":"*","၊":",","။":".",$:"USD","€":"EUR","₢":"BRN","₣":"FRF","£":"GBP","₤":"ITL","₦":"NGN","₧":"ESP","₩":"KRW","₪":"ILS","₫":"VND","₭":"LAK","₮":"MNT","₯":"GRD","₱":"ARS","₲":"PYG","₳":"ARA","₴":"UAH","₵":"GHS","¢":"cent","¥":"CNY",元:"CNY",円:"YEN","﷼":"IRR","₠":"EWE","฿":"THB","₨":"INR","₹":"INR","₰":"PF","₺":"TRY","؋":"AFN","₼":"AZN",лв:"BGN","៛":"KHR","₡":"CRC","₸":"KZT",ден:"MKD",zł:"PLN","₽":"RUB","₾":"GEL"},o=["်","ް"],s={"ာ":"a","ါ":"a","ေ":"e","ဲ":"e","ိ":"i","ီ":"i","ို":"o","ု":"u","ူ":"u","ေါင်":"aung","ော":"aw","ော်":"aw","ေါ":"aw","ေါ်":"aw","်":"်","က်":"et","ိုက်":"aik","ောက်":"auk","င်":"in","ိုင်":"aing","ောင်":"aung","စ်":"it","ည်":"i","တ်":"at","ိတ်":"eik","ုတ်":"ok","ွတ်":"ut","ေတ်":"it","ဒ်":"d","ိုဒ်":"ok","ုဒ်":"ait","န်":"an","ာန်":"an","ိန်":"ein","ုန်":"on","ွန်":"un","ပ်":"at","ိပ်":"eik","ုပ်":"ok","ွပ်":"ut","န်ုပ်":"nub","မ်":"an","ိမ်":"ein","ုမ်":"on","ွမ်":"un","ယ်":"e","ိုလ်":"ol","ဉ်":"in","ံ":"an","ိံ":"ein","ုံ":"on","ައް":"ah","ަށް":"ah"},i={en:{},az:{ç:"c",ə:"e",ğ:"g",ı:"i",ö:"o",ş:"s",ü:"u",Ç:"C",Ə:"E",Ğ:"G",İ:"I",Ö:"O",Ş:"S",Ü:"U"},cs:{č:"c",ď:"d",ě:"e",ň:"n",ř:"r",š:"s",ť:"t",ů:"u",ž:"z",Č:"C",Ď:"D",Ě:"E",Ň:"N",Ř:"R",Š:"S",Ť:"T",Ů:"U",Ž:"Z"},fi:{ä:"a",Ä:"A",ö:"o",Ö:"O"},hu:{ä:"a",Ä:"A",ö:"o",Ö:"O",ü:"u",Ü:"U",ű:"u",Ű:"U"},lt:{ą:"a",č:"c",ę:"e",ė:"e",į:"i",š:"s",ų:"u",ū:"u",ž:"z",Ą:"A",Č:"C",Ę:"E",Ė:"E",Į:"I",Š:"S",Ų:"U",Ū:"U"},lv:{ā:"a",č:"c",ē:"e",ģ:"g",ī:"i",ķ:"k",ļ:"l",ņ:"n",š:"s",ū:"u",ž:"z",Ā:"A",Č:"C",Ē:"E",Ģ:"G",Ī:"i",Ķ:"k",Ļ:"L",Ņ:"N",Š:"S",Ū:"u",Ž:"Z"},pl:{ą:"a",ć:"c",ę:"e",ł:"l",ń:"n",ó:"o",ś:"s",ź:"z",ż:"z",Ą:"A",Ć:"C",Ę:"e",Ł:"L",Ń:"N",Ó:"O",Ś:"S",Ź:"Z",Ż:"Z"},sv:{ä:"a",Ä:"A",ö:"o",Ö:"O"},sk:{ä:"a",Ä:"A"},sr:{љ:"lj",њ:"nj",Љ:"Lj",Њ:"Nj",đ:"dj",Đ:"Dj"},tr:{Ü:"U",Ö:"O",ü:"u",ö:"o"}},a={ar:{"∆":"delta","∞":"la-nihaya","♥":"hob","&":"wa","|":"aw","<":"aqal-men",">":"akbar-men","∑":"majmou","¤":"omla"},az:{},ca:{"∆":"delta","∞":"infinit","♥":"amor","&":"i","|":"o","<":"menys que",">":"mes que","∑":"suma dels","¤":"moneda"},cs:{"∆":"delta","∞":"nekonecno","♥":"laska","&":"a","|":"nebo","<":"mensi nez",">":"vetsi nez","∑":"soucet","¤":"mena"},de:{"∆":"delta","∞":"unendlich","♥":"Liebe","&":"und","|":"oder","<":"kleiner als",">":"groesser als","∑":"Summe von","¤":"Waehrung"},dv:{"∆":"delta","∞":"kolunulaa","♥":"loabi","&":"aai","|":"noonee","<":"ah vure kuda",">":"ah vure bodu","∑":"jumula","¤":"faisaa"},en:{"∆":"delta","∞":"infinity","♥":"love","&":"and","|":"or","<":"less than",">":"greater than","∑":"sum","¤":"currency"},es:{"∆":"delta","∞":"infinito","♥":"amor","&":"y","|":"u","<":"menos que",">":"mas que","∑":"suma de los","¤":"moneda"},fa:{"∆":"delta","∞":"bi-nahayat","♥":"eshgh","&":"va","|":"ya","<":"kamtar-az",">":"bishtar-az","∑":"majmooe","¤":"vahed"},fi:{"∆":"delta","∞":"aarettomyys","♥":"rakkaus","&":"ja","|":"tai","<":"pienempi kuin",">":"suurempi kuin","∑":"summa","¤":"valuutta"},fr:{"∆":"delta","∞":"infiniment","♥":"Amour","&":"et","|":"ou","<":"moins que",">":"superieure a","∑":"somme des","¤":"monnaie"},ge:{"∆":"delta","∞":"usasruloba","♥":"siqvaruli","&":"da","|":"an","<":"naklebi",">":"meti","∑":"jami","¤":"valuta"},gr:{},hu:{"∆":"delta","∞":"vegtelen","♥":"szerelem","&":"es","|":"vagy","<":"kisebb mint",">":"nagyobb mint","∑":"szumma","¤":"penznem"},it:{"∆":"delta","∞":"infinito","♥":"amore","&":"e","|":"o","<":"minore di",">":"maggiore di","∑":"somma","¤":"moneta"},lt:{"∆":"delta","∞":"begalybe","♥":"meile","&":"ir","|":"ar","<":"maziau nei",">":"daugiau nei","∑":"suma","¤":"valiuta"},lv:{"∆":"delta","∞":"bezgaliba","♥":"milestiba","&":"un","|":"vai","<":"mazak neka",">":"lielaks neka","∑":"summa","¤":"valuta"},my:{"∆":"kwahkhyaet","∞":"asaonasme","♥":"akhyait","&":"nhin","|":"tho","<":"ngethaw",">":"kyithaw","∑":"paungld","¤":"ngwekye"},mk:{},nl:{"∆":"delta","∞":"oneindig","♥":"liefde","&":"en","|":"of","<":"kleiner dan",">":"groter dan","∑":"som","¤":"valuta"},pl:{"∆":"delta","∞":"nieskonczonosc","♥":"milosc","&":"i","|":"lub","<":"mniejsze niz",">":"wieksze niz","∑":"suma","¤":"waluta"},pt:{"∆":"delta","∞":"infinito","♥":"amor","&":"e","|":"ou","<":"menor que",">":"maior que","∑":"soma","¤":"moeda"},ro:{"∆":"delta","∞":"infinit","♥":"dragoste","&":"si","|":"sau","<":"mai mic ca",">":"mai mare ca","∑":"suma","¤":"valuta"},ru:{"∆":"delta","∞":"beskonechno","♥":"lubov","&":"i","|":"ili","<":"menshe",">":"bolshe","∑":"summa","¤":"valjuta"},sk:{"∆":"delta","∞":"nekonecno","♥":"laska","&":"a","|":"alebo","<":"menej ako",">":"viac ako","∑":"sucet","¤":"mena"},sr:{},tr:{"∆":"delta","∞":"sonsuzluk","♥":"ask","&":"ve","|":"veya","<":"kucuktur",">":"buyuktur","∑":"toplam","¤":"para birimi"},uk:{"∆":"delta","∞":"bezkinechnist","♥":"lubov","&":"i","|":"abo","<":"menshe",">":"bilshe","∑":"suma","¤":"valjuta"},vn:{"∆":"delta","∞":"vo cuc","♥":"yeu","&":"va","|":"hoac","<":"nho hon",">":"lon hon","∑":"tong","¤":"tien te"}},f=[";","?",":","@","&","=","+","$",",","/"].join(""),E=[";","?",":","@","&","=","+","$",","].join(""),g=[".","!","~","*","'","(",")"].join(""),p=function(R,h){var T="-",y="",l="",_=!0,O={},A,k,j,Z,Y,Ve,ue,ee,xe,z,b,Re,W,de,oe="";if(typeof R!="string")return"";if(typeof h=="string"&&(T=h),ue=a.en,ee=i.en,typeof h=="object"){A=h.maintainCase||!1,O=h.custom&&typeof h.custom=="object"?h.custom:O,j=+h.truncate>1&&h.truncate||!1,Z=h.uric||!1,Y=h.uricNoSlash||!1,Ve=h.mark||!1,_=!(h.symbols===!1||h.lang===!1),T=h.separator||T,Z&&(oe+=f),Y&&(oe+=E),Ve&&(oe+=g),ue=h.lang&&a[h.lang]&&_?a[h.lang]:_?a.en:{},ee=h.lang&&i[h.lang]?i[h.lang]:h.lang===!1||h.lang===!0?{}:i.en,h.titleCase&&typeof h.titleCase.length=="number"&&Array.prototype.toString.call(h.titleCase)?(h.titleCase.forEach(function($){O[$+""]=$+""}),k=!0):k=!!h.titleCase,h.custom&&typeof h.custom.length=="number"&&Array.prototype.toString.call(h.custom)&&h.custom.forEach(function($){O[$+""]=$+""}),Object.keys(O).forEach(function($){var Se;$.length>1?Se=new RegExp("\\b"+c($)+"\\b","gi"):Se=new RegExp(c($),"gi"),R=R.replace(Se,O[$])});for(b in O)oe+=b}for(oe+=T,oe=c(oe),R=R.replace(/(^\s+|\s+$)/g,""),W=!1,de=!1,z=0,Re=R.length;z<Re;z++)b=R[z],d(b,O)?W=!1:ee[b]?(b=W&&ee[b].match(/[A-Za-z0-9]/)?" "+ee[b]:ee[b],W=!1):b in r?(z+1<Re&&o.indexOf(R[z+1])>=0?(l+=b,b=""):de===!0?(b=s[l]+r[b],l=""):b=W&&r[b].match(/[A-Za-z0-9]/)?" "+r[b]:r[b],W=!1,de=!1):b in s?(l+=b,b="",z===Re-1&&(b=s[l]),de=!0):ue[b]&&!(Z&&f.indexOf(b)!==-1)&&!(Y&&E.indexOf(b)!==-1)?(b=W||y.substr(-1).match(/[A-Za-z0-9]/)?T+ue[b]:ue[b],b+=R[z+1]!==void 0&&R[z+1].match(/[A-Za-z0-9]/)?T:"",W=!0):(de===!0?(b=s[l]+b,l="",de=!1):W&&(/[A-Za-z0-9]/.test(b)||y.substr(-1).match(/A-Za-z0-9]/))&&(b=" "+b),W=!1),y+=b.replace(new RegExp("[^\\w\\s"+oe+"_-]","g"),T);return k&&(y=y.replace(/(\w)(\S*)/g,function($,Se,Vt){var rt=Se.toUpperCase()+(Vt!==null?Vt:"");return Object.keys(O).indexOf(rt.toLowerCase())<0?rt:rt.toLowerCase()})),y=y.replace(/\s+/g,T).replace(new RegExp("\\"+T+"+","g"),T).replace(new RegExp("(^\\"+T+"+|\\"+T+"+$)","g"),""),j&&y.length>j&&(xe=y.charAt(j)===T,y=y.slice(0,j),xe||(y=y.slice(0,y.lastIndexOf(T)))),!A&&!k&&(y=y.toLowerCase()),y},u=function(R){return function(T){return p(T,R)}},c=function(R){return R.replace(/[-\\^$*+?.()|[\]{}\/]/g,"\\$&")},d=function(m,R){for(var h in R)if(R[h]===m)return!0};if(typeof t<"u"&&t.exports)t.exports=p,t.exports.createSlug=u;else if(typeof define<"u"&&define.amd)define([],function(){return p});else try{if(n.getSlug||n.createSlug)throw"speakingurl: globals exists /(getSlug|createSlug)/";n.getSlug=p,n.createSlug=u}catch{}})(e)})}),nc=eo({"../../node_modules/.pnpm/speakingurl@14.0.1/node_modules/speakingurl/index.js":((e,t)=>{t.exports=tc()})});nc(),w.__VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__??={id:0,appIds:new Set};function rc(e){x.highPerfModeEnabled=e??!x.highPerfModeEnabled,!e&&G.value&&_o(G.value.app)}function oc(e){x.devtoolsClientDetected={...x.devtoolsClientDetected,...e},rc(!Object.values(x.devtoolsClientDetected).some(Boolean))}w.__VUE_DEVTOOLS_UPDATE_CLIENT_DETECTED__??=oc;var sc=class{constructor(){this.keyToValue=new Map,this.valueToKey=new Map}set(e,t){this.keyToValue.set(e,t),this.valueToKey.set(t,e)}getByKey(e){return this.keyToValue.get(e)}getByValue(e){return this.valueToKey.get(e)}clear(){this.keyToValue.clear(),this.valueToKey.clear()}},yo=class{constructor(e){this.generateIdentifier=e,this.kv=new sc}register(e,t){this.kv.getByValue(e)||(t||(t=this.generateIdentifier(e)),this.kv.set(t,e))}clear(){this.kv.clear()}getIdentifier(e){return this.kv.getByValue(e)}getValue(e){return this.kv.getByKey(e)}},ic=class extends yo{constructor(){super(e=>e.name),this.classToAllowedProps=new Map}register(e,t){typeof t=="object"?(t.allowProps&&this.classToAllowedProps.set(e,t.allowProps),super.register(e,t.identifier)):super.register(e,t)}getAllowedProps(e){return this.classToAllowedProps.get(e)}};function ac(e){if("values"in Object)return Object.values(e);const t=[];for(const n in e)e.hasOwnProperty(n)&&t.push(e[n]);return t}function cc(e,t){const n=ac(e);if("find"in n)return n.find(t);const r=n;for(let o=0;o<r.length;o++){const s=r[o];if(t(s))return s}}function Le(e,t){Object.entries(e).forEach(([n,r])=>t(r,n))}function vt(e,t){return e.indexOf(t)!==-1}function Ro(e,t){for(let n=0;n<e.length;n++){const r=e[n];if(t(r))return r}}var uc=class{constructor(){this.transfomers={}}register(e){this.transfomers[e.name]=e}findApplicable(e){return cc(this.transfomers,t=>t.isApplicable(e))}findByName(e){return this.transfomers[e]}};const fc=e=>Object.prototype.toString.call(e).slice(8,-1),So=e=>typeof e>"u",lc=e=>e===null,Xe=e=>typeof e!="object"||e===null||e===Object.prototype?!1:Object.getPrototypeOf(e)===null?!0:Object.getPrototypeOf(e)===Object.prototype,An=e=>Xe(e)&&Object.keys(e).length===0,le=e=>Array.isArray(e),dc=e=>typeof e=="string",pc=e=>typeof e=="number"&&!isNaN(e),hc=e=>typeof e=="boolean",Ec=e=>e instanceof RegExp,et=e=>e instanceof Map,tt=e=>e instanceof Set,To=e=>fc(e)==="Symbol",gc=e=>e instanceof Date&&!isNaN(e.valueOf()),_c=e=>e instanceof Error,Oo=e=>typeof e=="number"&&isNaN(e),mc=e=>hc(e)||lc(e)||So(e)||pc(e)||dc(e)||To(e),yc=e=>typeof e=="bigint",Rc=e=>e===1/0||e===-1/0,Sc=e=>ArrayBuffer.isView(e)&&!(e instanceof DataView),Tc=e=>e instanceof URL,wo=e=>e.replace(/\./g,"\\."),bn=e=>e.map(String).map(wo).join("."),nt=e=>{const t=[];let n="";for(let o=0;o<e.length;o++){let s=e.charAt(o);if(s==="\\"&&e.charAt(o+1)==="."){n+=".",o++;continue}if(s==="."){t.push(n),n="";continue}n+=s}const r=n;return t.push(r),t};function re(e,t,n,r){return{isApplicable:e,annotation:t,transform:n,untransform:r}}const Po=[re(So,"undefined",()=>null,()=>{}),re(yc,"bigint",e=>e.toString(),e=>typeof BigInt<"u"?BigInt(e):(console.error("Please add a BigInt polyfill."),e)),re(gc,"Date",e=>e.toISOString(),e=>new Date(e)),re(_c,"Error",(e,t)=>{const n={name:e.name,message:e.message};return t.allowedErrorProps.forEach(r=>{n[r]=e[r]}),n},(e,t)=>{const n=new Error(e.message);return n.name=e.name,n.stack=e.stack,t.allowedErrorProps.forEach(r=>{n[r]=e[r]}),n}),re(Ec,"regexp",e=>""+e,e=>{const t=e.slice(1,e.lastIndexOf("/")),n=e.slice(e.lastIndexOf("/")+1);return new RegExp(t,n)}),re(tt,"set",e=>[...e.values()],e=>new Set(e)),re(et,"map",e=>[...e.entries()],e=>new Map(e)),re(e=>Oo(e)||Rc(e),"number",e=>Oo(e)?"NaN":e>0?"Infinity":"-Infinity",Number),re(e=>e===0&&1/e===-1/0,"number",()=>"-0",Number),re(Tc,"URL",e=>e.toString(),e=>new URL(e))];function Lt(e,t,n,r){return{isApplicable:e,annotation:t,transform:n,untransform:r}}const Io=Lt((e,t)=>To(e)?!!t.symbolRegistry.getIdentifier(e):!1,(e,t)=>["symbol",t.symbolRegistry.getIdentifier(e)],e=>e.description,(e,t,n)=>{const r=n.symbolRegistry.getValue(t[1]);if(!r)throw new Error("Trying to deserialize unknown symbol");return r}),Oc=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array,Uint8ClampedArray].reduce((e,t)=>(e[t.name]=t,e),{}),No=Lt(Sc,e=>["typed-array",e.constructor.name],e=>[...e],(e,t)=>{const n=Oc[t[1]];if(!n)throw new Error("Trying to deserialize unknown typed array");return new n(e)});function Ao(e,t){return e?.constructor?!!t.classRegistry.getIdentifier(e.constructor):!1}const bo=Lt(Ao,(e,t)=>["class",t.classRegistry.getIdentifier(e.constructor)],(e,t)=>{const n=t.classRegistry.getAllowedProps(e.constructor);if(!n)return{...e};const r={};return n.forEach(o=>{r[o]=e[o]}),r},(e,t,n)=>{const r=n.classRegistry.getValue(t[1]);if(!r)throw new Error(`Trying to deserialize unknown class '${t[1]}' - check https://github.com/blitz-js/superjson/issues/116#issuecomment-773996564`);return Object.assign(Object.create(r.prototype),e)}),ko=Lt((e,t)=>!!t.customTransformerRegistry.findApplicable(e),(e,t)=>["custom",t.customTransformerRegistry.findApplicable(e).name],(e,t)=>t.customTransformerRegistry.findApplicable(e).serialize(e),(e,t,n)=>{const r=n.customTransformerRegistry.findByName(t[1]);if(!r)throw new Error("Trying to deserialize unknown custom value");return r.deserialize(e)}),wc=[bo,Io,ko,No],Co=(e,t)=>{const n=Ro(wc,o=>o.isApplicable(e,t));if(n)return{value:n.transform(e,t),type:n.annotation(e,t)};const r=Ro(Po,o=>o.isApplicable(e,t));if(r)return{value:r.transform(e,t),type:r.annotation}},Uo={};Po.forEach(e=>{Uo[e.annotation]=e});const Pc=(e,t,n)=>{if(le(t))switch(t[0]){case"symbol":return Io.untransform(e,t,n);case"class":return bo.untransform(e,t,n);case"custom":return ko.untransform(e,t,n);case"typed-array":return No.untransform(e,t,n);default:throw new Error("Unknown transformation: "+t)}else{const r=Uo[t];if(!r)throw new Error("Unknown transformation: "+t);return r.untransform(e,n)}},De=(e,t)=>{if(t>e.size)throw new Error("index out of bounds");const n=e.keys();for(;t>0;)n.next(),t--;return n.next().value};function vo(e){if(vt(e,"__proto__"))throw new Error("__proto__ is not allowed as a property");if(vt(e,"prototype"))throw new Error("prototype is not allowed as a property");if(vt(e,"constructor"))throw new Error("constructor is not allowed as a property")}const Ic=(e,t)=>{vo(t);for(let n=0;n<t.length;n++){const r=t[n];if(tt(e))e=De(e,+r);else if(et(e)){const o=+r,s=+t[++n]==0?"key":"value",i=De(e,o);switch(s){case"key":e=i;break;case"value":e=e.get(i);break}}else e=e[r]}return e},kn=(e,t,n)=>{if(vo(t),t.length===0)return n(e);let r=e;for(let s=0;s<t.length-1;s++){const i=t[s];if(le(r)){const a=+i;r=r[a]}else if(Xe(r))r=r[i];else if(tt(r)){const a=+i;r=De(r,a)}else if(et(r)){if(s===t.length-2)break;const a=+i,f=+t[++s]==0?"key":"value",E=De(r,a);switch(f){case"key":r=E;break;case"value":r=r.get(E);break}}}const o=t[t.length-1];if(le(r)?r[+o]=n(r[+o]):Xe(r)&&(r[o]=n(r[o])),tt(r)){const s=De(r,+o),i=n(s);s!==i&&(r.delete(s),r.add(i))}if(et(r)){const s=+t[t.length-2],i=De(r,s);switch(+o==0?"key":"value"){case"key":{const a=n(i);r.set(a,r.get(i)),a!==i&&r.delete(i);break}case"value":r.set(i,n(r.get(i)));break}}return e};function Cn(e,t,n=[]){if(!e)return;if(!le(e)){Le(e,(s,i)=>Cn(s,t,[...n,...nt(i)]));return}const[r,o]=e;o&&Le(o,(s,i)=>{Cn(s,t,[...n,...nt(i)])}),t(r,n)}function Nc(e,t,n){return Cn(t,(r,o)=>{e=kn(e,o,s=>Pc(s,r,n))}),e}function Ac(e,t){function n(r,o){const s=Ic(e,nt(o));r.map(nt).forEach(i=>{e=kn(e,i,()=>s)})}if(le(t)){const[r,o]=t;r.forEach(s=>{e=kn(e,nt(s),()=>e)}),o&&Le(o,n)}else Le(t,n);return e}const bc=(e,t)=>Xe(e)||le(e)||et(e)||tt(e)||Ao(e,t);function kc(e,t,n){const r=n.get(e);r?r.push(t):n.set(e,[t])}function Cc(e,t){const n={};let r;return e.forEach(o=>{if(o.length<=1)return;t||(o=o.map(a=>a.map(String)).sort((a,f)=>a.length-f.length));const[s,...i]=o;s.length===0?r=i.map(bn):n[bn(s)]=i.map(bn)}),r?An(n)?[r]:[r,n]:An(n)?void 0:n}const Lo=(e,t,n,r,o=[],s=[],i=new Map)=>{const a=mc(e);if(!a){kc(e,o,t);const c=i.get(e);if(c)return r?{transformedValue:null}:c}if(!bc(e,n)){const c=Co(e,n),d=c?{transformedValue:c.value,annotations:[c.type]}:{transformedValue:e};return a||i.set(e,d),d}if(vt(s,e))return{transformedValue:null};const f=Co(e,n),E=f?.value??e,g=le(E)?[]:{},p={};Le(E,(c,d)=>{if(d==="__proto__"||d==="constructor"||d==="prototype")throw new Error(`Detected property ${d}. This is a prototype pollution risk, please remove it from your object.`);const m=Lo(c,t,n,r,[...o,d],[...s,e],i);g[d]=m.transformedValue,le(m.annotations)?p[d]=m.annotations:Xe(m.annotations)&&Le(m.annotations,(R,h)=>{p[wo(d)+"."+h]=R})});const u=An(p)?{transformedValue:g,annotations:f?[f.type]:void 0}:{transformedValue:g,annotations:f?[f.type,p]:p};return a||i.set(e,u),u};function Do(e){return Object.prototype.toString.call(e).slice(8,-1)}function Vo(e){return Do(e)==="Array"}function Uc(e){if(Do(e)!=="Object")return!1;const t=Object.getPrototypeOf(e);return!!t&&t.constructor===Object&&t===Object.prototype}function vc(e,t,n,r,o){const s={}.propertyIsEnumerable.call(r,t)?"enumerable":"nonenumerable";s==="enumerable"&&(e[t]=n),o&&s==="nonenumerable"&&Object.defineProperty(e,t,{value:n,enumerable:!1,writable:!0,configurable:!0})}function Un(e,t={}){if(Vo(e))return e.map(o=>Un(o,t));if(!Uc(e))return e;const n=Object.getOwnPropertyNames(e),r=Object.getOwnPropertySymbols(e);return[...n,...r].reduce((o,s)=>{if(Vo(t.props)&&!t.props.includes(s))return o;const i=e[s];return vc(o,s,Un(i,t),e,t.nonenumerable),o},{})}var v=class{constructor({dedupe:e=!1}={}){this.classRegistry=new ic,this.symbolRegistry=new yo(t=>t.description??""),this.customTransformerRegistry=new uc,this.allowedErrorProps=[],this.dedupe=e}serialize(e){const t=new Map,n=Lo(e,t,this,this.dedupe),r={json:n.transformedValue};n.annotations&&(r.meta={...r.meta,values:n.annotations});const o=Cc(t,this.dedupe);return o&&(r.meta={...r.meta,referentialEqualities:o}),r}deserialize(e){const{json:t,meta:n}=e;let r=Un(t);return n?.values&&(r=Nc(r,n.values,this)),n?.referentialEqualities&&(r=Ac(r,n.referentialEqualities)),r}stringify(e){return JSON.stringify(this.serialize(e))}parse(e){return this.deserialize(JSON.parse(e))}registerClass(e,t){this.classRegistry.register(e,t)}registerSymbol(e,t){this.symbolRegistry.register(e,t)}registerCustom(e,t){this.customTransformerRegistry.register({name:t,...e})}allowErrorProps(...e){this.allowedErrorProps.push(...e)}};v.defaultInstance=new v,v.serialize=v.defaultInstance.serialize.bind(v.defaultInstance),v.deserialize=v.defaultInstance.deserialize.bind(v.defaultInstance),v.stringify=v.defaultInstance.stringify.bind(v.defaultInstance),v.parse=v.defaultInstance.parse.bind(v.defaultInstance),v.registerClass=v.defaultInstance.registerClass.bind(v.defaultInstance),v.registerSymbol=v.defaultInstance.registerSymbol.bind(v.defaultInstance),v.registerCustom=v.defaultInstance.registerCustom.bind(v.defaultInstance),v.allowErrorProps=v.defaultInstance.allowErrorProps.bind(v.defaultInstance),w.__VUE_DEVTOOLS_KIT_MESSAGE_CHANNELS__??=[],w.__VUE_DEVTOOLS_KIT_RPC_CLIENT__??=null,w.__VUE_DEVTOOLS_KIT_RPC_SERVER__??=null,w.__VUE_DEVTOOLS_KIT_VITE_RPC_CLIENT__??=null,w.__VUE_DEVTOOLS_KIT_VITE_RPC_SERVER__??=null,w.__VUE_DEVTOOLS_KIT_BROADCAST_RPC_SERVER__??=null;const Dt={template:"<div>This is component</div>"},vn=Ee({name:"parentA",path:"/parentA/[paramA]"}),xo=Ee({parent:vn,name:"parentA.childA",path:"/childA/[?paramB]"}),Lc=Ee({parent:vn,name:"parentA.childB",path:"/childB/[paramD]",component:Dt}),Dc=Ee({parent:xo,name:"parentA.childA.grandChildA",path:"/[paramC]",component:Dt});Ee({name:"parentB",path:"/parentB",component:Dt}),Ee({name:"parentC",path:"/",component:Dt});function Vc(e,t){return t!=="1"?`${e} ${t}`:e}const xc=({route:e})=>!!e.name,Mc=({route:e,payload:t})=>{if(!t.filter)return!0;if(!Oe(e))return!1;const n=t.filter.toLowerCase();return!!(e.name.toLowerCase().includes(n)||e.schema.path.value.toLowerCase().includes(n))},Bc=e=>xc(e)&&Mc(e),jc=ot(),Hc=2282478,Zc=2278750,Gc=1483594;function $c(e,t={match:!1,exactMatch:!1}){const n=[];return e.name&&n.push({label:e.name,textColor:0,backgroundColor:Hc}),t.match&&n.push({label:"match",textColor:0,backgroundColor:Zc}),t.exactMatch&&n.push({label:"exact-match",textColor:0,backgroundColor:Gc}),{id:e.id,label:e.name,tags:n}}function qc(e,t){if(!t||!("id"in t)||!("matches"in t))return{match:!1,exactMatch:!1};const n=t.id===e.id;return{match:t.matches.some(o=>o.id===e.id),exactMatch:n}}function Fc(e){const t=[];return Oe(e)&&(t.push({editable:!1,key:"name",value:e.name}),t.push({editable:!1,key:"path",value:e.schema.path.value}),t.push({editable:!1,key:"query",value:e.schema.query.value}),t.push({editable:!1,key:"hash",value:e.schema.hash.value}),t.push({editable:!1,key:"meta",value:e.meta})),t}function zc({router:e,app:t,routes:n}){if(!Je()||e.hasDevtools)return;e.hasDevtools=!0;const r=jc(),o=new Map(n.map(a=>[a.id,a])),s=`kitbag-router-routes.${r}`,i=`kitbag-router.${r}`;Ka({id:i,label:"Kitbag Router",packageName:"@kitbag/router",homepage:"https://router.kitbag.dev/",componentStateTypes:["Routing"],logo:"https://kitbag.dev/kitbag-logo-circle.svg",app:t},a=>{a.addInspector({id:s,label:Vc("Routes",r),treeFilterPlaceholder:"Search routes"}),a.on.getInspectorTree(f=>{f.app!==t||f.inspectorId!==s||(f.rootNodes=n.filter(E=>Bc({route:E,payload:f})).map(E=>{const g=qc(E,e.route);return $c(E,g)}))}),S.watch(()=>e.route,()=>{a.sendInspectorTree(s)},{deep:!0,immediate:!1}),a.on.getInspectorState(f=>{if(f.app!==t||f.inspectorId!==s)return;const E=o.get(f.nodeId);E&&(f.state={options:Fc(E)})}),a.sendInspectorTree(s),a.sendInspectorState(s)})}function Wc(e,t){const n=new URLSearchParams(e),r=new URLSearchParams(t);for(const[o,s]of r.entries())n.delete(o,s);return n}function Kc(e,t,n={}){const{query:r,hash:o}=X(t);for(const s of e){if(!Gr(s))continue;const{success:i,params:a}=s.tryParse(t,n);if(i){const f=s.stringify(a),{query:E}=X(f),g=Wc(r,E);return Zr(s,a,{...n,query:g,hash:o})}}}const Mo=/^(\/.+?)\/+$/;function Jc(e){const{path:t,...n}=X(e);return _t({...n,path:t.replace(Mo,"$1")})}function Yc(e){const{path:t}=X(e);return Mo.test(t)}let Bo;function Qc(e){!te(e)||!Je()||(Bo??=document.title,e.title.then(t=>{document.title=t??Bo??""}))}function Xc(){const e=r=>{n.value=r},t=()=>{n.value=null},n=S.ref(null);return{currentRejection:n,updateRejection:e,clearRejection:t}}function eu(e,t,n=[]){const o=t?.isGlobalRouter??!0?qr:Symbol(),s=t?.removeTrailingSlashes??!0,{routes:i,getRouteByName:a,getRejectionByType:f}=Ti(e,n,t),E=f("NotFound"),g=Bs();g.addGlobalRouteHooks(Ii(n));const p=ot(),u=ui(),c=ki(o),d=_i(),m=fi({mode:t?.historyMode,listener:({location:I})=>{const U=_e(I);h(U,{state:I.state,replace:!0})}});function R(I,U={}){const M=!b(I),D=i.filter(B=>B.isRelative===M);return Kc(D,I,{...U,...{removeTrailingSlashes:s}})}async function h(I,U={}){if(Yc(I)&&s){const se=Jc(I);if(K(se))return _(se,U)}const M=p();m.stopListening();const D=R(I,U)??E.route,V=Vt(M),B=await g.runBeforeRouteHooks({to:D,from:V});switch(B.status){case"ABORT":return;case"PUSH":m.update(I,U),await l(...B.to);return;case"REJECT":m.update(I,U),O(B.type,D,V);break;case"SUCCESS":m.update(I,U),Z();break;default:throw new Error(`Switch is not exhaustive for before hook response status: ${JSON.stringify(B)}`)}b(I)||T(M,D,V);const Me=await g.runAfterRouteHooks({to:D,from:V});switch(Me.status){case"PUSH":await l(...Me.to);break;case"REJECT":O(Me.type,D,V);break;case"SUCCESS":break;default:const se=Me;throw new Error(`Switch is not exhaustive for after hook response status: ${JSON.stringify(se)}`)}Qc(D),m.startListening()}function T(I,U,M){const D=I;u.setProps(U).then(V=>{if(D===I)switch(V.status){case"SUCCESS":break;case"PUSH":l(...V.to);break;case"REJECT":O(V.type,U,M);break;default:const B=V;throw new Error(`Switch is not exhaustive for prop store response status: ${JSON.stringify(B)}`)}}).catch(V=>{try{g.runErrorHooks(V,{to:U,from:M,source:"props"})}catch(B){if(B instanceof ce){l(...B.response.to);return}if(B instanceof ge){O(B.response.type,U,M);return}throw B}}),ue(U)}const y=(I,U={},M={})=>{const D=a(I);if(!D)throw new mi(I);return Zr(D,U,M)},l=(I,U,M)=>{if(K(I)){const se={...U},xt=Ze(I,{query:se.query,hash:se.hash});return h(xt,se)}if(typeof I=="string"){const{replace:se,...xt}={...M},pu={...U},Dn=y(I,pu,xt),hu=Hr({...Dn.matched.state},{...Dn.state,...xt.state});return h(Dn.href,{replace:se,state:hu})}const{replace:D,...V}={...U},B=Hr({...I.matched.state},{...I.state,...V.state}),Me=Ze(I.href,{query:V.query,hash:V.hash});return h(Me,{replace:D,state:B})},_=(I,U,M)=>{if(K(I)){const V={...U,replace:!0};return l(I,V)}if(typeof I=="string"){const V={...M,replace:!0},B={...U};return l(I,B,V)}const D={...U,replace:!0};return l(I,D)};function O(I,U=null,M=null){const D=f(I);D&&(g.runRejectionHooks(D,{to:U,from:M}),j(D))}const A=I=>{O(I)},{currentRejection:k,updateRejection:j,clearRejection:Z}=Xc(),{currentRoute:Y,routerRoute:Ve,updateRoute:ue}=ai(o,E.route,l),ee=pi(t?.initialUrl),xe=m.location.state,{host:z}=X(ee),b=ci(z);let Re=!1;const W=S.ref(!1),{promise:de,resolve:oe}=Promise.withResolvers();async function $(){if(Re)return de;Re=!0,es(i)&&await ts(),await h(ee,{replace:!0,state:xe}),m.startListening(),oe(),W.value=!0}function Se(){m.stopListening()}function Vt(I){return Fo(I)?null:{...Y}}function rt(I){g.setVueApp(I),u.setVueApp(I);const U=fn(o),M=Cr(o);I.component("RouterView",U),I.component("RouterLink",M),I.provide(Sr(o),k),I.provide(yr(o),g),I.provide(wr(o),u),I.provide(Rr(o),c),I.provide(Ar,d),I.provide(o,Ln),zc({router:Ln,app:I,routes:i}),$()}const Ln={route:Ve,resolve:y,find:R,push:l,replace:_,reject:A,refresh:m.refresh,forward:m.forward,back:m.back,go:m.go,install:rt,isExternal:b,onBeforeRouteEnter:g.onBeforeRouteEnter,onBeforeRouteUpdate:g.onBeforeRouteUpdate,onBeforeRouteLeave:g.onBeforeRouteLeave,onAfterRouteEnter:g.onAfterRouteEnter,onAfterRouteUpdate:g.onAfterRouteUpdate,onAfterRouteLeave:g.onAfterRouteLeave,onError:g.onError,onRejection:g.onRejection,prefetch:t?.prefetch,start:$,started:W,stop:Se,key:o,hasDevtools:!1};return Ln}const J=Ur(qr),tu=J.onBeforeRouteLeave,nu=J.onBeforeRouteUpdate,ru=J.onAfterRouteLeave,ou=J.onAfterRouteUpdate,su=J.isRoute,iu=J.RouterView,au=J.RouterLink,cu=J.useRoute,uu=J.useRouter,fu=J.useQueryValue,lu=J.useLink,du=J.useRejection;N.DuplicateParamsError=xn,N.MetaPropertyConflict=Vn,N.RouterLink=au,N.RouterNotInstalledError=pe,N.RouterView=iu,N.UseRouteInvalidError=Hn,N.arrayOf=ni,N.asUrlString=jn,N.combineHooks=Bn,N.combineRoutes=qt,N.createExternalRoute=Cs,N.createParam=Gn,N.createRejection=Er,N.createRoute=Ee,N.createRouter=eu,N.createRouterAssets=Ur,N.createRouterPlugin=ei,N.createUrl=Ne,N.getHooks=fe,N.isRoute=su,N.isUrlString=K,N.isWithComponent=Ht,N.isWithComponentProps=Zt,N.isWithComponentPropsRecord=$t,N.isWithComponents=Gt,N.isWithParent=jt,N.literal=tn,N.onAfterRouteLeave=ru,N.onAfterRouteUpdate=ou,N.onBeforeRouteLeave=tu,N.onBeforeRouteUpdate=nu,N.tupleOf=oi,N.unionOf=Lr,N.useLink=lu,N.useQueryValue=fu,N.useRejection=du,N.useRoute=cu,N.useRouter=uu,N.withDefault=Jo,N.withParams=ht,Object.defineProperty(N,Symbol.toStringTag,{value:"Module"})}));
|
|
4
|
+
`)}return i}function u(e,t,n){return[e,t,n.id,JSON.stringify(n.params)].join(`-`)}function d(e){return E(e)?[{id:e.id,name:`default`,props:e.props}]:O(e)?Object.entries(e.props).map(([t,n])=>({id:e.id,name:t,props:n})):[]}function f(e){for(let t of r.keys())e.includes(t)||r.delete(t)}return{getPrefetchProps:i,setPrefetchProps:a,getProps:s,setProps:o,setVueApp:e}}function fr(){return typeof window<`u`&&window.document!==void 0}function pr({mode:e,listener:t}){let n=mr(e),r=(e,t)=>{if(t?.replace){n.replace(e,t.state);return}n.push(e,t?.state)},i=()=>{let e=V(n.location);n.replace(e)},a,o=()=>{a?.(),a=n.listen(t)},s=()=>{a?.()};return{...n,update:r,refresh:i,startListening:o,stopListening:s}}function mr(e=`auto`){switch(e){case`auto`:return fr()?ar():sr();case`browser`:return ar();case`memory`:return sr();case`hash`:return or();default:throw Error(`Switch is not exhaustive for mode: ${e}`)}}var hr=class extends Error{constructor(){super(`initialUrl must be set if window.location is unavailable`)}};function gr(e){if(e)return e;if(fr())return window.location.toString();throw new hr}function _r(e){return!!e&&typeof e==`object`}var vr={isOptional:!0,isGreedy:!1};function yr(e,t,n){if(_r(e)&&t in e){let r=e[t];return typeof r==`string`?Ge(r,{param:n,...vr}):r}return Ge(void 0,{param:n,...vr})}function br(e,t){let n={};for(let[r,i]of Object.entries(e))n[r]=yr(t,r,i);return n}function xr(e,t,n){if(_r(e)&&t in e){let r=e[t];return F(r,{param:n,...vr})}return F(void 0,{param:n,...vr})}var Sr=(e,t)=>{let n={};for(let[r,i]of Object.entries(e))n[r]=xr(t,r,i);return n};function Cr(){let e=(0,t.reactive)(new Map),n=fr()?s():null,r=t=>{e.set(t,!1),n?.observe(t)},i=t=>{e.delete(t),n?.unobserve(t)},a=()=>{n?.disconnect()},o=t=>e.get(t)??!1;function s(){return new IntersectionObserver(t=>{t.forEach(t=>{e.set(t.target,t.isIntersecting)})})}return{observe:r,unobserve:i,disconnect:a,isElementVisible:o}}var wr=class extends Error{constructor(e){super(`Route not found: "${e}"`)}};function Tr(e){let t=new URLSearchParams(e);return{get:(...e)=>t.get(...e),getAll:(...e)=>t.getAll(...e),set:(...e)=>{t.set(...e)},append:(...e)=>{t.append(...e)},delete:(...e)=>{t.delete(...e)},toString:(...e)=>t.toString(...e),forEach:(...e)=>{t.forEach(...e)},entries:(...e)=>t.entries(...e),keys:(...e)=>t.keys(...e),values:(...e)=>t.values(...e),has:(...e)=>t.has(...e),size:t.size,sort:()=>{t.sort()},[Symbol.iterator]:()=>t[Symbol.iterator]()}}function Er(e,t={},n={}){let r=wt(e.stringify(t),{query:new URLSearchParams(n.query),hash:n.hash}),{query:i,hash:a}=L(r),{promise:o,resolve:s}=Promise.withResolvers(),c={...e,query:Tr(i),state:br(e.state,n.state),hash:a,params:t,href:r,title:o};return Dr(c).then(s),c}async function Dr(e){if(v(e))return e.getTitle(e)}var Or=class extends Error{constructor(e){super(`Invalid Name "${e}": Router does not support multiple routes with the same name. All name names must be unique.`)}};function kr(e){return`name`in e&&M(e.name)}function Ar(e,t){return M(t)?{...e,...zt(Dt({path:t}),e)}:e}function jr(e,t=[],n={}){let r=new Map,i=new Map,a=[...e,...t.map(e=>e.routes)],o=[...y.map(e=>Ut({type:e})),...n.rejections??[],...t.map(e=>e.rejections)];function s(e){if(!v(e)||!kr(e))return;let t=r.get(e.name);if(t&&t.id!==e.id)throw new Or(e.name);if(!(t&&t.id===e.id)){r.set(e.name,Ar(e,n.base));for(let t of e.context)v(t)&&s(t),x(t)&&c(t)}}function c(e){x(e)&&i.set(e.type,e)}function l(e){for(let t of e)s(t)}function u(e){for(let t of e)c(t)}for(let e of a){if(Mr(e)){l(e);continue}s(e)}for(let e of o){if(Nr(e)){u(e);continue}c(e)}function d(e){return r.get(e)}function f(e){return i.get(e)}return{routes:Array.from(r.values()).sort(Pr),rejections:Array.from(i.values()),getRouteByName:d,getRejectionByType:f}}function Mr(e){return Array.isArray(e)}function Nr(e){return Array.isArray(e)}function Pr(e,t){return t.depth-e.depth}function Fr(e=[]){let t=new j;return e.forEach(e=>{Un(e)&&(e.hooks.onBeforeRouteEnter.forEach(e=>t.onBeforeRouteEnter.add(e)),e.hooks.onBeforeRouteUpdate.forEach(e=>t.onBeforeRouteUpdate.add(e)),e.hooks.onBeforeRouteLeave.forEach(e=>t.onBeforeRouteLeave.add(e)),e.hooks.onAfterRouteEnter.forEach(e=>t.onAfterRouteEnter.add(e)),e.hooks.onAfterRouteUpdate.forEach(e=>t.onAfterRouteUpdate.add(e)),e.hooks.onAfterRouteLeave.forEach(e=>t.onAfterRouteLeave.add(e)))}),t}function Ir(e,{match:n,name:r,component:i}){let a=Tn(e),o=Sn(e);return(0,t.defineComponent)({name:`PropsWrapper`,expose:[],setup(){let e=(0,t.getCurrentInstance)(),s=a(),c=o();return()=>{let a=s.getProps(n.id,r,c);return a instanceof Error?``:De(a)?e?.suspense?(0,t.h)(Rr,{component:i,props:a}):(0,t.h)(Lr,{component:i,props:a}):(0,t.h)(i,a)}}})}var Lr=(0,t.defineComponent)(e=>{let n=(0,t.ref)();return(0,t.watch)(()=>e.props,async e=>{n.value=await e},{immediate:!0,deep:!0}),()=>n.value instanceof Error?``:n.value?(0,t.h)(e.component,n.value):``},{props:[`component`,`props`]}),Rr=(0,t.defineComponent)(async e=>{let n=(0,t.ref)();return n.value=await e.props,(0,t.watch)(()=>n.value,async e=>{n.value=await e},{deep:!0}),()=>n.value instanceof Error?``:n.value?(0,t.h)(e.component,n.value):``},{props:[`component`,`props`]});function zr(e){let t=new Map;return{getRouteComponents:n=>{let r=t.get(n.id);if(r)return r;let i=Br(e,n);return t.set(n.id,i),i}}}function Br(e,t){let n=Cn(e);return D(t)?Vr(e,t,t.components):T(t)?Vr(e,t,{default:t.component}):{default:n}}function Vr(e,t,n){return Object.fromEntries(Object.entries(n).map(([n,r])=>[n,Ir(e,{match:t,name:n,component:r})]))}var Hr=Symbol(),Ur=Object.create,Wr=Object.defineProperty,Gr=Object.getOwnPropertyDescriptor,Kr=Object.getOwnPropertyNames,qr=Object.getPrototypeOf,Jr=Object.prototype.hasOwnProperty,Yr=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Xr=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=Kr(t),a=0,o=i.length,s;a<o;a++)s=i[a],!Jr.call(e,s)&&s!==n&&Wr(e,s,{get:(e=>t[e]).bind(null,s),enumerable:!(r=Gr(t,s))||r.enumerable});return e},Zr=(e,t,n)=>(n=e==null?{}:Ur(qr(e)),Xr(t||!e||!e.__esModule?Wr(n,`default`,{value:e,enumerable:!0}):n,e)),Qr=typeof navigator<`u`,H=typeof window<`u`?window:typeof globalThis<`u`?globalThis:typeof global<`u`?global:{};H.chrome!==void 0&&H.chrome.devtools,Qr&&(H.self,H.top),typeof navigator<`u`&&navigator.userAgent?.toLowerCase().includes(`electron`),typeof window<`u`&&window.__NUXT__;var $r=Zr(Yr(((e,t)=>{t.exports=r;function n(e){return e instanceof Buffer?Buffer.from(e):new e.constructor(e.buffer.slice(),e.byteOffset,e.length)}function r(e){if(e||={},e.circles)return i(e);let t=new Map;if(t.set(Date,e=>new Date(e)),t.set(Map,(e,t)=>new Map(a(Array.from(e),t))),t.set(Set,(e,t)=>new Set(a(Array.from(e),t))),e.constructorHandlers)for(let n of e.constructorHandlers)t.set(n[0],n[1]);let r=null;return e.proto?s:o;function a(e,i){let a=Object.keys(e),o=Array(a.length);for(let s=0;s<a.length;s++){let c=a[s],l=e[c];typeof l!=`object`||!l?o[c]=l:l.constructor!==Object&&(r=t.get(l.constructor))?o[c]=r(l,i):ArrayBuffer.isView(l)?o[c]=n(l):o[c]=i(l)}return o}function o(e){if(typeof e!=`object`||!e)return e;if(Array.isArray(e))return a(e,o);if(e.constructor!==Object&&(r=t.get(e.constructor)))return r(e,o);let i={};for(let a in e){if(Object.hasOwnProperty.call(e,a)===!1)continue;let s=e[a];typeof s!=`object`||!s?i[a]=s:s.constructor!==Object&&(r=t.get(s.constructor))?i[a]=r(s,o):ArrayBuffer.isView(s)?i[a]=n(s):i[a]=o(s)}return i}function s(e){if(typeof e!=`object`||!e)return e;if(Array.isArray(e))return a(e,s);if(e.constructor!==Object&&(r=t.get(e.constructor)))return r(e,s);let i={};for(let a in e){let o=e[a];typeof o!=`object`||!o?i[a]=o:o.constructor!==Object&&(r=t.get(o.constructor))?i[a]=r(o,s):ArrayBuffer.isView(o)?i[a]=n(o):i[a]=s(o)}return i}}function i(e){let t=[],r=[],i=new Map;if(i.set(Date,e=>new Date(e)),i.set(Map,(e,t)=>new Map(o(Array.from(e),t))),i.set(Set,(e,t)=>new Set(o(Array.from(e),t))),e.constructorHandlers)for(let t of e.constructorHandlers)i.set(t[0],t[1]);let a=null;return e.proto?c:s;function o(e,o){let s=Object.keys(e),c=Array(s.length);for(let l=0;l<s.length;l++){let u=s[l],d=e[u];if(typeof d!=`object`||!d)c[u]=d;else if(d.constructor!==Object&&(a=i.get(d.constructor)))c[u]=a(d,o);else if(ArrayBuffer.isView(d))c[u]=n(d);else{let e=t.indexOf(d);e===-1?c[u]=o(d):c[u]=r[e]}}return c}function s(e){if(typeof e!=`object`||!e)return e;if(Array.isArray(e))return o(e,s);if(e.constructor!==Object&&(a=i.get(e.constructor)))return a(e,s);let c={};t.push(e),r.push(c);for(let o in e){if(Object.hasOwnProperty.call(e,o)===!1)continue;let l=e[o];if(typeof l!=`object`||!l)c[o]=l;else if(l.constructor!==Object&&(a=i.get(l.constructor)))c[o]=a(l,s);else if(ArrayBuffer.isView(l))c[o]=n(l);else{let e=t.indexOf(l);e===-1?c[o]=s(l):c[o]=r[e]}}return t.pop(),r.pop(),c}function c(e){if(typeof e!=`object`||!e)return e;if(Array.isArray(e))return o(e,c);if(e.constructor!==Object&&(a=i.get(e.constructor)))return a(e,c);let s={};t.push(e),r.push(s);for(let o in e){let l=e[o];if(typeof l!=`object`||!l)s[o]=l;else if(l.constructor!==Object&&(a=i.get(l.constructor)))s[o]=a(l,c);else if(ArrayBuffer.isView(l))s[o]=n(l);else{let e=t.indexOf(l);e===-1?s[o]=c(l):s[o]=r[e]}}return t.pop(),r.pop(),s}}}))(),1),ei=/(?:^|[-_/])(\w)/g;function ti(e,t){return t?t.toUpperCase():``}function ni(e){return e&&`${e}`.replace(ei,ti)}function ri(e,t){let n=e.replace(/^[a-z]:/i,``).replace(/\\/g,`/`);n.endsWith(`index${t}`)&&(n=n.replace(`/index${t}`,t));let r=n.lastIndexOf(`/`),i=n.substring(r+1);if(t){let e=i.lastIndexOf(t);return i.substring(0,e)}return``}var ii=(0,$r.default)({circles:!0}),ai={trailing:!0};function oi(e,t=25,n={}){if(n={...ai,...n},!Number.isFinite(t))throw TypeError("Expected `wait` to be a finite number");let r,i,a=[],o,s,c=(t,r)=>(o=si(e,t,r),o.finally(()=>{if(o=null,n.trailing&&s&&!i){let e=c(t,s);return s=null,e}}),o),l=function(...e){return n.trailing&&(s=e),o||new Promise(o=>{let l=!i&&n.leading;clearTimeout(i),i=setTimeout(()=>{i=null;let t=n.leading?r:c(this,e);s=null;for(let e of a)e(t);a=[]},t),l?(r=c(this,e),o(r)):a.push(o)})},u=e=>{e&&(clearTimeout(e),i=null)};return l.isPending=()=>!!i,l.cancel=()=>{u(i),a=[],s=null},l.flush=()=>{if(u(i),!s||o)return;let e=s;return s=null,c(this,e)},l}async function si(e,t,n){return await e.apply(t,n)}function ci(e,t={},n){for(let r in e){let i=e[r],a=n?`${n}:${r}`:r;typeof i==`object`&&i?ci(i,t,a):typeof i==`function`&&(t[a]=i)}return t}var li={run:e=>e()},ui=console.createTask===void 0?()=>li:console.createTask;function di(e,t){let n=ui(t.shift());return e.reduce((e,r)=>e.then(()=>n.run(()=>r(...t))),Promise.resolve())}function fi(e,t){let n=ui(t.shift());return Promise.all(e.map(e=>n.run(()=>e(...t))))}function pi(e,t){for(let n of[...e])n(t)}var mi=class{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(e,t,n={}){if(!e||typeof t!=`function`)return()=>{};let r=e,i;for(;this._deprecatedHooks[e];)i=this._deprecatedHooks[e],e=i.to;if(i&&!n.allowDeprecated){let e=i.message;e||=`${r} hook has been deprecated`+(i.to?`, please use ${i.to}`:``),this._deprecatedMessages||=new Set,this._deprecatedMessages.has(e)||(console.warn(e),this._deprecatedMessages.add(e))}if(!t.name)try{Object.defineProperty(t,`name`,{get:()=>`_`+e.replace(/\W+/g,`_`)+`_hook_cb`,configurable:!0})}catch{}return this._hooks[e]=this._hooks[e]||[],this._hooks[e].push(t),()=>{t&&=(this.removeHook(e,t),void 0)}}hookOnce(e,t){let n,r=(...e)=>(typeof n==`function`&&n(),n=void 0,r=void 0,t(...e));return n=this.hook(e,r),n}removeHook(e,t){if(this._hooks[e]){let n=this._hooks[e].indexOf(t);n!==-1&&this._hooks[e].splice(n,1),this._hooks[e].length===0&&delete this._hooks[e]}}deprecateHook(e,t){this._deprecatedHooks[e]=typeof t==`string`?{to:t}:t;let n=this._hooks[e]||[];delete this._hooks[e];for(let t of n)this.hook(e,t)}deprecateHooks(e){Object.assign(this._deprecatedHooks,e);for(let t in e)this.deprecateHook(t,e[t])}addHooks(e){let t=ci(e),n=Object.keys(t).map(e=>this.hook(e,t[e]));return()=>{for(let e of n.splice(0,n.length))e()}}removeHooks(e){let t=ci(e);for(let e in t)this.removeHook(e,t[e])}removeAllHooks(){for(let e in this._hooks)delete this._hooks[e]}callHook(e,...t){return t.unshift(e),this.callHookWith(di,e,...t)}callHookParallel(e,...t){return t.unshift(e),this.callHookWith(fi,e,...t)}callHookWith(e,t,...n){let r=this._before||this._after?{name:t,args:n,context:{}}:void 0;this._before&&pi(this._before,r);let i=e(t in this._hooks?[...this._hooks[t]]:[],n);return i instanceof Promise?i.finally(()=>{this._after&&r&&pi(this._after,r)}):(this._after&&r&&pi(this._after,r),i)}beforeEach(e){return this._before=this._before||[],this._before.push(e),()=>{if(this._before!==void 0){let t=this._before.indexOf(e);t!==-1&&this._before.splice(t,1)}}}afterEach(e){return this._after=this._after||[],this._after.push(e),()=>{if(this._after!==void 0){let t=this._after.indexOf(e);t!==-1&&this._after.splice(t,1)}}}};function hi(){return new mi}var gi=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);function _i(e){if(typeof e==`function`)return e.displayName||e.name||e.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__||``;let t=e.name||e._componentTag||e.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__||e.__name;return t===`index`&&e.__file?.endsWith(`index.vue`)?``:t}function vi(e){let t=e.__file;if(t)return ni(ri(t,`.vue`))}function yi(e,t){return e.type.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__=t,t}function bi(e){if(e.__VUE_DEVTOOLS_NEXT_APP_RECORD__)return e.__VUE_DEVTOOLS_NEXT_APP_RECORD__;if(e.root)return e.appContext.app.__VUE_DEVTOOLS_NEXT_APP_RECORD__}function xi(e){let t=e.subTree?.type,n=bi(e);return n?n?.types?.Fragment===t:!1}function Si(e){let t=_i(e?.type||{});if(t)return t;if(e?.root===e)return`Root`;for(let t in e.parent?.type?.components)if(e.parent.type.components[t]===e?.type)return yi(e,t);for(let t in e.appContext?.components)if(e.appContext.components[t]===e?.type)return yi(e,t);return vi(e?.type||{})||`Anonymous Component`}function Ci(e){return`${e?.appContext?.app?.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__??0}:${e===e?.root?`root`:e.uid}`}function wi(e,t){return t||=`${e.id}:root`,e.instanceMap.get(t)||e.instanceMap.get(`:root`)}function Ti(){let e={top:0,bottom:0,left:0,right:0,get width(){return e.right-e.left},get height(){return e.bottom-e.top}};return e}var Ei;function Di(e){return Ei||=document.createRange(),Ei.selectNode(e),Ei.getBoundingClientRect()}function Oi(e){let t=Ti();if(!e.children)return t;for(let n=0,r=e.children.length;n<r;n++){let r=e.children[n],i;if(r.component)i=U(r.component);else if(r.el){let e=r.el;e.nodeType===1||e.getBoundingClientRect?i=e.getBoundingClientRect():e.nodeType===3&&e.data.trim()&&(i=Di(e))}i&&ki(t,i)}return t}function ki(e,t){return(!e.top||t.top<e.top)&&(e.top=t.top),(!e.bottom||t.bottom>e.bottom)&&(e.bottom=t.bottom),(!e.left||t.left<e.left)&&(e.left=t.left),(!e.right||t.right>e.right)&&(e.right=t.right),e}var Ai={top:0,left:0,right:0,bottom:0,width:0,height:0};function U(e){let t=e.subTree.el;return typeof window>`u`?Ai:xi(e)?Oi(e.subTree):t?.nodeType===1?t?.getBoundingClientRect():e.subTree.component?U(e.subTree.component):Ai}function ji(e){return xi(e)?Mi(e.subTree):e.subTree?[e.subTree.el]:[]}function Mi(e){if(!e.children)return[];let t=[];return e.children.forEach(e=>{e.component?t.push(...ji(e.component)):e?.el&&t.push(e.el)}),t}var Ni=`__vue-devtools-component-inspector__`,Pi=`__vue-devtools-component-inspector__card__`,Fi=`__vue-devtools-component-inspector__name__`,Ii=`__vue-devtools-component-inspector__indicator__`,Li={display:`block`,zIndex:2147483640,position:`fixed`,backgroundColor:`#42b88325`,border:`1px solid #42b88350`,borderRadius:`5px`,transition:`all 0.1s ease-in`,pointerEvents:`none`},Ri={fontFamily:`Arial, Helvetica, sans-serif`,padding:`5px 8px`,borderRadius:`4px`,textAlign:`left`,position:`absolute`,left:0,color:`#e9e9e9`,fontSize:`14px`,fontWeight:600,lineHeight:`24px`,backgroundColor:`#42b883`,boxShadow:`0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)`},zi={display:`inline-block`,fontWeight:400,fontStyle:`normal`,fontSize:`12px`,opacity:.7};function Bi(){return document.getElementById(Ni)}function Vi(){return document.getElementById(Pi)}function Hi(){return document.getElementById(Ii)}function Ui(){return document.getElementById(Fi)}function Wi(e){return{left:`${Math.round(e.left*100)/100}px`,top:`${Math.round(e.top*100)/100}px`,width:`${Math.round(e.width*100)/100}px`,height:`${Math.round(e.height*100)/100}px`}}function Gi(e){let t=document.createElement(`div`);t.id=e.elementId??Ni,Object.assign(t.style,{...Li,...Wi(e.bounds),...e.style});let n=document.createElement(`span`);n.id=Pi,Object.assign(n.style,{...Ri,top:e.bounds.top<35?0:`-35px`});let r=document.createElement(`span`);r.id=Fi,r.innerHTML=`<${e.name}> `;let i=document.createElement(`i`);return i.id=Ii,i.innerHTML=`${Math.round(e.bounds.width*100)/100} x ${Math.round(e.bounds.height*100)/100}`,Object.assign(i.style,zi),n.appendChild(r),n.appendChild(i),t.appendChild(n),document.body.appendChild(t),t}function Ki(e){let t=Bi(),n=Vi(),r=Ui(),i=Hi();t&&(Object.assign(t.style,{...Li,...Wi(e.bounds)}),Object.assign(n.style,{top:e.bounds.top<35?0:`-35px`}),r.innerHTML=`<${e.name}> `,i.innerHTML=`${Math.round(e.bounds.width*100)/100} x ${Math.round(e.bounds.height*100)/100}`)}function qi(e){let t=U(e);if(!t.width&&!t.height)return;let n=Si(e);Bi()?Ki({bounds:t,name:n}):Gi({bounds:t,name:n})}function Ji(){let e=Bi();e&&(e.style.display=`none`)}var Yi=null;function Xi(e){let t=e.target;if(t){let e=t.__vueParentComponent;if(e&&(Yi=e,e.vnode.el)){let t=U(e),n=Si(e);Bi()?Ki({bounds:t,name:n}):Gi({bounds:t,name:n})}}}function Zi(e,t){e.preventDefault(),e.stopPropagation(),Yi&&t(Ci(Yi))}var Qi=null;function $i(){Ji(),window.removeEventListener(`mouseover`,Xi),window.removeEventListener(`click`,Qi,!0),Qi=null}function ea(){return window.addEventListener(`mouseover`,Xi),new Promise(e=>{function t(n){n.preventDefault(),n.stopPropagation(),Zi(n,n=>{window.removeEventListener(`click`,t,!0),Qi=null,window.removeEventListener(`mouseover`,Xi);let r=Bi();r&&(r.style.display=`none`),e(JSON.stringify({id:n}))})}Qi=t,window.addEventListener(`click`,t,!0)})}function ta(e){let t=wi(K.value,e.id);if(t){let[n]=ji(t);if(typeof n.scrollIntoView==`function`)n.scrollIntoView({behavior:`smooth`});else{let e=U(t),n=document.createElement(`div`),r={...Wi(e),position:`absolute`};Object.assign(n.style,r),document.body.appendChild(n),n.scrollIntoView({behavior:`smooth`}),setTimeout(()=>{document.body.removeChild(n)},2e3)}setTimeout(()=>{let n=U(t);if(n.width||n.height){let r=Si(t),i=Bi();i?Ki({...e,name:r,bounds:n}):Gi({...e,name:r,bounds:n}),setTimeout(()=>{i&&(i.style.display=`none`)},1500)}},1200)}}H.__VUE_DEVTOOLS_COMPONENT_INSPECTOR_ENABLED__??=!0;function na(e){let t=0,n=setInterval(()=>{H.__VUE_INSPECTOR__&&(clearInterval(n),t+=30,e()),t>=5e3&&clearInterval(n)},30)}function ra(){let e=H.__VUE_INSPECTOR__,t=e.openInEditor;e.openInEditor=async(...n)=>{e.disable(),t(...n)}}function ia(){return new Promise(e=>{function t(){ra(),e(H.__VUE_INSPECTOR__)}H.__VUE_INSPECTOR__?t():na(()=>{t()})})}var aa=function(e){return e.SKIP=`__v_skip`,e.IS_REACTIVE=`__v_isReactive`,e.IS_READONLY=`__v_isReadonly`,e.IS_SHALLOW=`__v_isShallow`,e.RAW=`__v_raw`,e}({});function oa(e){return!!(e&&e[aa.IS_READONLY])}function sa(e){return oa(e)?sa(e[aa.RAW]):!!(e&&e[aa.IS_REACTIVE])}function ca(e){return!!(e&&e.__v_isRef===!0)}function la(e){let t=e&&e[aa.RAW];return t?la(t):e}var ua=class{constructor(){this.refEditor=new da}set(e,t,n,r){let i=Array.isArray(t)?t:t.split(`.`);for(;i.length>1;){let t=i.shift();e=e instanceof Map?e.get(t):e instanceof Set?Array.from(e.values())[t]:e[t],this.refEditor.isRef(e)&&(e=this.refEditor.get(e))}let a=i[0],o=this.refEditor.get(e)[a];r?r(e,a,n):this.refEditor.isRef(o)?this.refEditor.set(o,n):e[a]=n}get(e,t){let n=Array.isArray(t)?t:t.split(`.`);for(let t=0;t<n.length;t++)if(e=e instanceof Map?e.get(n[t]):e[n[t]],this.refEditor.isRef(e)&&(e=this.refEditor.get(e)),!e)return;return e}has(e,t,n=!1){if(e===void 0)return!1;let r=Array.isArray(t)?t.slice():t.split(`.`),i=n?2:1;for(;e&&r.length>i;){let t=r.shift();e=e[t],this.refEditor.isRef(e)&&(e=this.refEditor.get(e))}return e!=null&&Object.prototype.hasOwnProperty.call(e,r[0])}createDefaultSetCallback(e){return(t,n,r)=>{if((e.remove||e.newKey)&&(Array.isArray(t)?t.splice(n,1):la(t)instanceof Map?t.delete(n):la(t)instanceof Set?t.delete(Array.from(t.values())[n]):Reflect.deleteProperty(t,n)),!e.remove){let i=t[e.newKey||n];this.refEditor.isRef(i)?this.refEditor.set(i,r):la(t)instanceof Map?t.set(e.newKey||n,r):la(t)instanceof Set?t.add(r):t[e.newKey||n]=r}}}},da=class{set(e,t){if(ca(e))e.value=t;else{if(e instanceof Set&&Array.isArray(t)){e.clear(),t.forEach(t=>e.add(t));return}let n=Object.keys(t);if(e instanceof Map){let r=new Set(e.keys());n.forEach(n=>{e.set(n,Reflect.get(t,n)),r.delete(n)}),r.forEach(t=>e.delete(t));return}let r=new Set(Object.keys(e));n.forEach(n=>{Reflect.set(e,n,Reflect.get(t,n)),r.delete(n)}),r.forEach(t=>Reflect.deleteProperty(e,t))}}get(e){return ca(e)?e.value:e}isRef(e){return ca(e)||sa(e)}};new ua;var fa=`__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS_STATE__`;function pa(){if(typeof window>`u`||!Qr||typeof localStorage>`u`||localStorage===null)return{recordingState:!1,mouseEventEnabled:!1,keyboardEventEnabled:!1,componentEventEnabled:!1,performanceEventEnabled:!1,selected:``};let e=localStorage.getItem===void 0?null:localStorage.getItem(fa);return e?JSON.parse(e):{recordingState:!1,mouseEventEnabled:!1,keyboardEventEnabled:!1,componentEventEnabled:!1,performanceEventEnabled:!1,selected:``}}H.__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS??=[];var ma=new Proxy(H.__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS,{get(e,t,n){return Reflect.get(e,t,n)}});function ha(e,t){q.timelineLayersState[t.id]=!1,ma.push({...e,descriptorId:t.id,appRecord:bi(t.app)})}H.__VUE_DEVTOOLS_KIT_INSPECTOR__??=[];var ga=new Proxy(H.__VUE_DEVTOOLS_KIT_INSPECTOR__,{get(e,t,n){return Reflect.get(e,t,n)}}),_a=oi(()=>{to.hooks.callHook(xa.SEND_INSPECTOR_TO_CLIENT,ya())});function va(e,t){ga.push({options:e,descriptor:t,treeFilterPlaceholder:e.treeFilterPlaceholder??`Search tree...`,stateFilterPlaceholder:e.stateFilterPlaceholder??`Search state...`,treeFilter:``,selectedNodeId:``,appRecord:bi(t.app)}),_a()}function ya(){return ga.filter(e=>e.descriptor.app===K.value.app).filter(e=>e.descriptor.id!==`components`).map(e=>{let t=e.descriptor,n=e.options;return{id:n.id,label:n.label,logo:t.logo,icon:`custom-ic-baseline-${n?.icon?.replace(/_/g,`-`)}`,packageName:t.packageName,homepage:t.homepage,pluginId:t.id}})}function ba(e,t){return ga.find(n=>n.options.id===e&&(t?n.descriptor.app===t:!0))}var W=function(e){return e.VISIT_COMPONENT_TREE=`visitComponentTree`,e.INSPECT_COMPONENT=`inspectComponent`,e.EDIT_COMPONENT_STATE=`editComponentState`,e.GET_INSPECTOR_TREE=`getInspectorTree`,e.GET_INSPECTOR_STATE=`getInspectorState`,e.EDIT_INSPECTOR_STATE=`editInspectorState`,e.INSPECT_TIMELINE_EVENT=`inspectTimelineEvent`,e.TIMELINE_CLEARED=`timelineCleared`,e.SET_PLUGIN_SETTINGS=`setPluginSettings`,e}({}),G=function(e){return e.ADD_INSPECTOR=`addInspector`,e.SEND_INSPECTOR_TREE=`sendInspectorTree`,e.SEND_INSPECTOR_STATE=`sendInspectorState`,e.CUSTOM_INSPECTOR_SELECT_NODE=`customInspectorSelectNode`,e.TIMELINE_LAYER_ADDED=`timelineLayerAdded`,e.TIMELINE_EVENT_ADDED=`timelineEventAdded`,e.GET_COMPONENT_INSTANCES=`getComponentInstances`,e.GET_COMPONENT_BOUNDS=`getComponentBounds`,e.GET_COMPONENT_NAME=`getComponentName`,e.COMPONENT_HIGHLIGHT=`componentHighlight`,e.COMPONENT_UNHIGHLIGHT=`componentUnhighlight`,e}({}),xa=function(e){return e.SEND_INSPECTOR_TREE_TO_CLIENT=`sendInspectorTreeToClient`,e.SEND_INSPECTOR_STATE_TO_CLIENT=`sendInspectorStateToClient`,e.SEND_TIMELINE_EVENT_TO_CLIENT=`sendTimelineEventToClient`,e.SEND_INSPECTOR_TO_CLIENT=`sendInspectorToClient`,e.SEND_ACTIVE_APP_UNMOUNTED_TO_CLIENT=`sendActiveAppUpdatedToClient`,e.DEVTOOLS_STATE_UPDATED=`devtoolsStateUpdated`,e.DEVTOOLS_CONNECTED_UPDATED=`devtoolsConnectedUpdated`,e.ROUTER_INFO_UPDATED=`routerInfoUpdated`,e}({});function Sa(){let e=hi();e.hook(G.ADD_INSPECTOR,({inspector:e,plugin:t})=>{va(e,t.descriptor)});let t=oi(async({inspectorId:t,plugin:n})=>{if(!t||!n?.descriptor?.app||q.highPerfModeEnabled)return;let r=ba(t,n.descriptor.app),i={app:n.descriptor.app,inspectorId:t,filter:r?.treeFilter||``,rootNodes:[]};await new Promise(t=>{e.callHookWith(async e=>{await Promise.all(e.map(e=>e(i))),t()},W.GET_INSPECTOR_TREE)}),e.callHookWith(async e=>{await Promise.all(e.map(e=>e({inspectorId:t,rootNodes:i.rootNodes})))},xa.SEND_INSPECTOR_TREE_TO_CLIENT)},120);e.hook(G.SEND_INSPECTOR_TREE,t);let n=oi(async({inspectorId:t,plugin:n})=>{if(!t||!n?.descriptor?.app||q.highPerfModeEnabled)return;let r=ba(t,n.descriptor.app),i={app:n.descriptor.app,inspectorId:t,nodeId:r?.selectedNodeId||``,state:null},a={currentTab:`custom-inspector:${t}`};i.nodeId&&await new Promise(t=>{e.callHookWith(async e=>{await Promise.all(e.map(e=>e(i,a))),t()},W.GET_INSPECTOR_STATE)}),e.callHookWith(async e=>{await Promise.all(e.map(e=>e({inspectorId:t,nodeId:i.nodeId,state:i.state})))},xa.SEND_INSPECTOR_STATE_TO_CLIENT)},120);return e.hook(G.SEND_INSPECTOR_STATE,n),e.hook(G.CUSTOM_INSPECTOR_SELECT_NODE,({inspectorId:e,nodeId:t,plugin:n})=>{let r=ba(e,n.descriptor.app);r&&(r.selectedNodeId=t)}),e.hook(G.TIMELINE_LAYER_ADDED,({options:e,plugin:t})=>{ha(e,t.descriptor)}),e.hook(G.TIMELINE_EVENT_ADDED,({options:t,plugin:n})=>{q.highPerfModeEnabled||!q.timelineLayersState?.[n.descriptor.id]&&![`performance`,`component-event`,`keyboard`,`mouse`].includes(t.layerId)||e.callHookWith(async e=>{await Promise.all(e.map(e=>e(t)))},xa.SEND_TIMELINE_EVENT_TO_CLIENT)}),e.hook(G.GET_COMPONENT_INSTANCES,async({app:e})=>{let t=e.__VUE_DEVTOOLS_NEXT_APP_RECORD__;if(!t)return null;let n=t.id.toString();return[...t.instanceMap].filter(([e])=>e.split(`:`)[0]===n).map(([,e])=>e)}),e.hook(G.GET_COMPONENT_BOUNDS,async({instance:e})=>U(e)),e.hook(G.GET_COMPONENT_NAME,({instance:e})=>Si(e)),e.hook(G.COMPONENT_HIGHLIGHT,({uid:e})=>{let t=K.value.instanceMap.get(e);t&&qi(t)}),e.hook(G.COMPONENT_UNHIGHLIGHT,()=>{Ji()}),e}H.__VUE_DEVTOOLS_KIT_APP_RECORDS__??=[],H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__??={},H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__??=``,H.__VUE_DEVTOOLS_KIT_CUSTOM_TABS__??=[],H.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__??=[];var Ca=`__VUE_DEVTOOLS_KIT_GLOBAL_STATE__`;function wa(){return{connected:!1,clientConnected:!1,vitePluginDetected:!0,appRecords:[],activeAppRecordId:``,tabs:[],commands:[],highPerfModeEnabled:!0,devtoolsClientDetected:{},perfUniqueGroupId:0,timelineLayersState:pa()}}H[Ca]??=wa();var Ta=oi(e=>{to.hooks.callHook(xa.DEVTOOLS_STATE_UPDATED,{state:e})});oi((e,t)=>{to.hooks.callHook(xa.DEVTOOLS_CONNECTED_UPDATED,{state:e,oldState:t})});var Ea=new Proxy(H.__VUE_DEVTOOLS_KIT_APP_RECORDS__,{get(e,t,n){return t===`value`?H.__VUE_DEVTOOLS_KIT_APP_RECORDS__:H.__VUE_DEVTOOLS_KIT_APP_RECORDS__[t]}}),K=new Proxy(H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__,{get(e,t,n){return t===`value`?H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__:t===`id`?H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__:H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__[t]}});function Da(){Ta({...H[Ca],appRecords:Ea.value,activeAppRecordId:K.id,tabs:H.__VUE_DEVTOOLS_KIT_CUSTOM_TABS__,commands:H.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__})}function Oa(e){H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__=e,Da()}function ka(e){H.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__=e,Da()}var q=new Proxy(H[Ca],{get(e,t){return t===`appRecords`?Ea:t===`activeAppRecordId`?K.id:t===`tabs`?H.__VUE_DEVTOOLS_KIT_CUSTOM_TABS__:t===`commands`?H.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__:H[Ca][t]},deleteProperty(e,t){return delete e[t],!0},set(e,t,n){return e[t]=n,H[Ca][t]=n,!0}});function Aa(e={}){let{file:t,host:n,baseUrl:r=window.location.origin,line:i=0,column:a=0}=e;if(t){if(n===`chrome-extension`){let e=t.replace(/\\/g,`\\\\`),n=window.VUE_DEVTOOLS_CONFIG?.openInEditorHost??`/`;fetch(`${n}__open-in-editor?file=${encodeURI(t)}`).then(t=>{if(!t.ok){let t=`Opening component ${e} failed`;console.log(`%c${t}`,`color:red`)}})}else if(q.vitePluginDetected){let e=H.__VUE_DEVTOOLS_OPEN_IN_EDITOR_BASE_URL__??r;H.__VUE_INSPECTOR__.openInEditor(e,t,i,a)}}}H.__VUE_DEVTOOLS_KIT_PLUGIN_BUFFER__??=[];var ja=new Proxy(H.__VUE_DEVTOOLS_KIT_PLUGIN_BUFFER__,{get(e,t,n){return Reflect.get(e,t,n)}});function Ma(e){let t={};return Object.keys(e).forEach(n=>{t[n]=e[n].defaultValue}),t}function Na(e){return`__VUE_DEVTOOLS_NEXT_PLUGIN_SETTINGS__${e}__`}function Pa(e){return(ja.find(t=>t[0].id===e&&!!t[0]?.settings)?.[0]??null)?.settings??null}function Fa(e,t){let n=Na(e);if(n){let e=localStorage.getItem(n);if(e)return JSON.parse(e)}return Ma(e?(ja.find(t=>t[0].id===e)?.[0]??null)?.settings??{}:t)}function Ia(e,t){let n=Na(e);localStorage.getItem(n)||localStorage.setItem(n,JSON.stringify(Ma(t)))}function La(e,t,n){let r=Na(e),i=localStorage.getItem(r),a=JSON.parse(i||`{}`),o={...a,[t]:n};localStorage.setItem(r,JSON.stringify(o)),to.hooks.callHookWith(r=>{r.forEach(r=>r({pluginId:e,key:t,oldValue:a[t],newValue:n,settings:o}))},W.SET_PLUGIN_SETTINGS)}var J=function(e){return e.APP_INIT=`app:init`,e.APP_UNMOUNT=`app:unmount`,e.COMPONENT_UPDATED=`component:updated`,e.COMPONENT_ADDED=`component:added`,e.COMPONENT_REMOVED=`component:removed`,e.COMPONENT_EMIT=`component:emit`,e.PERFORMANCE_START=`perf:start`,e.PERFORMANCE_END=`perf:end`,e.ADD_ROUTE=`router:add-route`,e.REMOVE_ROUTE=`router:remove-route`,e.RENDER_TRACKED=`render:tracked`,e.RENDER_TRIGGERED=`render:triggered`,e.APP_CONNECTED=`app:connected`,e.SETUP_DEVTOOLS_PLUGIN=`devtools-plugin:setup`,e}({}),Y=H.__VUE_DEVTOOLS_HOOK??=hi(),Ra={on:{vueAppInit(e){Y.hook(J.APP_INIT,e)},vueAppUnmount(e){Y.hook(J.APP_UNMOUNT,e)},vueAppConnected(e){Y.hook(J.APP_CONNECTED,e)},componentAdded(e){return Y.hook(J.COMPONENT_ADDED,e)},componentEmit(e){return Y.hook(J.COMPONENT_EMIT,e)},componentUpdated(e){return Y.hook(J.COMPONENT_UPDATED,e)},componentRemoved(e){return Y.hook(J.COMPONENT_REMOVED,e)},setupDevtoolsPlugin(e){Y.hook(J.SETUP_DEVTOOLS_PLUGIN,e)},perfStart(e){return Y.hook(J.PERFORMANCE_START,e)},perfEnd(e){return Y.hook(J.PERFORMANCE_END,e)}},setupDevToolsPlugin(e,t){return Y.callHook(J.SETUP_DEVTOOLS_PLUGIN,e,t)}},za=class{constructor({plugin:e,ctx:t}){this.hooks=t.hooks,this.plugin=e}get on(){return{visitComponentTree:e=>{this.hooks.hook(W.VISIT_COMPONENT_TREE,e)},inspectComponent:e=>{this.hooks.hook(W.INSPECT_COMPONENT,e)},editComponentState:e=>{this.hooks.hook(W.EDIT_COMPONENT_STATE,e)},getInspectorTree:e=>{this.hooks.hook(W.GET_INSPECTOR_TREE,e)},getInspectorState:e=>{this.hooks.hook(W.GET_INSPECTOR_STATE,e)},editInspectorState:e=>{this.hooks.hook(W.EDIT_INSPECTOR_STATE,e)},inspectTimelineEvent:e=>{this.hooks.hook(W.INSPECT_TIMELINE_EVENT,e)},timelineCleared:e=>{this.hooks.hook(W.TIMELINE_CLEARED,e)},setPluginSettings:e=>{this.hooks.hook(W.SET_PLUGIN_SETTINGS,e)}}}notifyComponentUpdate(e){if(q.highPerfModeEnabled)return;let t=ya().find(e=>e.packageName===this.plugin.descriptor.packageName);if(t?.id){if(e){let t=[e.appContext.app,e.uid,e.parent?.uid,e];Y.callHook(J.COMPONENT_UPDATED,...t)}else Y.callHook(J.COMPONENT_UPDATED);this.hooks.callHook(G.SEND_INSPECTOR_STATE,{inspectorId:t.id,plugin:this.plugin})}}addInspector(e){this.hooks.callHook(G.ADD_INSPECTOR,{inspector:e,plugin:this.plugin}),this.plugin.descriptor.settings&&Ia(e.id,this.plugin.descriptor.settings)}sendInspectorTree(e){q.highPerfModeEnabled||this.hooks.callHook(G.SEND_INSPECTOR_TREE,{inspectorId:e,plugin:this.plugin})}sendInspectorState(e){q.highPerfModeEnabled||this.hooks.callHook(G.SEND_INSPECTOR_STATE,{inspectorId:e,plugin:this.plugin})}selectInspectorNode(e,t){this.hooks.callHook(G.CUSTOM_INSPECTOR_SELECT_NODE,{inspectorId:e,nodeId:t,plugin:this.plugin})}visitComponentTree(e){return this.hooks.callHook(W.VISIT_COMPONENT_TREE,e)}now(){return q.highPerfModeEnabled?0:Date.now()}addTimelineLayer(e){this.hooks.callHook(G.TIMELINE_LAYER_ADDED,{options:e,plugin:this.plugin})}addTimelineEvent(e){q.highPerfModeEnabled||this.hooks.callHook(G.TIMELINE_EVENT_ADDED,{options:e,plugin:this.plugin})}getSettings(e){return Fa(e??this.plugin.descriptor.id,this.plugin.descriptor.settings)}getComponentInstances(e){return this.hooks.callHook(G.GET_COMPONENT_INSTANCES,{app:e})}getComponentBounds(e){return this.hooks.callHook(G.GET_COMPONENT_BOUNDS,{instance:e})}getComponentName(e){return this.hooks.callHook(G.GET_COMPONENT_NAME,{instance:e})}highlightElement(e){let t=e.__VUE_DEVTOOLS_NEXT_UID__;return this.hooks.callHook(G.COMPONENT_HIGHLIGHT,{uid:t})}unhighlightElement(){return this.hooks.callHook(G.COMPONENT_UNHIGHLIGHT)}},Ba=`__vue_devtool_undefined__`,Va=`__vue_devtool_infinity__`,Ha=`__vue_devtool_negative_infinity__`,Ua=`__vue_devtool_nan__`;Object.entries({[Ba]:`undefined`,[Ua]:`NaN`,[Va]:`Infinity`,[Ha]:`-Infinity`}).reduce((e,[t,n])=>(e[n]=t,e),{}),H.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__??=new Set;function Wa(e,t){return Ra.setupDevToolsPlugin(e,t)}function Ga(e,t){let[n,r]=e;if(n.app!==t)return;let i=new za({plugin:{setupFn:r,descriptor:n},ctx:to});n.packageName===`vuex`&&i.on.editInspectorState(e=>{i.sendInspectorState(e.inspectorId)}),r(i)}function Ka(e,t){H.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.has(e)||q.highPerfModeEnabled&&!t?.inspectingComponent||(H.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.add(e),ja.forEach(t=>{Ga(t,e)}))}var qa=`__VUE_DEVTOOLS_ROUTER__`,Ja=`__VUE_DEVTOOLS_ROUTER_INFO__`;H[Ja]??={currentRoute:null,routes:[]},H[qa]??={},new Proxy(H[Ja],{get(e,t){return H[Ja][t]}}),new Proxy(H[qa],{get(e,t){if(t===`value`)return H[qa]}});function Ya(e){let t=new Map;return(e?.getRoutes()||[]).filter(e=>!t.has(e.path)&&t.set(e.path,1))}function Xa(e){return e.map(e=>{let{path:t,name:n,children:r,meta:i}=e;return r?.length&&(r=Xa(r)),{path:t,name:n,children:r,meta:i}})}function Za(e){if(e){let{fullPath:t,hash:n,href:r,path:i,name:a,matched:o,params:s,query:c}=e;return{fullPath:t,hash:n,href:r,path:i,name:a,params:s,query:c,matched:Xa(o)}}return e}function Qa(e,t){function n(){let t=e.app?.config.globalProperties.$router,n=Za(t?.currentRoute.value),r=Xa(Ya(t)),i=console.warn;console.warn=()=>{},H[Ja]={currentRoute:n?ii(n):{},routes:ii(r)},H[qa]=t,console.warn=i}n(),Ra.on.componentUpdated(oi(()=>{t.value?.app===e.app&&(n(),!q.highPerfModeEnabled&&to.hooks.callHook(xa.ROUTER_INFO_UPDATED,{state:H[Ja]}))},200))}function $a(e){return{async getInspectorTree(t){let n={...t,app:K.value.app,rootNodes:[]};return await new Promise(t=>{e.callHookWith(async e=>{await Promise.all(e.map(e=>e(n))),t()},W.GET_INSPECTOR_TREE)}),n.rootNodes},async getInspectorState(t){let n={...t,app:K.value.app,state:null},r={currentTab:`custom-inspector:${t.inspectorId}`};return await new Promise(t=>{e.callHookWith(async e=>{await Promise.all(e.map(e=>e(n,r))),t()},W.GET_INSPECTOR_STATE)}),n.state},editInspectorState(t){let n=new ua,r={...t,app:K.value.app,set:(e,r=t.path,i=t.state.value,a)=>{n.set(e,r,i,a||n.createDefaultSetCallback(t.state))}};e.callHookWith(e=>{e.forEach(e=>e(r))},W.EDIT_INSPECTOR_STATE)},sendInspectorState(t){let n=ba(t);e.callHook(G.SEND_INSPECTOR_STATE,{inspectorId:t,plugin:{descriptor:n.descriptor,setupFn:()=>({})}})},inspectComponentInspector(){return ea()},cancelInspectComponentInspector(){return $i()},getComponentRenderCode(e){let t=wi(K.value,e);if(t)return typeof t?.type==`function`?t.type.toString():t.render.toString()},scrollToComponent(e){return ta({id:e})},openInEditor:Aa,getVueInspector:ia,toggleApp(e,t){let n=Ea.value.find(t=>t.id===e);n&&(ka(e),Oa(n),Qa(n,K),_a(),Ka(n.app,t))},inspectDOM(e){let t=wi(K.value,e);if(t){let[e]=ji(t);e&&(H.__VUE_DEVTOOLS_INSPECT_DOM_TARGET__=e)}},updatePluginSettings(e,t,n){La(e,t,n)},getPluginSettings(e){return{options:Pa(e),values:Fa(e)}}}}H.__VUE_DEVTOOLS_ENV__??={vitePluginDetected:!1};var eo=Sa();H.__VUE_DEVTOOLS_KIT_CONTEXT__??={hooks:eo,get state(){return{...q,activeAppRecordId:K.id,activeAppRecord:K.value,appRecords:Ea.value}},api:$a(eo)};var to=H.__VUE_DEVTOOLS_KIT_CONTEXT__,no=gi(((e,t)=>{(function(e){"use strict";var n={À:`A`,Á:`A`,Â:`A`,Ã:`A`,Ä:`Ae`,Å:`A`,Æ:`AE`,Ç:`C`,È:`E`,É:`E`,Ê:`E`,Ë:`E`,Ì:`I`,Í:`I`,Î:`I`,Ï:`I`,Ð:`D`,Ñ:`N`,Ò:`O`,Ó:`O`,Ô:`O`,Õ:`O`,Ö:`Oe`,Ő:`O`,Ø:`O`,Ù:`U`,Ú:`U`,Û:`U`,Ü:`Ue`,Ű:`U`,Ý:`Y`,Þ:`TH`,ß:`ss`,à:`a`,á:`a`,â:`a`,ã:`a`,ä:`ae`,å:`a`,æ:`ae`,ç:`c`,è:`e`,é:`e`,ê:`e`,ë:`e`,ì:`i`,í:`i`,î:`i`,ï:`i`,ð:`d`,ñ:`n`,ò:`o`,ó:`o`,ô:`o`,õ:`o`,ö:`oe`,ő:`o`,ø:`o`,ù:`u`,ú:`u`,û:`u`,ü:`ue`,ű:`u`,ý:`y`,þ:`th`,ÿ:`y`,ẞ:`SS`,ا:`a`,أ:`a`,إ:`i`,آ:`aa`,ؤ:`u`,ئ:`e`,ء:`a`,ب:`b`,ت:`t`,ث:`th`,ج:`j`,ح:`h`,خ:`kh`,د:`d`,ذ:`th`,ر:`r`,ز:`z`,س:`s`,ش:`sh`,ص:`s`,ض:`dh`,ط:`t`,ظ:`z`,ع:`a`,غ:`gh`,ف:`f`,ق:`q`,ك:`k`,ل:`l`,م:`m`,ن:`n`,ه:`h`,و:`w`,ي:`y`,ى:`a`,ة:`h`,ﻻ:`la`,ﻷ:`laa`,ﻹ:`lai`,ﻵ:`laa`,گ:`g`,چ:`ch`,پ:`p`,ژ:`zh`,ک:`k`,ی:`y`,"َ":`a`,"ً":`an`,"ِ":`e`,"ٍ":`en`,"ُ":`u`,"ٌ":`on`,"ْ":``,"٠":`0`,"١":`1`,"٢":`2`,"٣":`3`,"٤":`4`,"٥":`5`,"٦":`6`,"٧":`7`,"٨":`8`,"٩":`9`,"۰":`0`,"۱":`1`,"۲":`2`,"۳":`3`,"۴":`4`,"۵":`5`,"۶":`6`,"۷":`7`,"۸":`8`,"۹":`9`,က:`k`,ခ:`kh`,ဂ:`g`,ဃ:`ga`,င:`ng`,စ:`s`,ဆ:`sa`,ဇ:`z`,စျ:`za`,ည:`ny`,ဋ:`t`,ဌ:`ta`,ဍ:`d`,ဎ:`da`,ဏ:`na`,တ:`t`,ထ:`ta`,ဒ:`d`,ဓ:`da`,န:`n`,ပ:`p`,ဖ:`pa`,ဗ:`b`,ဘ:`ba`,မ:`m`,ယ:`y`,ရ:`ya`,လ:`l`,ဝ:`w`,သ:`th`,ဟ:`h`,ဠ:`la`,အ:`a`,"ြ":`y`,"ျ":`ya`,"ွ":`w`,"ြွ":`yw`,"ျွ":`ywa`,"ှ":`h`,ဧ:`e`,"၏":`-e`,ဣ:`i`,ဤ:`-i`,ဉ:`u`,ဦ:`-u`,ဩ:`aw`,သြော:`aw`,ဪ:`aw`,"၀":`0`,"၁":`1`,"၂":`2`,"၃":`3`,"၄":`4`,"၅":`5`,"၆":`6`,"၇":`7`,"၈":`8`,"၉":`9`,"္":``,"့":``,"း":``,č:`c`,ď:`d`,ě:`e`,ň:`n`,ř:`r`,š:`s`,ť:`t`,ů:`u`,ž:`z`,Č:`C`,Ď:`D`,Ě:`E`,Ň:`N`,Ř:`R`,Š:`S`,Ť:`T`,Ů:`U`,Ž:`Z`,ހ:`h`,ށ:`sh`,ނ:`n`,ރ:`r`,ބ:`b`,ޅ:`lh`,ކ:`k`,އ:`a`,ވ:`v`,މ:`m`,ފ:`f`,ދ:`dh`,ތ:`th`,ލ:`l`,ގ:`g`,ޏ:`gn`,ސ:`s`,ޑ:`d`,ޒ:`z`,ޓ:`t`,ޔ:`y`,ޕ:`p`,ޖ:`j`,ޗ:`ch`,ޘ:`tt`,ޙ:`hh`,ޚ:`kh`,ޛ:`th`,ޜ:`z`,ޝ:`sh`,ޞ:`s`,ޟ:`d`,ޠ:`t`,ޡ:`z`,ޢ:`a`,ޣ:`gh`,ޤ:`q`,ޥ:`w`,"ަ":`a`,"ާ":`aa`,"ި":`i`,"ީ":`ee`,"ު":`u`,"ޫ":`oo`,"ެ":`e`,"ޭ":`ey`,"ޮ":`o`,"ޯ":`oa`,"ް":``,ა:`a`,ბ:`b`,გ:`g`,დ:`d`,ე:`e`,ვ:`v`,ზ:`z`,თ:`t`,ი:`i`,კ:`k`,ლ:`l`,მ:`m`,ნ:`n`,ო:`o`,პ:`p`,ჟ:`zh`,რ:`r`,ს:`s`,ტ:`t`,უ:`u`,ფ:`p`,ქ:`k`,ღ:`gh`,ყ:`q`,შ:`sh`,ჩ:`ch`,ც:`ts`,ძ:`dz`,წ:`ts`,ჭ:`ch`,ხ:`kh`,ჯ:`j`,ჰ:`h`,α:`a`,β:`v`,γ:`g`,δ:`d`,ε:`e`,ζ:`z`,η:`i`,θ:`th`,ι:`i`,κ:`k`,λ:`l`,μ:`m`,ν:`n`,ξ:`ks`,ο:`o`,π:`p`,ρ:`r`,σ:`s`,τ:`t`,υ:`y`,φ:`f`,χ:`x`,ψ:`ps`,ω:`o`,ά:`a`,έ:`e`,ί:`i`,ό:`o`,ύ:`y`,ή:`i`,ώ:`o`,ς:`s`,ϊ:`i`,ΰ:`y`,ϋ:`y`,ΐ:`i`,Α:`A`,Β:`B`,Γ:`G`,Δ:`D`,Ε:`E`,Ζ:`Z`,Η:`I`,Θ:`TH`,Ι:`I`,Κ:`K`,Λ:`L`,Μ:`M`,Ν:`N`,Ξ:`KS`,Ο:`O`,Π:`P`,Ρ:`R`,Σ:`S`,Τ:`T`,Υ:`Y`,Φ:`F`,Χ:`X`,Ψ:`PS`,Ω:`O`,Ά:`A`,Έ:`E`,Ί:`I`,Ό:`O`,Ύ:`Y`,Ή:`I`,Ώ:`O`,Ϊ:`I`,Ϋ:`Y`,ā:`a`,ē:`e`,ģ:`g`,ī:`i`,ķ:`k`,ļ:`l`,ņ:`n`,ū:`u`,Ā:`A`,Ē:`E`,Ģ:`G`,Ī:`I`,Ķ:`k`,Ļ:`L`,Ņ:`N`,Ū:`U`,Ќ:`Kj`,ќ:`kj`,Љ:`Lj`,љ:`lj`,Њ:`Nj`,њ:`nj`,Тс:`Ts`,тс:`ts`,ą:`a`,ć:`c`,ę:`e`,ł:`l`,ń:`n`,ś:`s`,ź:`z`,ż:`z`,Ą:`A`,Ć:`C`,Ę:`E`,Ł:`L`,Ń:`N`,Ś:`S`,Ź:`Z`,Ż:`Z`,Є:`Ye`,І:`I`,Ї:`Yi`,Ґ:`G`,є:`ye`,і:`i`,ї:`yi`,ґ:`g`,ă:`a`,Ă:`A`,ș:`s`,Ș:`S`,ț:`t`,Ț:`T`,ţ:`t`,Ţ:`T`,а:`a`,б:`b`,в:`v`,г:`g`,д:`d`,е:`e`,ё:`yo`,ж:`zh`,з:`z`,и:`i`,й:`i`,к:`k`,л:`l`,м:`m`,н:`n`,о:`o`,п:`p`,р:`r`,с:`s`,т:`t`,у:`u`,ф:`f`,х:`kh`,ц:`c`,ч:`ch`,ш:`sh`,щ:`sh`,ъ:``,ы:`y`,ь:``,э:`e`,ю:`yu`,я:`ya`,А:`A`,Б:`B`,В:`V`,Г:`G`,Д:`D`,Е:`E`,Ё:`Yo`,Ж:`Zh`,З:`Z`,И:`I`,Й:`I`,К:`K`,Л:`L`,М:`M`,Н:`N`,О:`O`,П:`P`,Р:`R`,С:`S`,Т:`T`,У:`U`,Ф:`F`,Х:`Kh`,Ц:`C`,Ч:`Ch`,Ш:`Sh`,Щ:`Sh`,Ъ:``,Ы:`Y`,Ь:``,Э:`E`,Ю:`Yu`,Я:`Ya`,ђ:`dj`,ј:`j`,ћ:`c`,џ:`dz`,Ђ:`Dj`,Ј:`j`,Ћ:`C`,Џ:`Dz`,ľ:`l`,ĺ:`l`,ŕ:`r`,Ľ:`L`,Ĺ:`L`,Ŕ:`R`,ş:`s`,Ş:`S`,ı:`i`,İ:`I`,ğ:`g`,Ğ:`G`,ả:`a`,Ả:`A`,ẳ:`a`,Ẳ:`A`,ẩ:`a`,Ẩ:`A`,đ:`d`,Đ:`D`,ẹ:`e`,Ẹ:`E`,ẽ:`e`,Ẽ:`E`,ẻ:`e`,Ẻ:`E`,ế:`e`,Ế:`E`,ề:`e`,Ề:`E`,ệ:`e`,Ệ:`E`,ễ:`e`,Ễ:`E`,ể:`e`,Ể:`E`,ỏ:`o`,ọ:`o`,Ọ:`o`,ố:`o`,Ố:`O`,ồ:`o`,Ồ:`O`,ổ:`o`,Ổ:`O`,ộ:`o`,Ộ:`O`,ỗ:`o`,Ỗ:`O`,ơ:`o`,Ơ:`O`,ớ:`o`,Ớ:`O`,ờ:`o`,Ờ:`O`,ợ:`o`,Ợ:`O`,ỡ:`o`,Ỡ:`O`,Ở:`o`,ở:`o`,ị:`i`,Ị:`I`,ĩ:`i`,Ĩ:`I`,ỉ:`i`,Ỉ:`i`,ủ:`u`,Ủ:`U`,ụ:`u`,Ụ:`U`,ũ:`u`,Ũ:`U`,ư:`u`,Ư:`U`,ứ:`u`,Ứ:`U`,ừ:`u`,Ừ:`U`,ự:`u`,Ự:`U`,ữ:`u`,Ữ:`U`,ử:`u`,Ử:`ư`,ỷ:`y`,Ỷ:`y`,ỳ:`y`,Ỳ:`Y`,ỵ:`y`,Ỵ:`Y`,ỹ:`y`,Ỹ:`Y`,ạ:`a`,Ạ:`A`,ấ:`a`,Ấ:`A`,ầ:`a`,Ầ:`A`,ậ:`a`,Ậ:`A`,ẫ:`a`,Ẫ:`A`,ắ:`a`,Ắ:`A`,ằ:`a`,Ằ:`A`,ặ:`a`,Ặ:`A`,ẵ:`a`,Ẵ:`A`,"⓪":`0`,"①":`1`,"②":`2`,"③":`3`,"④":`4`,"⑤":`5`,"⑥":`6`,"⑦":`7`,"⑧":`8`,"⑨":`9`,"⑩":`10`,"⑪":`11`,"⑫":`12`,"⑬":`13`,"⑭":`14`,"⑮":`15`,"⑯":`16`,"⑰":`17`,"⑱":`18`,"⑲":`18`,"⑳":`18`,"⓵":`1`,"⓶":`2`,"⓷":`3`,"⓸":`4`,"⓹":`5`,"⓺":`6`,"⓻":`7`,"⓼":`8`,"⓽":`9`,"⓾":`10`,"⓿":`0`,"⓫":`11`,"⓬":`12`,"⓭":`13`,"⓮":`14`,"⓯":`15`,"⓰":`16`,"⓱":`17`,"⓲":`18`,"⓳":`19`,"⓴":`20`,"Ⓐ":`A`,"Ⓑ":`B`,"Ⓒ":`C`,"Ⓓ":`D`,"Ⓔ":`E`,"Ⓕ":`F`,"Ⓖ":`G`,"Ⓗ":`H`,"Ⓘ":`I`,"Ⓙ":`J`,"Ⓚ":`K`,"Ⓛ":`L`,"Ⓜ":`M`,"Ⓝ":`N`,"Ⓞ":`O`,"Ⓟ":`P`,"Ⓠ":`Q`,"Ⓡ":`R`,"Ⓢ":`S`,"Ⓣ":`T`,"Ⓤ":`U`,"Ⓥ":`V`,"Ⓦ":`W`,"Ⓧ":`X`,"Ⓨ":`Y`,"Ⓩ":`Z`,"ⓐ":`a`,"ⓑ":`b`,"ⓒ":`c`,"ⓓ":`d`,"ⓔ":`e`,"ⓕ":`f`,"ⓖ":`g`,"ⓗ":`h`,"ⓘ":`i`,"ⓙ":`j`,"ⓚ":`k`,"ⓛ":`l`,"ⓜ":`m`,"ⓝ":`n`,"ⓞ":`o`,"ⓟ":`p`,"ⓠ":`q`,"ⓡ":`r`,"ⓢ":`s`,"ⓣ":`t`,"ⓤ":`u`,"ⓦ":`v`,"ⓥ":`w`,"ⓧ":`x`,"ⓨ":`y`,"ⓩ":`z`,"“":`"`,"”":`"`,"‘":`'`,"’":`'`,"∂":`d`,ƒ:`f`,"™":`(TM)`,"©":`(C)`,œ:`oe`,Œ:`OE`,"®":`(R)`,"†":`+`,"℠":`(SM)`,"…":`...`,"˚":`o`,º:`o`,ª:`a`,"•":`*`,"၊":`,`,"။":`.`,$:`USD`,"€":`EUR`,"₢":`BRN`,"₣":`FRF`,"£":`GBP`,"₤":`ITL`,"₦":`NGN`,"₧":`ESP`,"₩":`KRW`,"₪":`ILS`,"₫":`VND`,"₭":`LAK`,"₮":`MNT`,"₯":`GRD`,"₱":`ARS`,"₲":`PYG`,"₳":`ARA`,"₴":`UAH`,"₵":`GHS`,"¢":`cent`,"¥":`CNY`,元:`CNY`,円:`YEN`,"﷼":`IRR`,"₠":`EWE`,"฿":`THB`,"₨":`INR`,"₹":`INR`,"₰":`PF`,"₺":`TRY`,"؋":`AFN`,"₼":`AZN`,лв:`BGN`,"៛":`KHR`,"₡":`CRC`,"₸":`KZT`,ден:`MKD`,zł:`PLN`,"₽":`RUB`,"₾":`GEL`},r=[`်`,`ް`],i={"ာ":`a`,"ါ":`a`,"ေ":`e`,"ဲ":`e`,"ိ":`i`,"ီ":`i`,"ို":`o`,"ု":`u`,"ူ":`u`,"ေါင်":`aung`,"ော":`aw`,"ော်":`aw`,"ေါ":`aw`,"ေါ်":`aw`,"်":`်`,က်:`et`,"ိုက်":`aik`,"ောက်":`auk`,င်:`in`,"ိုင်":`aing`,"ောင်":`aung`,စ်:`it`,ည်:`i`,တ်:`at`,"ိတ်":`eik`,"ုတ်":`ok`,"ွတ်":`ut`,"ေတ်":`it`,ဒ်:`d`,"ိုဒ်":`ok`,"ုဒ်":`ait`,န်:`an`,"ာန်":`an`,"ိန်":`ein`,"ုန်":`on`,"ွန်":`un`,ပ်:`at`,"ိပ်":`eik`,"ုပ်":`ok`,"ွပ်":`ut`,န်ုပ်:`nub`,မ်:`an`,"ိမ်":`ein`,"ုမ်":`on`,"ွမ်":`un`,ယ်:`e`,"ိုလ်":`ol`,ဉ်:`in`,"ံ":`an`,"ိံ":`ein`,"ုံ":`on`,"ައް":`ah`,"ަށް":`ah`},a={en:{},az:{ç:`c`,ə:`e`,ğ:`g`,ı:`i`,ö:`o`,ş:`s`,ü:`u`,Ç:`C`,Ə:`E`,Ğ:`G`,İ:`I`,Ö:`O`,Ş:`S`,Ü:`U`},cs:{č:`c`,ď:`d`,ě:`e`,ň:`n`,ř:`r`,š:`s`,ť:`t`,ů:`u`,ž:`z`,Č:`C`,Ď:`D`,Ě:`E`,Ň:`N`,Ř:`R`,Š:`S`,Ť:`T`,Ů:`U`,Ž:`Z`},fi:{ä:`a`,Ä:`A`,ö:`o`,Ö:`O`},hu:{ä:`a`,Ä:`A`,ö:`o`,Ö:`O`,ü:`u`,Ü:`U`,ű:`u`,Ű:`U`},lt:{ą:`a`,č:`c`,ę:`e`,ė:`e`,į:`i`,š:`s`,ų:`u`,ū:`u`,ž:`z`,Ą:`A`,Č:`C`,Ę:`E`,Ė:`E`,Į:`I`,Š:`S`,Ų:`U`,Ū:`U`},lv:{ā:`a`,č:`c`,ē:`e`,ģ:`g`,ī:`i`,ķ:`k`,ļ:`l`,ņ:`n`,š:`s`,ū:`u`,ž:`z`,Ā:`A`,Č:`C`,Ē:`E`,Ģ:`G`,Ī:`i`,Ķ:`k`,Ļ:`L`,Ņ:`N`,Š:`S`,Ū:`u`,Ž:`Z`},pl:{ą:`a`,ć:`c`,ę:`e`,ł:`l`,ń:`n`,ó:`o`,ś:`s`,ź:`z`,ż:`z`,Ą:`A`,Ć:`C`,Ę:`e`,Ł:`L`,Ń:`N`,Ó:`O`,Ś:`S`,Ź:`Z`,Ż:`Z`},sv:{ä:`a`,Ä:`A`,ö:`o`,Ö:`O`},sk:{ä:`a`,Ä:`A`},sr:{љ:`lj`,њ:`nj`,Љ:`Lj`,Њ:`Nj`,đ:`dj`,Đ:`Dj`},tr:{Ü:`U`,Ö:`O`,ü:`u`,ö:`o`}},o={ar:{"∆":`delta`,"∞":`la-nihaya`,"♥":`hob`,"&":`wa`,"|":`aw`,"<":`aqal-men`,">":`akbar-men`,"∑":`majmou`,"¤":`omla`},az:{},ca:{"∆":`delta`,"∞":`infinit`,"♥":`amor`,"&":`i`,"|":`o`,"<":`menys que`,">":`mes que`,"∑":`suma dels`,"¤":`moneda`},cs:{"∆":`delta`,"∞":`nekonecno`,"♥":`laska`,"&":`a`,"|":`nebo`,"<":`mensi nez`,">":`vetsi nez`,"∑":`soucet`,"¤":`mena`},de:{"∆":`delta`,"∞":`unendlich`,"♥":`Liebe`,"&":`und`,"|":`oder`,"<":`kleiner als`,">":`groesser als`,"∑":`Summe von`,"¤":`Waehrung`},dv:{"∆":`delta`,"∞":`kolunulaa`,"♥":`loabi`,"&":`aai`,"|":`noonee`,"<":`ah vure kuda`,">":`ah vure bodu`,"∑":`jumula`,"¤":`faisaa`},en:{"∆":`delta`,"∞":`infinity`,"♥":`love`,"&":`and`,"|":`or`,"<":`less than`,">":`greater than`,"∑":`sum`,"¤":`currency`},es:{"∆":`delta`,"∞":`infinito`,"♥":`amor`,"&":`y`,"|":`u`,"<":`menos que`,">":`mas que`,"∑":`suma de los`,"¤":`moneda`},fa:{"∆":`delta`,"∞":`bi-nahayat`,"♥":`eshgh`,"&":`va`,"|":`ya`,"<":`kamtar-az`,">":`bishtar-az`,"∑":`majmooe`,"¤":`vahed`},fi:{"∆":`delta`,"∞":`aarettomyys`,"♥":`rakkaus`,"&":`ja`,"|":`tai`,"<":`pienempi kuin`,">":`suurempi kuin`,"∑":`summa`,"¤":`valuutta`},fr:{"∆":`delta`,"∞":`infiniment`,"♥":`Amour`,"&":`et`,"|":`ou`,"<":`moins que`,">":`superieure a`,"∑":`somme des`,"¤":`monnaie`},ge:{"∆":`delta`,"∞":`usasruloba`,"♥":`siqvaruli`,"&":`da`,"|":`an`,"<":`naklebi`,">":`meti`,"∑":`jami`,"¤":`valuta`},gr:{},hu:{"∆":`delta`,"∞":`vegtelen`,"♥":`szerelem`,"&":`es`,"|":`vagy`,"<":`kisebb mint`,">":`nagyobb mint`,"∑":`szumma`,"¤":`penznem`},it:{"∆":`delta`,"∞":`infinito`,"♥":`amore`,"&":`e`,"|":`o`,"<":`minore di`,">":`maggiore di`,"∑":`somma`,"¤":`moneta`},lt:{"∆":`delta`,"∞":`begalybe`,"♥":`meile`,"&":`ir`,"|":`ar`,"<":`maziau nei`,">":`daugiau nei`,"∑":`suma`,"¤":`valiuta`},lv:{"∆":`delta`,"∞":`bezgaliba`,"♥":`milestiba`,"&":`un`,"|":`vai`,"<":`mazak neka`,">":`lielaks neka`,"∑":`summa`,"¤":`valuta`},my:{"∆":`kwahkhyaet`,"∞":`asaonasme`,"♥":`akhyait`,"&":`nhin`,"|":`tho`,"<":`ngethaw`,">":`kyithaw`,"∑":`paungld`,"¤":`ngwekye`},mk:{},nl:{"∆":`delta`,"∞":`oneindig`,"♥":`liefde`,"&":`en`,"|":`of`,"<":`kleiner dan`,">":`groter dan`,"∑":`som`,"¤":`valuta`},pl:{"∆":`delta`,"∞":`nieskonczonosc`,"♥":`milosc`,"&":`i`,"|":`lub`,"<":`mniejsze niz`,">":`wieksze niz`,"∑":`suma`,"¤":`waluta`},pt:{"∆":`delta`,"∞":`infinito`,"♥":`amor`,"&":`e`,"|":`ou`,"<":`menor que`,">":`maior que`,"∑":`soma`,"¤":`moeda`},ro:{"∆":`delta`,"∞":`infinit`,"♥":`dragoste`,"&":`si`,"|":`sau`,"<":`mai mic ca`,">":`mai mare ca`,"∑":`suma`,"¤":`valuta`},ru:{"∆":`delta`,"∞":`beskonechno`,"♥":`lubov`,"&":`i`,"|":`ili`,"<":`menshe`,">":`bolshe`,"∑":`summa`,"¤":`valjuta`},sk:{"∆":`delta`,"∞":`nekonecno`,"♥":`laska`,"&":`a`,"|":`alebo`,"<":`menej ako`,">":`viac ako`,"∑":`sucet`,"¤":`mena`},sr:{},tr:{"∆":`delta`,"∞":`sonsuzluk`,"♥":`ask`,"&":`ve`,"|":`veya`,"<":`kucuktur`,">":`buyuktur`,"∑":`toplam`,"¤":`para birimi`},uk:{"∆":`delta`,"∞":`bezkinechnist`,"♥":`lubov`,"&":`i`,"|":`abo`,"<":`menshe`,">":`bilshe`,"∑":`suma`,"¤":`valjuta`},vn:{"∆":`delta`,"∞":`vo cuc`,"♥":`yeu`,"&":`va`,"|":`hoac`,"<":`nho hon`,">":`lon hon`,"∑":`tong`,"¤":`tien te`}},s=[`;`,`?`,`:`,`@`,`&`,`=`,`+`,`$`,`,`,`/`].join(``),c=[`;`,`?`,`:`,`@`,`&`,`=`,`+`,`$`,`,`].join(``),l=[`.`,`!`,`~`,`*`,`'`,`(`,`)`].join(``),u=function(e,t){var u=`-`,d=``,m=``,h=!0,g={},_,v,y,b,x,S,C,w,T,E,D,O,k,A,j=``;if(typeof e!=`string`)return``;if(typeof t==`string`&&(u=t),C=o.en,w=a.en,typeof t==`object`)for(D in _=t.maintainCase||!1,g=t.custom&&typeof t.custom==`object`?t.custom:g,y=+t.truncate>1&&t.truncate||!1,b=t.uric||!1,x=t.uricNoSlash||!1,S=t.mark||!1,h=!(t.symbols===!1||t.lang===!1),u=t.separator||u,b&&(j+=s),x&&(j+=c),S&&(j+=l),C=t.lang&&o[t.lang]&&h?o[t.lang]:h?o.en:{},w=t.lang&&a[t.lang]?a[t.lang]:t.lang===!1||t.lang===!0?{}:a.en,t.titleCase&&typeof t.titleCase.length==`number`&&Array.prototype.toString.call(t.titleCase)?(t.titleCase.forEach(function(e){g[e+``]=e+``}),v=!0):v=!!t.titleCase,t.custom&&typeof t.custom.length==`number`&&Array.prototype.toString.call(t.custom)&&t.custom.forEach(function(e){g[e+``]=e+``}),Object.keys(g).forEach(function(t){var n=t.length>1?RegExp(`\\b`+f(t)+`\\b`,`gi`):new RegExp(f(t),`gi`);e=e.replace(n,g[t])}),g)j+=D;for(j+=u,j=f(j),e=e.replace(/(^\s+|\s+$)/g,``),k=!1,A=!1,E=0,O=e.length;E<O;E++)D=e[E],p(D,g)?k=!1:w[D]?(D=k&&w[D].match(/[A-Za-z0-9]/)?` `+w[D]:w[D],k=!1):D in n?(E+1<O&&r.indexOf(e[E+1])>=0?(m+=D,D=``):A===!0?(D=i[m]+n[D],m=``):D=k&&n[D].match(/[A-Za-z0-9]/)?` `+n[D]:n[D],k=!1,A=!1):D in i?(m+=D,D=``,E===O-1&&(D=i[m]),A=!0):C[D]&&!(b&&s.indexOf(D)!==-1)&&!(x&&c.indexOf(D)!==-1)?(D=k||d.substr(-1).match(/[A-Za-z0-9]/)?u+C[D]:C[D],D+=e[E+1]!==void 0&&e[E+1].match(/[A-Za-z0-9]/)?u:``,k=!0):(A===!0?(D=i[m]+D,m=``,A=!1):k&&(/[A-Za-z0-9]/.test(D)||d.substr(-1).match(/A-Za-z0-9]/))&&(D=` `+D),k=!1),d+=D.replace(RegExp(`[^\\w\\s`+j+`_-]`,`g`),u);return v&&(d=d.replace(/(\w)(\S*)/g,function(e,t,n){var r=t.toUpperCase()+(n===null?``:n);return Object.keys(g).indexOf(r.toLowerCase())<0?r:r.toLowerCase()})),d=d.replace(/\s+/g,u).replace(RegExp(`\\`+u+`+`,`g`),u).replace(RegExp(`(^\\`+u+`+|\\`+u+`+$)`,`g`),``),y&&d.length>y&&(T=d.charAt(y)===u,d=d.slice(0,y),T||(d=d.slice(0,d.lastIndexOf(u)))),!_&&!v&&(d=d.toLowerCase()),d},d=function(e){return function(t){return u(t,e)}},f=function(e){return e.replace(/[-\\^$*+?.()|[\]{}\/]/g,`\\$&`)},p=function(e,t){for(var n in t)if(t[n]===e)return!0};if(t!==void 0&&t.exports)t.exports=u,t.exports.createSlug=d;else if(typeof define<`u`&&define.amd)define([],function(){return u});else try{if(e.getSlug||e.createSlug)throw`speakingurl: globals exists /(getSlug|createSlug)/`;e.getSlug=u,e.createSlug=d}catch{}})(e)}));gi(((e,t)=>{t.exports=no()}))(),H.__VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__??={id:0,appIds:new Set};function ro(e){q.highPerfModeEnabled=e??!q.highPerfModeEnabled,!e&&K.value&&Ka(K.value.app)}function io(e){q.devtoolsClientDetected={...q.devtoolsClientDetected,...e},ro(!Object.values(q.devtoolsClientDetected).some(Boolean))}H.__VUE_DEVTOOLS_UPDATE_CLIENT_DETECTED__??=io;var ao=class{constructor(){this.keyToValue=new Map,this.valueToKey=new Map}set(e,t){this.keyToValue.set(e,t),this.valueToKey.set(t,e)}getByKey(e){return this.keyToValue.get(e)}getByValue(e){return this.valueToKey.get(e)}clear(){this.keyToValue.clear(),this.valueToKey.clear()}},oo=class{constructor(e){this.generateIdentifier=e,this.kv=new ao}register(e,t){this.kv.getByValue(e)||(t||=this.generateIdentifier(e),this.kv.set(t,e))}clear(){this.kv.clear()}getIdentifier(e){return this.kv.getByValue(e)}getValue(e){return this.kv.getByKey(e)}},so=class extends oo{constructor(){super(e=>e.name),this.classToAllowedProps=new Map}register(e,t){typeof t==`object`?(t.allowProps&&this.classToAllowedProps.set(e,t.allowProps),super.register(e,t.identifier)):super.register(e,t)}getAllowedProps(e){return this.classToAllowedProps.get(e)}};function co(e){if(`values`in Object)return Object.values(e);let t=[];for(let n in e)e.hasOwnProperty(n)&&t.push(e[n]);return t}function lo(e,t){let n=co(e);if(`find`in n)return n.find(t);let r=n;for(let e=0;e<r.length;e++){let n=r[e];if(t(n))return n}}function uo(e,t){Object.entries(e).forEach(([e,n])=>t(n,e))}function fo(e,t){return e.indexOf(t)!==-1}function po(e,t){for(let n=0;n<e.length;n++){let r=e[n];if(t(r))return r}}var mo=class{constructor(){this.transfomers={}}register(e){this.transfomers[e.name]=e}findApplicable(e){return lo(this.transfomers,t=>t.isApplicable(e))}findByName(e){return this.transfomers[e]}},ho=e=>Object.prototype.toString.call(e).slice(8,-1),go=e=>e===void 0,_o=e=>e===null,vo=e=>typeof e!=`object`||!e||e===Object.prototype?!1:Object.getPrototypeOf(e)===null?!0:Object.getPrototypeOf(e)===Object.prototype,yo=e=>vo(e)&&Object.keys(e).length===0,X=e=>Array.isArray(e),bo=e=>typeof e==`string`,xo=e=>typeof e==`number`&&!isNaN(e),So=e=>typeof e==`boolean`,Co=e=>e instanceof RegExp,wo=e=>e instanceof Map,To=e=>e instanceof Set,Eo=e=>ho(e)===`Symbol`,Do=e=>e instanceof Date&&!isNaN(e.valueOf()),Oo=e=>e instanceof Error,ko=e=>typeof e==`number`&&isNaN(e),Ao=e=>So(e)||_o(e)||go(e)||xo(e)||bo(e)||Eo(e),jo=e=>typeof e==`bigint`,Mo=e=>e===1/0||e===-1/0,No=e=>ArrayBuffer.isView(e)&&!(e instanceof DataView),Po=e=>e instanceof URL,Fo=e=>e.replace(/\./g,`\\.`),Io=e=>e.map(String).map(Fo).join(`.`),Lo=e=>{let t=[],n=``;for(let r=0;r<e.length;r++){let i=e.charAt(r);if(i===`\\`&&e.charAt(r+1)===`.`){n+=`.`,r++;continue}if(i===`.`){t.push(n),n=``;continue}n+=i}let r=n;return t.push(r),t};function Z(e,t,n,r){return{isApplicable:e,annotation:t,transform:n,untransform:r}}var Ro=[Z(go,`undefined`,()=>null,()=>void 0),Z(jo,`bigint`,e=>e.toString(),e=>typeof BigInt<`u`?BigInt(e):(console.error(`Please add a BigInt polyfill.`),e)),Z(Do,`Date`,e=>e.toISOString(),e=>new Date(e)),Z(Oo,`Error`,(e,t)=>{let n={name:e.name,message:e.message};return t.allowedErrorProps.forEach(t=>{n[t]=e[t]}),n},(e,t)=>{let n=Error(e.message);return n.name=e.name,n.stack=e.stack,t.allowedErrorProps.forEach(t=>{n[t]=e[t]}),n}),Z(Co,`regexp`,e=>``+e,e=>{let t=e.slice(1,e.lastIndexOf(`/`)),n=e.slice(e.lastIndexOf(`/`)+1);return new RegExp(t,n)}),Z(To,`set`,e=>[...e.values()],e=>new Set(e)),Z(wo,`map`,e=>[...e.entries()],e=>new Map(e)),Z(e=>ko(e)||Mo(e),`number`,e=>ko(e)?`NaN`:e>0?`Infinity`:`-Infinity`,Number),Z(e=>e===0&&1/e==-1/0,`number`,()=>`-0`,Number),Z(Po,`URL`,e=>e.toString(),e=>new URL(e))];function zo(e,t,n,r){return{isApplicable:e,annotation:t,transform:n,untransform:r}}var Bo=zo((e,t)=>Eo(e)?!!t.symbolRegistry.getIdentifier(e):!1,(e,t)=>[`symbol`,t.symbolRegistry.getIdentifier(e)],e=>e.description,(e,t,n)=>{let r=n.symbolRegistry.getValue(t[1]);if(!r)throw Error(`Trying to deserialize unknown symbol`);return r}),Vo=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array,Uint8ClampedArray].reduce((e,t)=>(e[t.name]=t,e),{}),Ho=zo(No,e=>[`typed-array`,e.constructor.name],e=>[...e],(e,t)=>{let n=Vo[t[1]];if(!n)throw Error(`Trying to deserialize unknown typed array`);return new n(e)});function Uo(e,t){return e?.constructor?!!t.classRegistry.getIdentifier(e.constructor):!1}var Wo=zo(Uo,(e,t)=>[`class`,t.classRegistry.getIdentifier(e.constructor)],(e,t)=>{let n=t.classRegistry.getAllowedProps(e.constructor);if(!n)return{...e};let r={};return n.forEach(t=>{r[t]=e[t]}),r},(e,t,n)=>{let r=n.classRegistry.getValue(t[1]);if(!r)throw Error(`Trying to deserialize unknown class '${t[1]}' - check https://github.com/blitz-js/superjson/issues/116#issuecomment-773996564`);return Object.assign(Object.create(r.prototype),e)}),Go=zo((e,t)=>!!t.customTransformerRegistry.findApplicable(e),(e,t)=>[`custom`,t.customTransformerRegistry.findApplicable(e).name],(e,t)=>t.customTransformerRegistry.findApplicable(e).serialize(e),(e,t,n)=>{let r=n.customTransformerRegistry.findByName(t[1]);if(!r)throw Error(`Trying to deserialize unknown custom value`);return r.deserialize(e)}),Ko=[Wo,Bo,Go,Ho],qo=(e,t)=>{let n=po(Ko,n=>n.isApplicable(e,t));if(n)return{value:n.transform(e,t),type:n.annotation(e,t)};let r=po(Ro,n=>n.isApplicable(e,t));if(r)return{value:r.transform(e,t),type:r.annotation}},Jo={};Ro.forEach(e=>{Jo[e.annotation]=e});var Yo=(e,t,n)=>{if(X(t))switch(t[0]){case`symbol`:return Bo.untransform(e,t,n);case`class`:return Wo.untransform(e,t,n);case`custom`:return Go.untransform(e,t,n);case`typed-array`:return Ho.untransform(e,t,n);default:throw Error(`Unknown transformation: `+t)}else{let r=Jo[t];if(!r)throw Error(`Unknown transformation: `+t);return r.untransform(e,n)}},Xo=(e,t)=>{if(t>e.size)throw Error(`index out of bounds`);let n=e.keys();for(;t>0;)n.next(),t--;return n.next().value};function Zo(e){if(fo(e,`__proto__`))throw Error(`__proto__ is not allowed as a property`);if(fo(e,`prototype`))throw Error(`prototype is not allowed as a property`);if(fo(e,`constructor`))throw Error(`constructor is not allowed as a property`)}var Qo=(e,t)=>{Zo(t);for(let n=0;n<t.length;n++){let r=t[n];if(To(e))e=Xo(e,+r);else if(wo(e)){let i=+r,a=+t[++n]==0?`key`:`value`,o=Xo(e,i);switch(a){case`key`:e=o;break;case`value`:e=e.get(o);break}}else e=e[r]}return e},$o=(e,t,n)=>{if(Zo(t),t.length===0)return n(e);let r=e;for(let e=0;e<t.length-1;e++){let n=t[e];if(X(r)){let e=+n;r=r[e]}else if(vo(r))r=r[n];else if(To(r)){let e=+n;r=Xo(r,e)}else if(wo(r)){if(e===t.length-2)break;let i=+n,a=+t[++e]==0?`key`:`value`,o=Xo(r,i);switch(a){case`key`:r=o;break;case`value`:r=r.get(o);break}}}let i=t[t.length-1];if(X(r)?r[+i]=n(r[+i]):vo(r)&&(r[i]=n(r[i])),To(r)){let e=Xo(r,+i),t=n(e);e!==t&&(r.delete(e),r.add(t))}if(wo(r)){let e=+t[t.length-2],a=Xo(r,e);switch(+i==0?`key`:`value`){case`key`:{let e=n(a);r.set(e,r.get(a)),e!==a&&r.delete(a);break}case`value`:r.set(a,n(r.get(a)));break}}return e};function es(e,t,n=[]){if(!e)return;if(!X(e)){uo(e,(e,r)=>es(e,t,[...n,...Lo(r)]));return}let[r,i]=e;i&&uo(i,(e,r)=>{es(e,t,[...n,...Lo(r)])}),t(r,n)}function ts(e,t,n){return es(t,(t,r)=>{e=$o(e,r,e=>Yo(e,t,n))}),e}function ns(e,t){function n(t,n){let r=Qo(e,Lo(n));t.map(Lo).forEach(t=>{e=$o(e,t,()=>r)})}if(X(t)){let[r,i]=t;r.forEach(t=>{e=$o(e,Lo(t),()=>e)}),i&&uo(i,n)}else uo(t,n);return e}var rs=(e,t)=>vo(e)||X(e)||wo(e)||To(e)||Uo(e,t);function is(e,t,n){let r=n.get(e);r?r.push(t):n.set(e,[t])}function as(e,t){let n={},r;return e.forEach(e=>{if(e.length<=1)return;t||(e=e.map(e=>e.map(String)).sort((e,t)=>e.length-t.length));let[i,...a]=e;i.length===0?r=a.map(Io):n[Io(i)]=a.map(Io)}),r?yo(n)?[r]:[r,n]:yo(n)?void 0:n}var os=(e,t,n,r,i=[],a=[],o=new Map)=>{let s=Ao(e);if(!s){is(e,i,t);let n=o.get(e);if(n)return r?{transformedValue:null}:n}if(!rs(e,n)){let t=qo(e,n),r=t?{transformedValue:t.value,annotations:[t.type]}:{transformedValue:e};return s||o.set(e,r),r}if(fo(a,e))return{transformedValue:null};let c=qo(e,n),l=c?.value??e,u=X(l)?[]:{},d={};uo(l,(s,c)=>{if(c===`__proto__`||c===`constructor`||c===`prototype`)throw Error(`Detected property ${c}. This is a prototype pollution risk, please remove it from your object.`);let l=os(s,t,n,r,[...i,c],[...a,e],o);u[c]=l.transformedValue,X(l.annotations)?d[c]=l.annotations:vo(l.annotations)&&uo(l.annotations,(e,t)=>{d[Fo(c)+`.`+t]=e})});let f=yo(d)?{transformedValue:u,annotations:c?[c.type]:void 0}:{transformedValue:u,annotations:c?[c.type,d]:d};return s||o.set(e,f),f};function ss(e){return Object.prototype.toString.call(e).slice(8,-1)}function cs(e){return ss(e)===`Array`}function ls(e){if(ss(e)!==`Object`)return!1;let t=Object.getPrototypeOf(e);return!!t&&t.constructor===Object&&t===Object.prototype}function us(e,t,n,r,i){let a={}.propertyIsEnumerable.call(r,t)?`enumerable`:`nonenumerable`;a===`enumerable`&&(e[t]=n),i&&a===`nonenumerable`&&Object.defineProperty(e,t,{value:n,enumerable:!1,writable:!0,configurable:!0})}function ds(e,t={}){if(cs(e))return e.map(e=>ds(e,t));if(!ls(e))return e;let n=Object.getOwnPropertyNames(e),r=Object.getOwnPropertySymbols(e);return[...n,...r].reduce((n,r)=>{if(cs(t.props)&&!t.props.includes(r))return n;let i=e[r];return us(n,r,ds(i,t),e,t.nonenumerable),n},{})}var Q=class{constructor({dedupe:e=!1}={}){this.classRegistry=new so,this.symbolRegistry=new oo(e=>e.description??``),this.customTransformerRegistry=new mo,this.allowedErrorProps=[],this.dedupe=e}serialize(e){let t=new Map,n=os(e,t,this,this.dedupe),r={json:n.transformedValue};n.annotations&&(r.meta={...r.meta,values:n.annotations});let i=as(t,this.dedupe);return i&&(r.meta={...r.meta,referentialEqualities:i}),r}deserialize(e){let{json:t,meta:n}=e,r=ds(t);return n?.values&&(r=ts(r,n.values,this)),n?.referentialEqualities&&(r=ns(r,n.referentialEqualities)),r}stringify(e){return JSON.stringify(this.serialize(e))}parse(e){return this.deserialize(JSON.parse(e))}registerClass(e,t){this.classRegistry.register(e,t)}registerSymbol(e,t){this.symbolRegistry.register(e,t)}registerCustom(e,t){this.customTransformerRegistry.register({name:t,...e})}allowErrorProps(...e){this.allowedErrorProps.push(...e)}};Q.defaultInstance=new Q,Q.serialize=Q.defaultInstance.serialize.bind(Q.defaultInstance),Q.deserialize=Q.defaultInstance.deserialize.bind(Q.defaultInstance),Q.stringify=Q.defaultInstance.stringify.bind(Q.defaultInstance),Q.parse=Q.defaultInstance.parse.bind(Q.defaultInstance),Q.registerClass=Q.defaultInstance.registerClass.bind(Q.defaultInstance),Q.registerSymbol=Q.defaultInstance.registerSymbol.bind(Q.defaultInstance),Q.registerCustom=Q.defaultInstance.registerCustom.bind(Q.defaultInstance),Q.allowErrorProps=Q.defaultInstance.allowErrorProps.bind(Q.defaultInstance),Q.serialize,Q.deserialize,Q.stringify,Q.parse,Q.registerClass,Q.registerCustom,Q.registerSymbol,Q.allowErrorProps,H.__VUE_DEVTOOLS_KIT_MESSAGE_CHANNELS__??=[],H.__VUE_DEVTOOLS_KIT_RPC_CLIENT__??=null,H.__VUE_DEVTOOLS_KIT_RPC_SERVER__??=null,H.__VUE_DEVTOOLS_KIT_VITE_RPC_CLIENT__??=null,H.__VUE_DEVTOOLS_KIT_VITE_RPC_SERVER__??=null,H.__VUE_DEVTOOLS_KIT_BROADCAST_RPC_SERVER__??=null;var fs={template:`<div>This is component</div>`},ps=R({name:`parentA`,path:`/parentA/[paramA]`}),ms=R({parent:ps,name:`parentA.childA`,path:`/childA/[?paramB]`});R({parent:ps,name:`parentA.childB`,path:`/childB/[paramD]`,component:fs}),R({parent:ms,name:`parentA.childA.grandChildA`,path:`/[paramC]`,component:fs}),R({name:`parentB`,path:`/parentB`,component:fs}),R({name:`parentC`,path:`/`,component:fs});function hs(e,t){return t===`1`?e:`${e} ${t}`}var gs=({route:e})=>!!e.name,_s=({route:e,payload:t})=>{if(!t.filter)return!0;if(!me(e))return!1;let n=t.filter.toLowerCase();return!!(e.name.toLowerCase().includes(n)||e.schema.path.value.toLowerCase().includes(n))},vs=e=>gs(e)&&_s(e),ys=c(),bs=2282478,xs=2278750,Ss=1483594;function Cs(e,t={match:!1,exactMatch:!1}){let n=[];return e.name&&n.push({label:e.name,textColor:0,backgroundColor:bs}),t.match&&n.push({label:`match`,textColor:0,backgroundColor:xs}),t.exactMatch&&n.push({label:`exact-match`,textColor:0,backgroundColor:Ss}),{id:e.id,label:e.name,tags:n}}function ws(e,t){if(!t||!(`id`in t)||!(`matches`in t))return{match:!1,exactMatch:!1};let n=t.id===e.id;return{match:t.matches.some(t=>t.id===e.id),exactMatch:n}}function Ts(e){let t=[];return me(e)?(t.push({editable:!1,key:`name`,value:e.name}),t.push({editable:!1,key:`path`,value:e.schema.path.value}),t.push({editable:!1,key:`query`,value:e.schema.query.value}),t.push({editable:!1,key:`hash`,value:e.schema.hash.value}),t.push({editable:!1,key:`meta`,value:e.meta}),t):t}function Es({router:e,app:n,routes:r}){if(!fr()||e.hasDevtools)return;e.hasDevtools=!0;let i=ys(),a=new Map(r.map(e=>[e.id,e])),o=`kitbag-router-routes.${i}`;Wa({id:`kitbag-router.${i}`,label:`Kitbag Router`,packageName:`@kitbag/router`,homepage:`https://router.kitbag.dev/`,componentStateTypes:[`Routing`],logo:`https://kitbag.dev/kitbag-logo-circle.svg`,app:n},s=>{s.addInspector({id:o,label:hs(`Routes`,i),treeFilterPlaceholder:`Search routes`}),s.on.getInspectorTree(t=>{t.app!==n||t.inspectorId!==o||(t.rootNodes=r.filter(e=>vs({route:e,payload:t})).map(t=>Cs(t,ws(t,e.route))))}),(0,t.watch)(()=>e.route,()=>{s.sendInspectorTree(o)},{deep:!0,immediate:!1}),s.on.getInspectorState(e=>{if(e.app!==n||e.inspectorId!==o)return;let t=a.get(e.nodeId);t&&(e.state={options:Ts(t)})}),s.sendInspectorTree(o),s.sendInspectorState(o)})}function Ds(e,t){let n=new URLSearchParams(e),r=new URLSearchParams(t);for(let[e,t]of r.entries())n.delete(e,t);return n}function Os(e,t,n={}){let{query:r,hash:i}=L(t);for(let a of e){if(!kr(a))continue;let{success:e,params:o}=a.tryParse(t,n);if(e){let{query:e}=L(a.stringify(o)),t=Ds(r,e);return Er(a,o,{...n,query:t,hash:i})}}}var ks=/^(\/.+?)\/+$/;function As(e){let{path:t,...n}=L(e);return Ct({...n,path:t.replace(ks,`$1`)})}function js(e){let{path:t}=L(e);return ks.test(t)}function Ms(e){!v(e)||!fr()||e.title.then(e=>{e!==void 0&&(document.title=e)})}function Ns(){let e=e=>{r.value=e},n=()=>{r.value=null},r=(0,t.ref)(null);return{currentRejection:r,currentRejectionRoute:(0,t.computed)(()=>x(r.value)?Er(r.value.route):null),updateRejection:e,clearRejection:n}}function Ps(e,r,i=[]){let a=r?.isGlobalRouter??!0?Hr:Symbol(),o=r?.removeTrailingSlashes??!0,{routes:s,getRouteByName:l,getRejectionByType:d}=jr(e,i,r),f=Er(d(`NotFound`).route),p=ln();p.addGlobalRouteHooks(Fr(i));let m=c(),h=dr(),g=zr(a),_=Cr(),v=pr({mode:r?.historyMode,listener:({location:e})=>{b(V(e),{state:e.state,replace:!0})}});function y(e,t={}){let n=!ae(e),r=s.filter(e=>e.isRelative===n),i={removeTrailingSlashes:o};return Os(r,e,{...t,...i})}async function b(e,t={}){if(js(e)&&o){let r=As(e);if(n(r))return w(r,t)}let r=m();v.stopListening();let i=y(e,t)??f,a=fe(r),s=await p.runBeforeRouteHooks({to:i,from:a});switch(s.status){case`ABORT`:return;case`PUSH`:v.update(e,t),await C(...s.to);return;case`REJECT`:v.update(e,t),T(s.type,i,a);break;case`SUCCESS`:v.update(e,t),A();break;default:throw Error(`Switch is not exhaustive for before hook response status: ${JSON.stringify(s)}`)}ae(e)||x(r,i,a);let c=await p.runAfterRouteHooks({to:i,from:a});switch(c.status){case`PUSH`:await C(...c.to);break;case`REJECT`:T(c.type,i,a);break;case`SUCCESS`:break;default:throw Error(`Switch is not exhaustive for after hook response status: ${JSON.stringify(c)}`)}Ms(O.value??i),v.startListening()}function x(e,t,n){let r=e;h.setProps(t).then(i=>{if(r===e)switch(i.status){case`SUCCESS`:break;case`PUSH`:C(...i.to);break;case`REJECT`:T(i.type,t,n);break;default:throw Error(`Switch is not exhaustive for prop store response status: ${JSON.stringify(i)}`)}}).catch(e=>{try{p.runErrorHooks(e,{to:t,from:n,source:`props`})}catch(e){if(e instanceof z){C(...e.response.to);return}if(e instanceof B){T(e.response.type,t,n);return}throw e}}),te(t)}let S=(e,t={},n={})=>{let r=l(e);if(!r)throw new wr(e);return Er(r,t,n)},C=(e,t,r)=>{if(n(e)){let n={...t};return b(wt(e,{query:n.query,hash:n.hash}),n)}if(typeof e==`string`){let{replace:n,...i}={...r},a=S(e,{...t},i),o=Sr({...a.matched.state},{...a.state,...i.state});return b(a.href,{replace:n,state:o})}let{replace:i,...a}={...t},o=Sr({...e.matched.state},{...e.state,...a.state});return b(wt(e.href,{query:a.query,hash:a.hash}),{replace:i,state:o})},w=(e,t,r)=>{if(n(e))return C(e,{...t,replace:!0});if(typeof e==`string`){let n={...r,replace:!0};return C(e,{...t},n)}return C(e,{...t,replace:!0})};function T(e,t=null,n=null){let r=d(e);r&&(p.runRejectionHooks(r,{to:t,from:n}),k(r))}let E=e=>{T(e),Ms(O.value)},{currentRejection:D,currentRejectionRoute:O,updateRejection:k,clearRejection:A}=Ns(),{currentRoute:j,routerRoute:ee,updateRoute:te}=cr(a,f,C),ne=gr(r?.initialUrl),re=v.location.state,{host:ie}=L(ne),ae=lr(ie),oe=!1,se=(0,t.ref)(!1),{promise:ce,resolve:le}=Promise.withResolvers();async function ue(){if(oe)return ce;oe=!0,ge(s)&&await ve(),await b(ne,{replace:!0,state:re}),v.startListening(),le(),se.value=!0}function de(){v.stopListening()}function fe(e){return u(e)?null:{...j}}function M(e){p.setVueApp(e),h.setVueApp(e);let t=Cn(a),n=zn(a);e.component(`RouterView`,t),e.component(`RouterLink`,n),e.provide(hn(a),D),e.provide(cn(a),p),e.provide(wn(a),h),e.provide(pn(a),g),e.provide(Nn,_),e.provide(a,pe),Es({router:pe,app:e,routes:s}),ue()}let pe={route:ee,resolve:S,find:y,push:C,replace:w,reject:E,refresh:v.refresh,forward:v.forward,back:v.back,go:v.go,install:M,isExternal:ae,onBeforeRouteEnter:p.onBeforeRouteEnter,onBeforeRouteUpdate:p.onBeforeRouteUpdate,onBeforeRouteLeave:p.onBeforeRouteLeave,onAfterRouteEnter:p.onAfterRouteEnter,onAfterRouteUpdate:p.onAfterRouteUpdate,onAfterRouteLeave:p.onAfterRouteLeave,onError:p.onError,onRejection:p.onRejection,prefetch:r?.prefetch,start:ue,started:se,stop:de,key:a,hasDevtools:!1};return pe}var $=Vn(Hr),Fs=$.onBeforeRouteLeave,Is=$.onBeforeRouteUpdate,Ls=$.onAfterRouteLeave,Rs=$.onAfterRouteUpdate,zs=$.isRoute,Bs=$.RouterView,Vs=$.RouterLink,Hs=$.useRoute,Us=$.useRouter,Ws=$.useQueryValue,Gs=$.useLink,Ks=$.useRejection;e.DuplicateParamsError=i,e.MetaPropertyConflict=a,e.RouterLink=Vs,e.RouterNotInstalledError=o,e.RouterView=Bs,e.UseRouteInvalidError=s,e.arrayOf=qn,e.asUrlString=r,e.createExternalRoute=Wt,e.createParam=se,e.createRejection=Ut,e.createRoute=R,e.createRouter=Ps,e.createRouterAssets=Vn,e.createRouterPlugin=Wn,e.createUrl=Dt,e.isRoute=zs,e.isUrlString=n,e.literal=Le,e.onAfterRouteLeave=Ls,e.onAfterRouteUpdate=Rs,e.onBeforeRouteLeave=Fs,e.onBeforeRouteUpdate=Is,e.tupleOf=Yn,e.unionOf=Gn,e.useLink=Gs,e.useQueryValue=Ws,e.useRejection=Ks,e.useRoute=Hs,e.useRouter=Us,e.withDefault=le,e.withParams=_t});
|