ocean-brain 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +73 -41
- package/dist/mcp.js +587 -26
- package/package.json +6 -1
- package/scripts/postinstall-prisma.mjs +41 -0
- package/server/client/dist/assets/Calendar-DRv2aEl8.js +28 -0
- package/server/client/dist/assets/Callout-B2kPcDrq.js +1 -0
- package/server/client/dist/assets/Graph-DotbTrZR.js +1 -0
- package/server/client/dist/assets/Image-B5R7gF2P.js +1 -0
- package/server/client/dist/assets/Image.es-Dld9r9MJ.js +1 -0
- package/server/client/dist/assets/ModalActionRow-CES9L_Gy.js +1 -0
- package/server/client/dist/assets/Note-SK4hDhEM.css +1 -0
- package/server/client/dist/assets/Note-cIbXJc1v.js +1 -0
- package/server/client/dist/assets/Reminders-4LunlZRb.js +1 -0
- package/server/client/dist/assets/{Search-BANPp2ZV.js → Search-Cp17DGR6.js} +1 -1
- package/server/client/dist/assets/SurfaceCard-yzVU4Qkx.js +1 -0
- package/server/client/dist/assets/Tag-CwmuMPmo.js +1 -0
- package/server/client/dist/assets/TagNotes-gGroWMtT.js +1 -0
- package/server/client/dist/assets/Trash.es-B3KWD8_C.js +1 -0
- package/server/client/dist/assets/color-wpu7wT_s.js +1 -0
- package/server/client/dist/assets/{image.api-rBH0OSWJ.js → image.api-DJgOBt8S.js} +1 -1
- package/server/client/dist/assets/index-40Y2UsVr.js +205 -0
- package/server/client/dist/assets/index-BnxpTwtL.css +1 -0
- package/server/client/dist/assets/index-DYUg2N-6.js +1 -0
- package/server/client/dist/assets/manage-image-ByY1mRZx.js +1 -0
- package/server/client/dist/assets/manage-image-detail-BVaDZHRu.js +1 -0
- package/server/client/dist/assets/mcp-Jj3061aI.js +1 -0
- package/server/client/dist/assets/placeholder-4P_GK7fV.js +34 -0
- package/server/client/dist/assets/trash-CPBwY07S.js +1 -0
- package/server/client/dist/assets/{useReminderMutate-CU-UinGn.js → useReminderMutate-1YVndM2T.js} +1 -1
- package/server/client/dist/index.html +2 -2
- package/server/dist/app.js +97 -9
- package/server/dist/app.js.map +1 -1
- package/server/dist/main.js +16 -2
- package/server/dist/main.js.map +1 -1
- package/server/dist/modules/auth-guard.js +73 -0
- package/server/dist/modules/auth-guard.js.map +1 -0
- package/server/dist/modules/auth-mode.js +51 -0
- package/server/dist/modules/auth-mode.js.map +1 -0
- package/server/dist/modules/auth.js +9 -0
- package/server/dist/modules/auth.js.map +1 -1
- package/server/dist/modules/blocknote.js +7 -1
- package/server/dist/modules/blocknote.js.map +1 -1
- package/server/dist/modules/error-handler.js +41 -0
- package/server/dist/modules/error-handler.js.map +1 -0
- package/server/dist/modules/image-upload.js +114 -0
- package/server/dist/modules/image-upload.js.map +1 -0
- package/server/dist/modules/mcp-admin.js +88 -0
- package/server/dist/modules/mcp-admin.js.map +1 -0
- package/server/dist/modules/mcp-auth.js +71 -0
- package/server/dist/modules/mcp-auth.js.map +1 -0
- package/server/dist/modules/mcp-token.js +28 -0
- package/server/dist/modules/mcp-token.js.map +1 -0
- package/server/dist/modules/note-authoring.js +140 -0
- package/server/dist/modules/note-authoring.js.map +1 -0
- package/server/dist/modules/note-cleanup.js +207 -0
- package/server/dist/modules/note-cleanup.js.map +1 -0
- package/server/dist/modules/note-snapshot.js +223 -0
- package/server/dist/modules/note-snapshot.js.map +1 -0
- package/server/dist/modules/note-trash.js +262 -0
- package/server/dist/modules/note-trash.js.map +1 -0
- package/server/dist/modules/prisma-runtime.js +46 -0
- package/server/dist/modules/prisma-runtime.js.map +1 -0
- package/server/dist/modules/recovery-retention.js +26 -0
- package/server/dist/modules/recovery-retention.js.map +1 -0
- package/server/dist/modules/remote-image.js +176 -0
- package/server/dist/modules/remote-image.js.map +1 -0
- package/server/dist/modules/tag-organization.js +66 -0
- package/server/dist/modules/tag-organization.js.map +1 -0
- package/server/dist/modules/use-async.js +2 -4
- package/server/dist/modules/use-async.js.map +1 -1
- package/server/dist/schema/note/index.js +150 -6
- package/server/dist/schema/note/index.js.map +1 -1
- package/server/dist/start.js +11 -0
- package/server/dist/start.js.map +1 -0
- package/server/dist/types/index.js.map +1 -1
- package/server/dist/urls.js +3 -2
- package/server/dist/urls.js.map +1 -1
- package/server/dist/views/auth.js +305 -0
- package/server/dist/views/auth.js.map +1 -0
- package/server/dist/views/image.js +24 -81
- package/server/dist/views/image.js.map +1 -1
- package/server/dist/views/index.js +4 -0
- package/server/dist/views/index.js.map +1 -1
- package/server/dist/views/mcp-admin.js +42 -0
- package/server/dist/views/mcp-admin.js.map +1 -0
- package/server/dist/views/note.js +124 -0
- package/server/dist/views/note.js.map +1 -0
- package/server/dist/views/tag.js +23 -0
- package/server/dist/views/tag.js.map +1 -0
- package/server/prisma/migrations/20260331183000_0010_note_snapshot/migration.sql +13 -0
- package/server/prisma/migrations/20260331195000_0011_note_trash_entities/migration.sql +35 -0
- package/server/prisma/migrations/20260331213000_0012_image_hash_unique/migration.sql +49 -0
- package/server/prisma/migrations/20260404000000_0013_mcp_admin_control/migration.sql +9 -0
- package/server/prisma/schema.prisma +66 -1
- package/server/client/dist/assets/Calendar-ST5q_8KT.js +0 -48
- package/server/client/dist/assets/Callout-CrWW3bg0.js +0 -1
- package/server/client/dist/assets/Graph-CzJjt6rP.js +0 -1
- package/server/client/dist/assets/Image-Dxg1qqZw.js +0 -1
- package/server/client/dist/assets/Image.es-DZ0H6wH1.js +0 -1
- package/server/client/dist/assets/Note-Bu7fN3B6.js +0 -6
- package/server/client/dist/assets/Note-CCvXqPzv.css +0 -1
- package/server/client/dist/assets/Plus.es-CS3WVMDq.js +0 -1
- package/server/client/dist/assets/PriorityLegend-D61iBwNW.js +0 -1
- package/server/client/dist/assets/Reminders-BjirJMOR.css +0 -1
- package/server/client/dist/assets/Reminders-DjWRombU.js +0 -1
- package/server/client/dist/assets/Tag-DbKSLTj0.js +0 -1
- package/server/client/dist/assets/TagNotes-B6s7jtL7.js +0 -1
- package/server/client/dist/assets/index-BzWwEDoL.js +0 -1
- package/server/client/dist/assets/index-CF5_ZCYN.js +0 -162
- package/server/client/dist/assets/index-DjZk2Gpg.css +0 -1
- package/server/client/dist/assets/manage-image-detail-DOx6QsCl.js +0 -1
- package/server/client/dist/assets/manage-image-g-MC6Fkc.js +0 -1
- package/server/client/dist/assets/placeholder-DV3u6MrA.js +0 -34
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/Calendar-ST5q_8KT.js","assets/note-vendor-BofYbzmZ.js","assets/graph-vendor-CUxe67Lr.js","assets/note-core-BCgMq5QA.js","assets/PriorityLegend-D61iBwNW.js","assets/Callout-CrWW3bg0.js","assets/Reminders-DjWRombU.js","assets/useReminderMutate-CU-UinGn.js","assets/Reminders-BjirJMOR.css","assets/Graph-CzJjt6rP.js","assets/Search-BANPp2ZV.js","assets/Tag-DbKSLTj0.js","assets/Note-Bu7fN3B6.js","assets/image.api-rBH0OSWJ.js","assets/Plus.es-CS3WVMDq.js","assets/Note-CCvXqPzv.css","assets/TagNotes-B6s7jtL7.js","assets/index-BzWwEDoL.js","assets/Image.es-DZ0H6wH1.js","assets/manage-image-g-MC6Fkc.js","assets/Image-Dxg1qqZw.js","assets/manage-image-detail-DOx6QsCl.js","assets/placeholder-DV3u6MrA.js"])))=>i.map(i=>d[i]);
|
|
2
|
-
import{j as h,w as s0,r as yt,c as a0,R as i0,a as pa,u as c0,o as l0,s as u0,f as d0,b as f0,d as h0,h as p0,e as m0,l as g0,_ as tt,g as v0}from"./note-vendor-BofYbzmZ.js";import{a as c,R as Eo,N as W,r as y0,g as fr,P as ce}from"./graph-vendor-CUxe67Lr.js";import"./note-core-BCgMq5QA.js";(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const s of o)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(o){const s={};return o.integrity&&(s.integrity=o.integrity),o.referrerPolicy&&(s.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?s.credentials="include":o.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function r(o){if(o.ep)return;o.ep=!0;const s=n(o);fetch(o.href,s)}})();const ma={DARK:"(prefers-color-scheme: dark)",LIGHT:"(prefers-color-scheme: light)",RETINA:"(min-resolution: 2dppx)",RESPONSIVE:e=>`screen and (max-width: ${e})`},sl=e=>typeof window<"u"&&window.matchMedia?window.matchMedia(e):null,ga=(e,t,n=!0)=>{const r=sl(e);n&&t(r?.matches||!1);const o=s=>{t?.(s.matches)};return r?.addEventListener("change",o),()=>{r?.removeEventListener("change",o)}},x0=(e,t=!0)=>ga(ma.DARK,e,t),b0=(e,t,n=!0)=>ga(ma.RESPONSIVE(e),t,n),w0={MEDIA_QUERY:ma,listenThemeChange:x0,listenResponsiveChange:b0,createMediaQuery:sl,listenMediaQueryChange:ga};var ue=(e=>(e[e.None=0]="None",e[e.Mutable=1]="Mutable",e[e.Watching=2]="Watching",e[e.RecursedCheck=4]="RecursedCheck",e[e.Recursed=8]="Recursed",e[e.Dirty=16]="Dirty",e[e.Pending=32]="Pending",e))(ue||{});function al({update:e,notify:t,unwatched:n}){return{link:r,unlink:o,propagate:s,checkDirty:a,shallowPropagate:i};function r(u,d,f){const p=d.depsTail;if(p!==void 0&&p.dep===u)return;const m=p!==void 0?p.nextDep:d.deps;if(m!==void 0&&m.dep===u){m.version=f,d.depsTail=m;return}const g=u.subsTail;if(g!==void 0&&g.version===f&&g.sub===d)return;const v=d.depsTail=u.subsTail={version:f,dep:u,sub:d,prevDep:p,nextDep:m,prevSub:g,nextSub:void 0};m!==void 0&&(m.prevDep=v),p!==void 0?p.nextDep=v:d.deps=v,g!==void 0?g.nextSub=v:u.subs=v}function o(u,d=u.sub){const f=u.dep,p=u.prevDep,m=u.nextDep,g=u.nextSub,v=u.prevSub;return m!==void 0?m.prevDep=p:d.depsTail=p,p!==void 0?p.nextDep=m:d.deps=m,g!==void 0?g.prevSub=v:f.subsTail=v,v!==void 0?v.nextSub=g:(f.subs=g)===void 0&&n(f),m}function s(u){let d=u.nextSub,f;e:do{const p=u.sub;let m=p.flags;if(m&60?m&12?m&4?!(m&48)&&l(u,p)?(p.flags=m|40,m&=1):m=0:p.flags=m&-9|32:m=0:p.flags=m|32,m&2&&t(p),m&1){const g=p.subs;if(g!==void 0){const v=(u=g).nextSub;v!==void 0&&(f={value:d,prev:f},d=v);continue}}if((u=d)!==void 0){d=u.nextSub;continue}for(;f!==void 0;)if(u=f.value,f=f.prev,u!==void 0){d=u.nextSub;continue e}break}while(!0)}function a(u,d){let f,p=0,m=!1;e:do{const g=u.dep,v=g.flags;if(d.flags&16)m=!0;else if((v&17)===17){if(e(g)){const y=g.subs;y.nextSub!==void 0&&i(y),m=!0}}else if((v&33)===33){(u.nextSub!==void 0||u.prevSub!==void 0)&&(f={value:u,prev:f}),u=g.deps,d=g,++p;continue}if(!m){const y=u.nextDep;if(y!==void 0){u=y;continue}}for(;p--;){const y=d.subs,x=y.nextSub!==void 0;if(x?(u=f.value,f=f.prev):u=y,m){if(e(d)){x&&i(y),d=u.sub;continue}m=!1}else d.flags&=-33;d=u.sub;const b=u.nextDep;if(b!==void 0){u=b;continue e}}return m}while(!0)}function i(u){do{const d=u.sub,f=d.flags;(f&48)===32&&(d.flags=f|16,(f&6)===2&&t(d))}while((u=u.nextSub)!==void 0)}function l(u,d){let f=d.depsTail;for(;f!==void 0;){if(f===u)return!0;f=f.prevDep}return!1}}let va=0,Ut=0,Kn=0;const vt=[],{link:Gw,unlink:il,propagate:Kw,checkDirty:S0,shallowPropagate:Qw}=al({update(e){return e.depsTail!==void 0?P0(e):_0(e)},notify(e){let t=Kn,n=t;do if(vt[t++]=e,e.flags&=-3,e=e.subs?.sub,e===void 0||!(e.flags&2))break;while(!0);for(Kn=t;n<--t;){const r=vt[n];vt[n++]=vt[t],vt[t]=r}},unwatched(e){e.flags&1?e.depsTail!==void 0&&(e.depsTail=void 0,e.flags=17,Ro(e)):M0.call(e)}});function E0(){return va}function R0(){++va}function C0(){--va||A0()}function P0(e){e.depsTail=void 0,e.flags=5;try{const t=e.value;return t!==(e.value=e.getter(t))}finally{e.flags&=-5,Ro(e)}}function _0(e){return e.flags=1,e.currentValue!==(e.currentValue=e.pendingValue)}function T0(e){const t=e.flags;if(t&16||t&32&&S0(e.deps,e)){e.depsTail=void 0,e.flags=6;try{e.fn()}finally{e.flags&=-5,Ro(e)}}else e.flags=2}function A0(){try{for(;Ut<Kn;){const e=vt[Ut];vt[Ut++]=void 0,T0(e)}}finally{for(;Ut<Kn;){const e=vt[Ut];vt[Ut++]=void 0,e.flags|=10}Ut=0,Kn=0}}function M0(){this.depsTail=void 0,this.flags=0,Ro(this);const e=this.subs;e!==void 0&&il(e)}function Ro(e){const t=e.depsTail;let n=t!==void 0?t.nextDep:e.deps;for(;n!==void 0;)n=il(n,e)}function ya(e,t,n){const r=typeof e=="object",o=r?e:void 0;return{next:(r?e.next:e)?.bind(o),error:(r?e.error:t)?.bind(o),complete:(r?e.complete:n)?.bind(o)}}const Is=[];let Zr=0;const{link:wi,unlink:O0,propagate:I0,checkDirty:cl,shallowPropagate:Si}=al({update(e){return e._update()},notify(e){Is[Ls++]=e,e.flags&=~ue.Watching},unwatched(e){e.depsTail!==void 0&&(e.depsTail=void 0,e.flags=ue.Mutable|ue.Dirty,Jr(e))}});let Nr=0,Ls=0,it;function Jr(e){const t=e.depsTail;let n=t!==void 0?t.nextDep:e.deps;for(;n!==void 0;)n=O0(n,e)}function ll(){if(!(E0()>0)){for(;Nr<Ls;){const e=Is[Nr];Is[Nr++]=void 0,e.notify()}Nr=0,Ls=0}}function ul(e,t){const n=typeof e=="function",r=e,o={_snapshot:n?void 0:e,subs:void 0,subsTail:void 0,deps:void 0,depsTail:void 0,flags:n?ue.None:ue.Mutable,get(){return it!==void 0&&wi(o,it,Zr),o._snapshot},subscribe(s){const a=ya(s),i={current:!1},l=L0(()=>{o.get(),i.current?a.next?.(o._snapshot):i.current=!0});return{unsubscribe:()=>{l.stop()}}},_update(s){const a=it,i=Object.is;if(n)it=o,++Zr,o.depsTail=void 0;else if(s===void 0)return!1;n&&(o.flags=ue.Mutable|ue.RecursedCheck);try{const l=o._snapshot,u=typeof s=="function"?s(l):s===void 0&&n?r(l):s;return l===void 0||!i(l,u)?(o._snapshot=u,!0):!1}finally{it=a,n&&(o.flags&=~ue.RecursedCheck),Jr(o)}}};return n?(o.flags=ue.Mutable|ue.Dirty,o.get=function(){const s=o.flags;if(s&ue.Dirty||s&ue.Pending&&cl(o.deps,o)){if(o._update()){const a=o.subs;a!==void 0&&Si(a)}}else s&ue.Pending&&(o.flags=s&~ue.Pending);return it!==void 0&&wi(o,it,Zr),o._snapshot}):o.set=function(s){if(o._update(s)){const a=o.subs;a!==void 0&&(I0(a),Si(a),ll())}},o}function L0(e){const t=()=>{const r=it;it=n,++Zr,n.depsTail=void 0,n.flags=ue.Watching|ue.RecursedCheck;try{return e()}finally{it=r,n.flags&=~ue.RecursedCheck,Jr(n)}},n={deps:void 0,depsTail:void 0,subs:void 0,subsTail:void 0,flags:ue.Watching|ue.RecursedCheck,notify(){const r=this.flags;r&ue.Dirty||r&ue.Pending&&cl(this.deps,this)?t():this.flags=ue.Watching},stop(){this.flags=ue.None,this.depsTail=void 0,Jr(this)}};return t(),n}class N0{constructor(t){this.atom=ul(t)}setState(t){this.atom.set(t)}get state(){return this.atom.get()}get(){return this.state}subscribe(t){return this.atom.subscribe(ya(t))}}class D0{constructor(t){this.atom=ul(t)}get state(){return this.atom.get()}get(){return this.state}subscribe(t){return this.atom.subscribe(ya(t))}}function j0(e){return typeof e=="function"?new D0(e):new N0(e)}function F0(e){try{R0(),e()}finally{C0(),ll()}}const Nt="__TSR_index",Ei="popstate",Ri="beforeunload";function k0(e){let t=e.getLocation();const n=new Set,r=a=>{t=e.getLocation(),n.forEach(i=>i({location:t,action:a}))},o=a=>{e.notifyOnIndexChange??!0?r(a):t=e.getLocation()},s=async({task:a,navigateOpts:i,...l})=>{if(i?.ignoreBlocker??!1){a();return}const d=e.getBlockers?.()??[],f=l.type==="PUSH"||l.type==="REPLACE";if(typeof document<"u"&&d.length&&f)for(const p of d){const m=eo(l.path,l.state);if(await p.blockerFn({currentLocation:t,nextLocation:m,action:l.type})){e.onBlocked?.();return}}a()};return{get location(){return t},get length(){return e.getLength()},subscribers:n,subscribe:a=>(n.add(a),()=>{n.delete(a)}),push:(a,i,l)=>{const u=t.state[Nt];i=Ci(u+1,i),s({task:()=>{e.pushState(a,i),r({type:"PUSH"})},navigateOpts:l,type:"PUSH",path:a,state:i})},replace:(a,i,l)=>{const u=t.state[Nt];i=Ci(u,i),s({task:()=>{e.replaceState(a,i),r({type:"REPLACE"})},navigateOpts:l,type:"REPLACE",path:a,state:i})},go:(a,i)=>{s({task:()=>{e.go(a),o({type:"GO",index:a})},navigateOpts:i,type:"GO"})},back:a=>{s({task:()=>{e.back(a?.ignoreBlocker??!1),o({type:"BACK"})},navigateOpts:a,type:"BACK"})},forward:a=>{s({task:()=>{e.forward(a?.ignoreBlocker??!1),o({type:"FORWARD"})},navigateOpts:a,type:"FORWARD"})},canGoBack:()=>t.state[Nt]!==0,createHref:a=>e.createHref(a),block:a=>{if(!e.setBlockers)return()=>{};const i=e.getBlockers?.()??[];return e.setBlockers([...i,a]),()=>{const l=e.getBlockers?.()??[];e.setBlockers?.(l.filter(u=>u!==a))}},flush:()=>e.flush?.(),destroy:()=>e.destroy?.(),notify:r}}function Ci(e,t){t||(t={});const n=xa();return{...t,key:n,__TSR_key:n,[Nt]:e}}function $0(e){const t=typeof document<"u"?window:void 0,n=t.history.pushState,r=t.history.replaceState;let o=[];const s=()=>o,a=E=>o=E,i=(E=>E),l=(()=>eo(`${t.location.pathname}${t.location.search}${t.location.hash}`,t.history.state));if(!t.history.state?.__TSR_key&&!t.history.state?.key){const E=xa();t.history.replaceState({[Nt]:0,key:E,__TSR_key:E},"")}let u=l(),d,f=!1,p=!1,m=!1,g=!1;const v=()=>u;let y,x;const b=()=>{y&&(R._ignoreSubscribers=!0,(y.isPush?t.history.pushState:t.history.replaceState)(y.state,"",y.href),R._ignoreSubscribers=!1,y=void 0,x=void 0,d=void 0)},w=(E,A,L)=>{const T=i(A);x||(d=u),u=eo(A,L),y={href:T,state:L,isPush:y?.isPush||E==="push"},x||(x=Promise.resolve().then(()=>b()))},S=E=>{u=l(),R.notify({type:E})},P=async()=>{if(p){p=!1;return}const E=l(),A=E.state[Nt]-u.state[Nt],L=A===1,T=A===-1,F=!L&&!T||f;f=!1;const V=F?"GO":T?"BACK":"FORWARD",N=F?{type:"GO",index:A}:{type:T?"BACK":"FORWARD"};if(m)m=!1;else{const D=s();if(typeof document<"u"&&D.length){for(const _ of D)if(await _.blockerFn({currentLocation:u,nextLocation:E,action:V})){p=!0,t.history.go(1),R.notify(N);return}}}u=l(),R.notify(N)},O=E=>{if(g){g=!1;return}let A=!1;const L=s();if(typeof document<"u"&&L.length)for(const T of L){const F=T.enableBeforeUnload??!0;if(F===!0){A=!0;break}if(typeof F=="function"&&F()===!0){A=!0;break}}if(A)return E.preventDefault(),E.returnValue=""},R=k0({getLocation:v,getLength:()=>t.history.length,pushState:(E,A)=>w("push",E,A),replaceState:(E,A)=>w("replace",E,A),back:E=>(E&&(m=!0),g=!0,t.history.back()),forward:E=>{E&&(m=!0),g=!0,t.history.forward()},go:E=>{f=!0,t.history.go(E)},createHref:E=>i(E),flush:b,destroy:()=>{t.history.pushState=n,t.history.replaceState=r,t.removeEventListener(Ri,O,{capture:!0}),t.removeEventListener(Ei,P)},onBlocked:()=>{d&&u!==d&&(u=d)},getBlockers:s,setBlockers:a,notifyOnIndexChange:!1});return t.addEventListener(Ri,O,{capture:!0}),t.addEventListener(Ei,P),t.history.pushState=function(...E){const A=n.apply(t.history,E);return R._ignoreSubscribers||S("PUSH"),A},t.history.replaceState=function(...E){const A=r.apply(t.history,E);return R._ignoreSubscribers||S("REPLACE"),A},R}function H0(e){let t=e.replace(/[\x00-\x1f\x7f]/g,"");return t.startsWith("//")&&(t="/"+t.replace(/^\/+/,"")),t}function eo(e,t){const n=H0(e),r=n.indexOf("#"),o=n.indexOf("?"),s=xa();return{href:n,pathname:n.substring(0,r>0?o>0?Math.min(r,o):r:o>0?o:n.length),hash:r>-1?n.substring(r):"",search:o>-1?n.slice(o,r===-1?void 0:r):"",state:t||{[Nt]:0,key:s,__TSR_key:s}}}function xa(){return(Math.random()+1).toString(36).substring(7)}const B0=!1;function Qn(e){let t;return F0(()=>{t=e()}),t}function er(e){return e[e.length-1]}function V0(e){return typeof e=="function"}function Ot(e,t){return V0(e)?e(t):e}const U0=Object.prototype.hasOwnProperty,Pi=Object.prototype.propertyIsEnumerable;function Fe(e,t,n=0){if(e===t)return e;if(n>500)return t;const r=t,o=Ai(e)&&Ai(r);if(!o&&!(to(e)&&to(r)))return r;const s=o?e:_i(e);if(!s)return r;const a=o?r:_i(r);if(!a)return r;const i=s.length,l=a.length,u=o?new Array(l):{};let d=0;for(let f=0;f<l;f++){const p=o?f:a[f],m=e[p],g=r[p];if(m===g){u[p]=m,(o?f<i:U0.call(e,p))&&d++;continue}if(m===null||g===null||typeof m!="object"||typeof g!="object"){u[p]=g;continue}const v=Fe(m,g,n+1);u[p]=v,v===m&&d++}return i===l&&d===i?e:u}function _i(e){const t=Object.getOwnPropertyNames(e);for(const o of t)if(!Pi.call(e,o))return!1;const n=Object.getOwnPropertySymbols(e);if(n.length===0)return t;const r=t;for(const o of n){if(!Pi.call(e,o))return!1;r.push(o)}return r}function to(e){if(!Ti(e))return!1;const t=e.constructor;if(typeof t>"u")return!0;const n=t.prototype;return!(!Ti(n)||!n.hasOwnProperty("isPrototypeOf"))}function Ti(e){return Object.prototype.toString.call(e)==="[object Object]"}function Ai(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function Qt(e,t,n){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return!1;for(let r=0,o=e.length;r<o;r++)if(!Qt(e[r],t[r],n))return!1;return!0}if(to(e)&&to(t)){const r=n?.ignoreUndefined??!0;if(n?.partial){for(const a in t)if((!r||t[a]!==void 0)&&!Qt(e[a],t[a],n))return!1;return!0}let o=0;if(!r)o=Object.keys(e).length;else for(const a in e)e[a]!==void 0&&o++;let s=0;for(const a in t)if((!r||t[a]!==void 0)&&(s++,s>o||!Qt(e[a],t[a],n)))return!1;return o===s}return!1}function En(e){let t,n;const r=new Promise((o,s)=>{t=o,n=s});return r.status="pending",r.resolve=o=>{r.status="resolved",r.value=o,t(o),e?.(o)},r.reject=o=>{r.status="rejected",n(o)},r}function Z0(e){return typeof e?.message!="string"?!1:e.message.startsWith("Failed to fetch dynamically imported module")||e.message.startsWith("error loading dynamically imported module")||e.message.startsWith("Importing a module script failed")}function tr(e){return!!(e&&typeof e=="object"&&typeof e.then=="function")}function q0(e){return e.replace(/[\x00-\x1f\x7f]/g,"")}function Mi(e){let t;try{t=decodeURI(e)}catch{t=e.replaceAll(/%[0-9A-F]{2}/gi,n=>{try{return decodeURI(n)}catch{return n}})}return q0(t)}const z0=["http:","https:","mailto:","tel:"];function no(e,t){if(!e)return!1;try{const n=new URL(e);return!t.has(n.protocol)}catch{return!1}}function Hn(e){if(!e)return{path:e,handledProtocolRelativeURL:!1};if(!/[%\\\x00-\x1f\x7f]/.test(e)&&!e.startsWith("//"))return{path:e,handledProtocolRelativeURL:!1};const t=/%25|%5C/gi;let n=0,r="",o;for(;(o=t.exec(e))!==null;)r+=Mi(e.slice(n,o.index))+o[0],n=t.lastIndex;r=r+Mi(n?e.slice(n):e);let s=!1;return r.startsWith("//")&&(s=!0,r="/"+r.replace(/^\/+/,"")),{path:r,handledProtocolRelativeURL:s}}function W0(e){return/\s|[^\u0000-\u007F]/.test(e)?e.replace(/\s|[^\u0000-\u007F]/gu,encodeURIComponent):e}var G0="Invariant failed";function Ft(e,t){if(!e)throw new Error(G0)}function ro(e){const t=new Map;let n,r;const o=s=>{s.next&&(s.prev?(s.prev.next=s.next,s.next.prev=s.prev,s.next=void 0,r&&(r.next=s,s.prev=r)):(s.next.prev=void 0,n=s.next,s.next=void 0,r&&(s.prev=r,r.next=s)),r=s)};return{get(s){const a=t.get(s);if(a)return o(a),a.value},set(s,a){if(t.size>=e&&n){const l=n;t.delete(l.key),l.next&&(n=l.next,l.next.prev=void 0),l===r&&(r=void 0)}const i=t.get(s);if(i)i.value=a,o(i);else{const l={key:s,value:a,prev:r};r&&(r.next=l),r=l,n||(n=l),t.set(s,l)}},clear(){t.clear(),n=void 0,r=void 0}}}const Rn=0,en=1,tn=2,nr=3,qt=4,dl=5;function K0(e){const t=e.indexOf("{");if(t===-1)return null;const n=e.indexOf("}",t);return n===-1||t+1>=e.length?null:[t,n]}function ba(e,t,n=new Uint16Array(6)){const r=e.indexOf("/",t),o=r===-1?e.length:r,s=e.substring(t,o);if(!s||!s.includes("$"))return n[0]=Rn,n[1]=t,n[2]=t,n[3]=o,n[4]=o,n[5]=o,n;if(s==="$"){const i=e.length;return n[0]=tn,n[1]=t,n[2]=t,n[3]=i,n[4]=i,n[5]=i,n}if(s.charCodeAt(0)===36)return n[0]=en,n[1]=t,n[2]=t+1,n[3]=o,n[4]=o,n[5]=o,n;const a=K0(s);if(a){const[i,l]=a,u=s.charCodeAt(i+1);if(u===45){if(i+2<s.length&&s.charCodeAt(i+2)===36){const d=i+3,f=l;if(d<f)return n[0]=nr,n[1]=t+i,n[2]=t+d,n[3]=t+f,n[4]=t+l+1,n[5]=o,n}}else if(u===36){const d=i+1,f=i+2;return f===l?(n[0]=tn,n[1]=t+i,n[2]=t+d,n[3]=t+f,n[4]=t+l+1,n[5]=e.length,n):(n[0]=en,n[1]=t+i,n[2]=t+f,n[3]=t+l,n[4]=t+l+1,n[5]=o,n)}}return n[0]=Rn,n[1]=t,n[2]=t,n[3]=o,n[4]=o,n[5]=o,n}function Co(e,t,n,r,o,s,a){a?.(n);let i=r;{const l=n.fullPath??n.from,u=l.length,d=n.options?.caseSensitive??e,f=!!(n.options?.params?.parse&&n.options?.skipRouteOnParseError?.params);for(;i<u;){const m=ba(l,i,t);let g;const v=i,y=m[5];switch(i=y+1,s++,m[0]){case Rn:{const b=l.substring(m[2],m[3]);if(d){const w=o.static?.get(b);if(w)g=w;else{o.static??=new Map;const S=zt(n.fullPath??n.from);S.parent=o,S.depth=s,g=S,o.static.set(b,S)}}else{const w=b.toLowerCase(),S=o.staticInsensitive?.get(w);if(S)g=S;else{o.staticInsensitive??=new Map;const P=zt(n.fullPath??n.from);P.parent=o,P.depth=s,g=P,o.staticInsensitive.set(w,P)}}break}case en:{const b=l.substring(v,m[1]),w=l.substring(m[4],y),S=d&&!!(b||w),P=b?S?b:b.toLowerCase():void 0,O=w?S?w:w.toLowerCase():void 0,R=!f&&o.dynamic?.find(E=>!E.skipOnParamError&&E.caseSensitive===S&&E.prefix===P&&E.suffix===O);if(R)g=R;else{const E=ss(en,n.fullPath??n.from,S,P,O);g=E,E.depth=s,E.parent=o,o.dynamic??=[],o.dynamic.push(E)}break}case nr:{const b=l.substring(v,m[1]),w=l.substring(m[4],y),S=d&&!!(b||w),P=b?S?b:b.toLowerCase():void 0,O=w?S?w:w.toLowerCase():void 0,R=!f&&o.optional?.find(E=>!E.skipOnParamError&&E.caseSensitive===S&&E.prefix===P&&E.suffix===O);if(R)g=R;else{const E=ss(nr,n.fullPath??n.from,S,P,O);g=E,E.parent=o,E.depth=s,o.optional??=[],o.optional.push(E)}break}case tn:{const b=l.substring(v,m[1]),w=l.substring(m[4],y),S=d&&!!(b||w),P=b?S?b:b.toLowerCase():void 0,O=w?S?w:w.toLowerCase():void 0,R=ss(tn,n.fullPath??n.from,S,P,O);g=R,R.parent=o,R.depth=s,o.wildcard??=[],o.wildcard.push(R)}}o=g}if(f&&n.children&&!n.isRoot&&n.id&&n.id.charCodeAt(n.id.lastIndexOf("/")+1)===95){const m=zt(n.fullPath??n.from);m.kind=dl,m.parent=o,s++,m.depth=s,o.pathless??=[],o.pathless.push(m),o=m}const p=(n.path||!n.children)&&!n.isRoot;if(p&&l.endsWith("/")){const m=zt(n.fullPath??n.from);m.kind=qt,m.parent=o,s++,m.depth=s,o.index=m,o=m}o.parse=n.options?.params?.parse??null,o.skipOnParamError=f,o.parsingPriority=n.options?.skipRouteOnParseError?.priority??0,p&&!o.route&&(o.route=n,o.fullPath=n.fullPath??n.from)}if(n.children)for(const l of n.children)Co(e,t,l,i,o,s,a)}function os(e,t){if(e.skipOnParamError&&!t.skipOnParamError)return-1;if(!e.skipOnParamError&&t.skipOnParamError)return 1;if(e.skipOnParamError&&t.skipOnParamError&&(e.parsingPriority||t.parsingPriority))return t.parsingPriority-e.parsingPriority;if(e.prefix&&t.prefix&&e.prefix!==t.prefix){if(e.prefix.startsWith(t.prefix))return-1;if(t.prefix.startsWith(e.prefix))return 1}if(e.suffix&&t.suffix&&e.suffix!==t.suffix){if(e.suffix.endsWith(t.suffix))return-1;if(t.suffix.endsWith(e.suffix))return 1}return e.prefix&&!t.prefix?-1:!e.prefix&&t.prefix?1:e.suffix&&!t.suffix?-1:!e.suffix&&t.suffix?1:e.caseSensitive&&!t.caseSensitive?-1:!e.caseSensitive&&t.caseSensitive?1:0}function At(e){if(e.pathless)for(const t of e.pathless)At(t);if(e.static)for(const t of e.static.values())At(t);if(e.staticInsensitive)for(const t of e.staticInsensitive.values())At(t);if(e.dynamic?.length){e.dynamic.sort(os);for(const t of e.dynamic)At(t)}if(e.optional?.length){e.optional.sort(os);for(const t of e.optional)At(t)}if(e.wildcard?.length){e.wildcard.sort(os);for(const t of e.wildcard)At(t)}}function zt(e){return{kind:Rn,depth:0,pathless:null,index:null,static:null,staticInsensitive:null,dynamic:null,optional:null,wildcard:null,route:null,fullPath:e,parent:null,parse:null,skipOnParamError:!1,parsingPriority:0}}function ss(e,t,n,r,o){return{kind:e,depth:0,pathless:null,index:null,static:null,staticInsensitive:null,dynamic:null,optional:null,wildcard:null,route:null,fullPath:t,parent:null,parse:null,skipOnParamError:!1,parsingPriority:0,caseSensitive:n,prefix:r,suffix:o}}function Q0(e,t){const n=zt("/"),r=new Uint16Array(6);for(const o of e)Co(!1,r,o,1,n,0);At(n),t.masksTree=n,t.flatCache=ro(1e3)}function Y0(e,t){e||="/";const n=t.flatCache.get(e);if(n)return n;const r=wa(e,t.masksTree);return t.flatCache.set(e,r),r}function X0(e,t,n,r,o){e||="/",r||="/";const s=t?`case\0${e}`:e;let a=o.singleCache.get(s);if(!a){a=zt("/");const i=new Uint16Array(6);Co(t,i,{from:e},1,a,0),o.singleCache.set(s,a)}return wa(r,a,n)}function J0(e,t,n=!1){const r=n?e:`nofuzz\0${e}`,o=t.matchCache.get(r);if(o!==void 0)return o;e||="/";let s;try{s=wa(e,t.segmentTree,n)}catch(a){if(a instanceof URIError)s=null;else throw a}return s&&(s.branch=np(s.route)),t.matchCache.set(r,s),s}function ep(e){return e==="/"?e:e.replace(/\/{1,}$/,"")}function tp(e,t=!1,n){const r=zt(e.fullPath),o=new Uint16Array(6),s={},a={};let i=0;return Co(t,o,e,1,r,0,u=>{if(n?.(u,i),Ft(!(u.id in s),`Duplicate routes found with id: ${String(u.id)}`),s[u.id]=u,i!==0&&u.path){const d=ep(u.fullPath);(!a[d]||u.fullPath.endsWith("/"))&&(a[d]=u)}i++}),At(r),{processedTree:{segmentTree:r,singleCache:ro(1e3),matchCache:ro(1e3),flatCache:null,masksTree:null},routesById:s,routesByPath:a}}function wa(e,t,n=!1){const r=e.split("/"),o=op(e,r,t,n);if(!o)return null;const[s]=fl(e,r,o);return{route:o.node.route,rawParams:s,parsedParams:o.parsedParams}}function fl(e,t,n){const r=rp(n.node);let o=null;const s={};let a=n.extract?.part??0,i=n.extract?.node??0,l=n.extract?.path??0,u=n.extract?.segment??0;for(;i<r.length;a++,i++,l++,u++){const d=r[i];if(d.kind===qt)break;if(d.kind===dl){u--,a--,l--;continue}const f=t[a],p=l;if(f&&(l+=f.length),d.kind===en){o??=n.node.fullPath.split("/");const m=o[u],g=d.prefix?.length??0;if(m.charCodeAt(g)===123){const y=d.suffix?.length??0,x=m.substring(g+2,m.length-y-1),b=f.substring(g,f.length-y);s[x]=decodeURIComponent(b)}else{const y=m.substring(1);s[y]=decodeURIComponent(f)}}else if(d.kind===nr){if(n.skipped&1<<i){a--,l=p-1;continue}o??=n.node.fullPath.split("/");const m=o[u],g=d.prefix?.length??0,v=d.suffix?.length??0,y=m.substring(g+3,m.length-v-1),x=d.suffix||d.prefix?f.substring(g,f.length-v):f;x&&(s[y]=decodeURIComponent(x))}else if(d.kind===tn){const m=d,g=e.substring(p+(m.prefix?.length??0),e.length-(m.suffix?.length??0)),v=decodeURIComponent(g);s["*"]=v,s._splat=v;break}}return n.rawParams&&Object.assign(s,n.rawParams),[s,{part:a,node:i,path:l,segment:u}]}function np(e){const t=[e];for(;e.parentRoute;)e=e.parentRoute,t.push(e);return t.reverse(),t}function rp(e){const t=Array(e.depth+1);do t[e.depth]=e,e=e.parent;while(e);return t}function op(e,t,n,r){if(e==="/"&&n.index)return{node:n.index,skipped:0};const o=!er(t),s=o&&e!=="/",a=t.length-(o?1:0),i=[{node:n,index:1,skipped:0,depth:1,statics:1,dynamics:0,optionals:0}];let l=null,u=null,d=null;for(;i.length;){const f=i.pop(),{node:p,index:m,skipped:g,depth:v,statics:y,dynamics:x,optionals:b}=f;let{extract:w,rawParams:S,parsedParams:P}=f;if(p.skipOnParamError){if(!as(e,t,f))continue;S=f.rawParams,w=f.extract,P=f.parsedParams}r&&p.route&&p.kind!==qt&&Bn(u,f)&&(u=f);const O=m===a;if(O&&(p.route&&!s&&Bn(d,f)&&(d=f),!p.optional&&!p.wildcard&&!p.index&&!p.pathless))continue;const R=O?void 0:t[m];let E;if(O&&p.index){const A={node:p.index,index:m,skipped:g,depth:v+1,statics:y,dynamics:x,optionals:b,extract:w,rawParams:S,parsedParams:P};let L=!0;if(p.index.skipOnParamError&&(as(e,t,A)||(L=!1)),L){if(y===a&&!x&&!b&&!g)return A;Bn(d,A)&&(d=A)}}if(p.wildcard&&Bn(l,f))for(const A of p.wildcard){const{prefix:L,suffix:T}=A;if(L&&(O||!(A.caseSensitive?R:E??=R.toLowerCase()).startsWith(L)))continue;if(T){if(O)continue;const V=t.slice(m).join("/").slice(-T.length);if((A.caseSensitive?V:V.toLowerCase())!==T)continue}const F={node:A,index:a,skipped:g,depth:v,statics:y,dynamics:x,optionals:b,extract:w,rawParams:S,parsedParams:P};if(!(A.skipOnParamError&&!as(e,t,F))){l=F;break}}if(p.optional){const A=g|1<<v,L=v+1;for(let T=p.optional.length-1;T>=0;T--){const F=p.optional[T];i.push({node:F,index:m,skipped:A,depth:L,statics:y,dynamics:x,optionals:b,extract:w,rawParams:S,parsedParams:P})}if(!O)for(let T=p.optional.length-1;T>=0;T--){const F=p.optional[T],{prefix:V,suffix:N}=F;if(V||N){const D=F.caseSensitive?R:E??=R.toLowerCase();if(V&&!D.startsWith(V)||N&&!D.endsWith(N))continue}i.push({node:F,index:m+1,skipped:g,depth:L,statics:y,dynamics:x,optionals:b+1,extract:w,rawParams:S,parsedParams:P})}}if(!O&&p.dynamic&&R)for(let A=p.dynamic.length-1;A>=0;A--){const L=p.dynamic[A],{prefix:T,suffix:F}=L;if(T||F){const V=L.caseSensitive?R:E??=R.toLowerCase();if(T&&!V.startsWith(T)||F&&!V.endsWith(F))continue}i.push({node:L,index:m+1,skipped:g,depth:v+1,statics:y,dynamics:x+1,optionals:b,extract:w,rawParams:S,parsedParams:P})}if(!O&&p.staticInsensitive){const A=p.staticInsensitive.get(E??=R.toLowerCase());A&&i.push({node:A,index:m+1,skipped:g,depth:v+1,statics:y+1,dynamics:x,optionals:b,extract:w,rawParams:S,parsedParams:P})}if(!O&&p.static){const A=p.static.get(R);A&&i.push({node:A,index:m+1,skipped:g,depth:v+1,statics:y+1,dynamics:x,optionals:b,extract:w,rawParams:S,parsedParams:P})}if(p.pathless){const A=v+1;for(let L=p.pathless.length-1;L>=0;L--){const T=p.pathless[L];i.push({node:T,index:m,skipped:g,depth:A,statics:y,dynamics:x,optionals:b,extract:w,rawParams:S,parsedParams:P})}}}if(d&&l)return Bn(l,d)?d:l;if(d)return d;if(l)return l;if(r&&u){let f=u.index;for(let m=0;m<u.index;m++)f+=t[m].length;const p=f===e.length?"/":e.slice(f);return u.rawParams??={},u.rawParams["**"]=decodeURIComponent(p),u}return null}function as(e,t,n){try{const[r,o]=fl(e,t,n);n.rawParams=r,n.extract=o;const s=n.node.parse(r);return n.parsedParams=Object.assign({},n.parsedParams,s),!0}catch{return null}}function Bn(e,t){return e?t.statics>e.statics||t.statics===e.statics&&(t.dynamics>e.dynamics||t.dynamics===e.dynamics&&(t.optionals>e.optionals||t.optionals===e.optionals&&((t.node.kind===qt)>(e.node.kind===qt)||t.node.kind===qt==(e.node.kind===qt)&&t.depth>e.depth))):!0}function qr(e){return Sa(e.filter(t=>t!==void 0).join("/"))}function Sa(e){return e.replace(/\/{2,}/g,"/")}function hl(e){return e==="/"?e:e.replace(/^\/{1,}/,"")}function Dt(e){const t=e.length;return t>1&&e[t-1]==="/"?e.replace(/\/{1,}$/,""):e}function pl(e){return Dt(hl(e))}function oo(e,t){return e?.endsWith("/")&&e!=="/"&&e!==`${t}/`?e.slice(0,-1):e}function sp(e,t,n){return oo(e,n)===oo(t,n)}function ap({base:e,to:t,trailingSlash:n="never",cache:r}){const o=t.startsWith("/"),s=!o&&t===".";let a;if(r){a=o?t:s?e:e+"\0"+t;const f=r.get(a);if(f)return f}let i;if(s)i=e.split("/");else if(o)i=t.split("/");else{for(i=e.split("/");i.length>1&&er(i)==="";)i.pop();const f=t.split("/");for(let p=0,m=f.length;p<m;p++){const g=f[p];g===""?p?p===m-1&&i.push(g):i=[g]:g===".."?i.pop():g==="."||i.push(g)}}i.length>1&&(er(i)===""?n==="never"&&i.pop():n==="always"&&i.push(""));let l,u="";for(let f=0;f<i.length;f++){f>0&&(u+="/");const p=i[f];if(!p)continue;l=ba(p,0,l);const m=l[0];if(m===Rn){u+=p;continue}const g=l[5],v=p.substring(0,l[1]),y=p.substring(l[4],g),x=p.substring(l[2],l[3]);m===en?u+=v||y?`${v}{$${x}}${y}`:`$${x}`:m===tn?u+=v||y?`${v}{$}${y}`:"$":u+=`${v}{-$${x}}${y}`}u=Sa(u);const d=u||"/";return a&&r&&r.set(a,d),d}function ip(e){const t=new Map(e.map(o=>[encodeURIComponent(o),o])),n=Array.from(t.keys()).map(o=>o.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")).join("|"),r=new RegExp(n,"g");return o=>o.replace(r,s=>t.get(s)??s)}function is(e,t,n){const r=t[e];return typeof r!="string"?r:e==="_splat"?/^[a-zA-Z0-9\-._~!/]*$/.test(r)?r:r.split("/").map(o=>Ii(o,n)).join("/"):Ii(r,n)}function Oi({path:e,params:t,decoder:n,...r}){let o=!1;const s={};if(!e||e==="/")return{interpolatedPath:"/",usedParams:s,isMissingParams:o};if(!e.includes("$"))return{interpolatedPath:e,usedParams:s,isMissingParams:o};const a=e.length;let i=0,l,u="";for(;i<a;){const f=i;l=ba(e,f,l);const p=l[5];if(i=p+1,f===p)continue;const m=l[0];if(m===Rn){u+="/"+e.substring(f,p);continue}if(m===tn){const g=t._splat;s._splat=g,s["*"]=g;const v=e.substring(f,l[1]),y=e.substring(l[4],p);if(!g){o=!0,(v||y)&&(u+="/"+v+y);continue}const x=is("_splat",t,n);u+="/"+v+x+y;continue}if(m===en){const g=e.substring(l[2],l[3]);!o&&!(g in t)&&(o=!0),s[g]=t[g];const v=e.substring(f,l[1]),y=e.substring(l[4],p),x=is(g,t,n)??"undefined";u+="/"+v+x+y;continue}if(m===nr){const g=e.substring(l[2],l[3]),v=t[g];if(v==null)continue;s[g]=v;const y=e.substring(f,l[1]),x=e.substring(l[4],p),b=is(g,t,n)??"";u+="/"+y+b+x;continue}}return e.endsWith("/")&&(u+="/"),{usedParams:s,interpolatedPath:u||"/",isMissingParams:o}}function Ii(e,t){const n=encodeURIComponent(e);return t?.(n)??n}function ml(e={}){if(e.isNotFound=!0,e.throw)throw e;return e}function Ae(e){return!!e?.isNotFound}function cp(){try{if(typeof window<"u"&&typeof window.sessionStorage=="object")return window.sessionStorage}catch{}}const Ns="tsr-scroll-restoration-v1_3",lp=(e,t)=>{let n;return(...r)=>{n||(n=setTimeout(()=>{e(...r),n=null},t))}};function up(){const e=cp();if(!e)return null;const t=e.getItem(Ns);let n=t?JSON.parse(t):{};return{state:n,set:r=>{n=Ot(r,n)||n;try{e.setItem(Ns,JSON.stringify(n))}catch{console.warn("[ts-router] Could not persist scroll restoration state to sessionStorage.")}}}}const Dr=up(),dp=e=>e.state.__TSR_key||e.href;function fp(e){const t=[];let n;for(;n=e.parentNode;)t.push(`${e.tagName}:nth-child(${Array.prototype.indexOf.call(n.children,e)+1})`),e=n;return`${t.reverse().join(" > ")}`.toLowerCase()}let so=!1;function hp({storageKey:e,key:t,behavior:n,shouldScrollRestoration:r,scrollToTopSelectors:o,location:s}){let a;try{a=JSON.parse(sessionStorage.getItem(e)||"{}")}catch(u){console.error(u);return}const i=t||window.history.state?.__TSR_key,l=a[i];so=!0;e:{if(r&&l&&Object.keys(l).length>0){for(const f in l){const p=l[f];if(f==="window")window.scrollTo({top:p.scrollY,left:p.scrollX,behavior:n});else if(f){const m=document.querySelector(f);m&&(m.scrollLeft=p.scrollX,m.scrollTop=p.scrollY)}}break e}const u=(s??window.location).hash.split("#",2)[1];if(u){const f=window.history.state?.__hashScrollIntoViewOptions??!0;if(f){const p=document.getElementById(u);p&&p.scrollIntoView(f)}break e}const d={top:0,left:0,behavior:n};if(window.scrollTo(d),o)for(const f of o){if(f==="window")continue;const p=typeof f=="function"?f():document.querySelector(f);p&&p.scrollTo(d)}}so=!1}function pp(e,t){if(!Dr||((e.options.scrollRestoration??!1)&&(e.isScrollRestoring=!0),e.isScrollRestorationSetup||!Dr))return;e.isScrollRestorationSetup=!0,so=!1;const r=e.options.getScrollRestorationKey||dp;window.history.scrollRestoration="manual";const o=s=>{if(so||!e.isScrollRestoring)return;let a="";if(s.target===document||s.target===window)a="window";else{const l=s.target.getAttribute("data-scroll-restoration-id");l?a=`[data-scroll-restoration-id="${l}"]`:a=fp(s.target)}const i=r(e.state.location);Dr.set(l=>{const u=l[i]||={},d=u[a]||={};if(a==="window")d.scrollX=window.scrollX||0,d.scrollY=window.scrollY||0;else if(a){const f=document.querySelector(a);f&&(d.scrollX=f.scrollLeft||0,d.scrollY=f.scrollTop||0)}return l})};typeof document<"u"&&document.addEventListener("scroll",lp(o,100),!0),e.subscribe("onRendered",s=>{const a=r(s.toLocation);if(!e.resetNextScroll){e.resetNextScroll=!0;return}typeof e.options.scrollRestoration=="function"&&!e.options.scrollRestoration({location:e.latestLocation})||(hp({storageKey:Ns,key:a,behavior:e.options.scrollRestorationBehavior,shouldScrollRestoration:e.isScrollRestoring,scrollToTopSelectors:e.options.scrollToTopSelectors,location:e.history.location}),e.isScrollRestoring&&Dr.set(i=>(i[a]||={},i)))})}function mp(e){if(typeof document<"u"&&document.querySelector){const t=e.state.location.state.__hashScrollIntoViewOptions??!0;if(t&&e.state.location.hash!==""){const n=document.getElementById(e.state.location.hash);n&&n.scrollIntoView(t)}}}function gp(e,t=String){const n=new URLSearchParams;for(const r in e){const o=e[r];o!==void 0&&n.set(r,t(o))}return n.toString()}function cs(e){return e?e==="false"?!1:e==="true"?!0:+e*0===0&&+e+""===e?+e:e:""}function vp(e){const t=new URLSearchParams(e),n={};for(const[r,o]of t.entries()){const s=n[r];s==null?n[r]=cs(o):Array.isArray(s)?s.push(cs(o)):n[r]=[s,cs(o)]}return n}const yp=bp(JSON.parse),xp=wp(JSON.stringify,JSON.parse);function bp(e){return t=>{t[0]==="?"&&(t=t.substring(1));const n=vp(t);for(const r in n){const o=n[r];if(typeof o=="string")try{n[r]=e(o)}catch{}}return n}}function wp(e,t){const n=typeof t=="function";function r(o){if(typeof o=="object"&&o!==null)try{return e(o)}catch{}else if(n&&typeof o=="string")try{return t(o),e(o)}catch{}return o}return o=>{const s=gp(o,r);return s?`?${s}`:""}}const qe="__root__";function gl(e){if(e.statusCode=e.statusCode||e.code||307,!e._builtLocation&&!e.reloadDocument&&typeof e.href=="string")try{new URL(e.href),e.reloadDocument=!0}catch{}const t=new Headers(e.headers);e.href&&t.get("Location")===null&&t.set("Location",e.href);const n=new Response(null,{status:e.statusCode,headers:t});if(n.options=e,e.throw)throw n;return n}function ke(e){return e instanceof Response&&!!e.options}const Ds=e=>{if(!e.rendered)return e.rendered=!0,e.onReady?.()},Po=(e,t)=>!!(e.preload&&!e.router.state.matches.some(n=>n.id===t)),bn=(e,t,n=!0)=>{const r={...e.router.options.context??{}},o=n?t:t-1;for(let s=0;s<=o;s++){const a=e.matches[s];if(!a)continue;const i=e.router.getMatch(a.id);i&&Object.assign(r,i.__routeContext,i.__beforeLoadContext)}return r},Li=(e,t)=>{if(!e.matches.length)return;const n=t.routeId,r=e.matches.findIndex(a=>a.routeId===e.router.routeTree.id),o=r>=0?r:0;let s=n?e.matches.findIndex(a=>a.routeId===n):e.firstBadMatchIndex??e.matches.length-1;s<0&&(s=o);for(let a=s;a>=0;a--){const i=e.matches[a];if(e.router.looseRoutesById[i.routeId].options.notFoundComponent)return a}return n?s:o},It=(e,t,n)=>{if(!(!ke(n)&&!Ae(n)))throw ke(n)&&n.redirectHandled&&!n.options.reloadDocument||(t&&(t._nonReactive.beforeLoadPromise?.resolve(),t._nonReactive.loaderPromise?.resolve(),t._nonReactive.beforeLoadPromise=void 0,t._nonReactive.loaderPromise=void 0,t._nonReactive.error=n,e.updateMatch(t.id,r=>({...r,status:ke(n)?"redirected":r.status==="pending"?"success":r.status,context:bn(e,t.index),isFetching:!1,error:n})),Ae(n)&&!n.routeId&&(n.routeId=t.routeId),t._nonReactive.loadPromise?.resolve()),ke(n)&&(e.rendered=!0,n.options._fromLocation=e.location,n.redirectHandled=!0,n=e.router.resolveRedirect(n))),n},vl=(e,t)=>!!e.router.getMatch(t)._nonReactive.dehydrated,Vn=(e,t,n,r)=>{const{id:o,routeId:s}=e.matches[t],a=e.router.looseRoutesById[s];if(n instanceof Promise)throw n;n.routerCode=r,e.firstBadMatchIndex??=t,It(e,e.router.getMatch(o),n);try{a.options.onError?.(n)}catch(i){n=i,It(e,e.router.getMatch(o),n)}e.updateMatch(o,i=>(i._nonReactive.beforeLoadPromise?.resolve(),i._nonReactive.beforeLoadPromise=void 0,i._nonReactive.loadPromise?.resolve(),{...i,error:n,status:"error",isFetching:!1,updatedAt:Date.now(),abortController:new AbortController})),!e.preload&&!ke(n)&&!Ae(n)&&(e.serialError??=n)},yl=(e,t,n,r)=>{if(r._nonReactive.pendingTimeout!==void 0)return;const o=n.options.pendingMs??e.router.options.defaultPendingMs;if(!!(e.onReady&&!Po(e,t)&&(n.options.loader||n.options.beforeLoad||bl(n))&&typeof o=="number"&&o!==1/0&&(n.options.pendingComponent??e.router.options?.defaultPendingComponent))){const a=setTimeout(()=>{Ds(e)},o);r._nonReactive.pendingTimeout=a}},Sp=(e,t,n)=>{const r=e.router.getMatch(t);if(!r._nonReactive.beforeLoadPromise&&!r._nonReactive.loaderPromise)return;yl(e,t,n,r);const o=()=>{const s=e.router.getMatch(t);s.preload&&(s.status==="redirected"||s.status==="notFound")&&It(e,s,s.error)};return r._nonReactive.beforeLoadPromise?r._nonReactive.beforeLoadPromise.then(o):o()},Ep=(e,t,n,r)=>{const o=e.router.getMatch(t),s=o._nonReactive.loadPromise;o._nonReactive.loadPromise=En(()=>{s?.resolve()});const{paramsError:a,searchError:i}=o;a&&Vn(e,n,a,"PARSE_PARAMS"),i&&Vn(e,n,i,"VALIDATE_SEARCH"),yl(e,t,r,o);const l=new AbortController;let u=!1;const d=()=>{u||(u=!0,e.updateMatch(t,S=>({...S,isFetching:"beforeLoad",fetchCount:S.fetchCount+1,abortController:l})))},f=()=>{o._nonReactive.beforeLoadPromise?.resolve(),o._nonReactive.beforeLoadPromise=void 0,e.updateMatch(t,S=>({...S,isFetching:!1}))};if(!r.options.beforeLoad){Qn(()=>{d(),f()});return}o._nonReactive.beforeLoadPromise=En();const p={...bn(e,n,!1),...o.__routeContext},{search:m,params:g,cause:v}=o,y=Po(e,t),x={search:m,abortController:l,params:g,preload:y,context:p,location:e.location,navigate:S=>e.router.navigate({...S,_fromLocation:e.location}),buildLocation:e.router.buildLocation,cause:y?"preload":v,matches:e.matches,routeId:r.id,...e.router.options.additionalContext},b=S=>{if(S===void 0){Qn(()=>{d(),f()});return}(ke(S)||Ae(S))&&(d(),Vn(e,n,S,"BEFORE_LOAD")),Qn(()=>{d(),e.updateMatch(t,P=>({...P,__beforeLoadContext:S})),f()})};let w;try{if(w=r.options.beforeLoad(x),tr(w))return d(),w.catch(S=>{Vn(e,n,S,"BEFORE_LOAD")}).then(b)}catch(S){d(),Vn(e,n,S,"BEFORE_LOAD")}b(w)},Rp=(e,t)=>{const{id:n,routeId:r}=e.matches[t],o=e.router.looseRoutesById[r],s=()=>i(),a=()=>Ep(e,n,t,o),i=()=>{if(vl(e,n))return;const l=Sp(e,n,o);return tr(l)?l.then(a):a()};return s()},Cp=(e,t,n)=>{const r=e.router.getMatch(t);if(!r||!n.options.head&&!n.options.scripts&&!n.options.headers)return;const o={ssr:e.router.options.ssr,matches:e.matches,match:r,params:r.params,loaderData:r.loaderData};return Promise.all([n.options.head?.(o),n.options.scripts?.(o),n.options.headers?.(o)]).then(([s,a,i])=>{const l=s?.meta,u=s?.links,d=s?.scripts,f=s?.styles;return{meta:l,links:u,headScripts:d,headers:i,scripts:a,styles:f}})},xl=(e,t,n,r,o)=>{const s=t[r-1],{params:a,loaderDeps:i,abortController:l,cause:u}=e.router.getMatch(n),d=bn(e,r),f=Po(e,n);return{params:a,deps:i,preload:!!f,parentMatchPromise:s,abortController:l,context:d,location:e.location,navigate:p=>e.router.navigate({...p,_fromLocation:e.location}),cause:f?"preload":u,route:o,...e.router.options.additionalContext}},Ni=async(e,t,n,r,o)=>{try{const s=e.router.getMatch(n);try{(!(B0??e.router.isServer)||s.ssr===!0)&&ao(o);const a=o.options.loader?.(xl(e,t,n,r,o)),i=o.options.loader&&tr(a);if((i||o._lazyPromise||o._componentsPromise||o.options.head||o.options.scripts||o.options.headers||s._nonReactive.minPendingPromise)&&e.updateMatch(n,d=>({...d,isFetching:"loader"})),o.options.loader){const d=i?await a:a;It(e,e.router.getMatch(n),d),d!==void 0&&e.updateMatch(n,f=>({...f,loaderData:d}))}o._lazyPromise&&await o._lazyPromise;const u=s._nonReactive.minPendingPromise;u&&await u,o._componentsPromise&&await o._componentsPromise,e.updateMatch(n,d=>({...d,error:void 0,context:bn(e,r),status:"success",isFetching:!1,updatedAt:Date.now()}))}catch(a){let i=a;if(i?.name==="AbortError"){if(s.abortController.signal.aborted){s._nonReactive.loaderPromise?.resolve(),s._nonReactive.loaderPromise=void 0;return}e.updateMatch(n,u=>({...u,status:u.status==="pending"?"success":u.status,isFetching:!1,context:bn(e,r)}));return}const l=s._nonReactive.minPendingPromise;l&&await l,Ae(a)&&await o.options.notFoundComponent?.preload?.(),It(e,e.router.getMatch(n),a);try{o.options.onError?.(a)}catch(u){i=u,It(e,e.router.getMatch(n),u)}e.updateMatch(n,u=>({...u,error:i,context:bn(e,r),status:"error",isFetching:!1}))}}catch(s){const a=e.router.getMatch(n);a&&(a._nonReactive.loaderPromise=void 0),It(e,a,s)}},Pp=async(e,t,n)=>{async function r(f,p,m,g){const v=Date.now()-p.updatedAt,y=f?g.options.preloadStaleTime??e.router.options.defaultPreloadStaleTime??3e4:g.options.staleTime??e.router.options.defaultStaleTime??0,x=g.options.shouldReload,b=typeof x=="function"?x(xl(e,t,o,n,g)):x,{status:w,invalid:S}=m;a=w==="success"&&(S||(b??v>y)),f&&g.options.preload===!1||(a&&!e.sync?(i=!0,(async()=>{try{await Ni(e,t,o,n,g);const P=e.router.getMatch(o);P._nonReactive.loaderPromise?.resolve(),P._nonReactive.loadPromise?.resolve(),P._nonReactive.loaderPromise=void 0}catch(P){ke(P)&&await e.router.navigate(P.options)}})()):(w!=="success"||a&&e.sync)&&await Ni(e,t,o,n,g))}const{id:o,routeId:s}=e.matches[n];let a=!1,i=!1;const l=e.router.looseRoutesById[s];if(!vl(e,o)){const f=e.router.getMatch(o),p=Po(e,o);if(f._nonReactive.loaderPromise){if(f.status==="success"&&!e.sync&&!f.preload)return f;await f._nonReactive.loaderPromise;const m=e.router.getMatch(o),g=m._nonReactive.error||m.error;g&&It(e,m,g),m.status==="pending"&&await r(p,f,m,l)}else{const m=p&&!e.router.state.matches.some(v=>v.id===o),g=e.router.getMatch(o);g._nonReactive.loaderPromise=En(),m!==g.preload&&e.updateMatch(o,v=>({...v,preload:m})),await r(p,f,g,l)}}const u=e.router.getMatch(o);i||(u._nonReactive.loaderPromise?.resolve(),u._nonReactive.loadPromise?.resolve()),clearTimeout(u._nonReactive.pendingTimeout),u._nonReactive.pendingTimeout=void 0,i||(u._nonReactive.loaderPromise=void 0),u._nonReactive.dehydrated=void 0;const d=i?u.isFetching:!1;return d!==u.isFetching||u.invalid!==!1?(e.updateMatch(o,f=>({...f,isFetching:d,invalid:!1})),e.router.getMatch(o)):u};async function Di(e){const t=e,n=[];t.router.state.matches.some(p=>p._forcePending)&&Ds(t);let r;for(let p=0;p<t.matches.length;p++){try{const m=Rp(t,p);tr(m)&&await m}catch(m){if(ke(m))throw m;if(Ae(m))r=m;else if(!t.preload)throw m;break}if(t.serialError)break}const o=t.firstBadMatchIndex??t.matches.length,s=r&&!t.preload?Li(t,r):void 0,a=r&&t.preload?0:s!==void 0?Math.min(s+1,o):o;let i,l;for(let p=0;p<a;p++)n.push(Pp(t,n,p));try{await Promise.all(n)}catch{const p=await Promise.allSettled(n);for(const m of p){if(m.status!=="rejected")continue;const g=m.reason;if(ke(g))throw g;Ae(g)?i??=g:l??=g}if(l!==void 0)throw l}const u=i??(r&&!t.preload?r:void 0);let d=t.serialError?t.firstBadMatchIndex??0:t.matches.length-1;if(!u&&r&&t.preload)return t.matches;if(u){const p=Li(t,u);Ft(p!==void 0);const m=t.matches[p],g=t.router.looseRoutesById[m.routeId],v=t.router.options?.defaultNotFoundComponent;!g.options.notFoundComponent&&v&&(g.options.notFoundComponent=v),u.routeId=m.routeId;const y=m.routeId===t.router.routeTree.id;t.updateMatch(m.id,x=>({...x,...y?{status:"success",globalNotFound:!0,error:void 0}:{status:"notFound",error:u},isFetching:!1})),d=p,await ao(g)}else if(!t.preload){const p=t.matches[0];p.globalNotFound||t.router.getMatch(p.id)?.globalNotFound&&t.updateMatch(p.id,g=>({...g,globalNotFound:!1,error:void 0}))}if(t.serialError&&t.firstBadMatchIndex!==void 0){const p=t.router.looseRoutesById[t.matches[t.firstBadMatchIndex].routeId];await ao(p)}for(let p=0;p<=d;p++){const m=t.matches[p],{id:g,routeId:v}=m,y=t.router.looseRoutesById[v];try{const x=Cp(t,g,y);if(x){const b=await x;t.updateMatch(g,w=>({...w,...b}))}}catch(x){console.error(`Error executing head for route ${v}:`,x)}}const f=Ds(t);if(tr(f)&&await f,u)throw u;if(t.serialError&&!t.preload&&!t.onReady)throw t.serialError;return t.matches}async function ao(e){if(!e._lazyLoaded&&e._lazyPromise===void 0&&(e.lazyFn?e._lazyPromise=e.lazyFn().then(t=>{const{id:n,...r}=t.options;Object.assign(e.options,r),e._lazyLoaded=!0,e._lazyPromise=void 0}):e._lazyLoaded=!0),!e._componentsLoaded&&e._componentsPromise===void 0){const t=()=>{const n=[];for(const r of wl){const o=e.options[r]?.preload;o&&n.push(o())}if(n.length)return Promise.all(n).then(()=>{e._componentsLoaded=!0,e._componentsPromise=void 0});e._componentsLoaded=!0,e._componentsPromise=void 0};e._componentsPromise=e._lazyPromise?e._lazyPromise.then(t):t()}return e._componentsPromise}function bl(e){for(const t of wl)if(e.options[t]?.preload)return!0;return!1}const wl=["component","errorComponent","pendingComponent","notFoundComponent"];function _p(e){return{input:({url:t})=>{for(const n of e)t=js(n,t);return t},output:({url:t})=>{for(let n=e.length-1;n>=0;n--)t=Sl(e[n],t);return t}}}function Tp(e){const t=pl(e.basepath),n=`/${t}`,r=`${n}/`,o=e.caseSensitive?n:n.toLowerCase(),s=e.caseSensitive?r:r.toLowerCase();return{input:({url:a})=>{const i=e.caseSensitive?a.pathname:a.pathname.toLowerCase();return i===o?a.pathname="/":i.startsWith(s)&&(a.pathname=a.pathname.slice(n.length)),a},output:({url:a})=>(a.pathname=qr(["/",t,a.pathname]),a)}}function js(e,t){const n=e?.input?.({url:t});if(n){if(typeof n=="string")return new URL(n);if(n instanceof URL)return n}return t}function Sl(e,t){const n=e?.output?.({url:t});if(n){if(typeof n=="string")return new URL(n);if(n instanceof URL)return n}return t}function Yt(e){const t=e.resolvedLocation,n=e.location,r=t?.pathname!==n.pathname,o=t?.href!==n.href,s=t?.hash!==n.hash;return{fromLocation:t,toLocation:n,pathChanged:r,hrefChanged:o,hashChanged:s}}function Ap(e){const t=e.filter(n=>n.status!=="redirected");return t.length===e.length?e:t}class Mp{constructor(t){this.tempLocationKey=`${Math.round(Math.random()*1e7)}`,this.resetNextScroll=!0,this.shouldViewTransition=void 0,this.isViewTransitionTypesSupported=void 0,this.subscribers=new Set,this.isScrollRestoring=!1,this.isScrollRestorationSetup=!1,this.startTransition=n=>n(),this.update=n=>{const r=this.options,o=this.basepath??r?.basepath??"/",s=this.basepath===void 0,a=r?.rewrite;if(this.options={...r,...n},this.isServer=this.options.isServer??typeof document>"u",this.protocolAllowlist=new Set(this.options.protocolAllowlist),this.options.pathParamsAllowedCharacters&&(this.pathParamsDecoder=ip(this.options.pathParamsAllowedCharacters)),(!this.history||this.options.history&&this.options.history!==this.history)&&(this.options.history?this.history=this.options.history:this.history=$0()),this.origin=this.options.origin,this.origin||(window?.origin&&window.origin!=="null"?this.origin=window.origin:this.origin="http://localhost"),this.history&&this.updateLatestLocation(),this.options.routeTree!==this.routeTree){this.routeTree=this.options.routeTree;let p;this.resolvePathCache=ro(1e3),p=this.buildRouteTree(),this.setRoutes(p)}!this.__store&&this.latestLocation&&(this.__store=j0(Ip(this.latestLocation)),pp(this));let i=!1;const l=this.options.basepath??"/",u=this.options.rewrite;if(s||o!==l||a!==u){this.basepath=l;const p=[],m=pl(l);m&&m!=="/"&&p.push(Tp({basepath:l})),u&&p.push(u),this.rewrite=p.length===0?void 0:p.length===1?p[0]:_p(p),this.history&&this.updateLatestLocation(),i=!0}i&&this.__store&&this.__store.setState(p=>({...p,location:this.latestLocation})),typeof window<"u"&&"CSS"in window&&typeof window.CSS?.supports=="function"&&(this.isViewTransitionTypesSupported=window.CSS.supports("selector(:active-view-transition-type(a)"))},this.updateLatestLocation=()=>{this.latestLocation=this.parseLocation(this.history.location,this.latestLocation)},this.buildRouteTree=()=>{const n=tp(this.routeTree,this.options.caseSensitive,(r,o)=>{r.init({originalIndex:o})});return this.options.routeMasks&&Q0(this.options.routeMasks,n.processedTree),n},this.subscribe=(n,r)=>{const o={eventType:n,fn:r};return this.subscribers.add(o),()=>{this.subscribers.delete(o)}},this.emit=n=>{this.subscribers.forEach(r=>{r.eventType===n.type&&r.fn(n)})},this.parseLocation=(n,r)=>{const o=({pathname:l,search:u,hash:d,href:f,state:p})=>{if(!this.rewrite&&!/[ \x00-\x1f\x7f\u0080-\uffff]/.test(l)){const b=this.options.parseSearch(u),w=this.options.stringifySearch(b);return{href:l+w+d,publicHref:f,pathname:Hn(l).path,external:!1,searchStr:w,search:Fe(r?.search,b),hash:Hn(d.slice(1)).path,state:Fe(r?.state,p)}}const m=new URL(f,this.origin),g=js(this.rewrite,m),v=this.options.parseSearch(g.search),y=this.options.stringifySearch(v);return g.search=y,{href:g.href.replace(g.origin,""),publicHref:f,pathname:Hn(g.pathname).path,external:!!this.rewrite&&g.origin!==this.origin,searchStr:y,search:Fe(r?.search,v),hash:Hn(g.hash.slice(1)).path,state:Fe(r?.state,p)}},s=o(n),{__tempLocation:a,__tempKey:i}=s.state;if(a&&(!i||i===this.tempLocationKey)){const l=o(a);return l.state.key=s.state.key,l.state.__TSR_key=s.state.__TSR_key,delete l.state.__tempLocation,{...l,maskedLocation:s}}return s},this.resolvePathWithBase=(n,r)=>ap({base:n,to:Sa(r),trailingSlash:this.options.trailingSlash,cache:this.resolvePathCache}),this.matchRoutes=(n,r,o)=>typeof n=="string"?this.matchRoutesInternal({pathname:n,search:r},o):this.matchRoutesInternal(n,r),this.getMatchedRoutes=n=>Lp({pathname:n,routesById:this.routesById,processedTree:this.processedTree}),this.cancelMatch=n=>{const r=this.getMatch(n);r&&(r.abortController.abort(),clearTimeout(r._nonReactive.pendingTimeout),r._nonReactive.pendingTimeout=void 0)},this.cancelMatches=()=>{const n=this.state.matches.filter(s=>s.status==="pending"),r=this.state.matches.filter(s=>s.isFetching==="loader");new Set([...this.state.pendingMatches??[],...n,...r]).forEach(s=>{this.cancelMatch(s.id)})},this.buildLocation=n=>{const r=(s={})=>{const a=s._fromLocation||this.pendingBuiltLocation||this.latestLocation,i=this.matchRoutesLightweight(a);s.from;const l=s.unsafeRelative==="path"?a.pathname:s.from??i.fullPath,u=this.resolvePathWithBase(l,"."),d=i.search,f={...i.params},p=s.to?this.resolvePathWithBase(u,`${s.to}`):this.resolvePathWithBase(u,"."),m=s.params===!1||s.params===null?{}:(s.params??!0)===!0?f:Object.assign(f,Ot(s.params,f)),g=this.getMatchedRoutes(p);let v=g.matchedRoutes;if((!g.foundRoute||g.foundRoute.path!=="/"&&g.routeParams["**"])&&this.options.notFoundRoute&&(v=[...v,this.options.notFoundRoute]),Object.keys(m).length>0)for(const T of v){const F=T.options.params?.stringify??T.options.stringifyParams;if(F)try{Object.assign(m,F(m))}catch{}}const x=n.leaveParams?p:Hn(Oi({path:p,params:m,decoder:this.pathParamsDecoder,server:this.isServer}).interpolatedPath).path;let b=d;if(n._includeValidateSearch&&this.options.search?.strict){const T={};v.forEach(F=>{if(F.options.validateSearch)try{Object.assign(T,zr(F.options.validateSearch,{...T,...b}))}catch{}}),b=T}b=Np({search:b,dest:s,destRoutes:v,_includeValidateSearch:n._includeValidateSearch}),b=Fe(d,b);const w=this.options.stringifySearch(b),S=s.hash===!0?a.hash:s.hash?Ot(s.hash,a.hash):void 0,P=S?`#${S}`:"";let O=s.state===!0?a.state:s.state?Ot(s.state,a.state):{};O=Fe(a.state,O);const R=`${x}${w}${P}`;let E,A,L=!1;if(this.rewrite){const T=new URL(R,this.origin),F=Sl(this.rewrite,T);E=T.href.replace(T.origin,""),F.origin!==this.origin?(A=F.href,L=!0):A=F.pathname+F.search+F.hash}else E=W0(R),A=E;return{publicHref:A,href:E,pathname:x,search:b,searchStr:w,state:O,hash:S??"",external:L,unmaskOnReload:s.unmaskOnReload}},o=(s={},a)=>{const i=r(s);let l=a?r(a):void 0;if(!l){const u={};if(this.options.routeMasks){const d=Y0(i.pathname,this.processedTree);if(d){Object.assign(u,d.rawParams);const{from:f,params:p,...m}=d.route,g=p===!1||p===null?{}:(p??!0)===!0?u:Object.assign(u,Ot(p,u));a={from:n.from,...m,params:g},l=r(a)}}}return l&&(i.maskedLocation=l),i};return n.mask?o(n,{from:n.from,...n.mask}):o(n)},this.commitLocation=async({viewTransition:n,ignoreBlocker:r,...o})=>{const s=()=>{const l=["key","__TSR_key","__TSR_index","__hashScrollIntoViewOptions"];l.forEach(d=>{o.state[d]=this.latestLocation.state[d]});const u=Qt(o.state,this.latestLocation.state);return l.forEach(d=>{delete o.state[d]}),u},a=Dt(this.latestLocation.href)===Dt(o.href),i=this.commitLocationPromise;if(this.commitLocationPromise=En(()=>{i?.resolve()}),a&&s())this.load();else{let{maskedLocation:l,hashScrollIntoView:u,...d}=o;l&&(d={...l,state:{...l.state,__tempKey:void 0,__tempLocation:{...d,search:d.searchStr,state:{...d.state,__tempKey:void 0,__tempLocation:void 0,__TSR_key:void 0,key:void 0}}}},(d.unmaskOnReload??this.options.unmaskOnReload??!1)&&(d.state.__tempKey=this.tempLocationKey)),d.state.__hashScrollIntoViewOptions=u??this.options.defaultHashScrollIntoView??!0,this.shouldViewTransition=n,this.history[o.replace?"replace":"push"](d.publicHref,d.state,{ignoreBlocker:r})}return this.resetNextScroll=o.resetScroll??!0,this.history.subscribers.size||this.load(),this.commitLocationPromise},this.buildAndCommitLocation=({replace:n,resetScroll:r,hashScrollIntoView:o,viewTransition:s,ignoreBlocker:a,href:i,...l}={})=>{if(i){const f=this.history.location.state.__TSR_index,p=eo(i,{__TSR_index:n?f:f+1}),m=new URL(p.pathname,this.origin),g=js(this.rewrite,m);l.to=g.pathname,l.search=this.options.parseSearch(p.search),l.hash=p.hash.slice(1)}const u=this.buildLocation({...l,_includeValidateSearch:!0});this.pendingBuiltLocation=u;const d=this.commitLocation({...u,viewTransition:s,replace:n,resetScroll:r,hashScrollIntoView:o,ignoreBlocker:a});return Promise.resolve().then(()=>{this.pendingBuiltLocation===u&&(this.pendingBuiltLocation=void 0)}),d},this.navigate=async({to:n,reloadDocument:r,href:o,publicHref:s,...a})=>{let i=!1;if(o)try{new URL(`${o}`),i=!0}catch{}if(i&&!r&&(r=!0),r){if(n!==void 0||!o){const u=this.buildLocation({to:n,...a});o=o??u.publicHref,s=s??u.publicHref}const l=!i&&s?s:o;if(no(l,this.protocolAllowlist))return Promise.resolve();if(!a.ignoreBlocker){const d=this.history.getBlockers?.()??[];for(const f of d)if(f?.blockerFn&&await f.blockerFn({currentLocation:this.latestLocation,nextLocation:this.latestLocation,action:"PUSH"}))return Promise.resolve()}return a.replace?window.location.replace(l):window.location.href=l,Promise.resolve()}return this.buildAndCommitLocation({...a,href:o,to:n,_isNavigate:!0})},this.beforeLoad=()=>{this.cancelMatches(),this.updateLatestLocation();const n=this.matchRoutes(this.latestLocation);this.__store.setState(r=>({...r,status:"pending",statusCode:200,isLoading:!0,location:this.latestLocation,pendingMatches:n,cachedMatches:r.cachedMatches.filter(o=>!n.some(s=>s.id===o.id))}))},this.load=async n=>{let r,o,s;for(s=new Promise(i=>{this.startTransition(async()=>{try{this.beforeLoad();const l=this.latestLocation,u=this.state.resolvedLocation;this.state.redirect||this.emit({type:"onBeforeNavigate",...Yt({resolvedLocation:u,location:l})}),this.emit({type:"onBeforeLoad",...Yt({resolvedLocation:u,location:l})}),await Di({router:this,sync:n?.sync,matches:this.state.pendingMatches,location:l,updateMatch:this.updateMatch,onReady:async()=>{this.startTransition(()=>{this.startViewTransition(async()=>{let d=[],f=[],p=[],m=[];Qn(()=>{this.__store.setState(g=>{const v=g.matches,y=g.pendingMatches||g.matches;return d=v.filter(x=>!y.some(b=>b.id===x.id)),f=v.filter(x=>!y.some(b=>b.routeId===x.routeId)),p=y.filter(x=>!v.some(b=>b.routeId===x.routeId)),m=y.filter(x=>v.some(b=>b.routeId===x.routeId)),{...g,isLoading:!1,loadedAt:Date.now(),matches:y,pendingMatches:void 0,cachedMatches:[...g.cachedMatches,...d.filter(x=>x.status!=="error"&&x.status!=="notFound"&&x.status!=="redirected")]}}),this.clearExpiredCache()}),[[f,"onLeave"],[p,"onEnter"],[m,"onStay"]].forEach(([g,v])=>{g.forEach(y=>{this.looseRoutesById[y.routeId].options[v]?.(y)})})})})}})}catch(l){ke(l)?(r=l,this.navigate({...r.options,replace:!0,ignoreBlocker:!0})):Ae(l)&&(o=l),this.__store.setState(u=>({...u,statusCode:r?r.status:o?404:u.matches.some(d=>d.status==="error")?500:200,redirect:r}))}this.latestLoadPromise===s&&(this.commitLocationPromise?.resolve(),this.latestLoadPromise=void 0,this.commitLocationPromise=void 0),i()})}),this.latestLoadPromise=s,await s;this.latestLoadPromise&&s!==this.latestLoadPromise;)await this.latestLoadPromise;let a;this.hasNotFoundMatch()?a=404:this.__store.state.matches.some(i=>i.status==="error")&&(a=500),a!==void 0&&this.__store.setState(i=>({...i,statusCode:a}))},this.startViewTransition=n=>{const r=this.shouldViewTransition??this.options.defaultViewTransition;if(this.shouldViewTransition=void 0,r&&typeof document<"u"&&"startViewTransition"in document&&typeof document.startViewTransition=="function"){let o;if(typeof r=="object"&&this.isViewTransitionTypesSupported){const s=this.latestLocation,a=this.state.resolvedLocation,i=typeof r.types=="function"?r.types(Yt({resolvedLocation:a,location:s})):r.types;if(i===!1){n();return}o={update:n,types:i}}else o=n;document.startViewTransition(o)}else n()},this.updateMatch=(n,r)=>{this.startTransition(()=>{const o=this.state.pendingMatches?.some(s=>s.id===n)?"pendingMatches":this.state.matches.some(s=>s.id===n)?"matches":this.state.cachedMatches.some(s=>s.id===n)?"cachedMatches":"";o&&(o==="cachedMatches"?this.__store.setState(s=>({...s,cachedMatches:Ap(s.cachedMatches.map(a=>a.id===n?r(a):a))})):this.__store.setState(s=>({...s,[o]:s[o]?.map(a=>a.id===n?r(a):a)})))})},this.getMatch=n=>{const r=o=>o.id===n;return this.state.cachedMatches.find(r)??this.state.pendingMatches?.find(r)??this.state.matches.find(r)},this.invalidate=n=>{const r=o=>n?.filter?.(o)??!0?{...o,invalid:!0,...n?.forcePending||o.status==="error"||o.status==="notFound"?{status:"pending",error:void 0}:void 0}:o;return this.__store.setState(o=>({...o,matches:o.matches.map(r),cachedMatches:o.cachedMatches.map(r),pendingMatches:o.pendingMatches?.map(r)})),this.shouldViewTransition=!1,this.load({sync:n?.sync})},this.getParsedLocationHref=n=>n.publicHref||"/",this.resolveRedirect=n=>{const r=n.headers.get("Location");if(!n.options.href||n.options._builtLocation){const o=n.options._builtLocation??this.buildLocation(n.options),s=this.getParsedLocationHref(o);n.options.href=s,n.headers.set("Location",s)}else if(r)try{const o=new URL(r);if(this.origin&&o.origin===this.origin){const s=o.pathname+o.search+o.hash;n.options.href=s,n.headers.set("Location",s)}}catch{}if(n.options.href&&!n.options._builtLocation&&no(n.options.href,this.protocolAllowlist))throw new Error("Redirect blocked: unsafe protocol");return n.headers.get("Location")||n.headers.set("Location",n.options.href),n},this.clearCache=n=>{const r=n?.filter;r!==void 0?this.__store.setState(o=>({...o,cachedMatches:o.cachedMatches.filter(s=>!r(s))})):this.__store.setState(o=>({...o,cachedMatches:[]}))},this.clearExpiredCache=()=>{const n=r=>{const o=this.looseRoutesById[r.routeId];if(!o.options.loader)return!0;const s=(r.preload?o.options.preloadGcTime??this.options.defaultPreloadGcTime:o.options.gcTime??this.options.defaultGcTime)??300*1e3;return r.status==="error"?!0:Date.now()-r.updatedAt>=s};this.clearCache({filter:n})},this.loadRouteChunk=ao,this.preloadRoute=async n=>{const r=n._builtLocation??this.buildLocation(n);let o=this.matchRoutes(r,{throwOnError:!0,preload:!0,dest:n});const s=new Set([...this.state.matches,...this.state.pendingMatches??[]].map(i=>i.id)),a=new Set([...s,...this.state.cachedMatches.map(i=>i.id)]);Qn(()=>{o.forEach(i=>{a.has(i.id)||this.__store.setState(l=>({...l,cachedMatches:[...l.cachedMatches,i]}))})});try{return o=await Di({router:this,matches:o,location:r,preload:!0,updateMatch:(i,l)=>{s.has(i)?o=o.map(u=>u.id===i?l(u):u):this.updateMatch(i,l)}}),o}catch(i){if(ke(i))return i.options.reloadDocument?void 0:await this.preloadRoute({...i.options,_fromLocation:r});Ae(i)||console.error(i);return}},this.matchRoute=(n,r)=>{const o={...n,to:n.to?this.resolvePathWithBase(n.from||"",n.to):void 0,params:n.params||{},leaveParams:!0},s=this.buildLocation(o);if(r?.pending&&this.state.status!=="pending")return!1;const i=(r?.pending===void 0?!this.state.isLoading:r.pending)?this.latestLocation:this.state.resolvedLocation||this.state.location,l=X0(s.pathname,r?.caseSensitive??!1,r?.fuzzy??!1,i.pathname,this.processedTree);return!l||n.params&&!Qt(l.rawParams,n.params,{partial:!0})?!1:r?.includeSearch??!0?Qt(i.search,s.search,{partial:!0})?l.rawParams:!1:l.rawParams},this.hasNotFoundMatch=()=>this.__store.state.matches.some(n=>n.status==="notFound"||n.globalNotFound),this.update({defaultPreloadDelay:50,defaultPendingMs:1e3,defaultPendingMinMs:500,context:void 0,...t,caseSensitive:t.caseSensitive??!1,notFoundMode:t.notFoundMode??"fuzzy",stringifySearch:t.stringifySearch??xp,parseSearch:t.parseSearch??yp,protocolAllowlist:t.protocolAllowlist??z0}),typeof document<"u"&&(self.__TSR_ROUTER__=this)}isShell(){return!!this.options.isShell}isPrerendering(){return!!this.options.isPrerendering}get state(){return this.__store.state}setRoutes({routesById:t,routesByPath:n,processedTree:r}){this.routesById=t,this.routesByPath=n,this.processedTree=r;const o=this.options.notFoundRoute;o&&(o.init({originalIndex:99999999999}),this.routesById[o.id]=o)}get looseRoutesById(){return this.routesById}getParentContext(t){return t?.id?t.context??this.options.context??void 0:this.options.context??void 0}matchRoutesInternal(t,n){const r=this.getMatchedRoutes(t.pathname),{foundRoute:o,routeParams:s,parsedParams:a}=r;let{matchedRoutes:i}=r,l=!1;(o?o.path!=="/"&&s["**"]:Dt(t.pathname))&&(this.options.notFoundRoute?i=[...i,this.options.notFoundRoute]:l=!0);const u=l?jp(this.options.notFoundMode,i):void 0,d=new Array(i.length),f=new Map(this.state.matches.map(p=>[p.routeId,p]));for(let p=0;p<i.length;p++){const m=i[p],g=d[p-1];let v,y,x;{const N=g?.search??t.search,D=g?._strictSearch??void 0;try{const _=zr(m.options.validateSearch,{...N})??void 0;v={...N,..._},y={...D,..._},x=void 0}catch(_){let j=_;if(_ instanceof io||(j=new io(_.message,{cause:_})),n?.throwOnError)throw j;v=N,y={},x=j}}const b=m.options.loaderDeps?.({search:v})??"",w=b?JSON.stringify(b):"",{interpolatedPath:S,usedParams:P}=Oi({path:m.fullPath,params:s,decoder:this.pathParamsDecoder,server:this.isServer}),O=m.id+S+w,R=this.getMatch(O),E=f.get(m.id),A=R?._strictParams??P;let L;if(!R)try{ji(m,P,a,A)}catch(N){if(Ae(N)||ke(N)?L=N:L=new Op(N.message,{cause:N}),n?.throwOnError)throw L}Object.assign(s,A);const T=E?"stay":"enter";let F;if(R)F={...R,cause:T,params:E?.params??s,_strictParams:A,search:Fe(E?E.search:R.search,v),_strictSearch:y};else{const N=m.options.loader||m.options.beforeLoad||m.lazyFn||bl(m)?"pending":"success";F={id:O,ssr:m.options.ssr,index:p,routeId:m.id,params:E?.params??s,_strictParams:A,pathname:S,updatedAt:Date.now(),search:E?Fe(E.search,v):v,_strictSearch:y,searchError:void 0,status:N,isFetching:!1,error:void 0,paramsError:L,__routeContext:void 0,_nonReactive:{loadPromise:En()},__beforeLoadContext:void 0,context:{},abortController:new AbortController,fetchCount:0,cause:T,loaderDeps:E?Fe(E.loaderDeps,b):b,invalid:!1,preload:!1,links:void 0,scripts:void 0,headScripts:void 0,meta:void 0,staticData:m.options.staticData||{},fullPath:m.fullPath}}n?.preload||(F.globalNotFound=u===m.id),F.searchError=x;const V=this.getParentContext(g);F.context={...V,...F.__routeContext,...F.__beforeLoadContext},d[p]=F}for(let p=0;p<d.length;p++){const m=d[p],g=this.looseRoutesById[m.routeId],v=this.getMatch(m.id),y=f.get(m.routeId);if(m.params=y?Fe(y.params,s):s,!v){const x=d[p-1],b=this.getParentContext(x);if(g.options.context){const w={deps:m.loaderDeps,params:m.params,context:b??{},location:t,navigate:S=>this.navigate({...S,_fromLocation:t}),buildLocation:this.buildLocation,cause:m.cause,abortController:m.abortController,preload:!!m.preload,matches:d,routeId:g.id};m.__routeContext=g.options.context(w)??void 0}m.context={...b,...m.__routeContext,...m.__beforeLoadContext}}}return d}matchRoutesLightweight(t){const{matchedRoutes:n,routeParams:r,parsedParams:o}=this.getMatchedRoutes(t.pathname),s=er(n),a={...t.search};for(const d of n)try{Object.assign(a,zr(d.options.validateSearch,a))}catch{}const i=er(this.state.matches),l=i&&i.routeId===s.id&&t.pathname===this.state.location.pathname;let u;if(l)u=i.params;else{const d={...r};for(const f of n)try{ji(f,r,o??{},d)}catch{}u=d}return{matchedRoutes:n,fullPath:s.fullPath,search:a,params:u}}}class io extends Error{}class Op extends Error{}function Ip(e){return{loadedAt:0,isLoading:!1,isTransitioning:!1,status:"idle",resolvedLocation:void 0,location:e,matches:[],pendingMatches:[],cachedMatches:[],statusCode:200}}function zr(e,t){if(e==null)return{};if("~standard"in e){const n=e["~standard"].validate(t);if(n instanceof Promise)throw new io("Async validation not supported");if(n.issues)throw new io(JSON.stringify(n.issues,void 0,2),{cause:n});return n.value}return"parse"in e?e.parse(t):typeof e=="function"?e(t):{}}function Lp({pathname:e,routesById:t,processedTree:n}){const r={},o=Dt(e);let s,a;const i=J0(o,n,!0);return i&&(s=i.route,Object.assign(r,i.rawParams),a=Object.assign({},i.parsedParams)),{matchedRoutes:i?.branch||[t[qe]],routeParams:r,foundRoute:s,parsedParams:a}}function Np({search:e,dest:t,destRoutes:n,_includeValidateSearch:r}){return Dp(n)(e,t,r??!1)}function Dp(e){const t={dest:null,_includeValidateSearch:!1,middlewares:[]};for(const o of e){if("search"in o.options)o.options.search?.middlewares&&t.middlewares.push(...o.options.search.middlewares);else if(o.options.preSearchFilters||o.options.postSearchFilters){const s=({search:a,next:i})=>{let l=a;"preSearchFilters"in o.options&&o.options.preSearchFilters&&(l=o.options.preSearchFilters.reduce((d,f)=>f(d),a));const u=i(l);return"postSearchFilters"in o.options&&o.options.postSearchFilters?o.options.postSearchFilters.reduce((d,f)=>f(d),u):u};t.middlewares.push(s)}if(o.options.validateSearch){const s=({search:a,next:i})=>{const l=i(a);if(!t._includeValidateSearch)return l;try{return{...l,...zr(o.options.validateSearch,l)??void 0}}catch{return l}};t.middlewares.push(s)}}const n=({search:o})=>{const s=t.dest;return s.search?s.search===!0?o:Ot(s.search,o):{}};t.middlewares.push(n);const r=(o,s,a)=>{if(o>=a.length)return s;const i=a[o];return i({search:s,next:u=>r(o+1,u,a)})};return function(s,a,i){return t.dest=a,t._includeValidateSearch=i,r(0,s,t.middlewares)}}function jp(e,t){if(e!=="root")for(let n=t.length-1;n>=0;n--){const r=t[n];if(r.children)return r.id}return qe}function ji(e,t,n,r){const o=e.options.params?.parse??e.options.parseParams;if(o)if(e.options.skipRouteOnParseError)for(const s in t)s in n&&(r[s]=n[s]);else{const s=o(r);Object.assign(r,s)}}const Fp="Error preloading route! ☝️";class El{constructor(t){if(this.init=n=>{this.originalIndex=n.originalIndex;const r=this.options,o=!r?.path&&!r?.id;this.parentRoute=this.options.getParentRoute?.(),o?this._path=qe:this.parentRoute||Ft(!1);let s=o?qe:r?.path;s&&s!=="/"&&(s=hl(s));const a=r?.id||s;let i=o?qe:qr([this.parentRoute.id===qe?"":this.parentRoute.id,a]);s===qe&&(s="/"),i!==qe&&(i=qr(["/",i]));const l=i===qe?"/":qr([this.parentRoute.fullPath,s]);this._path=s,this._id=i,this._fullPath=l,this._to=Dt(l)},this.addChildren=n=>this._addFileChildren(n),this._addFileChildren=n=>(Array.isArray(n)&&(this.children=n),typeof n=="object"&&n!==null&&(this.children=Object.values(n)),this),this._addFileTypes=()=>this,this.updateLoader=n=>(Object.assign(this.options,n),this),this.update=n=>(Object.assign(this.options,n),this),this.lazy=n=>(this.lazyFn=n,this),this.redirect=n=>gl({from:this.fullPath,...n}),this.options=t||{},this.isRoot=!t?.getParentRoute,t?.id&&t?.path)throw new Error("Route cannot have both an 'id' and a 'path' option.")}get to(){return this._to}get id(){return this._id}get path(){return this._path}get fullPath(){return this._fullPath}}class kp{constructor({id:t}){this.notFound=n=>ml({routeId:this.id,...n}),this.redirect=n=>gl({from:this.id,...n}),this.id=t}}class $p extends El{constructor(t){super(t)}}const Hp="use",Fi=Eo[Hp],jr=typeof window<"u"?c.useLayoutEffect:c.useEffect;function ls(e){const t=c.useRef({value:e,prev:null}),n=t.current.value;return e!==n&&(t.current={value:e,prev:n}),t.current.prev}function Bp(e,t,n={},r={}){c.useEffect(()=>{if(!e.current||r.disabled||typeof IntersectionObserver!="function")return;const o=new IntersectionObserver(([s])=>{t(s)},n);return o.observe(e.current),()=>{o.disconnect()}},[t,n,r.disabled,e])}function Vp(e){const t=c.useRef(null);return c.useImperativeHandle(e,()=>t.current,[]),t}function Ea(e){const t=e.errorComponent??Ra;return h.jsx(Up,{getResetKey:e.getResetKey,onCatch:e.onCatch,children:({error:n,reset:r})=>n?c.createElement(t,{error:n,reset:r}):e.children})}class Up extends c.Component{constructor(){super(...arguments),this.state={error:null}}static getDerivedStateFromProps(t){return{resetKey:t.getResetKey()}}static getDerivedStateFromError(t){return{error:t}}reset(){this.setState({error:null})}componentDidUpdate(t,n){n.error&&n.resetKey!==this.state.resetKey&&this.reset()}componentDidCatch(t,n){this.props.onCatch&&this.props.onCatch(t,n)}render(){return this.props.children({error:this.state.resetKey!==this.props.getResetKey()?null:this.state.error,reset:()=>{this.reset()}})}}function Ra({error:e}){const[t,n]=c.useState(!1);return h.jsxs("div",{style:{padding:".5rem",maxWidth:"100%"},children:[h.jsxs("div",{style:{display:"flex",alignItems:"center",gap:".5rem"},children:[h.jsx("strong",{style:{fontSize:"1rem"},children:"Something went wrong!"}),h.jsx("button",{style:{appearance:"none",fontSize:".6em",border:"1px solid currentColor",padding:".1rem .2rem",fontWeight:"bold",borderRadius:".25rem"},onClick:()=>n(r=>!r),children:t?"Hide Error":"Show Error"})]}),h.jsx("div",{style:{height:".25rem"}}),t?h.jsx("div",{children:h.jsx("pre",{style:{fontSize:".7em",border:"1px solid red",borderRadius:".25rem",padding:".3rem",color:"red",overflow:"auto"},children:e.message?h.jsx("code",{children:e.message}):null})}):null]})}function Zp({children:e,fallback:t=null}){return Rl()?h.jsx(W.Fragment,{children:e}):h.jsx(W.Fragment,{children:t})}function Rl(){return W.useSyncExternalStore(qp,()=>!0,()=>!1)}function qp(){return()=>{}}function zp(e,t){return e===t}function Wp(e,t,n=zp){const r=c.useCallback(a=>{if(!e)return()=>{};const{unsubscribe:i}=e.subscribe(a);return i},[e]),o=c.useCallback(()=>e?.get(),[e]);return s0.useSyncExternalStoreWithSelector(r,o,o,t,n)}const Cl=c.createContext(null);function Pe(e){const t=c.useContext(Cl);return e?.warn,t}function $e(e){const t=Pe({warn:e?.router===void 0}),n=e?.router||t,r=c.useRef(void 0);return Wp(n.__store,o=>{if(e?.select){if(e.structuralSharing??n.options.defaultStructuralSharing){const s=Fe(r.current,e.select(o));return r.current=s,s}return e.select(o)}return o})}const _o=c.createContext(void 0),Gp=c.createContext(void 0);function Ke(e){const t=c.useContext(e.from?Gp:_o);return $e({select:r=>{const o=r.matches.find(s=>e.from?e.from===s.routeId:s.id===t);if(Ft(!((e.shouldThrow??!0)&&!o),`Could not find ${e.from?`an active match from "${e.from}"`:"a nearest match!"}`),o!==void 0)return e.select?e.select(o):o},structuralSharing:e.structuralSharing})}function To(e){return Ke({from:e.from,strict:e.strict,structuralSharing:e.structuralSharing,select:t=>e.select?e.select(t.loaderData):t.loaderData})}function Ao(e){const{select:t,...n}=e;return Ke({...n,select:r=>t?t(r.loaderDeps):r.loaderDeps})}function Mo(e){return Ke({from:e.from,shouldThrow:e.shouldThrow,structuralSharing:e.structuralSharing,strict:e.strict,select:t=>{const n=e.strict===!1?t.params:t._strictParams;return e.select?e.select(n):n}})}function Oo(e){return Ke({from:e.from,strict:e.strict,shouldThrow:e.shouldThrow,structuralSharing:e.structuralSharing,select:t=>e.select?e.select(t.search):t.search})}function ln(e){const t=Pe();return c.useCallback(n=>t.navigate({...n,from:n.from??e?.from}),[e?.from,t])}function Kp(e,t){const n=Pe(),r=Vp(t),{activeProps:o,inactiveProps:s,activeOptions:a,to:i,preload:l,preloadDelay:u,hashScrollIntoView:d,replace:f,startTransition:p,resetScroll:m,viewTransition:g,children:v,target:y,disabled:x,style:b,className:w,onClick:S,onBlur:P,onFocus:O,onMouseEnter:R,onMouseLeave:E,onTouchStart:A,ignoreBlocker:L,params:T,search:F,hash:V,state:N,mask:D,reloadDocument:_,unsafeRelative:j,from:I,_fromLocation:M,...H}=e,U=Rl(),Z=$e({select:ae=>{const ie=ae.matches[ae.matches.length-1];return{search:ie?.search,hash:ae.location.hash,path:ie?.pathname}},structuralSharing:!0}),K=e.from,q=c.useMemo(()=>({...e,from:K}),[n,Z,K,e._fromLocation,e.hash,e.to,e.search,e.params,e.state,e.mask,e.unsafeRelative]),Q=c.useMemo(()=>n.buildLocation({...q}),[n,q]),ne=Q.maskedLocation?Q.maskedLocation.publicHref:Q.publicHref,k=Q.maskedLocation?Q.maskedLocation.external:Q.external,G=c.useMemo(()=>t1(ne,k,n.history,x),[x,k,ne,n.history]),ee=c.useMemo(()=>{if(G?.external)return no(G.href,n.protocolAllowlist)?void 0:G.href;if(!n1(i)&&!(typeof i!="string"||i.indexOf(":")===-1))try{return new URL(i),no(i,n.protocolAllowlist)?void 0:i}catch{}},[i,G,n.protocolAllowlist]),$=$e({select:ae=>{if(ee)return!1;if(a?.exact){if(!sp(ae.location.pathname,Q.pathname,n.basepath))return!1}else{const ie=oo(ae.location.pathname,n.basepath),me=oo(Q.pathname,n.basepath);if(!(ie.startsWith(me)&&(ie.length===me.length||ie[me.length]==="/")))return!1}return(a?.includeSearch??!0)&&!Qt(ae.location.search,Q.search,{partial:!a?.exact,ignoreUndefined:!a?.explicitUndefined})?!1:a?.includeHash?U&&ae.location.hash===Q.hash:!0}}),Y=$?Ot(o,{})??Qp:us,J=$?us:Ot(s,{})??us,se=[w,Y.className,J.className].filter(Boolean).join(" "),fe=(b||Y.style||J.style)&&{...b,...Y.style,...J.style},[Ve,Le]=c.useState(!1),ft=c.useRef(!1),ht=e.reloadDocument||ee?!1:l??n.options.defaultPreload,Vt=u??n.options.defaultPreloadDelay??0,xe=c.useCallback(()=>{n.preloadRoute({...q,_builtLocation:Q}).catch(ae=>{console.warn(ae),console.warn(Fp)})},[n,q,Q]),fn=c.useCallback(ae=>{ae?.isIntersecting&&xe()},[xe]);Bp(r,fn,e1,{disabled:!!x||ht!=="viewport"}),c.useEffect(()=>{ft.current||!x&&ht==="render"&&(xe(),ft.current=!0)},[x,xe,ht]);const hn=ae=>{const ie=ae.currentTarget.getAttribute("target"),me=y!==void 0?y:ie;if(!x&&!r1(ae)&&!ae.defaultPrevented&&(!me||me==="_self")&&ae.button===0){ae.preventDefault(),yt.flushSync(()=>{Le(!0)});const Et=n.subscribe("onResolved",()=>{Et(),Le(!1)});n.navigate({...q,replace:f,resetScroll:m,hashScrollIntoView:d,startTransition:p,viewTransition:g,ignoreBlocker:L})}};if(ee)return{...H,ref:r,href:ee,...v&&{children:v},...y&&{target:y},...x&&{disabled:x},...b&&{style:b},...w&&{className:w},...S&&{onClick:S},...P&&{onBlur:P},...O&&{onFocus:O},...R&&{onMouseEnter:R},...E&&{onMouseLeave:E},...A&&{onTouchStart:A}};const jn=ae=>{if(x||ht!=="intent")return;if(!Vt){xe();return}const ie=ae.currentTarget;if(Un.has(ie))return;const me=setTimeout(()=>{Un.delete(ie),xe()},Vt);Un.set(ie,me)},Ir=ae=>{x||ht!=="intent"||xe()},Lr=ae=>{if(x||!ht||!Vt)return;const ie=ae.currentTarget,me=Un.get(ie);me&&(clearTimeout(me),Un.delete(ie))};return{...H,...Y,...J,href:G?.href,ref:r,onClick:mn([S,hn]),onBlur:mn([P,Lr]),onFocus:mn([O,jn]),onMouseEnter:mn([R,jn]),onMouseLeave:mn([E,Lr]),onTouchStart:mn([A,Ir]),disabled:!!x,target:y,...fe&&{style:fe},...se&&{className:se},...x&&Yp,...$&&Xp,...U&&Ve&&Jp}}const us={},Qp={className:"active"},Yp={role:"link","aria-disabled":!0},Xp={"data-status":"active","aria-current":"page"},Jp={"data-transitioning":"transitioning"},Un=new WeakMap,e1={rootMargin:"100px"},mn=e=>t=>{for(const n of e)if(n){if(t.defaultPrevented)return;n(t)}};function t1(e,t,n,r){if(!r)return t?{href:e,external:!0}:{href:n.createHref(e)||"/",external:!1}}function n1(e){if(typeof e!="string")return!1;const t=e.charCodeAt(0);return t===47?e.charCodeAt(1)!==47:t===46}const bt=c.forwardRef((e,t)=>{const{_asChild:n,...r}=e,{type:o,...s}=Kp(r,t),a=typeof r.children=="function"?r.children({isActive:s["data-status"]==="active"}):r.children;if(!n){const{disabled:i,...l}=s;return c.createElement("a",l,a)}return c.createElement(n,s,a)});function r1(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function o1(e){return new s1({id:e})}class s1 extends kp{constructor({id:t}){super({id:t}),this.useMatch=n=>Ke({select:n?.select,from:this.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>Ke({from:this.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>Oo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useParams=n=>Mo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useLoaderDeps=n=>Ao({...n,from:this.id,strict:!1}),this.useLoaderData=n=>To({...n,from:this.id,strict:!1}),this.useNavigate=()=>{const n=Pe();return ln({from:n.routesById[this.id].fullPath})},this.notFound=n=>ml({routeId:this.id,...n}),this.Link=W.forwardRef((n,r)=>{const s=Pe().routesById[this.id].fullPath;return h.jsx(bt,{ref:r,from:s,...n})})}}let a1=class extends El{constructor(t){super(t),this.useMatch=n=>Ke({select:n?.select,from:this.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>Ke({...n,from:this.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>Oo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useParams=n=>Mo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useLoaderDeps=n=>Ao({...n,from:this.id}),this.useLoaderData=n=>To({...n,from:this.id}),this.useNavigate=()=>ln({from:this.fullPath}),this.Link=W.forwardRef((n,r)=>h.jsx(bt,{ref:r,from:this.fullPath,...n})),this.$$typeof=Symbol.for("react.memo")}};function He(e){return new a1(e)}class i1 extends $p{constructor(t){super(t),this.useMatch=n=>Ke({select:n?.select,from:this.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>Ke({...n,from:this.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>Oo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useParams=n=>Mo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useLoaderDeps=n=>Ao({...n,from:this.id}),this.useLoaderData=n=>To({...n,from:this.id}),this.useNavigate=()=>ln({from:this.fullPath}),this.Link=W.forwardRef((n,r)=>h.jsx(bt,{ref:r,from:this.fullPath,...n})),this.$$typeof=Symbol.for("react.memo")}}function c1(e){return new i1(e)}function ki(e){return typeof e=="object"?new $i(e,{silent:!0}).createRoute(e):new $i(e,{silent:!0}).createRoute}class $i{constructor(t,n){this.path=t,this.createRoute=r=>{const o=He(r);return o.isRoot=!1,o},this.silent=n?.silent}}class Hi{constructor(t){this.useMatch=n=>Ke({select:n?.select,from:this.options.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>Ke({from:this.options.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>Oo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.options.id}),this.useParams=n=>Mo({select:n?.select,structuralSharing:n?.structuralSharing,from:this.options.id}),this.useLoaderDeps=n=>Ao({...n,from:this.options.id}),this.useLoaderData=n=>To({...n,from:this.options.id}),this.useNavigate=()=>{const n=Pe();return ln({from:n.routesById[this.options.id].fullPath})},this.options=t,this.$$typeof=Symbol.for("react.memo")}}function Bi(e){return typeof e=="object"?new Hi(e):t=>new Hi({id:e,...t})}function nt(e,t){let n,r,o,s;const a=()=>(n||(n=e().then(l=>{n=void 0,r=l.default}).catch(l=>{if(o=l,Z0(o)&&o instanceof Error&&typeof window<"u"&&typeof sessionStorage<"u"){const u=`tanstack_router_reload:${o.message}`;sessionStorage.getItem(u)||(sessionStorage.setItem(u,"1"),s=!0)}})),n),i=function(u){if(s)throw window.location.reload(),new Promise(()=>{});if(o)throw o;if(!r)if(Fi)Fi(a());else throw a();return c.createElement(r,u)};return i.preload=a,i}function l1(){const e=Pe(),t=c.useRef({router:e,mounted:!1}),[n,r]=c.useState(!1),{hasPendingMatches:o,isLoading:s}=$e({select:f=>({isLoading:f.isLoading,hasPendingMatches:f.matches.some(p=>p.status==="pending")}),structuralSharing:!0}),a=ls(s),i=s||n||o,l=ls(i),u=s||o,d=ls(u);return e.startTransition=f=>{r(!0),c.startTransition(()=>{f(),r(!1)})},c.useEffect(()=>{const f=e.history.subscribe(e.load),p=e.buildLocation({to:e.latestLocation.pathname,search:!0,params:!0,hash:!0,state:!0,_includeValidateSearch:!0});return Dt(e.latestLocation.publicHref)!==Dt(p.publicHref)&&e.commitLocation({...p,replace:!0}),()=>{f()}},[e,e.history]),jr(()=>{if(typeof window<"u"&&e.ssr||t.current.router===e&&t.current.mounted)return;t.current={router:e,mounted:!0},(async()=>{try{await e.load()}catch(p){console.error(p)}})()},[e]),jr(()=>{a&&!s&&e.emit({type:"onLoad",...Yt(e.state)})},[a,e,s]),jr(()=>{d&&!u&&e.emit({type:"onBeforeRouteMount",...Yt(e.state)})},[u,d,e]),jr(()=>{if(l&&!i){const f=Yt(e.state);e.emit({type:"onResolved",...f}),e.__store.setState(p=>({...p,status:"idle",resolvedLocation:p.location})),f.hrefChanged&&mp(e)}},[i,l,e]),null}function u1(e){const t=$e({select:n=>`not-found-${n.location.pathname}-${n.status}`});return h.jsx(Ea,{getResetKey:()=>t,onCatch:(n,r)=>{if(Ae(n))e.onCatch?.(n,r);else throw n},errorComponent:({error:n})=>{if(Ae(n))return e.fallback?.(n);throw n},children:e.children})}function d1(){return h.jsx("p",{children:"Not Found"})}function yn(e){return h.jsx(h.Fragment,{children:e.children})}function Pl(e,t,n){return t.options.notFoundComponent?h.jsx(t.options.notFoundComponent,{...n}):e.options.defaultNotFoundComponent?h.jsx(e.options.defaultNotFoundComponent,{...n}):h.jsx(d1,{})}function f1(){return Pe().isScrollRestoring,null}const _l=c.memo(function({matchId:t}){const n=Pe(),r=$e({select:v=>{const y=v.matches.findIndex(b=>b.id===t),x=v.matches[y];return Ft(x),{routeId:x.routeId,ssr:x.ssr,_displayPending:x._displayPending,resetKey:v.loadedAt,parentRouteId:v.matches[y-1]?.routeId}},structuralSharing:!0}),o=n.routesById[r.routeId],s=o.options.pendingComponent??n.options.defaultPendingComponent,a=s?h.jsx(s,{}):null,i=o.options.errorComponent??n.options.defaultErrorComponent,l=o.options.onCatch??n.options.defaultOnCatch,u=o.isRoot?o.options.notFoundComponent??n.options.notFoundRoute?.options.component:o.options.notFoundComponent,d=r.ssr===!1||r.ssr==="data-only",f=(!o.isRoot||o.options.wrapInSuspense||d)&&(o.options.wrapInSuspense??s??(o.options.errorComponent?.preload||d))?c.Suspense:yn,p=i?Ea:yn,m=u?u1:yn,g=o.isRoot?o.options.shellComponent??yn:yn;return h.jsxs(g,{children:[h.jsx(_o.Provider,{value:t,children:h.jsx(f,{fallback:a,children:h.jsx(p,{getResetKey:()=>r.resetKey,errorComponent:i||Ra,onCatch:(v,y)=>{if(Ae(v))throw v;l?.(v,y)},children:h.jsx(m,{fallback:v=>{if(!u||v.routeId&&v.routeId!==r.routeId||!v.routeId&&!o.isRoot)throw v;return c.createElement(u,v)},children:d||r._displayPending?h.jsx(Zp,{fallback:a,children:h.jsx(Vi,{matchId:t})}):h.jsx(Vi,{matchId:t})})})})}),r.parentRouteId===qe&&n.options.scrollRestoration?h.jsxs(h.Fragment,{children:[h.jsx(h1,{}),h.jsx(f1,{})]}):null]})});function h1(){const e=Pe(),t=c.useRef(void 0);return h.jsx("script",{suppressHydrationWarning:!0,ref:n=>{n&&(t.current===void 0||t.current.href!==e.latestLocation.href)&&(e.emit({type:"onRendered",...Yt(e.state)}),t.current=e.latestLocation)}},e.latestLocation.state.__TSR_key)}const Vi=c.memo(function({matchId:t}){const n=Pe(),{match:r,key:o,routeId:s}=$e({select:l=>{const u=l.matches.find(g=>g.id===t),d=u.routeId,p=(n.routesById[d].options.remountDeps??n.options.defaultRemountDeps)?.({routeId:d,loaderDeps:u.loaderDeps,params:u._strictParams,search:u._strictSearch});return{key:p?JSON.stringify(p):void 0,routeId:d,match:{id:u.id,status:u.status,error:u.error,invalid:u.invalid,_forcePending:u._forcePending,_displayPending:u._displayPending}}},structuralSharing:!0}),a=n.routesById[s],i=c.useMemo(()=>{const l=a.options.component??n.options.defaultComponent;return l?h.jsx(l,{},o):h.jsx(Tl,{})},[o,a.options.component,n.options.defaultComponent]);if(r._displayPending)throw n.getMatch(r.id)?._nonReactive.displayPendingPromise;if(r._forcePending)throw n.getMatch(r.id)?._nonReactive.minPendingPromise;if(r.status==="pending"){const l=a.options.pendingMinMs??n.options.defaultPendingMinMs;if(l){const u=n.getMatch(r.id);if(u&&!u._nonReactive.minPendingPromise){const d=En();u._nonReactive.minPendingPromise=d,setTimeout(()=>{d.resolve(),u._nonReactive.minPendingPromise=void 0},l)}}throw n.getMatch(r.id)?._nonReactive.loadPromise}if(r.status==="notFound")return Ft(Ae(r.error)),Pl(n,a,r.error);if(r.status==="redirected")throw Ft(ke(r.error)),n.getMatch(r.id)?._nonReactive.loadPromise;if(r.status==="error")throw r.error;return i}),Tl=c.memo(function(){const t=Pe(),n=c.useContext(_o),r=$e({select:u=>u.matches.find(d=>d.id===n)?.routeId}),o=t.routesById[r],s=$e({select:u=>{const f=u.matches.find(p=>p.id===n);return Ft(f),f.globalNotFound}}),a=$e({select:u=>{const d=u.matches,f=d.findIndex(p=>p.id===n);return d[f+1]?.id}}),i=t.options.defaultPendingComponent?h.jsx(t.options.defaultPendingComponent,{}):null;if(s)return Pl(t,o,void 0);if(!a)return null;const l=h.jsx(_l,{matchId:a});return r===qe?h.jsx(c.Suspense,{fallback:i,children:l}):l});function p1(){const e=Pe(),n=e.routesById[qe].options.pendingComponent??e.options.defaultPendingComponent,r=n?h.jsx(n,{}):null,o=typeof document<"u"&&e.ssr?yn:c.Suspense,s=h.jsxs(o,{fallback:r,children:[h.jsx(l1,{}),h.jsx(m1,{})]});return e.options.InnerWrap?h.jsx(e.options.InnerWrap,{children:s}):s}function m1(){const e=Pe(),t=$e({select:o=>o.matches[0]?.id}),n=$e({select:o=>o.loadedAt}),r=t?h.jsx(_l,{matchId:t}):null;return h.jsx(_o.Provider,{value:t,children:e.options.disableGlobalCatchBoundary?r:h.jsx(Ea,{getResetKey:()=>n,errorComponent:Ra,onCatch:void 0,children:r})})}const g1=e=>new v1(e);class v1 extends Mp{constructor(t){super(t)}}typeof globalThis<"u"?(globalThis.createFileRoute=ki,globalThis.createLazyFileRoute=Bi):typeof window<"u"&&(window.createFileRoute=ki,window.createLazyFileRoute=Bi);function y1({router:e,children:t,...n}){Object.keys(n).length>0&&e.update({...e.options,...n,context:{...e.options.context,...n.context}});const r=h.jsx(Cl.Provider,{value:e,children:t});return e.options.Wrap?h.jsx(e.options.Wrap,{children:r}):r}function x1({router:e,...t}){return h.jsx(y1,{router:e,...t,children:h.jsx(p1,{})})}function Io(e){return $e({select:t=>e?.select?e.select(t.location):t.location})}var An=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.add(e),this.onSubscribe(),()=>{this.listeners.delete(e),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},b1={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},w1=class{#e=b1;#t=!1;setTimeoutProvider(e){this.#e=e}setTimeout(e,t){return this.#e.setTimeout(e,t)}clearTimeout(e){this.#e.clearTimeout(e)}setInterval(e,t){return this.#e.setInterval(e,t)}clearInterval(e){this.#e.clearInterval(e)}},Wt=new w1;function S1(e){setTimeout(e,0)}var nn=typeof window>"u"||"Deno"in globalThis;function Ce(){}function E1(e,t){return typeof e=="function"?e(t):e}function Fs(e){return typeof e=="number"&&e>=0&&e!==1/0}function Al(e,t){return Math.max(e+(t||0)-Date.now(),0)}function jt(e,t){return typeof e=="function"?e(t):e}function ze(e,t){return typeof e=="function"?e(t):e}function Ui(e,t){const{type:n="all",exact:r,fetchStatus:o,predicate:s,queryKey:a,stale:i}=e;if(a){if(r){if(t.queryHash!==Ca(a,t.options))return!1}else if(!rr(t.queryKey,a))return!1}if(n!=="all"){const l=t.isActive();if(n==="active"&&!l||n==="inactive"&&l)return!1}return!(typeof i=="boolean"&&t.isStale()!==i||o&&o!==t.state.fetchStatus||s&&!s(t))}function Zi(e,t){const{exact:n,status:r,predicate:o,mutationKey:s}=e;if(s){if(!t.options.mutationKey)return!1;if(n){if(rn(t.options.mutationKey)!==rn(s))return!1}else if(!rr(t.options.mutationKey,s))return!1}return!(r&&t.state.status!==r||o&&!o(t))}function Ca(e,t){return(t?.queryKeyHashFn||rn)(e)}function rn(e){return JSON.stringify(e,(t,n)=>ks(n)?Object.keys(n).sort().reduce((r,o)=>(r[o]=n[o],r),{}):n)}function rr(e,t){return e===t?!0:typeof e!=typeof t?!1:e&&t&&typeof e=="object"&&typeof t=="object"?Object.keys(t).every(n=>rr(e[n],t[n])):!1}var R1=Object.prototype.hasOwnProperty;function Ml(e,t,n=0){if(e===t)return e;if(n>500)return t;const r=qi(e)&&qi(t);if(!r&&!(ks(e)&&ks(t)))return t;const s=(r?e:Object.keys(e)).length,a=r?t:Object.keys(t),i=a.length,l=r?new Array(i):{};let u=0;for(let d=0;d<i;d++){const f=r?d:a[d],p=e[f],m=t[f];if(p===m){l[f]=p,(r?d<s:R1.call(e,f))&&u++;continue}if(p===null||m===null||typeof p!="object"||typeof m!="object"){l[f]=m;continue}const g=Ml(p,m,n+1);l[f]=g,g===p&&u++}return s===i&&u===s?e:l}function co(e,t){if(!t||Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(e[n]!==t[n])return!1;return!0}function qi(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function ks(e){if(!zi(e))return!1;const t=e.constructor;if(t===void 0)return!0;const n=t.prototype;return!(!zi(n)||!n.hasOwnProperty("isPrototypeOf")||Object.getPrototypeOf(e)!==Object.prototype)}function zi(e){return Object.prototype.toString.call(e)==="[object Object]"}function C1(e){return new Promise(t=>{Wt.setTimeout(t,e)})}function $s(e,t,n){return typeof n.structuralSharing=="function"?n.structuralSharing(e,t):n.structuralSharing!==!1?Ml(e,t):t}function P1(e,t,n=0){const r=[...e,t];return n&&r.length>n?r.slice(1):r}function _1(e,t,n=0){const r=[t,...e];return n&&r.length>n?r.slice(0,-1):r}var Pa=Symbol();function Ol(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:!e.queryFn||e.queryFn===Pa?()=>Promise.reject(new Error(`Missing queryFn: '${e.queryHash}'`)):e.queryFn}function _a(e,t){return typeof e=="function"?e(...t):!!e}function T1(e,t,n){let r=!1,o;return Object.defineProperty(e,"signal",{enumerable:!0,get:()=>(o??=t(),r||(r=!0,o.aborted?n():o.addEventListener("abort",n,{once:!0})),o)}),e}var A1=class extends An{#e;#t;#n;constructor(){super(),this.#n=e=>{if(!nn&&window.addEventListener){const t=()=>e();return window.addEventListener("visibilitychange",t,!1),()=>{window.removeEventListener("visibilitychange",t)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(t=>{typeof t=="boolean"?this.setFocused(t):this.onFocus()})}setFocused(e){this.#e!==e&&(this.#e=e,this.onFocus())}onFocus(){const e=this.isFocused();this.listeners.forEach(t=>{t(e)})}isFocused(){return typeof this.#e=="boolean"?this.#e:globalThis.document?.visibilityState!=="hidden"}},Ta=new A1;function Hs(){let e,t;const n=new Promise((o,s)=>{e=o,t=s});n.status="pending",n.catch(()=>{});function r(o){Object.assign(n,o),delete n.resolve,delete n.reject}return n.resolve=o=>{r({status:"fulfilled",value:o}),e(o)},n.reject=o=>{r({status:"rejected",reason:o}),t(o)},n}var M1=S1;function O1(){let e=[],t=0,n=i=>{i()},r=i=>{i()},o=M1;const s=i=>{t?e.push(i):o(()=>{n(i)})},a=()=>{const i=e;e=[],i.length&&o(()=>{r(()=>{i.forEach(l=>{n(l)})})})};return{batch:i=>{let l;t++;try{l=i()}finally{t--,t||a()}return l},batchCalls:i=>(...l)=>{s(()=>{i(...l)})},schedule:s,setNotifyFunction:i=>{n=i},setBatchNotifyFunction:i=>{r=i},setScheduler:i=>{o=i}}}var pe=O1(),I1=class extends An{#e=!0;#t;#n;constructor(){super(),this.#n=e=>{if(!nn&&window.addEventListener){const t=()=>e(!0),n=()=>e(!1);return window.addEventListener("online",t,!1),window.addEventListener("offline",n,!1),()=>{window.removeEventListener("online",t),window.removeEventListener("offline",n)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(this.setOnline.bind(this))}setOnline(e){this.#e!==e&&(this.#e=e,this.listeners.forEach(n=>{n(e)}))}isOnline(){return this.#e}},lo=new I1;function L1(e){return Math.min(1e3*2**e,3e4)}function Il(e){return(e??"online")==="online"?lo.isOnline():!0}var Bs=class extends Error{constructor(e){super("CancelledError"),this.revert=e?.revert,this.silent=e?.silent}};function Ll(e){let t=!1,n=0,r;const o=Hs(),s=()=>o.status!=="pending",a=v=>{if(!s()){const y=new Bs(v);p(y),e.onCancel?.(y)}},i=()=>{t=!0},l=()=>{t=!1},u=()=>Ta.isFocused()&&(e.networkMode==="always"||lo.isOnline())&&e.canRun(),d=()=>Il(e.networkMode)&&e.canRun(),f=v=>{s()||(r?.(),o.resolve(v))},p=v=>{s()||(r?.(),o.reject(v))},m=()=>new Promise(v=>{r=y=>{(s()||u())&&v(y)},e.onPause?.()}).then(()=>{r=void 0,s()||e.onContinue?.()}),g=()=>{if(s())return;let v;const y=n===0?e.initialPromise:void 0;try{v=y??e.fn()}catch(x){v=Promise.reject(x)}Promise.resolve(v).then(f).catch(x=>{if(s())return;const b=e.retry??(nn?0:3),w=e.retryDelay??L1,S=typeof w=="function"?w(n,x):w,P=b===!0||typeof b=="number"&&n<b||typeof b=="function"&&b(n,x);if(t||!P){p(x);return}n++,e.onFail?.(n,x),C1(S).then(()=>u()?void 0:m()).then(()=>{t?p(x):g()})})};return{promise:o,status:()=>o.status,cancel:a,continue:()=>(r?.(),o),cancelRetry:i,continueRetry:l,canStart:d,start:()=>(d()?g():m().then(g),o)}}var Nl=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),Fs(this.gcTime)&&(this.#e=Wt.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(nn?1/0:300*1e3))}clearGcTimeout(){this.#e&&(Wt.clearTimeout(this.#e),this.#e=void 0)}},N1=class extends Nl{#e;#t;#n;#o;#r;#a;#i;constructor(e){super(),this.#i=!1,this.#a=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.#o=e.client,this.#n=this.#o.getQueryCache(),this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.#e=Gi(this.options),this.state=e.state??this.#e,this.scheduleGc()}get meta(){return this.options.meta}get promise(){return this.#r?.promise}setOptions(e){if(this.options={...this.#a,...e},this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){const t=Gi(this.options);t.data!==void 0&&(this.setState(Wi(t.data,t.dataUpdatedAt)),this.#e=t)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus==="idle"&&this.#n.remove(this)}setData(e,t){const n=$s(this.state.data,e,this.options);return this.#s({data:n,type:"success",dataUpdatedAt:t?.updatedAt,manual:t?.manual}),n}setState(e,t){this.#s({type:"setState",state:e,setStateOptions:t})}cancel(e){const t=this.#r?.promise;return this.#r?.cancel(e),t?t.then(Ce).catch(Ce):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}reset(){this.destroy(),this.setState(this.#e)}isActive(){return this.observers.some(e=>ze(e.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===Pa||this.state.dataUpdateCount+this.state.errorUpdateCount===0}isStatic(){return this.getObserversCount()>0?this.observers.some(e=>jt(e.options.staleTime,this)==="static"):!1}isStale(){return this.getObserversCount()>0?this.observers.some(e=>e.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(e=0){return this.state.data===void 0?!0:e==="static"?!1:this.state.isInvalidated?!0:!Al(this.state.dataUpdatedAt,e)}onFocus(){this.observers.find(t=>t.shouldFetchOnWindowFocus())?.refetch({cancelRefetch:!1}),this.#r?.continue()}onOnline(){this.observers.find(t=>t.shouldFetchOnReconnect())?.refetch({cancelRefetch:!1}),this.#r?.continue()}addObserver(e){this.observers.includes(e)||(this.observers.push(e),this.clearGcTimeout(),this.#n.notify({type:"observerAdded",query:this,observer:e}))}removeObserver(e){this.observers.includes(e)&&(this.observers=this.observers.filter(t=>t!==e),this.observers.length||(this.#r&&(this.#i?this.#r.cancel({revert:!0}):this.#r.cancelRetry()),this.scheduleGc()),this.#n.notify({type:"observerRemoved",query:this,observer:e}))}getObserversCount(){return this.observers.length}invalidate(){this.state.isInvalidated||this.#s({type:"invalidate"})}async fetch(e,t){if(this.state.fetchStatus!=="idle"&&this.#r?.status()!=="rejected"){if(this.state.data!==void 0&&t?.cancelRefetch)this.cancel({silent:!0});else if(this.#r)return this.#r.continueRetry(),this.#r.promise}if(e&&this.setOptions(e),!this.options.queryFn){const i=this.observers.find(l=>l.options.queryFn);i&&this.setOptions(i.options)}const n=new AbortController,r=i=>{Object.defineProperty(i,"signal",{enumerable:!0,get:()=>(this.#i=!0,n.signal)})},o=()=>{const i=Ol(this.options,t),u=(()=>{const d={client:this.#o,queryKey:this.queryKey,meta:this.meta};return r(d),d})();return this.#i=!1,this.options.persister?this.options.persister(i,u,this):i(u)},a=(()=>{const i={fetchOptions:t,options:this.options,queryKey:this.queryKey,client:this.#o,state:this.state,fetchFn:o};return r(i),i})();this.options.behavior?.onFetch(a,this),this.#t=this.state,(this.state.fetchStatus==="idle"||this.state.fetchMeta!==a.fetchOptions?.meta)&&this.#s({type:"fetch",meta:a.fetchOptions?.meta}),this.#r=Ll({initialPromise:t?.initialPromise,fn:a.fetchFn,onCancel:i=>{i instanceof Bs&&i.revert&&this.setState({...this.#t,fetchStatus:"idle"}),n.abort()},onFail:(i,l)=>{this.#s({type:"failed",failureCount:i,error:l})},onPause:()=>{this.#s({type:"pause"})},onContinue:()=>{this.#s({type:"continue"})},retry:a.options.retry,retryDelay:a.options.retryDelay,networkMode:a.options.networkMode,canRun:()=>!0});try{const i=await this.#r.start();if(i===void 0)throw new Error(`${this.queryHash} data is undefined`);return this.setData(i),this.#n.config.onSuccess?.(i,this),this.#n.config.onSettled?.(i,this.state.error,this),i}catch(i){if(i instanceof Bs){if(i.silent)return this.#r.promise;if(i.revert){if(this.state.data===void 0)throw i;return this.state.data}}throw this.#s({type:"error",error:i}),this.#n.config.onError?.(i,this),this.#n.config.onSettled?.(this.state.data,i,this),i}finally{this.scheduleGc()}}#s(e){const t=n=>{switch(e.type){case"failed":return{...n,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case"pause":return{...n,fetchStatus:"paused"};case"continue":return{...n,fetchStatus:"fetching"};case"fetch":return{...n,...Dl(n.data,this.options),fetchMeta:e.meta??null};case"success":const r={...n,...Wi(e.data,e.dataUpdatedAt),dataUpdateCount:n.dataUpdateCount+1,...!e.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return this.#t=e.manual?r:void 0,r;case"error":const o=e.error;return{...n,error:o,errorUpdateCount:n.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:n.fetchFailureCount+1,fetchFailureReason:o,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...n,isInvalidated:!0};case"setState":return{...n,...e.state}}};this.state=t(this.state),pe.batch(()=>{this.observers.forEach(n=>{n.onQueryUpdate()}),this.#n.notify({query:this,type:"updated",action:e})})}};function Dl(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:Il(t.networkMode)?"fetching":"paused",...e===void 0&&{error:null,status:"pending"}}}function Wi(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:"success"}}function Gi(e){const t=typeof e.initialData=="function"?e.initialData():e.initialData,n=t!==void 0,r=n?typeof e.initialDataUpdatedAt=="function"?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:n?r??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:n?"success":"pending",fetchStatus:"idle"}}var jl=class extends An{constructor(e,t){super(),this.options=t,this.#e=e,this.#s=null,this.#i=Hs(),this.bindMethods(),this.setOptions(t)}#e;#t=void 0;#n=void 0;#o=void 0;#r;#a;#i;#s;#m;#f;#h;#l;#u;#c;#p=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(this.#t.addObserver(this),Ki(this.#t,this.options)?this.#d():this.updateResult(),this.#x())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return Vs(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return Vs(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#w(),this.#t.removeObserver(this)}setOptions(e){const t=this.options,n=this.#t;if(this.options=this.#e.defaultQueryOptions(e),this.options.enabled!==void 0&&typeof this.options.enabled!="boolean"&&typeof this.options.enabled!="function"&&typeof ze(this.options.enabled,this.#t)!="boolean")throw new Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#S(),this.#t.setOptions(this.options),t._defaulted&&!co(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#t,observer:this});const r=this.hasListeners();r&&Qi(this.#t,n,this.options,t)&&this.#d(),this.updateResult(),r&&(this.#t!==n||ze(this.options.enabled,this.#t)!==ze(t.enabled,this.#t)||jt(this.options.staleTime,this.#t)!==jt(t.staleTime,this.#t))&&this.#g();const o=this.#v();r&&(this.#t!==n||ze(this.options.enabled,this.#t)!==ze(t.enabled,this.#t)||o!==this.#c)&&this.#y(o)}getOptimisticResult(e){const t=this.#e.getQueryCache().build(this.#e,e),n=this.createResult(t,e);return j1(this,n)&&(this.#o=n,this.#a=this.options,this.#r=this.#t.state),n}getCurrentResult(){return this.#o}trackResult(e,t){return new Proxy(e,{get:(n,r)=>(this.trackProp(r),t?.(r),r==="promise"&&(this.trackProp("data"),!this.options.experimental_prefetchInRender&&this.#i.status==="pending"&&this.#i.reject(new Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(n,r))})}trackProp(e){this.#p.add(e)}getCurrentQuery(){return this.#t}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){const t=this.#e.defaultQueryOptions(e),n=this.#e.getQueryCache().build(this.#e,t);return n.fetch().then(()=>this.createResult(n,t))}fetch(e){return this.#d({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#o))}#d(e){this.#S();let t=this.#t.fetch(this.options,e);return e?.throwOnError||(t=t.catch(Ce)),t}#g(){this.#b();const e=jt(this.options.staleTime,this.#t);if(nn||this.#o.isStale||!Fs(e))return;const n=Al(this.#o.dataUpdatedAt,e)+1;this.#l=Wt.setTimeout(()=>{this.#o.isStale||this.updateResult()},n)}#v(){return(typeof this.options.refetchInterval=="function"?this.options.refetchInterval(this.#t):this.options.refetchInterval)??!1}#y(e){this.#w(),this.#c=e,!(nn||ze(this.options.enabled,this.#t)===!1||!Fs(this.#c)||this.#c===0)&&(this.#u=Wt.setInterval(()=>{(this.options.refetchIntervalInBackground||Ta.isFocused())&&this.#d()},this.#c))}#x(){this.#g(),this.#y(this.#v())}#b(){this.#l&&(Wt.clearTimeout(this.#l),this.#l=void 0)}#w(){this.#u&&(Wt.clearInterval(this.#u),this.#u=void 0)}createResult(e,t){const n=this.#t,r=this.options,o=this.#o,s=this.#r,a=this.#a,l=e!==n?e.state:this.#n,{state:u}=e;let d={...u},f=!1,p;if(t._optimisticResults){const E=this.hasListeners(),A=!E&&Ki(e,t),L=E&&Qi(e,n,t,r);(A||L)&&(d={...d,...Dl(u.data,e.options)}),t._optimisticResults==="isRestoring"&&(d.fetchStatus="idle")}let{error:m,errorUpdatedAt:g,status:v}=d;p=d.data;let y=!1;if(t.placeholderData!==void 0&&p===void 0&&v==="pending"){let E;o?.isPlaceholderData&&t.placeholderData===a?.placeholderData?(E=o.data,y=!0):E=typeof t.placeholderData=="function"?t.placeholderData(this.#h?.state.data,this.#h):t.placeholderData,E!==void 0&&(v="success",p=$s(o?.data,E,t),f=!0)}if(t.select&&p!==void 0&&!y)if(o&&p===s?.data&&t.select===this.#m)p=this.#f;else try{this.#m=t.select,p=t.select(p),p=$s(o?.data,p,t),this.#f=p,this.#s=null}catch(E){this.#s=E}this.#s&&(m=this.#s,p=this.#f,g=Date.now(),v="error");const x=d.fetchStatus==="fetching",b=v==="pending",w=v==="error",S=b&&x,P=p!==void 0,R={status:v,fetchStatus:d.fetchStatus,isPending:b,isSuccess:v==="success",isError:w,isInitialLoading:S,isLoading:S,data:p,dataUpdatedAt:d.dataUpdatedAt,error:m,errorUpdatedAt:g,failureCount:d.fetchFailureCount,failureReason:d.fetchFailureReason,errorUpdateCount:d.errorUpdateCount,isFetched:d.dataUpdateCount>0||d.errorUpdateCount>0,isFetchedAfterMount:d.dataUpdateCount>l.dataUpdateCount||d.errorUpdateCount>l.errorUpdateCount,isFetching:x,isRefetching:x&&!b,isLoadingError:w&&!P,isPaused:d.fetchStatus==="paused",isPlaceholderData:f,isRefetchError:w&&P,isStale:Aa(e,t),refetch:this.refetch,promise:this.#i,isEnabled:ze(t.enabled,e)!==!1};if(this.options.experimental_prefetchInRender){const E=R.data!==void 0,A=R.status==="error"&&!E,L=V=>{A?V.reject(R.error):E&&V.resolve(R.data)},T=()=>{const V=this.#i=R.promise=Hs();L(V)},F=this.#i;switch(F.status){case"pending":e.queryHash===n.queryHash&&L(F);break;case"fulfilled":(A||R.data!==F.value)&&T();break;case"rejected":(!A||R.error!==F.reason)&&T();break}}return R}updateResult(){const e=this.#o,t=this.createResult(this.#t,this.options);if(this.#r=this.#t.state,this.#a=this.options,this.#r.data!==void 0&&(this.#h=this.#t),co(t,e))return;this.#o=t;const n=()=>{if(!e)return!0;const{notifyOnChangeProps:r}=this.options,o=typeof r=="function"?r():r;if(o==="all"||!o&&!this.#p.size)return!0;const s=new Set(o??this.#p);return this.options.throwOnError&&s.add("error"),Object.keys(this.#o).some(a=>{const i=a;return this.#o[i]!==e[i]&&s.has(i)})};this.#E({listeners:n()})}#S(){const e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#t)return;const t=this.#t;this.#t=e,this.#n=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#x()}#E(e){pe.batch(()=>{e.listeners&&this.listeners.forEach(t=>{t(this.#o)}),this.#e.getQueryCache().notify({query:this.#t,type:"observerResultsUpdated"})})}};function D1(e,t){return ze(t.enabled,e)!==!1&&e.state.data===void 0&&!(e.state.status==="error"&&t.retryOnMount===!1)}function Ki(e,t){return D1(e,t)||e.state.data!==void 0&&Vs(e,t,t.refetchOnMount)}function Vs(e,t,n){if(ze(t.enabled,e)!==!1&&jt(t.staleTime,e)!=="static"){const r=typeof n=="function"?n(e):n;return r==="always"||r!==!1&&Aa(e,t)}return!1}function Qi(e,t,n,r){return(e!==t||ze(r.enabled,e)===!1)&&(!n.suspense||e.state.status!=="error")&&Aa(e,n)}function Aa(e,t){return ze(t.enabled,e)!==!1&&e.isStaleByTime(jt(t.staleTime,e))}function j1(e,t){return!co(e.getCurrentResult(),t)}function Yi(e){return{onFetch:(t,n)=>{const r=t.options,o=t.fetchOptions?.meta?.fetchMore?.direction,s=t.state.data?.pages||[],a=t.state.data?.pageParams||[];let i={pages:[],pageParams:[]},l=0;const u=async()=>{let d=!1;const f=g=>{T1(g,()=>t.signal,()=>d=!0)},p=Ol(t.options,t.fetchOptions),m=async(g,v,y)=>{if(d)return Promise.reject();if(v==null&&g.pages.length)return Promise.resolve(g);const b=(()=>{const O={client:t.client,queryKey:t.queryKey,pageParam:v,direction:y?"backward":"forward",meta:t.options.meta};return f(O),O})(),w=await p(b),{maxPages:S}=t.options,P=y?_1:P1;return{pages:P(g.pages,w,S),pageParams:P(g.pageParams,v,S)}};if(o&&s.length){const g=o==="backward",v=g?F1:Xi,y={pages:s,pageParams:a},x=v(r,y);i=await m(y,x,g)}else{const g=e??s.length;do{const v=l===0?a[0]??r.initialPageParam:Xi(r,i);if(l>0&&v==null)break;i=await m(i,v),l++}while(l<g)}return i};t.options.persister?t.fetchFn=()=>t.options.persister?.(u,{client:t.client,queryKey:t.queryKey,meta:t.options.meta,signal:t.signal},n):t.fetchFn=u}}}function Xi(e,{pages:t,pageParams:n}){const r=t.length-1;return t.length>0?e.getNextPageParam(t[r],t,n[r],n):void 0}function F1(e,{pages:t,pageParams:n}){return t.length>0?e.getPreviousPageParam?.(t[0],t,n[0],n):void 0}var k1=class extends Nl{#e;#t;#n;#o;constructor(e){super(),this.#e=e.client,this.mutationId=e.mutationId,this.#n=e.mutationCache,this.#t=[],this.state=e.state||Fl(),this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options=e,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(e){this.#t.includes(e)||(this.#t.push(e),this.clearGcTimeout(),this.#n.notify({type:"observerAdded",mutation:this,observer:e}))}removeObserver(e){this.#t=this.#t.filter(t=>t!==e),this.scheduleGc(),this.#n.notify({type:"observerRemoved",mutation:this,observer:e})}optionalRemove(){this.#t.length||(this.state.status==="pending"?this.scheduleGc():this.#n.remove(this))}continue(){return this.#o?.continue()??this.execute(this.state.variables)}async execute(e){const t=()=>{this.#r({type:"continue"})},n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#o=Ll({fn:()=>this.options.mutationFn?this.options.mutationFn(e,n):Promise.reject(new Error("No mutationFn found")),onFail:(s,a)=>{this.#r({type:"failed",failureCount:s,error:a})},onPause:()=>{this.#r({type:"pause"})},onContinue:t,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#n.canRun(this)});const r=this.state.status==="pending",o=!this.#o.canStart();try{if(r)t();else{this.#r({type:"pending",variables:e,isPaused:o}),this.#n.config.onMutate&&await this.#n.config.onMutate(e,this,n);const a=await this.options.onMutate?.(e,n);a!==this.state.context&&this.#r({type:"pending",context:a,variables:e,isPaused:o})}const s=await this.#o.start();return await this.#n.config.onSuccess?.(s,e,this.state.context,this,n),await this.options.onSuccess?.(s,e,this.state.context,n),await this.#n.config.onSettled?.(s,null,this.state.variables,this.state.context,this,n),await this.options.onSettled?.(s,null,e,this.state.context,n),this.#r({type:"success",data:s}),s}catch(s){try{await this.#n.config.onError?.(s,e,this.state.context,this,n)}catch(a){Promise.reject(a)}try{await this.options.onError?.(s,e,this.state.context,n)}catch(a){Promise.reject(a)}try{await this.#n.config.onSettled?.(void 0,s,this.state.variables,this.state.context,this,n)}catch(a){Promise.reject(a)}try{await this.options.onSettled?.(void 0,s,e,this.state.context,n)}catch(a){Promise.reject(a)}throw this.#r({type:"error",error:s}),s}finally{this.#n.runNext(this)}}#r(e){const t=n=>{switch(e.type){case"failed":return{...n,failureCount:e.failureCount,failureReason:e.error};case"pause":return{...n,isPaused:!0};case"continue":return{...n,isPaused:!1};case"pending":return{...n,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:e.isPaused,status:"pending",variables:e.variables,submittedAt:Date.now()};case"success":return{...n,data:e.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...n,data:void 0,error:e.error,failureCount:n.failureCount+1,failureReason:e.error,isPaused:!1,status:"error"}}};this.state=t(this.state),pe.batch(()=>{this.#t.forEach(n=>{n.onMutationUpdate(e)}),this.#n.notify({mutation:this,type:"updated",action:e})})}};function Fl(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}var $1=class extends An{constructor(e={}){super(),this.config=e,this.#e=new Set,this.#t=new Map,this.#n=0}#e;#t;#n;build(e,t,n){const r=new k1({client:e,mutationCache:this,mutationId:++this.#n,options:e.defaultMutationOptions(t),state:n});return this.add(r),r}add(e){this.#e.add(e);const t=Fr(e);if(typeof t=="string"){const n=this.#t.get(t);n?n.push(e):this.#t.set(t,[e])}this.notify({type:"added",mutation:e})}remove(e){if(this.#e.delete(e)){const t=Fr(e);if(typeof t=="string"){const n=this.#t.get(t);if(n)if(n.length>1){const r=n.indexOf(e);r!==-1&&n.splice(r,1)}else n[0]===e&&this.#t.delete(t)}}this.notify({type:"removed",mutation:e})}canRun(e){const t=Fr(e);if(typeof t=="string"){const r=this.#t.get(t)?.find(o=>o.state.status==="pending");return!r||r===e}else return!0}runNext(e){const t=Fr(e);return typeof t=="string"?this.#t.get(t)?.find(r=>r!==e&&r.state.isPaused)?.continue()??Promise.resolve():Promise.resolve()}clear(){pe.batch(()=>{this.#e.forEach(e=>{this.notify({type:"removed",mutation:e})}),this.#e.clear(),this.#t.clear()})}getAll(){return Array.from(this.#e)}find(e){const t={exact:!0,...e};return this.getAll().find(n=>Zi(t,n))}findAll(e={}){return this.getAll().filter(t=>Zi(e,t))}notify(e){pe.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){const e=this.getAll().filter(t=>t.state.isPaused);return pe.batch(()=>Promise.all(e.map(t=>t.continue().catch(Ce))))}};function Fr(e){return e.options.scope?.id}var H1=class extends An{#e;#t=void 0;#n;#o;constructor(t,n){super(),this.#e=t,this.setOptions(n),this.bindMethods(),this.#r()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(t){const n=this.options;this.options=this.#e.defaultMutationOptions(t),co(this.options,n)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#n,observer:this}),n?.mutationKey&&this.options.mutationKey&&rn(n.mutationKey)!==rn(this.options.mutationKey)?this.reset():this.#n?.state.status==="pending"&&this.#n.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#n?.removeObserver(this)}onMutationUpdate(t){this.#r(),this.#a(t)}getCurrentResult(){return this.#t}reset(){this.#n?.removeObserver(this),this.#n=void 0,this.#r(),this.#a()}mutate(t,n){return this.#o=n,this.#n?.removeObserver(this),this.#n=this.#e.getMutationCache().build(this.#e,this.options),this.#n.addObserver(this),this.#n.execute(t)}#r(){const t=this.#n?.state??Fl();this.#t={...t,isPending:t.status==="pending",isSuccess:t.status==="success",isError:t.status==="error",isIdle:t.status==="idle",mutate:this.mutate,reset:this.reset}}#a(t){pe.batch(()=>{if(this.#o&&this.hasListeners()){const n=this.#t.variables,r=this.#t.context,o={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(t?.type==="success"){try{this.#o.onSuccess?.(t.data,n,r,o)}catch(s){Promise.reject(s)}try{this.#o.onSettled?.(t.data,null,n,r,o)}catch(s){Promise.reject(s)}}else if(t?.type==="error"){try{this.#o.onError?.(t.error,n,r,o)}catch(s){Promise.reject(s)}try{this.#o.onSettled?.(void 0,t.error,n,r,o)}catch(s){Promise.reject(s)}}}this.listeners.forEach(n=>{n(this.#t)})})}},B1=class extends An{constructor(e={}){super(),this.config=e,this.#e=new Map}#e;build(e,t,n){const r=t.queryKey,o=t.queryHash??Ca(r,t);let s=this.get(o);return s||(s=new N1({client:e,queryKey:r,queryHash:o,options:e.defaultQueryOptions(t),state:n,defaultOptions:e.getQueryDefaults(r)}),this.add(s)),s}add(e){this.#e.has(e.queryHash)||(this.#e.set(e.queryHash,e),this.notify({type:"added",query:e}))}remove(e){const t=this.#e.get(e.queryHash);t&&(e.destroy(),t===e&&this.#e.delete(e.queryHash),this.notify({type:"removed",query:e}))}clear(){pe.batch(()=>{this.getAll().forEach(e=>{this.remove(e)})})}get(e){return this.#e.get(e)}getAll(){return[...this.#e.values()]}find(e){const t={exact:!0,...e};return this.getAll().find(n=>Ui(t,n))}findAll(e={}){const t=this.getAll();return Object.keys(e).length>0?t.filter(n=>Ui(e,n)):t}notify(e){pe.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){pe.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){pe.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}},V1=class{#e;#t;#n;#o;#r;#a;#i;#s;constructor(e={}){this.#e=e.queryCache||new B1,this.#t=e.mutationCache||new $1,this.#n=e.defaultOptions||{},this.#o=new Map,this.#r=new Map,this.#a=0}mount(){this.#a++,this.#a===1&&(this.#i=Ta.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#s=lo.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#a--,this.#a===0&&(this.#i?.(),this.#i=void 0,this.#s?.(),this.#s=void 0)}isFetching(e){return this.#e.findAll({...e,fetchStatus:"fetching"}).length}isMutating(e){return this.#t.findAll({...e,status:"pending"}).length}getQueryData(e){const t=this.defaultQueryOptions({queryKey:e});return this.#e.get(t.queryHash)?.state.data}ensureQueryData(e){const t=this.defaultQueryOptions(e),n=this.#e.build(this,t),r=n.state.data;return r===void 0?this.fetchQuery(e):(e.revalidateIfStale&&n.isStaleByTime(jt(t.staleTime,n))&&this.prefetchQuery(t),Promise.resolve(r))}getQueriesData(e){return this.#e.findAll(e).map(({queryKey:t,state:n})=>{const r=n.data;return[t,r]})}setQueryData(e,t,n){const r=this.defaultQueryOptions({queryKey:e}),s=this.#e.get(r.queryHash)?.state.data,a=E1(t,s);if(a!==void 0)return this.#e.build(this,r).setData(a,{...n,manual:!0})}setQueriesData(e,t,n){return pe.batch(()=>this.#e.findAll(e).map(({queryKey:r})=>[r,this.setQueryData(r,t,n)]))}getQueryState(e){const t=this.defaultQueryOptions({queryKey:e});return this.#e.get(t.queryHash)?.state}removeQueries(e){const t=this.#e;pe.batch(()=>{t.findAll(e).forEach(n=>{t.remove(n)})})}resetQueries(e,t){const n=this.#e;return pe.batch(()=>(n.findAll(e).forEach(r=>{r.reset()}),this.refetchQueries({type:"active",...e},t)))}cancelQueries(e,t={}){const n={revert:!0,...t},r=pe.batch(()=>this.#e.findAll(e).map(o=>o.cancel(n)));return Promise.all(r).then(Ce).catch(Ce)}invalidateQueries(e,t={}){return pe.batch(()=>(this.#e.findAll(e).forEach(n=>{n.invalidate()}),e?.refetchType==="none"?Promise.resolve():this.refetchQueries({...e,type:e?.refetchType??e?.type??"active"},t)))}refetchQueries(e,t={}){const n={...t,cancelRefetch:t.cancelRefetch??!0},r=pe.batch(()=>this.#e.findAll(e).filter(o=>!o.isDisabled()&&!o.isStatic()).map(o=>{let s=o.fetch(void 0,n);return n.throwOnError||(s=s.catch(Ce)),o.state.fetchStatus==="paused"?Promise.resolve():s}));return Promise.all(r).then(Ce)}fetchQuery(e){const t=this.defaultQueryOptions(e);t.retry===void 0&&(t.retry=!1);const n=this.#e.build(this,t);return n.isStaleByTime(jt(t.staleTime,n))?n.fetch(t):Promise.resolve(n.state.data)}prefetchQuery(e){return this.fetchQuery(e).then(Ce).catch(Ce)}fetchInfiniteQuery(e){return e.behavior=Yi(e.pages),this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(Ce).catch(Ce)}ensureInfiniteQueryData(e){return e.behavior=Yi(e.pages),this.ensureQueryData(e)}resumePausedMutations(){return lo.isOnline()?this.#t.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#t}getDefaultOptions(){return this.#n}setDefaultOptions(e){this.#n=e}setQueryDefaults(e,t){this.#o.set(rn(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){const t=[...this.#o.values()],n={};return t.forEach(r=>{rr(e,r.queryKey)&&Object.assign(n,r.defaultOptions)}),n}setMutationDefaults(e,t){this.#r.set(rn(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){const t=[...this.#r.values()],n={};return t.forEach(r=>{rr(e,r.mutationKey)&&Object.assign(n,r.defaultOptions)}),n}defaultQueryOptions(e){if(e._defaulted)return e;const t={...this.#n.queries,...this.getQueryDefaults(e.queryKey),...e,_defaulted:!0};return t.queryHash||(t.queryHash=Ca(t.queryKey,t)),t.refetchOnReconnect===void 0&&(t.refetchOnReconnect=t.networkMode!=="always"),t.throwOnError===void 0&&(t.throwOnError=!!t.suspense),!t.networkMode&&t.persister&&(t.networkMode="offlineFirst"),t.queryFn===Pa&&(t.enabled=!1),t}defaultMutationOptions(e){return e?._defaulted?e:{...this.#n.mutations,...e?.mutationKey&&this.getMutationDefaults(e.mutationKey),...e,_defaulted:!0}}clear(){this.#e.clear(),this.#t.clear()}},kl=c.createContext(void 0),hr=e=>{const t=c.useContext(kl);if(!t)throw new Error("No QueryClient set, use QueryClientProvider to set one");return t},U1=({client:e,children:t})=>(c.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),h.jsx(kl.Provider,{value:e,children:t})),$l=c.createContext(!1),Z1=()=>c.useContext($l);$l.Provider;function Hl(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}var Bl=c.createContext(Hl()),q1=()=>c.useContext(Bl),z1=({children:e})=>{const[t]=c.useState(()=>Hl());return h.jsx(Bl.Provider,{value:t,children:typeof e=="function"?e(t):e})},W1=(e,t,n)=>{const r=n?.state.error&&typeof e.throwOnError=="function"?_a(e.throwOnError,[n.state.error,n]):e.throwOnError;(e.suspense||e.experimental_prefetchInRender||r)&&(t.isReset()||(e.retryOnMount=!1))},G1=e=>{c.useEffect(()=>{e.clearReset()},[e])},K1=({result:e,errorResetBoundary:t,throwOnError:n,query:r,suspense:o})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(o&&e.data===void 0||_a(n,[e.error,r])),Q1=(e,t)=>t.state.data===void 0,Y1=e=>{if(e.suspense){const n=o=>o==="static"?o:Math.max(o??1e3,1e3),r=e.staleTime;e.staleTime=typeof r=="function"?(...o)=>n(r(...o)):n(r),typeof e.gcTime=="number"&&(e.gcTime=Math.max(e.gcTime,1e3))}},X1=(e,t)=>e.isLoading&&e.isFetching&&!t,J1=(e,t)=>e?.suspense&&t.isPending,Ji=(e,t,n)=>t.fetchOptimistic(e).catch(()=>{n.clearReset()});function Vl(e,t,n){const r=Z1(),o=q1(),s=hr(),a=s.defaultQueryOptions(e);s.getDefaultOptions().queries?._experimental_beforeQuery?.(a);const i=s.getQueryCache().get(a.queryHash);a._optimisticResults=r?"isRestoring":"optimistic",Y1(a),W1(a,o,i),G1(o);const l=!s.getQueryCache().get(a.queryHash),[u]=c.useState(()=>new t(s,a)),d=u.getOptimisticResult(a),f=!r&&e.subscribed!==!1;if(c.useSyncExternalStore(c.useCallback(p=>{const m=f?u.subscribe(pe.batchCalls(p)):Ce;return u.updateResult(),m},[u,f]),()=>u.getCurrentResult(),()=>u.getCurrentResult()),c.useEffect(()=>{u.setOptions(a)},[a,u]),J1(a,d))throw Ji(a,u,o);if(K1({result:d,errorResetBoundary:o,throwOnError:a.throwOnError,query:i,suspense:a.suspense}))throw d.error;return s.getDefaultOptions().queries?._experimental_afterQuery?.(a,d),a.experimental_prefetchInRender&&!nn&&X1(d,r)&&(l?Ji(a,u,o):i?.promise)?.catch(Ce).finally(()=>{u.updateResult()}),a.notifyOnChangeProps?d:u.trackResult(d)}function em(e,t){return Vl(e,jl)}function Ul(e,t){return Vl({...e,enabled:!0,suspense:!0,throwOnError:Q1,placeholderData:void 0},jl)}function tm(e,t){const n=hr(),[r]=c.useState(()=>new H1(n,e));c.useEffect(()=>{r.setOptions(e)},[r,e]);const o=c.useSyncExternalStore(c.useCallback(a=>r.subscribe(pe.batchCalls(a)),[r]),()=>r.getCurrentResult(),()=>r.getCurrentResult()),s=c.useCallback((a,i)=>{r.mutate(a,i).catch(Ce)},[r]);if(o.error&&_a(r.options.throwOnError,[o.error]))throw o.error;return{...o,mutate:s,mutateAsync:o.mutate}}function ec(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function pr(...e){return t=>{let n=!1;const r=e.map(o=>{const s=ec(o,t);return!n&&typeof s=="function"&&(n=!0),s});if(n)return()=>{for(let o=0;o<r.length;o++){const s=r[o];typeof s=="function"?s():ec(e[o],null)}}}}function oe(...e){return c.useCallback(pr(...e),e)}var nm=Symbol.for("react.lazy"),uo=Eo[" use ".trim().toString()];function rm(e){return typeof e=="object"&&e!==null&&"then"in e}function Zl(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===nm&&"_payload"in e&&rm(e._payload)}function om(e){const t=am(e),n=c.forwardRef((r,o)=>{let{children:s,...a}=r;Zl(s)&&typeof uo=="function"&&(s=uo(s._payload));const i=c.Children.toArray(s),l=i.find(cm);if(l){const u=l.props.children,d=i.map(f=>f===l?c.Children.count(u)>1?c.Children.only(null):c.isValidElement(u)?u.props.children:null:f);return h.jsx(t,{...a,ref:o,children:c.isValidElement(u)?c.cloneElement(u,void 0,d):null})}return h.jsx(t,{...a,ref:o,children:s})});return n.displayName=`${e}.Slot`,n}var sm=om("Slot");function am(e){const t=c.forwardRef((n,r)=>{let{children:o,...s}=n;if(Zl(o)&&typeof uo=="function"&&(o=uo(o._payload)),c.isValidElement(o)){const a=um(o),i=lm(s,o.props);return o.type!==c.Fragment&&(i.ref=r?pr(r,a):a),c.cloneElement(o,i)}return c.Children.count(o)>1?c.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var im=Symbol("radix.slottable");function cm(e){return c.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===im}function lm(e,t){const n={...t};for(const r in t){const o=e[r],s=t[r];/^on[A-Z]/.test(r)?o&&s?n[r]=(...i)=>{const l=s(...i);return o(...i),l}:o&&(n[r]=o):r==="style"?n[r]={...o,...s}:r==="className"&&(n[r]=[o,s].filter(Boolean).join(" "))}return{...e,...n}}function um(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}const dm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M225.29,165.93C216.61,151,212,129.57,212,104a84,84,0,0,0-168,0c0,25.58-4.59,47-13.27,61.93A20.08,20.08,0,0,0,30.66,186,19.77,19.77,0,0,0,48,196H84.18a44,44,0,0,0,87.64,0H208a19.77,19.77,0,0,0,17.31-10A20.08,20.08,0,0,0,225.29,165.93ZM128,212a20,20,0,0,1-19.6-16h39.2A20,20,0,0,1,128,212ZM54.66,172C63.51,154,68,131.14,68,104a60,60,0,0,1,120,0c0,27.13,4.48,50,13.33,68Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,192H48a8,8,0,0,1-6.88-12C47.71,168.6,56,139.81,56,104a72,72,0,0,1,144,0c0,35.82,8.3,64.6,14.9,76A8,8,0,0,1,208,192Z",opacity:"0.2"}),c.createElement("path",{d:"M221.8,175.94C216.25,166.38,208,139.33,208,104a80,80,0,1,0-160,0c0,35.34-8.26,62.38-13.81,71.94A16,16,0,0,0,48,200H88.81a40,40,0,0,0,78.38,0H208a16,16,0,0,0,13.8-24.06ZM128,216a24,24,0,0,1-22.62-16h45.24A24,24,0,0,1,128,216ZM48,184c7.7-13.24,16-43.92,16-80a64,64,0,1,1,128,0c0,36.05,8.28,66.73,16,80Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M221.8,175.94C216.25,166.38,208,139.33,208,104a80,80,0,1,0-160,0c0,35.34-8.26,62.38-13.81,71.94A16,16,0,0,0,48,200H88.81a40,40,0,0,0,78.38,0H208a16,16,0,0,0,13.8-24.06ZM128,216a24,24,0,0,1-22.62-16h45.24A24,24,0,0,1,128,216Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M220.07,176.94C214.41,167.2,206,139.73,206,104a78,78,0,1,0-156,0c0,35.74-8.42,63.2-14.08,72.94A14,14,0,0,0,48,198H90.48a38,38,0,0,0,75,0H208a14,14,0,0,0,12.06-21.06ZM128,218a26,26,0,0,1-25.29-20h50.58A26,26,0,0,1,128,218Zm81.71-33a1.9,1.9,0,0,1-1.7,1H48a1.9,1.9,0,0,1-1.7-1,2,2,0,0,1,0-2C53.87,170,62,139.69,62,104a66,66,0,1,1,132,0c0,35.68,8.14,65.95,15.71,79A2,2,0,0,1,209.71,185Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M221.8,175.94C216.25,166.38,208,139.33,208,104a80,80,0,1,0-160,0c0,35.34-8.26,62.38-13.81,71.94A16,16,0,0,0,48,200H88.81a40,40,0,0,0,78.38,0H208a16,16,0,0,0,13.8-24.06ZM128,216a24,24,0,0,1-22.62-16h45.24A24,24,0,0,1,128,216ZM48,184c7.7-13.24,16-43.92,16-80a64,64,0,1,1,128,0c0,36.05,8.28,66.73,16,80Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M218.35,178C212.58,168,204,140.13,204,104a76,76,0,1,0-152,0c0,36.13-8.59,64-14.36,73.95A12,12,0,0,0,48,196H92.23a36,36,0,0,0,71.54,0H208A12,12,0,0,0,218.35,178ZM128,220a28,28,0,0,1-27.71-24h55.42A28,28,0,0,1,128,220Zm83.45-34a3.91,3.91,0,0,1-3.44,2H48a3.91,3.91,0,0,1-3.44-2,4,4,0,0,1,0-4C52,169.17,60,139.32,60,104a68,68,0,1,1,136,0c0,35.31,8,65.17,15.44,78A4,4,0,0,1,211.45,186Z"}))]]),fm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,28H188V24a12,12,0,0,0-24,0v4H92V24a12,12,0,0,0-24,0v4H48A20,20,0,0,0,28,48V208a20,20,0,0,0,20,20H208a20,20,0,0,0,20-20V48A20,20,0,0,0,208,28ZM68,52a12,12,0,0,0,24,0h72a12,12,0,0,0,24,0h16V76H52V52ZM52,204V100H204V204Zm60-80v56a12,12,0,0,1-24,0V143.32a12,12,0,0,1-9.37-22l16-8A12,12,0,0,1,112,124Zm61.49,33.88L163.9,168H168a12,12,0,0,1,0,24H136a12,12,0,0,1-8.71-20.25L155.45,142a4,4,0,0,0,.55-2,4,4,0,0,0-7.47-2,12,12,0,0,1-20.78-12A28,28,0,0,1,180,140a27.77,27.77,0,0,1-5.64,16.86A10.63,10.63,0,0,1,173.49,157.88Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216,48V88H40V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z",opacity:"0.2"}),c.createElement("path",{d:"M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Zm-96-88v64a8,8,0,0,1-16,0V132.94l-4.42,2.22a8,8,0,0,1-7.16-14.32l16-8A8,8,0,0,1,112,120Zm59.16,30.45L152,176h16a8,8,0,0,1,0,16H136a8,8,0,0,1-6.4-12.8l28.78-38.37A8,8,0,1,0,145.07,132a8,8,0,1,1-13.85-8A24,24,0,0,1,176,136,23.76,23.76,0,0,1,171.16,150.45Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM112,184a8,8,0,0,1-16,0V132.94l-4.42,2.22a8,8,0,0,1-7.16-14.32l16-8A8,8,0,0,1,112,120Zm56-8a8,8,0,0,1,0,16H136a8,8,0,0,1-6.4-12.8l28.78-38.37A8,8,0,1,0,145.07,132a8,8,0,1,1-13.85-8A24,24,0,0,1,176,136a23.76,23.76,0,0,1-4.84,14.45L152,176ZM48,80V48H72v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,34H182V24a6,6,0,0,0-12,0V34H86V24a6,6,0,0,0-12,0V34H48A14,14,0,0,0,34,48V208a14,14,0,0,0,14,14H208a14,14,0,0,0,14-14V48A14,14,0,0,0,208,34ZM48,46H74V56a6,6,0,0,0,12,0V46h84V56a6,6,0,0,0,12,0V46h26a2,2,0,0,1,2,2V82H46V48A2,2,0,0,1,48,46ZM208,210H48a2,2,0,0,1-2-2V94H210V208A2,2,0,0,1,208,210Zm-98-90v64a6,6,0,0,1-12,0V129.71l-7.32,3.66a6,6,0,1,1-5.36-10.74l16-8A6,6,0,0,1,110,120Zm59.57,29.25L148,178h20a6,6,0,0,1,0,12H136a6,6,0,0,1-4.8-9.6L160,142a10,10,0,1,0-16.65-11A6,6,0,1,1,133,125a22,22,0,1,1,36.62,24.26Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Zm-96-88v64a8,8,0,0,1-16,0V132.94l-4.42,2.22a8,8,0,0,1-7.16-14.32l16-8A8,8,0,0,1,112,120Zm59.16,30.45L152,176h16a8,8,0,0,1,0,16H136a8,8,0,0,1-6.4-12.8l28.78-38.37A8,8,0,1,0,145.07,132a8,8,0,1,1-13.85-8A24,24,0,0,1,176,136,23.76,23.76,0,0,1,171.16,150.45Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,36H180V24a4,4,0,0,0-8,0V36H84V24a4,4,0,0,0-8,0V36H48A12,12,0,0,0,36,48V208a12,12,0,0,0,12,12H208a12,12,0,0,0,12-12V48A12,12,0,0,0,208,36ZM48,44H76V56a4,4,0,0,0,8,0V44h88V56a4,4,0,0,0,8,0V44h28a4,4,0,0,1,4,4V84H44V48A4,4,0,0,1,48,44ZM208,212H48a4,4,0,0,1-4-4V92H212V208A4,4,0,0,1,208,212ZM108,120v64a4,4,0,0,1-8,0V126.47l-10.21,5.11a4,4,0,0,1-3.58-7.16l16-8A4,4,0,0,1,108,120Zm60,28-24,32h24a4,4,0,0,1,0,8H136a4,4,0,0,1-3.2-6.4l28.78-38.37A11.88,11.88,0,0,0,164,136a12,12,0,0,0-22.4-6,4,4,0,0,1-6.92-4A20,20,0,0,1,172,136,19.79,19.79,0,0,1,168,148Z"}))]]),hm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216.49,104.49l-80,80a12,12,0,0,1-17,0l-80-80a12,12,0,0,1,17-17L128,159l71.51-71.52a12,12,0,0,1,17,17Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,96l-80,80L48,96Z",opacity:"0.2"}),c.createElement("path",{d:"M215.39,92.94A8,8,0,0,0,208,88H48a8,8,0,0,0-5.66,13.66l80,80a8,8,0,0,0,11.32,0l80-80A8,8,0,0,0,215.39,92.94ZM128,164.69,67.31,104H188.69Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,48,88H208a8,8,0,0,1,5.66,13.66Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M212.24,100.24l-80,80a6,6,0,0,1-8.48,0l-80-80a6,6,0,0,1,8.48-8.48L128,167.51l75.76-75.75a6,6,0,0,1,8.48,8.48Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M210.83,98.83l-80,80a4,4,0,0,1-5.66,0l-80-80a4,4,0,0,1,5.66-5.66L128,170.34l77.17-77.17a4,4,0,1,1,5.66,5.66Z"}))]]),pm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M168.49,199.51a12,12,0,0,1-17,17l-80-80a12,12,0,0,1,0-17l80-80a12,12,0,0,1,17,17L97,128Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M160,48V208L80,128Z",opacity:"0.2"}),c.createElement("path",{d:"M163.06,40.61a8,8,0,0,0-8.72,1.73l-80,80a8,8,0,0,0,0,11.32l80,80A8,8,0,0,0,168,208V48A8,8,0,0,0,163.06,40.61ZM152,188.69,91.31,128,152,67.31Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M168,48V208a8,8,0,0,1-13.66,5.66l-80-80a8,8,0,0,1,0-11.32l80-80A8,8,0,0,1,168,48Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M164.24,203.76a6,6,0,1,1-8.48,8.48l-80-80a6,6,0,0,1,0-8.48l80-80a6,6,0,0,1,8.48,8.48L88.49,128Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M162.83,205.17a4,4,0,0,1-5.66,5.66l-80-80a4,4,0,0,1,0-5.66l80-80a4,4,0,1,1,5.66,5.66L85.66,128Z"}))]]),mm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M184.49,136.49l-80,80a12,12,0,0,1-17-17L159,128,87.51,56.49a12,12,0,1,1,17-17l80,80A12,12,0,0,1,184.49,136.49Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M176,128,96,208V48Z",opacity:"0.2"}),c.createElement("path",{d:"M181.66,122.34l-80-80A8,8,0,0,0,88,48V208a8,8,0,0,0,13.66,5.66l80-80A8,8,0,0,0,181.66,122.34ZM104,188.69V67.31L164.69,128Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M181.66,133.66l-80,80A8,8,0,0,1,88,208V48a8,8,0,0,1,13.66-5.66l80,80A8,8,0,0,1,181.66,133.66Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M180.24,132.24l-80,80a6,6,0,0,1-8.48-8.48L167.51,128,91.76,52.24a6,6,0,0,1,8.48-8.48l80,80A6,6,0,0,1,180.24,132.24Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M178.83,130.83l-80,80a4,4,0,0,1-5.66-5.66L170.34,128,93.17,50.83a4,4,0,0,1,5.66-5.66l80,80A4,4,0,0,1,178.83,130.83Z"}))]]),gm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M232.49,80.49l-128,128a12,12,0,0,1-17,0l-56-56a12,12,0,1,1,17-17L96,183,215.51,63.51a12,12,0,0,1,17,17Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M232,56V200a16,16,0,0,1-16,16H40a16,16,0,0,1-16-16V56A16,16,0,0,1,40,40H216A16,16,0,0,1,232,56Z",opacity:"0.2"}),c.createElement("path",{d:"M205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M228.24,76.24l-128,128a6,6,0,0,1-8.48,0l-56-56a6,6,0,0,1,8.48-8.48L96,191.51,219.76,67.76a6,6,0,0,1,8.48,8.48Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M226.83,74.83l-128,128a4,4,0,0,1-5.66,0l-56-56a4,4,0,0,1,5.66-5.66L96,194.34,221.17,69.17a4,4,0,1,1,5.66,5.66Z"}))]]),vm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M112,60a16,16,0,1,1,16,16A16,16,0,0,1,112,60Zm16,52a16,16,0,1,0,16,16A16,16,0,0,0,128,112Zm0,68a16,16,0,1,0,16,16A16,16,0,0,0,128,180Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M176,32V224a16,16,0,0,1-16,16H96a16,16,0,0,1-16-16V32A16,16,0,0,1,96,16h64A16,16,0,0,1,176,32Z",opacity:"0.2"}),c.createElement("path",{d:"M140,128a12,12,0,1,1-12-12A12,12,0,0,1,140,128ZM128,72a12,12,0,1,0-12-12A12,12,0,0,0,128,72Zm0,112a12,12,0,1,0,12,12A12,12,0,0,0,128,184Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M160,16H96A16,16,0,0,0,80,32V224a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16V32A16,16,0,0,0,160,16ZM128,208a12,12,0,1,1,12-12A12,12,0,0,1,128,208Zm0-68a12,12,0,1,1,12-12A12,12,0,0,1,128,140Zm0-68a12,12,0,1,1,12-12A12,12,0,0,1,128,72Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M118,60a10,10,0,1,1,10,10A10,10,0,0,1,118,60Zm10,58a10,10,0,1,0,10,10A10,10,0,0,0,128,118Zm0,68a10,10,0,1,0,10,10A10,10,0,0,0,128,186Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M140,128a12,12,0,1,1-12-12A12,12,0,0,1,140,128ZM128,72a12,12,0,1,0-12-12A12,12,0,0,0,128,72Zm0,112a12,12,0,1,0,12,12A12,12,0,0,0,128,184Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M120,60a8,8,0,1,1,8,8A8,8,0,0,1,120,60Zm8,60a8,8,0,1,0,8,8A8,8,0,0,0,128,120Zm0,68a8,8,0,1,0,8,8A8,8,0,0,0,128,188Z"}))]]),ym=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,76a52,52,0,1,0,52,52A52.06,52.06,0,0,0,128,76Zm0,80a28,28,0,1,1,28-28A28,28,0,0,1,128,156Zm92-27.21v-1.58l14-17.51a12,12,0,0,0,2.23-10.59A111.75,111.75,0,0,0,225,71.89,12,12,0,0,0,215.89,66L193.61,63.5l-1.11-1.11L190,40.1A12,12,0,0,0,184.11,31a111.67,111.67,0,0,0-27.23-11.27A12,12,0,0,0,146.3,22L128.79,36h-1.58L109.7,22a12,12,0,0,0-10.59-2.23A111.75,111.75,0,0,0,71.89,31.05,12,12,0,0,0,66,40.11L63.5,62.39,62.39,63.5,40.1,66A12,12,0,0,0,31,71.89,111.67,111.67,0,0,0,19.77,99.12,12,12,0,0,0,22,109.7l14,17.51v1.58L22,146.3a12,12,0,0,0-2.23,10.59,111.75,111.75,0,0,0,11.29,27.22A12,12,0,0,0,40.11,190l22.28,2.48,1.11,1.11L66,215.9A12,12,0,0,0,71.89,225a111.67,111.67,0,0,0,27.23,11.27A12,12,0,0,0,109.7,234l17.51-14h1.58l17.51,14a12,12,0,0,0,10.59,2.23A111.75,111.75,0,0,0,184.11,225a12,12,0,0,0,5.91-9.06l2.48-22.28,1.11-1.11L215.9,190a12,12,0,0,0,9.06-5.91,111.67,111.67,0,0,0,11.27-27.23A12,12,0,0,0,234,146.3Zm-24.12-4.89a70.1,70.1,0,0,1,0,8.2,12,12,0,0,0,2.61,8.22l12.84,16.05A86.47,86.47,0,0,1,207,166.86l-20.43,2.27a12,12,0,0,0-7.65,4,69,69,0,0,1-5.8,5.8,12,12,0,0,0-4,7.65L166.86,207a86.47,86.47,0,0,1-10.49,4.35l-16.05-12.85a12,12,0,0,0-7.5-2.62c-.24,0-.48,0-.72,0a70.1,70.1,0,0,1-8.2,0,12.06,12.06,0,0,0-8.22,2.6L99.63,211.33A86.47,86.47,0,0,1,89.14,207l-2.27-20.43a12,12,0,0,0-4-7.65,69,69,0,0,1-5.8-5.8,12,12,0,0,0-7.65-4L49,166.86a86.47,86.47,0,0,1-4.35-10.49l12.84-16.05a12,12,0,0,0,2.61-8.22,70.1,70.1,0,0,1,0-8.2,12,12,0,0,0-2.61-8.22L44.67,99.63A86.47,86.47,0,0,1,49,89.14l20.43-2.27a12,12,0,0,0,7.65-4,69,69,0,0,1,5.8-5.8,12,12,0,0,0,4-7.65L89.14,49a86.47,86.47,0,0,1,10.49-4.35l16.05,12.85a12.06,12.06,0,0,0,8.22,2.6,70.1,70.1,0,0,1,8.2,0,12,12,0,0,0,8.22-2.6l16.05-12.85A86.47,86.47,0,0,1,166.86,49l2.27,20.43a12,12,0,0,0,4,7.65,69,69,0,0,1,5.8,5.8,12,12,0,0,0,7.65,4L207,89.14a86.47,86.47,0,0,1,4.35,10.49l-12.84,16.05A12,12,0,0,0,195.88,123.9Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M207.86,123.18l16.78-21a99.14,99.14,0,0,0-10.07-24.29l-26.7-3a81,81,0,0,0-6.81-6.81l-3-26.71a99.43,99.43,0,0,0-24.3-10l-21,16.77a81.59,81.59,0,0,0-9.64,0l-21-16.78A99.14,99.14,0,0,0,77.91,41.43l-3,26.7a81,81,0,0,0-6.81,6.81l-26.71,3a99.43,99.43,0,0,0-10,24.3l16.77,21a81.59,81.59,0,0,0,0,9.64l-16.78,21a99.14,99.14,0,0,0,10.07,24.29l26.7,3a81,81,0,0,0,6.81,6.81l3,26.71a99.43,99.43,0,0,0,24.3,10l21-16.77a81.59,81.59,0,0,0,9.64,0l21,16.78a99.14,99.14,0,0,0,24.29-10.07l3-26.7a81,81,0,0,0,6.81-6.81l26.71-3a99.43,99.43,0,0,0,10-24.3l-16.77-21A81.59,81.59,0,0,0,207.86,123.18ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z",opacity:"0.2"}),c.createElement("path",{d:"M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm88-29.84q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.6,107.6,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.29,107.29,0,0,0-26.25-10.86,8,8,0,0,0-7.06,1.48L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.6,107.6,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06Zm-16.1-6.5a73.93,73.93,0,0,1,0,8.68,8,8,0,0,0,1.74,5.48l14.19,17.73a91.57,91.57,0,0,1-6.23,15L187,173.11a8,8,0,0,0-5.1,2.64,74.11,74.11,0,0,1-6.14,6.14,8,8,0,0,0-2.64,5.1l-2.51,22.58a91.32,91.32,0,0,1-15,6.23l-17.74-14.19a8,8,0,0,0-5-1.75h-.48a73.93,73.93,0,0,1-8.68,0,8.06,8.06,0,0,0-5.48,1.74L100.45,215.8a91.57,91.57,0,0,1-15-6.23L82.89,187a8,8,0,0,0-2.64-5.1,74.11,74.11,0,0,1-6.14-6.14,8,8,0,0,0-5.1-2.64L46.43,170.6a91.32,91.32,0,0,1-6.23-15l14.19-17.74a8,8,0,0,0,1.74-5.48,73.93,73.93,0,0,1,0-8.68,8,8,0,0,0-1.74-5.48L40.2,100.45a91.57,91.57,0,0,1,6.23-15L69,82.89a8,8,0,0,0,5.1-2.64,74.11,74.11,0,0,1,6.14-6.14A8,8,0,0,0,82.89,69L85.4,46.43a91.32,91.32,0,0,1,15-6.23l17.74,14.19a8,8,0,0,0,5.48,1.74,73.93,73.93,0,0,1,8.68,0,8.06,8.06,0,0,0,5.48-1.74L155.55,40.2a91.57,91.57,0,0,1,15,6.23L173.11,69a8,8,0,0,0,2.64,5.1,74.11,74.11,0,0,1,6.14,6.14,8,8,0,0,0,5.1,2.64l22.58,2.51a91.32,91.32,0,0,1,6.23,15l-14.19,17.74A8,8,0,0,0,199.87,123.66Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216,130.16q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.6,107.6,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.29,107.29,0,0,0-26.25-10.86,8,8,0,0,0-7.06,1.48L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.6,107.6,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,82a46,46,0,1,0,46,46A46.06,46.06,0,0,0,128,82Zm0,80a34,34,0,1,1,34-34A34,34,0,0,1,128,162ZM214,130.84c.06-1.89.06-3.79,0-5.68L229.33,106a6,6,0,0,0,1.11-5.29A105.34,105.34,0,0,0,219.76,74.9a6,6,0,0,0-4.53-3l-24.45-2.71q-1.93-2.07-4-4l-2.72-24.46a6,6,0,0,0-3-4.53,105.65,105.65,0,0,0-25.77-10.66A6,6,0,0,0,150,26.68l-19.2,15.37c-1.89-.06-3.79-.06-5.68,0L106,26.67a6,6,0,0,0-5.29-1.11A105.34,105.34,0,0,0,74.9,36.24a6,6,0,0,0-3,4.53L69.23,65.22q-2.07,1.94-4,4L40.76,72a6,6,0,0,0-4.53,3,105.65,105.65,0,0,0-10.66,25.77A6,6,0,0,0,26.68,106l15.37,19.2c-.06,1.89-.06,3.79,0,5.68L26.67,150.05a6,6,0,0,0-1.11,5.29A105.34,105.34,0,0,0,36.24,181.1a6,6,0,0,0,4.53,3l24.45,2.71q1.94,2.07,4,4L72,215.24a6,6,0,0,0,3,4.53,105.65,105.65,0,0,0,25.77,10.66,6,6,0,0,0,5.29-1.11L125.16,214c1.89.06,3.79.06,5.68,0l19.21,15.38a6,6,0,0,0,3.75,1.31,6.2,6.2,0,0,0,1.54-.2,105.34,105.34,0,0,0,25.76-10.68,6,6,0,0,0,3-4.53l2.71-24.45q2.07-1.93,4-4l24.46-2.72a6,6,0,0,0,4.53-3,105.49,105.49,0,0,0,10.66-25.77,6,6,0,0,0-1.11-5.29Zm-3.1,41.63-23.64,2.63a6,6,0,0,0-3.82,2,75.14,75.14,0,0,1-6.31,6.31,6,6,0,0,0-2,3.82l-2.63,23.63A94.28,94.28,0,0,1,155.14,218l-18.57-14.86a6,6,0,0,0-3.75-1.31h-.36a78.07,78.07,0,0,1-8.92,0,6,6,0,0,0-4.11,1.3L100.87,218a94.13,94.13,0,0,1-17.34-7.17L80.9,187.21a6,6,0,0,0-2-3.82,75.14,75.14,0,0,1-6.31-6.31,6,6,0,0,0-3.82-2l-23.63-2.63A94.28,94.28,0,0,1,38,155.14l14.86-18.57a6,6,0,0,0,1.3-4.11,78.07,78.07,0,0,1,0-8.92,6,6,0,0,0-1.3-4.11L38,100.87a94.13,94.13,0,0,1,7.17-17.34L68.79,80.9a6,6,0,0,0,3.82-2,75.14,75.14,0,0,1,6.31-6.31,6,6,0,0,0,2-3.82l2.63-23.63A94.28,94.28,0,0,1,100.86,38l18.57,14.86a6,6,0,0,0,4.11,1.3,78.07,78.07,0,0,1,8.92,0,6,6,0,0,0,4.11-1.3L155.13,38a94.13,94.13,0,0,1,17.34,7.17l2.63,23.64a6,6,0,0,0,2,3.82,75.14,75.14,0,0,1,6.31,6.31,6,6,0,0,0,3.82,2l23.63,2.63A94.28,94.28,0,0,1,218,100.86l-14.86,18.57a6,6,0,0,0-1.3,4.11,78.07,78.07,0,0,1,0,8.92,6,6,0,0,0,1.3,4.11L218,155.13A94.13,94.13,0,0,1,210.85,172.47Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm88-29.84q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.21,107.21,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.71,107.71,0,0,0-26.25-10.87,8,8,0,0,0-7.06,1.49L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.21,107.21,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06Zm-16.1-6.5a73.93,73.93,0,0,1,0,8.68,8,8,0,0,0,1.74,5.48l14.19,17.73a91.57,91.57,0,0,1-6.23,15L187,173.11a8,8,0,0,0-5.1,2.64,74.11,74.11,0,0,1-6.14,6.14,8,8,0,0,0-2.64,5.1l-2.51,22.58a91.32,91.32,0,0,1-15,6.23l-17.74-14.19a8,8,0,0,0-5-1.75h-.48a73.93,73.93,0,0,1-8.68,0,8,8,0,0,0-5.48,1.74L100.45,215.8a91.57,91.57,0,0,1-15-6.23L82.89,187a8,8,0,0,0-2.64-5.1,74.11,74.11,0,0,1-6.14-6.14,8,8,0,0,0-5.1-2.64L46.43,170.6a91.32,91.32,0,0,1-6.23-15l14.19-17.74a8,8,0,0,0,1.74-5.48,73.93,73.93,0,0,1,0-8.68,8,8,0,0,0-1.74-5.48L40.2,100.45a91.57,91.57,0,0,1,6.23-15L69,82.89a8,8,0,0,0,5.1-2.64,74.11,74.11,0,0,1,6.14-6.14A8,8,0,0,0,82.89,69L85.4,46.43a91.32,91.32,0,0,1,15-6.23l17.74,14.19a8,8,0,0,0,5.48,1.74,73.93,73.93,0,0,1,8.68,0,8,8,0,0,0,5.48-1.74L155.55,40.2a91.57,91.57,0,0,1,15,6.23L173.11,69a8,8,0,0,0,2.64,5.1,74.11,74.11,0,0,1,6.14,6.14,8,8,0,0,0,5.1,2.64l22.58,2.51a91.32,91.32,0,0,1,6.23,15l-14.19,17.74A8,8,0,0,0,199.87,123.66Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,84a44,44,0,1,0,44,44A44.05,44.05,0,0,0,128,84Zm0,80a36,36,0,1,1,36-36A36,36,0,0,1,128,164Zm83.93-32.49q.13-3.51,0-7l15.83-19.79a4,4,0,0,0,.75-3.53A103.64,103.64,0,0,0,218,75.9a4,4,0,0,0-3-2l-25.19-2.8c-1.58-1.71-3.24-3.37-4.95-4.95L182.07,41a4,4,0,0,0-2-3A104,104,0,0,0,154.82,27.5a4,4,0,0,0-3.53.74L131.51,44.07q-3.51-.14-7,0L104.7,28.24a4,4,0,0,0-3.53-.75A103.64,103.64,0,0,0,75.9,38a4,4,0,0,0-2,3l-2.8,25.19c-1.71,1.58-3.37,3.24-4.95,4.95L41,73.93a4,4,0,0,0-3,2A104,104,0,0,0,27.5,101.18a4,4,0,0,0,.74,3.53l15.83,19.78q-.14,3.51,0,7L28.24,151.3a4,4,0,0,0-.75,3.53A103.64,103.64,0,0,0,38,180.1a4,4,0,0,0,3,2l25.19,2.8c1.58,1.71,3.24,3.37,4.95,4.95l2.8,25.2a4,4,0,0,0,2,3,104,104,0,0,0,25.28,10.46,4,4,0,0,0,3.53-.74l19.78-15.83q3.51.13,7,0l19.79,15.83a4,4,0,0,0,2.5.88,4,4,0,0,0,1-.13A103.64,103.64,0,0,0,180.1,218a4,4,0,0,0,2-3l2.8-25.19c1.71-1.58,3.37-3.24,4.95-4.95l25.2-2.8a4,4,0,0,0,3-2,104,104,0,0,0,10.46-25.28,4,4,0,0,0-.74-3.53Zm.17,42.83-24.67,2.74a4,4,0,0,0-2.55,1.32,76.2,76.2,0,0,1-6.48,6.48,4,4,0,0,0-1.32,2.55l-2.74,24.66a95.45,95.45,0,0,1-19.64,8.15l-19.38-15.51a4,4,0,0,0-2.5-.87h-.24a73.67,73.67,0,0,1-9.16,0,4,4,0,0,0-2.74.87l-19.37,15.5a95.33,95.33,0,0,1-19.65-8.13l-2.74-24.67a4,4,0,0,0-1.32-2.55,76.2,76.2,0,0,1-6.48-6.48,4,4,0,0,0-2.55-1.32l-24.66-2.74a95.45,95.45,0,0,1-8.15-19.64l15.51-19.38a4,4,0,0,0,.87-2.74,77.76,77.76,0,0,1,0-9.16,4,4,0,0,0-.87-2.74l-15.5-19.37A95.33,95.33,0,0,1,43.9,81.66l24.67-2.74a4,4,0,0,0,2.55-1.32,76.2,76.2,0,0,1,6.48-6.48,4,4,0,0,0,1.32-2.55l2.74-24.66a95.45,95.45,0,0,1,19.64-8.15l19.38,15.51a4,4,0,0,0,2.74.87,73.67,73.67,0,0,1,9.16,0,4,4,0,0,0,2.74-.87l19.37-15.5a95.33,95.33,0,0,1,19.65,8.13l2.74,24.67a4,4,0,0,0,1.32,2.55,76.2,76.2,0,0,1,6.48,6.48,4,4,0,0,0,2.55,1.32l24.66,2.74a95.45,95.45,0,0,1,8.15,19.64l-15.51,19.38a4,4,0,0,0-.87,2.74,77.76,77.76,0,0,1,0,9.16,4,4,0,0,0,.87,2.74l15.5,19.37A95.33,95.33,0,0,1,212.1,174.34Z"}))]]),xm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M200,36H56A20,20,0,0,0,36,56V200a20,20,0,0,0,20,20H200a20,20,0,0,0,20-20V56A20,20,0,0,0,200,36Zm-4,80H140V60h56ZM116,60v56H60V60ZM60,140h56v56H60Zm80,56V140h56v56Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,56V200a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H200A8,8,0,0,1,208,56Z",opacity:"0.2"}),c.createElement("path",{d:"M200,40H56A16,16,0,0,0,40,56V200a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V56A16,16,0,0,0,200,40Zm0,80H136V56h64ZM120,56v64H56V56ZM56,136h64v64H56Zm144,64H136V136h64v64Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216,56v60a4,4,0,0,1-4,4H136V44a4,4,0,0,1,4-4h60A16,16,0,0,1,216,56ZM116,40H56A16,16,0,0,0,40,56v60a4,4,0,0,0,4,4h76V44A4,4,0,0,0,116,40Zm96,96H136v76a4,4,0,0,0,4,4h60a16,16,0,0,0,16-16V140A4,4,0,0,0,212,136ZM40,140v60a16,16,0,0,0,16,16h60a4,4,0,0,0,4-4V136H44A4,4,0,0,0,40,140Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M200,42H56A14,14,0,0,0,42,56V200a14,14,0,0,0,14,14H200a14,14,0,0,0,14-14V56A14,14,0,0,0,200,42Zm2,14v66H134V54h66A2,2,0,0,1,202,56ZM56,54h66v68H54V56A2,2,0,0,1,56,54ZM54,200V134h68v68H56A2,2,0,0,1,54,200Zm146,2H134V134h68v66A2,2,0,0,1,200,202Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M200,40H56A16,16,0,0,0,40,56V200a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V56A16,16,0,0,0,200,40Zm0,80H136V56h64ZM120,56v64H56V56ZM56,136h64v64H56Zm144,64H136V136h64v64Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M200,44H56A12,12,0,0,0,44,56V200a12,12,0,0,0,12,12H200a12,12,0,0,0,12-12V56A12,12,0,0,0,200,44Zm4,12v68H132V52h68A4,4,0,0,1,204,56ZM56,52h68v72H52V56A4,4,0,0,1,56,52ZM52,200V132h72v72H56A4,4,0,0,1,52,200Zm148,4H132V132h72v68A4,4,0,0,1,200,204Z"}))]]),bm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M228,128a12,12,0,0,1-12,12H40a12,12,0,0,1,0-24H216A12,12,0,0,1,228,128ZM40,76H216a12,12,0,0,0,0-24H40a12,12,0,0,0,0,24ZM216,180H40a12,12,0,0,0,0,24H216a12,12,0,0,0,0-24Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216,64V192H40V64Z",opacity:"0.2"}),c.createElement("path",{d:"M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM40,72H216a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16ZM216,184H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM192,184H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Zm0-48H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Zm0-48H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M222,128a6,6,0,0,1-6,6H40a6,6,0,0,1,0-12H216A6,6,0,0,1,222,128ZM40,70H216a6,6,0,0,0,0-12H40a6,6,0,0,0,0,12ZM216,186H40a6,6,0,0,0,0,12H216a6,6,0,0,0,0-12Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM40,72H216a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16ZM216,184H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M220,128a4,4,0,0,1-4,4H40a4,4,0,0,1,0-8H216A4,4,0,0,1,220,128ZM40,68H216a4,4,0,0,0,0-8H40a4,4,0,0,0,0,8ZM216,188H40a4,4,0,0,0,0,8H216a4,4,0,0,0,0-8Z"}))]]),wm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M192,112a80,80,0,1,1-80-80A80,80,0,0,1,192,112Z",opacity:"0.2"}),c.createElement("path",{d:"M229.66,218.34,179.6,168.28a88.21,88.21,0,1,0-11.32,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M168,112a56,56,0,1,1-56-56A56,56,0,0,1,168,112Zm61.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88,88,0,1,1,11.32-11.31l50.06,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M228.24,219.76l-51.38-51.38a86.15,86.15,0,1,0-8.48,8.48l51.38,51.38a6,6,0,0,0,8.48-8.48ZM38,112a74,74,0,1,1,74,74A74.09,74.09,0,0,1,38,112Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M226.83,221.17l-52.7-52.7a84.1,84.1,0,1,0-5.66,5.66l52.7,52.7a4,4,0,0,0,5.66-5.66ZM36,112a76,76,0,1,1,76,76A76.08,76.08,0,0,1,36,112Z"}))]]),Sm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M230.14,70.54,185.46,25.85a20,20,0,0,0-28.29,0L33.86,149.17A19.85,19.85,0,0,0,28,163.31V208a20,20,0,0,0,20,20H92.69a19.86,19.86,0,0,0,14.14-5.86L230.14,98.82a20,20,0,0,0,0-28.28ZM91,204H52V165l84-84,39,39ZM192,103,153,64l18.34-18.34,39,39Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M221.66,90.34,192,120,136,64l29.66-29.66a8,8,0,0,1,11.31,0L221.66,79A8,8,0,0,1,221.66,90.34Z",opacity:"0.2"}),c.createElement("path",{d:"M227.31,73.37,182.63,28.68a16,16,0,0,0-22.63,0L36.69,152A15.86,15.86,0,0,0,32,163.31V208a16,16,0,0,0,16,16H92.69A15.86,15.86,0,0,0,104,219.31L227.31,96a16,16,0,0,0,0-22.63ZM92.69,208H48V163.31l88-88L180.69,120ZM192,108.68,147.31,64l24-24L216,84.68Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M227.31,73.37,182.63,28.68a16,16,0,0,0-22.63,0L36.69,152A15.86,15.86,0,0,0,32,163.31V208a16,16,0,0,0,16,16H92.69A15.86,15.86,0,0,0,104,219.31L227.31,96a16,16,0,0,0,0-22.63ZM192,108.68,147.31,64l24-24L216,84.68Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M225.9,74.78,181.21,30.09a14,14,0,0,0-19.8,0L38.1,153.41a13.94,13.94,0,0,0-4.1,9.9V208a14,14,0,0,0,14,14H92.69a13.94,13.94,0,0,0,9.9-4.1L225.9,94.58a14,14,0,0,0,0-19.8ZM94.1,209.41a2,2,0,0,1-1.41.59H48a2,2,0,0,1-2-2V163.31a2,2,0,0,1,.59-1.41L136,72.48,183.51,120ZM217.41,86.1,192,111.51,144.49,64,169.9,38.58a2,2,0,0,1,2.83,0l44.68,44.69a2,2,0,0,1,0,2.83Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M227.31,73.37,182.63,28.68a16,16,0,0,0-22.63,0L36.69,152A15.86,15.86,0,0,0,32,163.31V208a16,16,0,0,0,16,16H92.69A15.86,15.86,0,0,0,104,219.31L227.31,96a16,16,0,0,0,0-22.63ZM92.69,208H48V163.31l88-88L180.69,120ZM192,108.68,147.31,64l24-24L216,84.68Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M224.49,76.2,179.8,31.51a12,12,0,0,0-17,0L133.17,61.17h0L39.52,154.83A11.9,11.9,0,0,0,36,163.31V208a12,12,0,0,0,12,12H92.69a12,12,0,0,0,8.48-3.51L224.48,93.17a12,12,0,0,0,0-17Zm-129,134.63A4,4,0,0,1,92.69,212H48a4,4,0,0,1-4-4V163.31a4,4,0,0,1,1.17-2.83L136,69.65,186.34,120ZM218.83,87.51,192,114.34,141.66,64l26.82-26.83a4,4,0,0,1,5.66,0l44.69,44.68a4,4,0,0,1,0,5.66Z"}))]]),Em=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M238.15,78.54,177.46,17.86a20,20,0,0,0-28.3,0L97.2,70c-12.43-3.33-36.68-5.72-61.74,14.5a20,20,0,0,0-1.6,29.73l45.46,45.47-39.8,39.8a12,12,0,0,0,17,17l39.8-39.81,45.47,45.46A20,20,0,0,0,155.91,228c.46,0,.93,0,1.4-.05A20,20,0,0,0,171.87,220c4.69-6.23,11-16.13,14.44-28s3.45-22.88.16-33.4l51.7-51.87A20,20,0,0,0,238.15,78.54Zm-74.26,68.79a12,12,0,0,0-2.23,13.84c3.43,6.86,6.9,21-6.28,40.65L54.08,100.53c21.09-14.59,39.53-6.64,41-6a11.67,11.67,0,0,0,13.81-2.29l54.43-54.61,55,55Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M229.66,98.34,172.39,155.8c11.46,22.93-1.72,45.86-10.11,57a8,8,0,0,1-12,.83L42.34,105.76A8,8,0,0,1,43,93.85c29.65-23.92,57.4-10,57.4-10l57.27-57.46a8,8,0,0,1,11.31,0L229.66,87A8,8,0,0,1,229.66,98.34Z",opacity:"0.2"}),c.createElement("path",{d:"M235.32,81.37,174.63,20.69a16,16,0,0,0-22.63,0L98.37,74.49c-10.66-3.34-35-7.37-60.4,13.14a16,16,0,0,0-1.29,23.78L85,159.71,42.34,202.34a8,8,0,0,0,11.32,11.32L96.29,171l48.29,48.29A16,16,0,0,0,155.9,224c.38,0,.75,0,1.13,0a15.93,15.93,0,0,0,11.64-6.33c19.64-26.1,17.75-47.32,13.19-60L235.33,104A16,16,0,0,0,235.32,81.37ZM224,92.69h0l-57.27,57.46a8,8,0,0,0-1.49,9.22c9.46,18.93-1.8,38.59-9.34,48.62L48,100.08c12.08-9.74,23.64-12.31,32.48-12.31A40.13,40.13,0,0,1,96.81,91a8,8,0,0,0,9.25-1.51L163.32,32,224,92.68Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M235.33,104l-53.47,53.65c4.56,12.67,6.45,33.89-13.19,60A15.93,15.93,0,0,1,157,224c-.38,0-.75,0-1.13,0a16,16,0,0,1-11.32-4.69L96.29,171,53.66,213.66a8,8,0,0,1-11.32-11.32L85,159.71l-48.3-48.3A16,16,0,0,1,38,87.63c25.42-20.51,49.75-16.48,60.4-13.14L152,20.7a16,16,0,0,1,22.63,0l60.69,60.68A16,16,0,0,1,235.33,104Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M233.91,82.79,173.22,22.1a14,14,0,0,0-19.81,0L98.93,76.77c-9.52-3.25-34-8.34-59.71,12.41A14,14,0,0,0,38.1,110l49.71,49.71-44.05,44a6,6,0,1,0,8.48,8.48l44.05-44.05L146,217.89a14,14,0,0,0,9.9,4.11q.49,0,1,0a14,14,0,0,0,10.19-5.54c19.72-26.21,17.15-47.23,12.46-59.3l54.37-54.55A14,14,0,0,0,233.91,82.79ZM225.42,94.1h0l-57.27,57.46a6,6,0,0,0-1.11,6.92c9.94,19.88-1.71,40.32-9.54,50.72a2,2,0,0,1-3,.2L46.58,101.51a2,2,0,0,1,.18-3c12.5-10.09,24.5-12.76,33.7-12.76a42.13,42.13,0,0,1,17.25,3.41A6,6,0,0,0,104.64,88L161.9,30.59a2,2,0,0,1,2.83,0l60.69,60.68A2,2,0,0,1,225.42,94.1Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M235.32,81.37,174.63,20.69a16,16,0,0,0-22.63,0L98.37,74.49c-10.66-3.34-35-7.37-60.4,13.14a16,16,0,0,0-1.29,23.78L85,159.71,42.34,202.34a8,8,0,0,0,11.32,11.32L96.29,171l48.29,48.29A16,16,0,0,0,155.9,224c.38,0,.75,0,1.13,0a15.93,15.93,0,0,0,11.64-6.33c19.64-26.1,17.75-47.32,13.19-60L235.33,104A16,16,0,0,0,235.32,81.37ZM224,92.69h0l-57.27,57.46a8,8,0,0,0-1.49,9.22c9.46,18.93-1.8,38.59-9.34,48.62L48,100.08c12.08-9.74,23.64-12.31,32.48-12.31A40.13,40.13,0,0,1,96.81,91a8,8,0,0,0,9.25-1.51L163.32,32,224,92.68Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M232.49,84.2,171.8,23.51a12,12,0,0,0-17,0L99.45,79.07c-8.08-3-32.79-9.45-59,11.67a12,12,0,0,0-1,17.84l51.13,51.13L45.17,205.17a4,4,0,0,0,5.66,5.66l45.46-45.47,51.12,51.12A12,12,0,0,0,155.9,220c.28,0,.57,0,.85,0a12,12,0,0,0,8.73-4.74c19.83-26.36,16.51-47.18,11.71-58.57l55.3-55.49A12,12,0,0,0,232.49,84.2Zm-5.66,11.31h0L169.56,153a4,4,0,0,0-.75,4.61c10.43,20.85-1.62,42-9.73,52.83a4,4,0,0,1-6,.4L45.17,102.93a4,4,0,0,1,.33-6C58.44,86.53,70.86,83.74,80.44,83.74A43.9,43.9,0,0,1,98.6,87.38a4,4,0,0,0,4.62-.75l57.27-57.46a4,4,0,0,1,5.66,0l60.68,60.69A4,4,0,0,1,226.83,95.51Z"}))]]),Rm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,128a12,12,0,0,1-12,12H48a12,12,0,0,1,0-24h68A12,12,0,0,1,128,128ZM48,76H180a12,12,0,0,0,0-24H48a12,12,0,0,0,0,24Zm52,104H48a12,12,0,0,0,0,24h52a12,12,0,0,0,0-24Zm132.49-20.49a12,12,0,0,0-17,0L196,179V112a12,12,0,0,0-24,0v67l-19.51-19.52a12,12,0,0,0-17,17l40,40a12,12,0,0,0,17,0l40-40A12,12,0,0,0,232.49,159.51Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M224,80v88l-24,24H48V64H208A16,16,0,0,1,224,80Z",opacity:"0.2"}),c.createElement("path",{d:"M128,128a8,8,0,0,1-8,8H48a8,8,0,0,1,0-16h72A8,8,0,0,1,128,128ZM48,72H184a8,8,0,0,0,0-16H48a8,8,0,0,0,0,16Zm56,112H48a8,8,0,0,0,0,16h56a8,8,0,0,0,0-16Zm125.66-21.66a8,8,0,0,0-11.32,0L192,188.69V112a8,8,0,0,0-16,0v76.69l-26.34-26.35a8,8,0,0,0-11.32,11.32l40,40a8,8,0,0,0,11.32,0l40-40A8,8,0,0,0,229.66,162.34Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,72h96a8,8,0,0,1,0,16H72a8,8,0,0,1,0-16Zm40,112H72a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Zm8-48H72a8,8,0,0,1,0-16h48a8,8,0,0,1,0,16Zm77.66,29.66-24,24a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L160,164.69V120a8,8,0,0,1,16,0v44.69l10.34-10.35a8,8,0,0,1,11.32,11.32Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M126,128a6,6,0,0,1-6,6H48a6,6,0,0,1,0-12h72A6,6,0,0,1,126,128ZM48,70H184a6,6,0,0,0,0-12H48a6,6,0,0,0,0,12Zm56,116H48a6,6,0,0,0,0,12h56a6,6,0,0,0,0-12Zm124.24-22.24a6,6,0,0,0-8.48,0L190,193.51V112a6,6,0,0,0-12,0v81.51l-29.76-29.75a6,6,0,0,0-8.48,8.48l40,40a6,6,0,0,0,8.48,0l40-40A6,6,0,0,0,228.24,163.76Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,128a8,8,0,0,1-8,8H48a8,8,0,0,1,0-16h72A8,8,0,0,1,128,128ZM48,72H184a8,8,0,0,0,0-16H48a8,8,0,0,0,0,16Zm56,112H48a8,8,0,0,0,0,16h56a8,8,0,0,0,0-16Zm125.66-21.66a8,8,0,0,0-11.32,0L192,188.69V112a8,8,0,0,0-16,0v76.69l-26.34-26.35a8,8,0,0,0-11.32,11.32l40,40a8,8,0,0,0,11.32,0l40-40A8,8,0,0,0,229.66,162.34Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M124,128a4,4,0,0,1-4,4H48a4,4,0,0,1,0-8h72A4,4,0,0,1,124,128ZM48,68H184a4,4,0,0,0,0-8H48a4,4,0,0,0,0,8Zm56,120H48a4,4,0,0,0,0,8h56a4,4,0,0,0,0-8Zm122.83-22.83a4,4,0,0,0-5.66,0L188,198.34V112a4,4,0,0,0-8,0v86.34l-33.17-33.17a4,4,0,0,0-5.66,5.66l40,40a4,4,0,0,0,5.66,0l40-40A4,4,0,0,0,226.83,165.17Z"}))]]),Cm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M140,32V64a12,12,0,0,1-24,0V32a12,12,0,0,1,24,0Zm33.25,62.75a12,12,0,0,0,8.49-3.52L204.37,68.6a12,12,0,0,0-17-17L164.77,74.26a12,12,0,0,0,8.48,20.49ZM224,116H192a12,12,0,0,0,0,24h32a12,12,0,0,0,0-24Zm-42.26,48.77a12,12,0,1,0-17,17l22.63,22.63a12,12,0,0,0,17-17ZM128,180a12,12,0,0,0-12,12v32a12,12,0,0,0,24,0V192A12,12,0,0,0,128,180ZM74.26,164.77,51.63,187.4a12,12,0,0,0,17,17l22.63-22.63a12,12,0,1,0-17-17ZM76,128a12,12,0,0,0-12-12H32a12,12,0,0,0,0,24H64A12,12,0,0,0,76,128ZM68.6,51.63a12,12,0,1,0-17,17L74.26,91.23a12,12,0,0,0,17-17Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z",opacity:"0.2"}),c.createElement("path",{d:"M136,32V64a8,8,0,0,1-16,0V32a8,8,0,0,1,16,0Zm37.25,58.75a8,8,0,0,0,5.66-2.35l22.63-22.62a8,8,0,0,0-11.32-11.32L167.6,77.09a8,8,0,0,0,5.65,13.66ZM224,120H192a8,8,0,0,0,0,16h32a8,8,0,0,0,0-16Zm-45.09,47.6a8,8,0,0,0-11.31,11.31l22.62,22.63a8,8,0,0,0,11.32-11.32ZM128,184a8,8,0,0,0-8,8v32a8,8,0,0,0,16,0V192A8,8,0,0,0,128,184ZM77.09,167.6,54.46,190.22a8,8,0,0,0,11.32,11.32L88.4,178.91A8,8,0,0,0,77.09,167.6ZM72,128a8,8,0,0,0-8-8H32a8,8,0,0,0,0,16H64A8,8,0,0,0,72,128ZM65.78,54.46A8,8,0,0,0,54.46,65.78L77.09,88.4A8,8,0,0,0,88.4,77.09Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm33.94,58.75,17-17a8,8,0,0,1,11.32,11.32l-17,17a8,8,0,0,1-11.31-11.31ZM48,136a8,8,0,0,1,0-16H72a8,8,0,0,1,0,16Zm46.06,37.25-17,17a8,8,0,0,1-11.32-11.32l17-17a8,8,0,0,1,11.31,11.31Zm0-79.19a8,8,0,0,1-11.31,0l-17-17A8,8,0,0,1,77.09,65.77l17,17A8,8,0,0,1,94.06,94.06ZM136,208a8,8,0,0,1-16,0V184a8,8,0,0,1,16,0Zm0-136a8,8,0,0,1-16,0V48a8,8,0,0,1,16,0Zm54.23,118.23a8,8,0,0,1-11.32,0l-17-17a8,8,0,0,1,11.31-11.31l17,17A8,8,0,0,1,190.23,190.23ZM208,136H184a8,8,0,0,1,0-16h24a8,8,0,0,1,0,16Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M134,32V64a6,6,0,0,1-12,0V32a6,6,0,0,1,12,0Zm39.25,56.75A6,6,0,0,0,177.5,87l22.62-22.63a6,6,0,0,0-8.48-8.48L169,78.5a6,6,0,0,0,4.24,10.25ZM224,122H192a6,6,0,0,0,0,12h32a6,6,0,0,0,0-12Zm-46.5,47A6,6,0,0,0,169,177.5l22.63,22.62a6,6,0,0,0,8.48-8.48ZM128,186a6,6,0,0,0-6,6v32a6,6,0,0,0,12,0V192A6,6,0,0,0,128,186ZM78.5,169,55.88,191.64a6,6,0,1,0,8.48,8.48L87,177.5A6,6,0,1,0,78.5,169ZM70,128a6,6,0,0,0-6-6H32a6,6,0,0,0,0,12H64A6,6,0,0,0,70,128ZM64.36,55.88a6,6,0,0,0-8.48,8.48L78.5,87A6,6,0,1,0,87,78.5Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M136,32V64a8,8,0,0,1-16,0V32a8,8,0,0,1,16,0Zm37.25,58.75a8,8,0,0,0,5.66-2.35l22.63-22.62a8,8,0,0,0-11.32-11.32L167.6,77.09a8,8,0,0,0,5.65,13.66ZM224,120H192a8,8,0,0,0,0,16h32a8,8,0,0,0,0-16Zm-45.09,47.6a8,8,0,0,0-11.31,11.31l22.62,22.63a8,8,0,0,0,11.32-11.32ZM128,184a8,8,0,0,0-8,8v32a8,8,0,0,0,16,0V192A8,8,0,0,0,128,184ZM77.09,167.6,54.46,190.22a8,8,0,0,0,11.32,11.32L88.4,178.91A8,8,0,0,0,77.09,167.6ZM72,128a8,8,0,0,0-8-8H32a8,8,0,0,0,0,16H64A8,8,0,0,0,72,128ZM65.78,54.46A8,8,0,0,0,54.46,65.78L77.09,88.4A8,8,0,0,0,88.4,77.09Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M132,32V64a4,4,0,0,1-8,0V32a4,4,0,0,1,8,0Zm41.25,54.75a4,4,0,0,0,2.83-1.18L198.71,63a4,4,0,0,0-5.66-5.66L170.43,79.92a4,4,0,0,0,2.82,6.83ZM224,124H192a4,4,0,0,0,0,8h32a4,4,0,0,0,0-8Zm-47.92,46.43a4,4,0,1,0-5.65,5.65l22.62,22.63a4,4,0,0,0,5.66-5.66ZM128,188a4,4,0,0,0-4,4v32a4,4,0,0,0,8,0V192A4,4,0,0,0,128,188ZM79.92,170.43,57.29,193.05A4,4,0,0,0,63,198.71l22.62-22.63a4,4,0,1,0-5.65-5.65ZM68,128a4,4,0,0,0-4-4H32a4,4,0,0,0,0,8H64A4,4,0,0,0,68,128ZM63,57.29A4,4,0,0,0,57.29,63L79.92,85.57a4,4,0,1,0,5.65-5.65Z"}))]]),Pm=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M246.15,133.18,146.83,33.86A19.85,19.85,0,0,0,132.69,28H40A12,12,0,0,0,28,40v92.69a19.85,19.85,0,0,0,5.86,14.14l99.32,99.32a20,20,0,0,0,28.28,0l84.69-84.69A20,20,0,0,0,246.15,133.18Zm-98.83,93.17L52,131V52h79l95.32,95.32ZM104,88A16,16,0,1,1,88,72,16,16,0,0,1,104,88Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M237.66,153,153,237.66a8,8,0,0,1-11.31,0L42.34,138.34A8,8,0,0,1,40,132.69V40h92.69a8,8,0,0,1,5.65,2.34l99.32,99.32A8,8,0,0,1,237.66,153Z",opacity:"0.2"}),c.createElement("path",{d:"M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63Zm-96,96L48,132.69V48h84.69L232,147.31ZM96,84A12,12,0,1,1,84,72,12,12,0,0,1,96,84Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63ZM84,96A12,12,0,1,1,96,84,12,12,0,0,1,84,96Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M241.91,137.42,142.59,38.1a13.94,13.94,0,0,0-9.9-4.1H40a6,6,0,0,0-6,6v92.69a13.94,13.94,0,0,0,4.1,9.9l99.32,99.32a14,14,0,0,0,19.8,0l84.69-84.69A14,14,0,0,0,241.91,137.42Zm-8.49,11.31-84.69,84.69a2,2,0,0,1-2.83,0L46.59,134.1a2,2,0,0,1-.59-1.41V46h86.69a2,2,0,0,1,1.41.59l99.32,99.31A2,2,0,0,1,233.42,148.73ZM94,84A10,10,0,1,1,84,74,10,10,0,0,1,94,84Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63Zm-96,96L48,132.69V48h84.69L232,147.31ZM96,84A12,12,0,1,1,84,72,12,12,0,0,1,96,84Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M240.49,138.83,141.17,39.51A11.93,11.93,0,0,0,132.69,36H40a4,4,0,0,0-4,4v92.69a11.93,11.93,0,0,0,3.51,8.48l99.32,99.32a12,12,0,0,0,17,0l84.69-84.69a12,12,0,0,0,0-17Zm-5.66,11.31-84.69,84.69a4,4,0,0,1-5.65,0L45.17,135.51A4,4,0,0,1,44,132.69V44h88.69a4,4,0,0,1,2.82,1.17l99.32,99.32A4,4,0,0,1,234.83,150.14ZM92,84a8,8,0,1,1-8-8A8,8,0,0,1,92,84Z"}))]]),_m=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208.49,191.51a12,12,0,0,1-17,17L128,145,64.49,208.49a12,12,0,0,1-17-17L111,128,47.51,64.49a12,12,0,0,1,17-17L128,111l63.51-63.52a12,12,0,0,1,17,17L145,128Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216,56V200a16,16,0,0,1-16,16H56a16,16,0,0,1-16-16V56A16,16,0,0,1,56,40H200A16,16,0,0,1,216,56Z",opacity:"0.2"}),c.createElement("path",{d:"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM181.66,170.34a8,8,0,0,1-11.32,11.32L128,139.31,85.66,181.66a8,8,0,0,1-11.32-11.32L116.69,128,74.34,85.66A8,8,0,0,1,85.66,74.34L128,116.69l42.34-42.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M204.24,195.76a6,6,0,1,1-8.48,8.48L128,136.49,60.24,204.24a6,6,0,0,1-8.48-8.48L119.51,128,51.76,60.24a6,6,0,0,1,8.48-8.48L128,119.51l67.76-67.75a6,6,0,0,1,8.48,8.48L136.49,128Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M202.83,197.17a4,4,0,0,1-5.66,5.66L128,133.66,58.83,202.83a4,4,0,0,1-5.66-5.66L122.34,128,53.17,58.83a4,4,0,0,1,5.66-5.66L128,122.34l69.17-69.17a4,4,0,1,1,5.66,5.66L133.66,128Z"}))]]),Tm=c.createContext({color:"currentColor",size:"1em",weight:"regular",mirrored:!1}),ve=c.forwardRef((e,t)=>{const{alt:n,color:r,size:o,weight:s,mirrored:a,children:i,weights:l,...u}=e,{color:d="currentColor",size:f,weight:p="regular",mirrored:m=!1,...g}=c.useContext(Tm);return c.createElement("svg",{ref:t,xmlns:"http://www.w3.org/2000/svg",width:o??f,height:o??f,fill:r??d,viewBox:"0 0 256 256",transform:a||m?"scale(-1, 1)":void 0,...g,...u},!!n&&c.createElement("title",null,n),i,l.get(s??p))});ve.displayName="IconBase";const ql=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:dm}));ql.displayName="BellIcon";const Am=ql,zl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:fm}));zl.displayName="CalendarIcon";const Mm=zl,Wl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:hm}));Wl.displayName="CaretDownIcon";const Om=Wl,Gl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:pm}));Gl.displayName="CaretLeftIcon";const ds=Gl,Kl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:mm}));Kl.displayName="CaretRightIcon";const fs=Kl,Ql=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:gm}));Ql.displayName="CheckIcon";const Im=Ql,Yl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:vm}));Yl.displayName="DotsThreeVerticalIcon";const Lm=Yl,Xl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:ym}));Xl.displayName="GearIcon";const Nm=Xl,Ma=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:xm}));Ma.displayName="GridFourIcon";const Dm=Ma,Jl=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:bm}));Jl.displayName="ListIcon";const eu=Jl,tu=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:wm}));tu.displayName="MagnifyingGlassIcon";const jm=tu,nu=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:Sm}));nu.displayName="PencilSimpleIcon";const Fm=nu,ru=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:Em}));ru.displayName="PushPinIcon";const km=ru,ou=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:Rm}));ou.displayName="SortAscendingIcon";const su=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:Cm}));su.displayName="SpinnerIcon";const $m=su,au=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:Pm}));au.displayName="TagIcon";const Hm=au,iu=c.forwardRef((e,t)=>c.createElement(ve,{ref:t,...e,weights:_m}));iu.displayName="XIcon";const cu=iu;function Bm(e){return h.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",...e,children:[h.jsx("circle",{cx:"6",cy:"6",r:"3"}),h.jsx("circle",{cx:"18",cy:"6",r:"3"}),h.jsx("circle",{cx:"6",cy:"18",r:"3"}),h.jsx("circle",{cx:"18",cy:"18",r:"3"}),h.jsx("circle",{cx:"12",cy:"12",r:"3"}),h.jsx("line",{x1:"8.5",y1:"7.5",x2:"10",y2:"10"}),h.jsx("line",{x1:"15.5",y1:"7.5",x2:"14",y2:"10"}),h.jsx("line",{x1:"8.5",y1:"16.5",x2:"10",y2:"14"}),h.jsx("line",{x1:"15.5",y1:"16.5",x2:"14",y2:"14"})]})}const tc=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,nc=a0,kt=(e,t)=>n=>{var r;if(t?.variants==null)return nc(e,n?.class,n?.className);const{variants:o,defaultVariants:s}=t,a=Object.keys(o).map(u=>{const d=n?.[u],f=s?.[u];if(d===null)return null;const p=tc(d)||tc(f);return o[u][p]}),i=n&&Object.entries(n).reduce((u,d)=>{let[f,p]=d;return p===void 0||(u[f]=p),u},{}),l=t==null||(r=t.compoundVariants)===null||r===void 0?void 0:r.reduce((u,d)=>{let{class:f,className:p,...m}=d;return Object.entries(m).every(g=>{let[v,y]=g;return Array.isArray(y)?y.includes({...s,...i}[v]):{...s,...i}[v]===y})?[...u,f,p]:u},[]);return nc(e,a,l,n?.class,n?.className)},Vm=kt(["inline-flex","items-center","justify-center","gap-2","font-bold","transition-all","duration-200","border-2","border-border","disabled:pointer-events-none","disabled:opacity-50","hover:shadow-sketchy","active:translate-x-0.5","active:translate-y-0.5","active:shadow-none"],{variants:{variant:{primary:["bg-cta","text-fg-on-filled","hover:bg-cta-hover"],ghost:["border-transparent","hover:border-border","hover:bg-ghost"],danger:["bg-accent-danger","text-fg-on-filled","hover:bg-accent-danger-hover"],"soft-success":["bg-accent-soft-success","text-fg-default","hover:bg-accent-soft-success-hover"],"soft-danger":["bg-accent-soft-danger","text-fg-default","hover:bg-accent-soft-danger-hover"]},size:{sm:"h-8 px-3 text-sm rounded-[12px_4px_13px_3px/4px_10px_4px_12px]",md:"h-10 px-4 text-sm rounded-[15px_4px_16px_4px/4px_12px_5px_14px]",lg:"h-12 px-6 text-base rounded-[18px_5px_19px_5px/5px_14px_6px_16px]",icon:"h-10 w-10 rounded-[12px_4px_13px_3px/4px_10px_4px_12px]","icon-sm":"h-8 w-8 rounded-[10px_3px_11px_3px/3px_8px_3px_10px]"}},defaultVariants:{variant:"primary",size:"md"}}),Lt=c.forwardRef(({className:e,variant:t,size:n,asChild:r=!1,isLoading:o,children:s,disabled:a,...i},l)=>{const u=r?sm:"button";return h.jsx(u,{ref:l,className:Vm({variant:t,size:n,className:e}),disabled:a||o,...i,children:o?h.jsxs(h.Fragment,{children:[h.jsx($m,{className:"animate-spin h-4 w-4"}),s]}):s})});Lt.displayName="Button";function B(e,t,{checkForDefaultPrevented:n=!0}={}){return function(o){if(e?.(o),n===!1||!o.defaultPrevented)return t?.(o)}}function Um(e,t){const n=c.createContext(t),r=s=>{const{children:a,...i}=s,l=c.useMemo(()=>i,Object.values(i));return h.jsx(n.Provider,{value:l,children:a})};r.displayName=e+"Provider";function o(s){const a=c.useContext(n);if(a)return a;if(t!==void 0)return t;throw new Error(`\`${s}\` must be used within \`${e}\``)}return[r,o]}function St(e,t=[]){let n=[];function r(s,a){const i=c.createContext(a),l=n.length;n=[...n,a];const u=f=>{const{scope:p,children:m,...g}=f,v=p?.[e]?.[l]||i,y=c.useMemo(()=>g,Object.values(g));return h.jsx(v.Provider,{value:y,children:m})};u.displayName=s+"Provider";function d(f,p){const m=p?.[e]?.[l]||i,g=c.useContext(m);if(g)return g;if(a!==void 0)return a;throw new Error(`\`${f}\` must be used within \`${s}\``)}return[u,d]}const o=()=>{const s=n.map(a=>c.createContext(a));return function(i){const l=i?.[e]||s;return c.useMemo(()=>({[`__scope${e}`]:{...i,[e]:l}}),[i,l])}};return o.scopeName=e,[r,Zm(o,...t)]}function Zm(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(o=>({useScope:o(),scopeName:o.scopeName}));return function(s){const a=r.reduce((i,{useScope:l,scopeName:u})=>{const f=l(s)[`__scope${u}`];return{...i,...f}},{});return c.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])}};return n.scopeName=t.scopeName,n}var Ee=globalThis?.document?c.useLayoutEffect:()=>{},qm=Eo[" useId ".trim().toString()]||(()=>{}),zm=0;function ct(e){const[t,n]=c.useState(qm());return Ee(()=>{n(r=>r??String(zm++))},[e]),t?`radix-${t}`:""}var Wm=Eo[" useInsertionEffect ".trim().toString()]||Ee;function wt({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){const[o,s,a]=Gm({defaultProp:t,onChange:n}),i=e!==void 0,l=i?e:o;{const d=c.useRef(e!==void 0);c.useEffect(()=>{const f=d.current;f!==i&&console.warn(`${r} is changing from ${f?"controlled":"uncontrolled"} to ${i?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),d.current=i},[i,r])}const u=c.useCallback(d=>{if(i){const f=Km(d)?d(e):d;f!==e&&a.current?.(f)}else s(d)},[i,e,s,a]);return[l,u]}function Gm({defaultProp:e,onChange:t}){const[n,r]=c.useState(e),o=c.useRef(n),s=c.useRef(t);return Wm(()=>{s.current=t},[t]),c.useEffect(()=>{o.current!==n&&(s.current?.(n),o.current=n)},[n,o]),[n,r,s]}function Km(e){return typeof e=="function"}function Cn(e){const t=Qm(e),n=c.forwardRef((r,o)=>{const{children:s,...a}=r,i=c.Children.toArray(s),l=i.find(Xm);if(l){const u=l.props.children,d=i.map(f=>f===l?c.Children.count(u)>1?c.Children.only(null):c.isValidElement(u)?u.props.children:null:f);return h.jsx(t,{...a,ref:o,children:c.isValidElement(u)?c.cloneElement(u,void 0,d):null})}return h.jsx(t,{...a,ref:o,children:s})});return n.displayName=`${e}.Slot`,n}function Qm(e){const t=c.forwardRef((n,r)=>{const{children:o,...s}=n;if(c.isValidElement(o)){const a=eg(o),i=Jm(s,o.props);return o.type!==c.Fragment&&(i.ref=r?pr(r,a):a),c.cloneElement(o,i)}return c.Children.count(o)>1?c.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var lu=Symbol("radix.slottable");function Ym(e){const t=({children:n})=>h.jsx(h.Fragment,{children:n});return t.displayName=`${e}.Slottable`,t.__radixId=lu,t}function Xm(e){return c.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===lu}function Jm(e,t){const n={...t};for(const r in t){const o=e[r],s=t[r];/^on[A-Z]/.test(r)?o&&s?n[r]=(...i)=>{const l=s(...i);return o(...i),l}:o&&(n[r]=o):r==="style"?n[r]={...o,...s}:r==="className"&&(n[r]=[o,s].filter(Boolean).join(" "))}return{...e,...n}}function eg(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var tg=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],te=tg.reduce((e,t)=>{const n=Cn(`Primitive.${t}`),r=c.forwardRef((o,s)=>{const{asChild:a,...i}=o,l=a?n:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),h.jsx(l,{...i,ref:s})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function uu(e,t){e&&yt.flushSync(()=>e.dispatchEvent(t))}function lt(e){const t=c.useRef(e);return c.useEffect(()=>{t.current=e}),c.useMemo(()=>(...n)=>t.current?.(...n),[])}function ng(e,t=globalThis?.document){const n=lt(e);c.useEffect(()=>{const r=o=>{o.key==="Escape"&&n(o)};return t.addEventListener("keydown",r,{capture:!0}),()=>t.removeEventListener("keydown",r,{capture:!0})},[n,t])}var rg="DismissableLayer",Us="dismissableLayer.update",og="dismissableLayer.pointerDownOutside",sg="dismissableLayer.focusOutside",rc,du=c.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),mr=c.forwardRef((e,t)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:s,onInteractOutside:a,onDismiss:i,...l}=e,u=c.useContext(du),[d,f]=c.useState(null),p=d?.ownerDocument??globalThis?.document,[,m]=c.useState({}),g=oe(t,R=>f(R)),v=Array.from(u.layers),[y]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),x=v.indexOf(y),b=d?v.indexOf(d):-1,w=u.layersWithOutsidePointerEventsDisabled.size>0,S=b>=x,P=cg(R=>{const E=R.target,A=[...u.branches].some(L=>L.contains(E));!S||A||(o?.(R),a?.(R),R.defaultPrevented||i?.())},p),O=lg(R=>{const E=R.target;[...u.branches].some(L=>L.contains(E))||(s?.(R),a?.(R),R.defaultPrevented||i?.())},p);return ng(R=>{b===u.layers.size-1&&(r?.(R),!R.defaultPrevented&&i&&(R.preventDefault(),i()))},p),c.useEffect(()=>{if(d)return n&&(u.layersWithOutsidePointerEventsDisabled.size===0&&(rc=p.body.style.pointerEvents,p.body.style.pointerEvents="none"),u.layersWithOutsidePointerEventsDisabled.add(d)),u.layers.add(d),oc(),()=>{n&&u.layersWithOutsidePointerEventsDisabled.size===1&&(p.body.style.pointerEvents=rc)}},[d,p,n,u]),c.useEffect(()=>()=>{d&&(u.layers.delete(d),u.layersWithOutsidePointerEventsDisabled.delete(d),oc())},[d,u]),c.useEffect(()=>{const R=()=>m({});return document.addEventListener(Us,R),()=>document.removeEventListener(Us,R)},[]),h.jsx(te.div,{...l,ref:g,style:{pointerEvents:w?S?"auto":"none":void 0,...e.style},onFocusCapture:B(e.onFocusCapture,O.onFocusCapture),onBlurCapture:B(e.onBlurCapture,O.onBlurCapture),onPointerDownCapture:B(e.onPointerDownCapture,P.onPointerDownCapture)})});mr.displayName=rg;var ag="DismissableLayerBranch",ig=c.forwardRef((e,t)=>{const n=c.useContext(du),r=c.useRef(null),o=oe(t,r);return c.useEffect(()=>{const s=r.current;if(s)return n.branches.add(s),()=>{n.branches.delete(s)}},[n.branches]),h.jsx(te.div,{...e,ref:o})});ig.displayName=ag;function cg(e,t=globalThis?.document){const n=lt(e),r=c.useRef(!1),o=c.useRef(()=>{});return c.useEffect(()=>{const s=i=>{if(i.target&&!r.current){let l=function(){fu(og,n,u,{discrete:!0})};const u={originalEvent:i};i.pointerType==="touch"?(t.removeEventListener("click",o.current),o.current=l,t.addEventListener("click",o.current,{once:!0})):l()}else t.removeEventListener("click",o.current);r.current=!1},a=window.setTimeout(()=>{t.addEventListener("pointerdown",s)},0);return()=>{window.clearTimeout(a),t.removeEventListener("pointerdown",s),t.removeEventListener("click",o.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function lg(e,t=globalThis?.document){const n=lt(e),r=c.useRef(!1);return c.useEffect(()=>{const o=s=>{s.target&&!r.current&&fu(sg,n,{originalEvent:s},{discrete:!1})};return t.addEventListener("focusin",o),()=>t.removeEventListener("focusin",o)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function oc(){const e=new CustomEvent(Us);document.dispatchEvent(e)}function fu(e,t,n,{discrete:r}){const o=n.originalEvent.target,s=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&o.addEventListener(e,t,{once:!0}),r?uu(o,s):o.dispatchEvent(s)}var hs="focusScope.autoFocusOnMount",ps="focusScope.autoFocusOnUnmount",sc={bubbles:!1,cancelable:!0},ug="FocusScope",Lo=c.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:s,...a}=e,[i,l]=c.useState(null),u=lt(o),d=lt(s),f=c.useRef(null),p=oe(t,v=>l(v)),m=c.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;c.useEffect(()=>{if(r){let v=function(w){if(m.paused||!i)return;const S=w.target;i.contains(S)?f.current=S:Tt(f.current,{select:!0})},y=function(w){if(m.paused||!i)return;const S=w.relatedTarget;S!==null&&(i.contains(S)||Tt(f.current,{select:!0}))},x=function(w){if(document.activeElement===document.body)for(const P of w)P.removedNodes.length>0&&Tt(i)};document.addEventListener("focusin",v),document.addEventListener("focusout",y);const b=new MutationObserver(x);return i&&b.observe(i,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",v),document.removeEventListener("focusout",y),b.disconnect()}}},[r,i,m.paused]),c.useEffect(()=>{if(i){ic.add(m);const v=document.activeElement;if(!i.contains(v)){const x=new CustomEvent(hs,sc);i.addEventListener(hs,u),i.dispatchEvent(x),x.defaultPrevented||(dg(gg(hu(i)),{select:!0}),document.activeElement===v&&Tt(i))}return()=>{i.removeEventListener(hs,u),setTimeout(()=>{const x=new CustomEvent(ps,sc);i.addEventListener(ps,d),i.dispatchEvent(x),x.defaultPrevented||Tt(v??document.body,{select:!0}),i.removeEventListener(ps,d),ic.remove(m)},0)}}},[i,u,d,m]);const g=c.useCallback(v=>{if(!n&&!r||m.paused)return;const y=v.key==="Tab"&&!v.altKey&&!v.ctrlKey&&!v.metaKey,x=document.activeElement;if(y&&x){const b=v.currentTarget,[w,S]=fg(b);w&&S?!v.shiftKey&&x===S?(v.preventDefault(),n&&Tt(w,{select:!0})):v.shiftKey&&x===w&&(v.preventDefault(),n&&Tt(S,{select:!0})):x===b&&v.preventDefault()}},[n,r,m.paused]);return h.jsx(te.div,{tabIndex:-1,...a,ref:p,onKeyDown:g})});Lo.displayName=ug;function dg(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(Tt(r,{select:t}),document.activeElement!==n)return}function fg(e){const t=hu(e),n=ac(t,e),r=ac(t.reverse(),e);return[n,r]}function hu(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const o=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||o?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function ac(e,t){for(const n of e)if(!hg(n,{upTo:t}))return n}function hg(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function pg(e){return e instanceof HTMLInputElement&&"select"in e}function Tt(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&pg(e)&&t&&e.select()}}var ic=mg();function mg(){let e=[];return{add(t){const n=e[0];t!==n&&n?.pause(),e=cc(e,t),e.unshift(t)},remove(t){e=cc(e,t),e[0]?.resume()}}}function cc(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function gg(e){return e.filter(t=>t.tagName!=="A")}var vg="Portal",gr=c.forwardRef((e,t)=>{const{container:n,...r}=e,[o,s]=c.useState(!1);Ee(()=>s(!0),[]);const a=n||o&&globalThis?.document?.body;return a?i0.createPortal(h.jsx(te.div,{...r,ref:t}),a):null});gr.displayName=vg;function yg(e,t){return c.useReducer((n,r)=>t[n][r]??n,e)}var dt=e=>{const{present:t,children:n}=e,r=xg(t),o=typeof n=="function"?n({present:r.isPresent}):c.Children.only(n),s=oe(r.ref,bg(o));return typeof n=="function"||r.isPresent?c.cloneElement(o,{ref:s}):null};dt.displayName="Presence";function xg(e){const[t,n]=c.useState(),r=c.useRef(null),o=c.useRef(e),s=c.useRef("none"),a=e?"mounted":"unmounted",[i,l]=yg(a,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return c.useEffect(()=>{const u=kr(r.current);s.current=i==="mounted"?u:"none"},[i]),Ee(()=>{const u=r.current,d=o.current;if(d!==e){const p=s.current,m=kr(u);e?l("MOUNT"):m==="none"||u?.display==="none"?l("UNMOUNT"):l(d&&p!==m?"ANIMATION_OUT":"UNMOUNT"),o.current=e}},[e,l]),Ee(()=>{if(t){let u;const d=t.ownerDocument.defaultView??window,f=m=>{const v=kr(r.current).includes(CSS.escape(m.animationName));if(m.target===t&&v&&(l("ANIMATION_END"),!o.current)){const y=t.style.animationFillMode;t.style.animationFillMode="forwards",u=d.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=y)})}},p=m=>{m.target===t&&(s.current=kr(r.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",f),t.addEventListener("animationend",f),()=>{d.clearTimeout(u),t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",f),t.removeEventListener("animationend",f)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(i),ref:c.useCallback(u=>{r.current=u?getComputedStyle(u):null,n(u)},[])}}function kr(e){return e?.animationName||"none"}function bg(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var ms=0;function Oa(){c.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??lc()),document.body.insertAdjacentElement("beforeend",e[1]??lc()),ms++,()=>{ms===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),ms--}},[])}function lc(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var wg=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},gn=new WeakMap,$r=new WeakMap,Hr={},gs=0,pu=function(e){return e&&(e.host||pu(e.parentNode))},Sg=function(e,t){return t.map(function(n){if(e.contains(n))return n;var r=pu(n);return r&&e.contains(r)?r:(console.error("aria-hidden",n,"in not contained inside",e,". Doing nothing"),null)}).filter(function(n){return!!n})},Eg=function(e,t,n,r){var o=Sg(t,Array.isArray(e)?e:[e]);Hr[n]||(Hr[n]=new WeakMap);var s=Hr[n],a=[],i=new Set,l=new Set(o),u=function(f){!f||i.has(f)||(i.add(f),u(f.parentNode))};o.forEach(u);var d=function(f){!f||l.has(f)||Array.prototype.forEach.call(f.children,function(p){if(i.has(p))d(p);else try{var m=p.getAttribute(r),g=m!==null&&m!=="false",v=(gn.get(p)||0)+1,y=(s.get(p)||0)+1;gn.set(p,v),s.set(p,y),a.push(p),v===1&&g&&$r.set(p,!0),y===1&&p.setAttribute(n,"true"),g||p.setAttribute(r,"true")}catch(x){console.error("aria-hidden: cannot operate on ",p,x)}})};return d(t),i.clear(),gs++,function(){a.forEach(function(f){var p=gn.get(f)-1,m=s.get(f)-1;gn.set(f,p),s.set(f,m),p||($r.has(f)||f.removeAttribute(r),$r.delete(f)),m||f.removeAttribute(n)}),gs--,gs||(gn=new WeakMap,gn=new WeakMap,$r=new WeakMap,Hr={})}},Ia=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=wg(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live], script"))),Eg(r,o,n,"aria-hidden")):function(){return null}},No="Dialog",[mu]=St(No),[Rg,rt]=mu(No),gu=e=>{const{__scopeDialog:t,children:n,open:r,defaultOpen:o,onOpenChange:s,modal:a=!0}=e,i=c.useRef(null),l=c.useRef(null),[u,d]=wt({prop:r,defaultProp:o??!1,onChange:s,caller:No});return h.jsx(Rg,{scope:t,triggerRef:i,contentRef:l,contentId:ct(),titleId:ct(),descriptionId:ct(),open:u,onOpenChange:d,onOpenToggle:c.useCallback(()=>d(f=>!f),[d]),modal:a,children:n})};gu.displayName=No;var vu="DialogTrigger",Cg=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=rt(vu,n),s=oe(t,o.triggerRef);return h.jsx(te.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":Da(o.open),...r,ref:s,onClick:B(e.onClick,o.onOpenToggle)})});Cg.displayName=vu;var La="DialogPortal",[Pg,yu]=mu(La,{forceMount:void 0}),xu=e=>{const{__scopeDialog:t,forceMount:n,children:r,container:o}=e,s=rt(La,t);return h.jsx(Pg,{scope:t,forceMount:n,children:c.Children.map(r,a=>h.jsx(dt,{present:n||s.open,children:h.jsx(gr,{asChild:!0,container:o,children:a})}))})};xu.displayName=La;var fo="DialogOverlay",bu=c.forwardRef((e,t)=>{const n=yu(fo,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,s=rt(fo,e.__scopeDialog);return s.modal?h.jsx(dt,{present:r||s.open,children:h.jsx(Tg,{...o,ref:t})}):null});bu.displayName=fo;var _g=Cn("DialogOverlay.RemoveScroll"),Tg=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=rt(fo,n);return h.jsx(pa,{as:_g,allowPinchZoom:!0,shards:[o.contentRef],children:h.jsx(te.div,{"data-state":Da(o.open),...r,ref:t,style:{pointerEvents:"auto",...r.style}})})}),on="DialogContent",wu=c.forwardRef((e,t)=>{const n=yu(on,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,s=rt(on,e.__scopeDialog);return h.jsx(dt,{present:r||s.open,children:s.modal?h.jsx(Ag,{...o,ref:t}):h.jsx(Mg,{...o,ref:t})})});wu.displayName=on;var Ag=c.forwardRef((e,t)=>{const n=rt(on,e.__scopeDialog),r=c.useRef(null),o=oe(t,n.contentRef,r);return c.useEffect(()=>{const s=r.current;if(s)return Ia(s)},[]),h.jsx(Su,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:B(e.onCloseAutoFocus,s=>{s.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:B(e.onPointerDownOutside,s=>{const a=s.detail.originalEvent,i=a.button===0&&a.ctrlKey===!0;(a.button===2||i)&&s.preventDefault()}),onFocusOutside:B(e.onFocusOutside,s=>s.preventDefault())})}),Mg=c.forwardRef((e,t)=>{const n=rt(on,e.__scopeDialog),r=c.useRef(!1),o=c.useRef(!1);return h.jsx(Su,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:s=>{e.onCloseAutoFocus?.(s),s.defaultPrevented||(r.current||n.triggerRef.current?.focus(),s.preventDefault()),r.current=!1,o.current=!1},onInteractOutside:s=>{e.onInteractOutside?.(s),s.defaultPrevented||(r.current=!0,s.detail.originalEvent.type==="pointerdown"&&(o.current=!0));const a=s.target;n.triggerRef.current?.contains(a)&&s.preventDefault(),s.detail.originalEvent.type==="focusin"&&o.current&&s.preventDefault()}})}),Su=c.forwardRef((e,t)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:s,...a}=e,i=rt(on,n),l=c.useRef(null),u=oe(t,l);return Oa(),h.jsxs(h.Fragment,{children:[h.jsx(Lo,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:s,children:h.jsx(mr,{role:"dialog",id:i.contentId,"aria-describedby":i.descriptionId,"aria-labelledby":i.titleId,"data-state":Da(i.open),...a,ref:u,onDismiss:()=>i.onOpenChange(!1)})}),h.jsxs(h.Fragment,{children:[h.jsx(Ig,{titleId:i.titleId}),h.jsx(Ng,{contentRef:l,descriptionId:i.descriptionId})]})]})}),Na="DialogTitle",Eu=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=rt(Na,n);return h.jsx(te.h2,{id:o.titleId,...r,ref:t})});Eu.displayName=Na;var Ru="DialogDescription",Og=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=rt(Ru,n);return h.jsx(te.p,{id:o.descriptionId,...r,ref:t})});Og.displayName=Ru;var Cu="DialogClose",Pu=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=rt(Cu,n);return h.jsx(te.button,{type:"button",...r,ref:t,onClick:B(e.onClick,()=>o.onOpenChange(!1))})});Pu.displayName=Cu;function Da(e){return e?"open":"closed"}var _u="DialogTitleWarning",[Jw,Tu]=Um(_u,{contentName:on,titleName:Na,docsSlug:"dialog"}),Ig=({titleId:e})=>{const t=Tu(_u),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
|
|
3
|
-
|
|
4
|
-
If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
5
|
-
|
|
6
|
-
For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return c.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},Lg="DialogDescriptionWarning",Ng=({contentRef:e,descriptionId:t})=>{const r=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${Tu(Lg).contentName}}.`;return c.useEffect(()=>{const o=e.current?.getAttribute("aria-describedby");t&&o&&(document.getElementById(t)||console.warn(r))},[r,e,t]),null},Dg=gu,jg=xu,Au=bu,Mu=wu,Fg=Eu,kg=Pu;const $g=Dg,Hg=jg,Bg=kg,Ou=c.forwardRef(({className:e,...t},n)=>h.jsx(Au,{ref:n,className:["fixed","inset-0","z-[1100]","bg-black/50","data-[state=open]:animate-in","data-[state=closed]:animate-out","data-[state=closed]:fade-out-0","data-[state=open]:fade-in-0",e].filter(Boolean).join(" "),...t}));Ou.displayName=Au.displayName;const Iu=c.forwardRef(({className:e,children:t,...n},r)=>h.jsxs(Hg,{children:[h.jsx(Ou,{}),h.jsx(Mu,{ref:r,className:["fixed","left-1/2","top-1/2","z-[1100]","-translate-x-1/2","-translate-y-1/2","w-full","max-w-[640px]","bg-surface","border-2","border-border","shadow-sketchy-lg","data-[state=open]:animate-in","data-[state=closed]:animate-out","data-[state=closed]:fade-out-0","data-[state=open]:fade-in-0","data-[state=closed]:zoom-out-95","data-[state=open]:zoom-in-95","mx-4","rounded-[24px_8px_25px_7px/8px_20px_8px_22px]",e].filter(Boolean).join(" "),...n,children:t})]}));Iu.displayName=Mu.displayName;const Lu=({title:e,onClose:t,className:n})=>h.jsxs("div",{className:["flex","items-center","justify-between","p-4","text-lg","font-bold",n].filter(Boolean).join(" "),children:[h.jsx(Fg,{className:"text-lg font-bold",children:e}),t&&h.jsx(Bg,{asChild:!0,children:h.jsx("button",{type:"button",className:"w-11 h-11 flex items-center justify-center cursor-pointer hover:bg-hover rounded-[10px_3px_11px_3px/3px_8px_3px_10px] transition-colors",onClick:t,children:h.jsx(cu,{className:"w-5 h-5"})})})]});Lu.displayName="DialogHeader";const Nu=c.forwardRef(({className:e,...t},n)=>h.jsx("div",{ref:n,className:["p-4",e].filter(Boolean).join(" "),...t}));Nu.displayName="DialogBody";const Du=c.forwardRef(({className:e,...t},n)=>h.jsx("div",{ref:n,className:["flex","items-center","justify-end","p-4",e].filter(Boolean).join(" "),...t}));Du.displayName="DialogFooter";const Gt=({isOpen:e,onClose:t,children:n})=>h.jsx($g,{open:e,onOpenChange:r=>!r&&t(),children:h.jsx(Iu,{children:n})});Gt.Header=Lu;Gt.Body=Nu;Gt.Footer=Du;const ju=c.createContext(null);function Vg({children:e}){const[t,n]=c.useState(!1),[r,o]=c.useState(""),s=c.useRef(null),a=c.useCallback(u=>(o(u),n(!0),new Promise(d=>{s.current=d})),[]),i=()=>{s.current?.(!0),s.current=null,n(!1)},l=()=>{s.current?.(!1),s.current=null,n(!1)};return h.jsxs(ju.Provider,{value:{confirm:a},children:[e,h.jsxs(Gt,{isOpen:t,onClose:l,children:[h.jsx(Gt.Header,{title:"Confirm",onClose:l}),h.jsx(Gt.Body,{children:h.jsx("p",{className:"text-sm font-bold",children:r})}),h.jsx(Gt.Footer,{children:h.jsxs("div",{className:"flex justify-end gap-2",children:[h.jsx(Lt,{variant:"ghost",size:"sm",onClick:l,children:"Cancel"}),h.jsx(Lt,{variant:"primary",size:"sm",onClick:i,children:"OK"})]})})]})]})}function Fu(){const e=c.useContext(ju);if(!e)throw new Error("useConfirm must be used within a ConfirmProvider");return e.confirm}const ku=c.createContext(null);let Ug=0;function Zg({children:e}){const[t,n]=c.useState([]),r=c.useRef(new Map),o=c.useCallback(s=>{const a=Ug++;n(l=>[...l,{id:a,message:s}]);const i=setTimeout(()=>{n(l=>l.filter(u=>u.id!==a)),r.current.delete(a)},3e3);r.current.set(a,i)},[]);return c.useEffect(()=>{const s=r.current;return()=>{s.forEach(a=>clearTimeout(a))}},[]),h.jsxs(ku.Provider,{value:{toast:o},children:[e,t.length>0&&h.jsx("div",{className:"fixed bottom-6 left-1/2 -translate-x-1/2 z-[1200] flex flex-col gap-2 items-center",children:t.map(s=>h.jsx("div",{className:"px-5 py-3 bg-surface border-2 border-border rounded-[12px_4px_13px_3px/4px_10px_4px_12px] shadow-sketchy text-sm font-bold text-fg-default animate-slide-in-from-bottom whitespace-nowrap",children:s.message},s.id))})]})}function qg(){const e=c.useContext(ku);if(!e)throw new Error("useToast must be used within a ToastProvider");return e.toast}const zg=new V1({defaultOptions:{queries:{refetchOnWindowFocus:!1,retry:!1}}}),Wg=({children:e})=>h.jsx(U1,{client:zg,children:h.jsx(Vg,{children:h.jsx(Zg,{children:e})})});function $u({name:e}){return h.jsx("div",{className:"bg-pastel-teal-200 dark:bg-muted text-fg-default text-xs font-bold border border-border-secondary px-2 py-1 rounded-[8px_3px_9px_2px/3px_6px_3px_7px]",children:e})}const Gg={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"},uc={sm:10,md:12,lg:14},Hu=c.forwardRef(({className:e,size:t="md",checked:n,disabled:r,...o},s)=>h.jsxs("label",{className:["relative inline-flex items-center justify-center cursor-pointer",r&&"cursor-not-allowed opacity-50",e].filter(Boolean).join(" "),children:[h.jsx("input",{ref:s,type:"checkbox",checked:n,disabled:r,className:"sr-only peer",...o}),h.jsx("span",{className:[Gg[t],"flex items-center justify-center","border-2 border-border","rounded-[4px_2px_5px_2px/2px_4px_2px_4px]","bg-surface","transition-all duration-200","peer-checked:bg-accent-primary","peer-focus:shadow-sketchy"].join(" "),children:n&&h.jsx(Im,{width:uc[t],height:uc[t],className:"text-fg-on-accent",weight:"bold"})})]}));Hu.displayName="Checkbox";function ja(e){const t=e+"CollectionProvider",[n,r]=St(t),[o,s]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=v=>{const{scope:y,children:x}=v,b=W.useRef(null),w=W.useRef(new Map).current;return h.jsx(o,{scope:y,itemMap:w,collectionRef:b,children:x})};a.displayName=t;const i=e+"CollectionSlot",l=Cn(i),u=W.forwardRef((v,y)=>{const{scope:x,children:b}=v,w=s(i,x),S=oe(y,w.collectionRef);return h.jsx(l,{ref:S,children:b})});u.displayName=i;const d=e+"CollectionItemSlot",f="data-radix-collection-item",p=Cn(d),m=W.forwardRef((v,y)=>{const{scope:x,children:b,...w}=v,S=W.useRef(null),P=oe(y,S),O=s(d,x);return W.useEffect(()=>(O.itemMap.set(S,{ref:S,...w}),()=>{O.itemMap.delete(S)})),h.jsx(p,{[f]:"",ref:P,children:b})});m.displayName=d;function g(v){const y=s(e+"CollectionConsumer",v);return W.useCallback(()=>{const b=y.collectionRef.current;if(!b)return[];const w=Array.from(b.querySelectorAll(`[${f}]`));return Array.from(y.itemMap.values()).sort((O,R)=>w.indexOf(O.ref.current)-w.indexOf(R.ref.current))},[y.collectionRef,y.itemMap])}return[{Provider:a,Slot:u,ItemSlot:m},g,r]}var Kg=c.createContext(void 0);function Do(e){const t=c.useContext(Kg);return e||t||"ltr"}var Qg="Arrow",Bu=c.forwardRef((e,t)=>{const{children:n,width:r=10,height:o=5,...s}=e;return h.jsx(te.svg,{...s,ref:t,width:r,height:o,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?n:h.jsx("polygon",{points:"0,0 30,0 15,10"})})});Bu.displayName=Qg;var Yg=Bu;function Xg(e){const[t,n]=c.useState(void 0);return Ee(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(o=>{if(!Array.isArray(o)||!o.length)return;const s=o[0];let a,i;if("borderBoxSize"in s){const l=s.borderBoxSize,u=Array.isArray(l)?l[0]:l;a=u.inlineSize,i=u.blockSize}else a=e.offsetWidth,i=e.offsetHeight;n({width:a,height:i})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}var Fa="Popper",[Vu,Mn]=St(Fa),[Jg,Uu]=Vu(Fa),Zu=e=>{const{__scopePopper:t,children:n}=e,[r,o]=c.useState(null);return h.jsx(Jg,{scope:t,anchor:r,onAnchorChange:o,children:n})};Zu.displayName=Fa;var qu="PopperAnchor",zu=c.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...o}=e,s=Uu(qu,n),a=c.useRef(null),i=oe(t,a),l=c.useRef(null);return c.useEffect(()=>{const u=l.current;l.current=r?.current||a.current,u!==l.current&&s.onAnchorChange(l.current)}),r?null:h.jsx(te.div,{...o,ref:i})});zu.displayName=qu;var ka="PopperContent",[e2,t2]=Vu(ka),Wu=c.forwardRef((e,t)=>{const{__scopePopper:n,side:r="bottom",sideOffset:o=0,align:s="center",alignOffset:a=0,arrowPadding:i=0,avoidCollisions:l=!0,collisionBoundary:u=[],collisionPadding:d=0,sticky:f="partial",hideWhenDetached:p=!1,updatePositionStrategy:m="optimized",onPlaced:g,...v}=e,y=Uu(ka,n),[x,b]=c.useState(null),w=oe(t,k=>b(k)),[S,P]=c.useState(null),O=Xg(S),R=O?.width??0,E=O?.height??0,A=r+(s!=="center"?"-"+s:""),L=typeof d=="number"?d:{top:0,right:0,bottom:0,left:0,...d},T=Array.isArray(u)?u:[u],F=T.length>0,V={padding:L,boundary:T.filter(r2),altBoundary:F},{refs:N,floatingStyles:D,placement:_,isPositioned:j,middlewareData:I}=c0({strategy:"fixed",placement:A,whileElementsMounted:(...k)=>m0(...k,{animationFrame:m==="always"}),elements:{reference:y.anchor},middleware:[l0({mainAxis:o+E,alignmentAxis:a}),l&&u0({mainAxis:!0,crossAxis:!1,limiter:f==="partial"?g0():void 0,...V}),l&&d0({...V}),f0({...V,apply:({elements:k,rects:G,availableWidth:ee,availableHeight:$})=>{const{width:Y,height:J}=G.reference,se=k.floating.style;se.setProperty("--radix-popper-available-width",`${ee}px`),se.setProperty("--radix-popper-available-height",`${$}px`),se.setProperty("--radix-popper-anchor-width",`${Y}px`),se.setProperty("--radix-popper-anchor-height",`${J}px`)}}),S&&h0({element:S,padding:i}),o2({arrowWidth:R,arrowHeight:E}),p&&p0({strategy:"referenceHidden",...V})]}),[M,H]=Qu(_),U=lt(g);Ee(()=>{j&&U?.()},[j,U]);const Z=I.arrow?.x,K=I.arrow?.y,q=I.arrow?.centerOffset!==0,[Q,ne]=c.useState();return Ee(()=>{x&&ne(window.getComputedStyle(x).zIndex)},[x]),h.jsx("div",{ref:N.setFloating,"data-radix-popper-content-wrapper":"",style:{...D,transform:j?D.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:Q,"--radix-popper-transform-origin":[I.transformOrigin?.x,I.transformOrigin?.y].join(" "),...I.hide?.referenceHidden&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:h.jsx(e2,{scope:n,placedSide:M,onArrowChange:P,arrowX:Z,arrowY:K,shouldHideArrow:q,children:h.jsx(te.div,{"data-side":M,"data-align":H,...v,ref:w,style:{...v.style,animation:j?void 0:"none"}})})})});Wu.displayName=ka;var Gu="PopperArrow",n2={top:"bottom",right:"left",bottom:"top",left:"right"},Ku=c.forwardRef(function(t,n){const{__scopePopper:r,...o}=t,s=t2(Gu,r),a=n2[s.placedSide];return h.jsx("span",{ref:s.onArrowChange,style:{position:"absolute",left:s.arrowX,top:s.arrowY,[a]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[s.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[s.placedSide],visibility:s.shouldHideArrow?"hidden":void 0},children:h.jsx(Yg,{...o,ref:n,style:{...o.style,display:"block"}})})});Ku.displayName=Gu;function r2(e){return e!==null}var o2=e=>({name:"transformOrigin",options:e,fn(t){const{placement:n,rects:r,middlewareData:o}=t,a=o.arrow?.centerOffset!==0,i=a?0:e.arrowWidth,l=a?0:e.arrowHeight,[u,d]=Qu(n),f={start:"0%",center:"50%",end:"100%"}[d],p=(o.arrow?.x??0)+i/2,m=(o.arrow?.y??0)+l/2;let g="",v="";return u==="bottom"?(g=a?f:`${p}px`,v=`${-l}px`):u==="top"?(g=a?f:`${p}px`,v=`${r.floating.height+l}px`):u==="right"?(g=`${-l}px`,v=a?f:`${m}px`):u==="left"&&(g=`${r.floating.width+l}px`,v=a?f:`${m}px`),{data:{x:g,y:v}}}});function Qu(e){const[t,n="center"]=e.split("-");return[t,n]}var $a=Zu,Ha=zu,Ba=Wu,Va=Ku,vs="rovingFocusGroup.onEntryFocus",s2={bubbles:!1,cancelable:!0},vr="RovingFocusGroup",[Zs,Yu,a2]=ja(vr),[i2,jo]=St(vr,[a2]),[c2,l2]=i2(vr),Xu=c.forwardRef((e,t)=>h.jsx(Zs.Provider,{scope:e.__scopeRovingFocusGroup,children:h.jsx(Zs.Slot,{scope:e.__scopeRovingFocusGroup,children:h.jsx(u2,{...e,ref:t})})}));Xu.displayName=vr;var u2=c.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:o=!1,dir:s,currentTabStopId:a,defaultCurrentTabStopId:i,onCurrentTabStopIdChange:l,onEntryFocus:u,preventScrollOnEntryFocus:d=!1,...f}=e,p=c.useRef(null),m=oe(t,p),g=Do(s),[v,y]=wt({prop:a,defaultProp:i??null,onChange:l,caller:vr}),[x,b]=c.useState(!1),w=lt(u),S=Yu(n),P=c.useRef(!1),[O,R]=c.useState(0);return c.useEffect(()=>{const E=p.current;if(E)return E.addEventListener(vs,w),()=>E.removeEventListener(vs,w)},[w]),h.jsx(c2,{scope:n,orientation:r,dir:g,loop:o,currentTabStopId:v,onItemFocus:c.useCallback(E=>y(E),[y]),onItemShiftTab:c.useCallback(()=>b(!0),[]),onFocusableItemAdd:c.useCallback(()=>R(E=>E+1),[]),onFocusableItemRemove:c.useCallback(()=>R(E=>E-1),[]),children:h.jsx(te.div,{tabIndex:x||O===0?-1:0,"data-orientation":r,...f,ref:m,style:{outline:"none",...e.style},onMouseDown:B(e.onMouseDown,()=>{P.current=!0}),onFocus:B(e.onFocus,E=>{const A=!P.current;if(E.target===E.currentTarget&&A&&!x){const L=new CustomEvent(vs,s2);if(E.currentTarget.dispatchEvent(L),!L.defaultPrevented){const T=S().filter(_=>_.focusable),F=T.find(_=>_.active),V=T.find(_=>_.id===v),D=[F,V,...T].filter(Boolean).map(_=>_.ref.current);td(D,d)}}P.current=!1}),onBlur:B(e.onBlur,()=>b(!1))})})}),Ju="RovingFocusGroupItem",ed=c.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:o=!1,tabStopId:s,children:a,...i}=e,l=ct(),u=s||l,d=l2(Ju,n),f=d.currentTabStopId===u,p=Yu(n),{onFocusableItemAdd:m,onFocusableItemRemove:g,currentTabStopId:v}=d;return c.useEffect(()=>{if(r)return m(),()=>g()},[r,m,g]),h.jsx(Zs.ItemSlot,{scope:n,id:u,focusable:r,active:o,children:h.jsx(te.span,{tabIndex:f?0:-1,"data-orientation":d.orientation,...i,ref:t,onMouseDown:B(e.onMouseDown,y=>{r?d.onItemFocus(u):y.preventDefault()}),onFocus:B(e.onFocus,()=>d.onItemFocus(u)),onKeyDown:B(e.onKeyDown,y=>{if(y.key==="Tab"&&y.shiftKey){d.onItemShiftTab();return}if(y.target!==y.currentTarget)return;const x=h2(y,d.orientation,d.dir);if(x!==void 0){if(y.metaKey||y.ctrlKey||y.altKey||y.shiftKey)return;y.preventDefault();let w=p().filter(S=>S.focusable).map(S=>S.ref.current);if(x==="last")w.reverse();else if(x==="prev"||x==="next"){x==="prev"&&w.reverse();const S=w.indexOf(y.currentTarget);w=d.loop?p2(w,S+1):w.slice(S+1)}setTimeout(()=>td(w))}}),children:typeof a=="function"?a({isCurrentTabStop:f,hasTabStop:v!=null}):a})})});ed.displayName=Ju;var d2={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function f2(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function h2(e,t,n){const r=f2(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return d2[r]}function td(e,t=!1){const n=document.activeElement;for(const r of e)if(r===n||(r.focus({preventScroll:t}),document.activeElement!==n))return}function p2(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var nd=Xu,rd=ed,qs=["Enter"," "],m2=["ArrowDown","PageUp","Home"],od=["ArrowUp","PageDown","End"],g2=[...m2,...od],v2={ltr:[...qs,"ArrowRight"],rtl:[...qs,"ArrowLeft"]},y2={ltr:["ArrowLeft"],rtl:["ArrowRight"]},yr="Menu",[or,x2,b2]=ja(yr),[un,sd]=St(yr,[b2,Mn,jo]),Fo=Mn(),ad=jo(),[w2,dn]=un(yr),[S2,xr]=un(yr),id=e=>{const{__scopeMenu:t,open:n=!1,children:r,dir:o,onOpenChange:s,modal:a=!0}=e,i=Fo(t),[l,u]=c.useState(null),d=c.useRef(!1),f=lt(s),p=Do(o);return c.useEffect(()=>{const m=()=>{d.current=!0,document.addEventListener("pointerdown",g,{capture:!0,once:!0}),document.addEventListener("pointermove",g,{capture:!0,once:!0})},g=()=>d.current=!1;return document.addEventListener("keydown",m,{capture:!0}),()=>{document.removeEventListener("keydown",m,{capture:!0}),document.removeEventListener("pointerdown",g,{capture:!0}),document.removeEventListener("pointermove",g,{capture:!0})}},[]),h.jsx($a,{...i,children:h.jsx(w2,{scope:t,open:n,onOpenChange:f,content:l,onContentChange:u,children:h.jsx(S2,{scope:t,onClose:c.useCallback(()=>f(!1),[f]),isUsingKeyboardRef:d,dir:p,modal:a,children:r})})})};id.displayName=yr;var E2="MenuAnchor",Ua=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,o=Fo(n);return h.jsx(Ha,{...o,...r,ref:t})});Ua.displayName=E2;var Za="MenuPortal",[R2,cd]=un(Za,{forceMount:void 0}),ld=e=>{const{__scopeMenu:t,forceMount:n,children:r,container:o}=e,s=dn(Za,t);return h.jsx(R2,{scope:t,forceMount:n,children:h.jsx(dt,{present:n||s.open,children:h.jsx(gr,{asChild:!0,container:o,children:r})})})};ld.displayName=Za;var Ge="MenuContent",[C2,qa]=un(Ge),ud=c.forwardRef((e,t)=>{const n=cd(Ge,e.__scopeMenu),{forceMount:r=n.forceMount,...o}=e,s=dn(Ge,e.__scopeMenu),a=xr(Ge,e.__scopeMenu);return h.jsx(or.Provider,{scope:e.__scopeMenu,children:h.jsx(dt,{present:r||s.open,children:h.jsx(or.Slot,{scope:e.__scopeMenu,children:a.modal?h.jsx(P2,{...o,ref:t}):h.jsx(_2,{...o,ref:t})})})})}),P2=c.forwardRef((e,t)=>{const n=dn(Ge,e.__scopeMenu),r=c.useRef(null),o=oe(t,r);return c.useEffect(()=>{const s=r.current;if(s)return Ia(s)},[]),h.jsx(za,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:n.open,disableOutsideScroll:!0,onFocusOutside:B(e.onFocusOutside,s=>s.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>n.onOpenChange(!1)})}),_2=c.forwardRef((e,t)=>{const n=dn(Ge,e.__scopeMenu);return h.jsx(za,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>n.onOpenChange(!1)})}),T2=Cn("MenuContent.ScrollLock"),za=c.forwardRef((e,t)=>{const{__scopeMenu:n,loop:r=!1,trapFocus:o,onOpenAutoFocus:s,onCloseAutoFocus:a,disableOutsidePointerEvents:i,onEntryFocus:l,onEscapeKeyDown:u,onPointerDownOutside:d,onFocusOutside:f,onInteractOutside:p,onDismiss:m,disableOutsideScroll:g,...v}=e,y=dn(Ge,n),x=xr(Ge,n),b=Fo(n),w=ad(n),S=x2(n),[P,O]=c.useState(null),R=c.useRef(null),E=oe(t,R,y.onContentChange),A=c.useRef(0),L=c.useRef(""),T=c.useRef(0),F=c.useRef(null),V=c.useRef("right"),N=c.useRef(0),D=g?pa:c.Fragment,_=g?{as:T2,allowPinchZoom:!0}:void 0,j=M=>{const H=L.current+M,U=S().filter(k=>!k.disabled),Z=document.activeElement,K=U.find(k=>k.ref.current===Z)?.textValue,q=U.map(k=>k.textValue),Q=H2(q,H,K),ne=U.find(k=>k.textValue===Q)?.ref.current;(function k(G){L.current=G,window.clearTimeout(A.current),G!==""&&(A.current=window.setTimeout(()=>k(""),1e3))})(H),ne&&setTimeout(()=>ne.focus())};c.useEffect(()=>()=>window.clearTimeout(A.current),[]),Oa();const I=c.useCallback(M=>V.current===F.current?.side&&V2(M,F.current?.area),[]);return h.jsx(C2,{scope:n,searchRef:L,onItemEnter:c.useCallback(M=>{I(M)&&M.preventDefault()},[I]),onItemLeave:c.useCallback(M=>{I(M)||(R.current?.focus(),O(null))},[I]),onTriggerLeave:c.useCallback(M=>{I(M)&&M.preventDefault()},[I]),pointerGraceTimerRef:T,onPointerGraceIntentChange:c.useCallback(M=>{F.current=M},[]),children:h.jsx(D,{..._,children:h.jsx(Lo,{asChild:!0,trapped:o,onMountAutoFocus:B(s,M=>{M.preventDefault(),R.current?.focus({preventScroll:!0})}),onUnmountAutoFocus:a,children:h.jsx(mr,{asChild:!0,disableOutsidePointerEvents:i,onEscapeKeyDown:u,onPointerDownOutside:d,onFocusOutside:f,onInteractOutside:p,onDismiss:m,children:h.jsx(nd,{asChild:!0,...w,dir:x.dir,orientation:"vertical",loop:r,currentTabStopId:P,onCurrentTabStopIdChange:O,onEntryFocus:B(l,M=>{x.isUsingKeyboardRef.current||M.preventDefault()}),preventScrollOnEntryFocus:!0,children:h.jsx(Ba,{role:"menu","aria-orientation":"vertical","data-state":Pd(y.open),"data-radix-menu-content":"",dir:x.dir,...b,...v,ref:E,style:{outline:"none",...v.style},onKeyDown:B(v.onKeyDown,M=>{const U=M.target.closest("[data-radix-menu-content]")===M.currentTarget,Z=M.ctrlKey||M.altKey||M.metaKey,K=M.key.length===1;U&&(M.key==="Tab"&&M.preventDefault(),!Z&&K&&j(M.key));const q=R.current;if(M.target!==q||!g2.includes(M.key))return;M.preventDefault();const ne=S().filter(k=>!k.disabled).map(k=>k.ref.current);od.includes(M.key)&&ne.reverse(),k2(ne)}),onBlur:B(e.onBlur,M=>{M.currentTarget.contains(M.target)||(window.clearTimeout(A.current),L.current="")}),onPointerMove:B(e.onPointerMove,sr(M=>{const H=M.target,U=N.current!==M.clientX;if(M.currentTarget.contains(H)&&U){const Z=M.clientX>N.current?"right":"left";V.current=Z,N.current=M.clientX}}))})})})})})})});ud.displayName=Ge;var A2="MenuGroup",Wa=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e;return h.jsx(te.div,{role:"group",...r,ref:t})});Wa.displayName=A2;var M2="MenuLabel",dd=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e;return h.jsx(te.div,{...r,ref:t})});dd.displayName=M2;var ho="MenuItem",dc="menu.itemSelect",ko=c.forwardRef((e,t)=>{const{disabled:n=!1,onSelect:r,...o}=e,s=c.useRef(null),a=xr(ho,e.__scopeMenu),i=qa(ho,e.__scopeMenu),l=oe(t,s),u=c.useRef(!1),d=()=>{const f=s.current;if(!n&&f){const p=new CustomEvent(dc,{bubbles:!0,cancelable:!0});f.addEventListener(dc,m=>r?.(m),{once:!0}),uu(f,p),p.defaultPrevented?u.current=!1:a.onClose()}};return h.jsx(fd,{...o,ref:l,disabled:n,onClick:B(e.onClick,d),onPointerDown:f=>{e.onPointerDown?.(f),u.current=!0},onPointerUp:B(e.onPointerUp,f=>{u.current||f.currentTarget?.click()}),onKeyDown:B(e.onKeyDown,f=>{const p=i.searchRef.current!=="";n||p&&f.key===" "||qs.includes(f.key)&&(f.currentTarget.click(),f.preventDefault())})})});ko.displayName=ho;var fd=c.forwardRef((e,t)=>{const{__scopeMenu:n,disabled:r=!1,textValue:o,...s}=e,a=qa(ho,n),i=ad(n),l=c.useRef(null),u=oe(t,l),[d,f]=c.useState(!1),[p,m]=c.useState("");return c.useEffect(()=>{const g=l.current;g&&m((g.textContent??"").trim())},[s.children]),h.jsx(or.ItemSlot,{scope:n,disabled:r,textValue:o??p,children:h.jsx(rd,{asChild:!0,...i,focusable:!r,children:h.jsx(te.div,{role:"menuitem","data-highlighted":d?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0,...s,ref:u,onPointerMove:B(e.onPointerMove,sr(g=>{r?a.onItemLeave(g):(a.onItemEnter(g),g.defaultPrevented||g.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:B(e.onPointerLeave,sr(g=>a.onItemLeave(g))),onFocus:B(e.onFocus,()=>f(!0)),onBlur:B(e.onBlur,()=>f(!1))})})})}),O2="MenuCheckboxItem",hd=c.forwardRef((e,t)=>{const{checked:n=!1,onCheckedChange:r,...o}=e;return h.jsx(yd,{scope:e.__scopeMenu,checked:n,children:h.jsx(ko,{role:"menuitemcheckbox","aria-checked":po(n)?"mixed":n,...o,ref:t,"data-state":Ka(n),onSelect:B(o.onSelect,()=>r?.(po(n)?!0:!n),{checkForDefaultPrevented:!1})})})});hd.displayName=O2;var pd="MenuRadioGroup",[I2,L2]=un(pd,{value:void 0,onValueChange:()=>{}}),md=c.forwardRef((e,t)=>{const{value:n,onValueChange:r,...o}=e,s=lt(r);return h.jsx(I2,{scope:e.__scopeMenu,value:n,onValueChange:s,children:h.jsx(Wa,{...o,ref:t})})});md.displayName=pd;var gd="MenuRadioItem",vd=c.forwardRef((e,t)=>{const{value:n,...r}=e,o=L2(gd,e.__scopeMenu),s=n===o.value;return h.jsx(yd,{scope:e.__scopeMenu,checked:s,children:h.jsx(ko,{role:"menuitemradio","aria-checked":s,...r,ref:t,"data-state":Ka(s),onSelect:B(r.onSelect,()=>o.onValueChange?.(n),{checkForDefaultPrevented:!1})})})});vd.displayName=gd;var Ga="MenuItemIndicator",[yd,N2]=un(Ga,{checked:!1}),xd=c.forwardRef((e,t)=>{const{__scopeMenu:n,forceMount:r,...o}=e,s=N2(Ga,n);return h.jsx(dt,{present:r||po(s.checked)||s.checked===!0,children:h.jsx(te.span,{...o,ref:t,"data-state":Ka(s.checked)})})});xd.displayName=Ga;var D2="MenuSeparator",bd=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e;return h.jsx(te.div,{role:"separator","aria-orientation":"horizontal",...r,ref:t})});bd.displayName=D2;var j2="MenuArrow",wd=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,o=Fo(n);return h.jsx(Va,{...o,...r,ref:t})});wd.displayName=j2;var F2="MenuSub",[eS,Sd]=un(F2),Wn="MenuSubTrigger",Ed=c.forwardRef((e,t)=>{const n=dn(Wn,e.__scopeMenu),r=xr(Wn,e.__scopeMenu),o=Sd(Wn,e.__scopeMenu),s=qa(Wn,e.__scopeMenu),a=c.useRef(null),{pointerGraceTimerRef:i,onPointerGraceIntentChange:l}=s,u={__scopeMenu:e.__scopeMenu},d=c.useCallback(()=>{a.current&&window.clearTimeout(a.current),a.current=null},[]);return c.useEffect(()=>d,[d]),c.useEffect(()=>{const f=i.current;return()=>{window.clearTimeout(f),l(null)}},[i,l]),h.jsx(Ua,{asChild:!0,...u,children:h.jsx(fd,{id:o.triggerId,"aria-haspopup":"menu","aria-expanded":n.open,"aria-controls":o.contentId,"data-state":Pd(n.open),...e,ref:pr(t,o.onTriggerChange),onClick:f=>{e.onClick?.(f),!(e.disabled||f.defaultPrevented)&&(f.currentTarget.focus(),n.open||n.onOpenChange(!0))},onPointerMove:B(e.onPointerMove,sr(f=>{s.onItemEnter(f),!f.defaultPrevented&&!e.disabled&&!n.open&&!a.current&&(s.onPointerGraceIntentChange(null),a.current=window.setTimeout(()=>{n.onOpenChange(!0),d()},100))})),onPointerLeave:B(e.onPointerLeave,sr(f=>{d();const p=n.content?.getBoundingClientRect();if(p){const m=n.content?.dataset.side,g=m==="right",v=g?-5:5,y=p[g?"left":"right"],x=p[g?"right":"left"];s.onPointerGraceIntentChange({area:[{x:f.clientX+v,y:f.clientY},{x:y,y:p.top},{x,y:p.top},{x,y:p.bottom},{x:y,y:p.bottom}],side:m}),window.clearTimeout(i.current),i.current=window.setTimeout(()=>s.onPointerGraceIntentChange(null),300)}else{if(s.onTriggerLeave(f),f.defaultPrevented)return;s.onPointerGraceIntentChange(null)}})),onKeyDown:B(e.onKeyDown,f=>{const p=s.searchRef.current!=="";e.disabled||p&&f.key===" "||v2[r.dir].includes(f.key)&&(n.onOpenChange(!0),n.content?.focus(),f.preventDefault())})})})});Ed.displayName=Wn;var Rd="MenuSubContent",Cd=c.forwardRef((e,t)=>{const n=cd(Ge,e.__scopeMenu),{forceMount:r=n.forceMount,...o}=e,s=dn(Ge,e.__scopeMenu),a=xr(Ge,e.__scopeMenu),i=Sd(Rd,e.__scopeMenu),l=c.useRef(null),u=oe(t,l);return h.jsx(or.Provider,{scope:e.__scopeMenu,children:h.jsx(dt,{present:r||s.open,children:h.jsx(or.Slot,{scope:e.__scopeMenu,children:h.jsx(za,{id:i.contentId,"aria-labelledby":i.triggerId,...o,ref:u,align:"start",side:a.dir==="rtl"?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:d=>{a.isUsingKeyboardRef.current&&l.current?.focus(),d.preventDefault()},onCloseAutoFocus:d=>d.preventDefault(),onFocusOutside:B(e.onFocusOutside,d=>{d.target!==i.trigger&&s.onOpenChange(!1)}),onEscapeKeyDown:B(e.onEscapeKeyDown,d=>{a.onClose(),d.preventDefault()}),onKeyDown:B(e.onKeyDown,d=>{const f=d.currentTarget.contains(d.target),p=y2[a.dir].includes(d.key);f&&p&&(s.onOpenChange(!1),i.trigger?.focus(),d.preventDefault())})})})})})});Cd.displayName=Rd;function Pd(e){return e?"open":"closed"}function po(e){return e==="indeterminate"}function Ka(e){return po(e)?"indeterminate":e?"checked":"unchecked"}function k2(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function $2(e,t){return e.map((n,r)=>e[(t+r)%e.length])}function H2(e,t,n){const o=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,s=n?e.indexOf(n):-1;let a=$2(e,Math.max(s,0));o.length===1&&(a=a.filter(u=>u!==n));const l=a.find(u=>u.toLowerCase().startsWith(o.toLowerCase()));return l!==n?l:void 0}function B2(e,t){const{x:n,y:r}=e;let o=!1;for(let s=0,a=t.length-1;s<t.length;a=s++){const i=t[s],l=t[a],u=i.x,d=i.y,f=l.x,p=l.y;d>r!=p>r&&n<(f-u)*(r-d)/(p-d)+u&&(o=!o)}return o}function V2(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return B2(n,t)}function sr(e){return t=>t.pointerType==="mouse"?e(t):void 0}var U2=id,Z2=Ua,q2=ld,z2=ud,W2=Wa,G2=dd,K2=ko,Q2=hd,Y2=md,X2=vd,J2=xd,ev=bd,tv=wd,nv=Ed,rv=Cd,$o="DropdownMenu",[ov]=St($o,[sd]),_e=sd(),[sv,_d]=ov($o),Td=e=>{const{__scopeDropdownMenu:t,children:n,dir:r,open:o,defaultOpen:s,onOpenChange:a,modal:i=!0}=e,l=_e(t),u=c.useRef(null),[d,f]=wt({prop:o,defaultProp:s??!1,onChange:a,caller:$o});return h.jsx(sv,{scope:t,triggerId:ct(),triggerRef:u,contentId:ct(),open:d,onOpenChange:f,onOpenToggle:c.useCallback(()=>f(p=>!p),[f]),modal:i,children:h.jsx(U2,{...l,open:d,onOpenChange:f,dir:r,modal:i,children:n})})};Td.displayName=$o;var Ad="DropdownMenuTrigger",Md=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,disabled:r=!1,...o}=e,s=_d(Ad,n),a=_e(n);return h.jsx(Z2,{asChild:!0,...a,children:h.jsx(te.button,{type:"button",id:s.triggerId,"aria-haspopup":"menu","aria-expanded":s.open,"aria-controls":s.open?s.contentId:void 0,"data-state":s.open?"open":"closed","data-disabled":r?"":void 0,disabled:r,...o,ref:pr(t,s.triggerRef),onPointerDown:B(e.onPointerDown,i=>{!r&&i.button===0&&i.ctrlKey===!1&&(s.onOpenToggle(),s.open||i.preventDefault())}),onKeyDown:B(e.onKeyDown,i=>{r||(["Enter"," "].includes(i.key)&&s.onOpenToggle(),i.key==="ArrowDown"&&s.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(i.key)&&i.preventDefault())})})})});Md.displayName=Ad;var av="DropdownMenuPortal",Od=e=>{const{__scopeDropdownMenu:t,...n}=e,r=_e(t);return h.jsx(q2,{...r,...n})};Od.displayName=av;var Id="DropdownMenuContent",Ld=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_d(Id,n),s=_e(n),a=c.useRef(!1);return h.jsx(z2,{id:o.contentId,"aria-labelledby":o.triggerId,...s,...r,ref:t,onCloseAutoFocus:B(e.onCloseAutoFocus,i=>{a.current||o.triggerRef.current?.focus(),a.current=!1,i.preventDefault()}),onInteractOutside:B(e.onInteractOutside,i=>{const l=i.detail.originalEvent,u=l.button===0&&l.ctrlKey===!0,d=l.button===2||u;(!o.modal||d)&&(a.current=!0)}),style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});Ld.displayName=Id;var iv="DropdownMenuGroup",cv=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(W2,{...o,...r,ref:t})});cv.displayName=iv;var lv="DropdownMenuLabel",Nd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(G2,{...o,...r,ref:t})});Nd.displayName=lv;var uv="DropdownMenuItem",Dd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(K2,{...o,...r,ref:t})});Dd.displayName=uv;var dv="DropdownMenuCheckboxItem",jd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(Q2,{...o,...r,ref:t})});jd.displayName=dv;var fv="DropdownMenuRadioGroup",hv=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(Y2,{...o,...r,ref:t})});hv.displayName=fv;var pv="DropdownMenuRadioItem",Fd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(X2,{...o,...r,ref:t})});Fd.displayName=pv;var mv="DropdownMenuItemIndicator",kd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(J2,{...o,...r,ref:t})});kd.displayName=mv;var gv="DropdownMenuSeparator",$d=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(ev,{...o,...r,ref:t})});$d.displayName=gv;var vv="DropdownMenuArrow",yv=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(tv,{...o,...r,ref:t})});yv.displayName=vv;var xv="DropdownMenuSubTrigger",Hd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(nv,{...o,...r,ref:t})});Hd.displayName=xv;var bv="DropdownMenuSubContent",Bd=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=_e(n);return h.jsx(rv,{...o,...r,ref:t,style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});Bd.displayName=bv;var wv=Td,Sv=Md,Ev=Od,Vd=Ld,Ud=Nd,Zd=Dd,qd=jd,zd=Fd,Wd=kd,Gd=$d,Kd=Hd,Qd=Bd;const Rv=wv,Cv=Sv,Pv=c.forwardRef(({className:e,inset:t,children:n,...r},o)=>h.jsx(Kd,{ref:o,className:["flex","cursor-default","select-none","items-center","rounded-sm","px-2","py-1.5","text-sm","outline-none","focus:bg-hover","data-[state=open]:bg-hover",t&&"pl-8",e].filter(Boolean).join(" "),...r,children:n}));Pv.displayName=Kd.displayName;const _v=c.forwardRef(({className:e,...t},n)=>h.jsx(Qd,{ref:n,className:["z-50","min-w-[8rem]","overflow-hidden","rounded-md","bg-surface","p-1","shadow-lg",e].filter(Boolean).join(" "),...t}));_v.displayName=Qd.displayName;const Yd=c.forwardRef(({className:e,sideOffset:t=4,...n},r)=>h.jsx(Ev,{children:h.jsx(Vd,{ref:r,sideOffset:t,className:["z-[1100]","min-w-[10rem]","overflow-hidden","rounded-[10px_3px_11px_3px/3px_8px_3px_10px]","bg-surface","border-2","border-border","shadow-sketchy","p-1","data-[state=open]:animate-in","data-[state=closed]:animate-out","data-[state=closed]:fade-out-0","data-[state=open]:fade-in-0","data-[state=closed]:zoom-out-95","data-[state=open]:zoom-in-95","data-[side=bottom]:slide-in-from-top-2","data-[side=left]:slide-in-from-right-2","data-[side=right]:slide-in-from-left-2","data-[side=top]:slide-in-from-bottom-2",e].filter(Boolean).join(" "),...n})}));Yd.displayName=Vd.displayName;const Xd=c.forwardRef(({className:e,inset:t,...n},r)=>h.jsx(Zd,{ref:r,className:["relative","flex","cursor-pointer","select-none","items-center","px-3","py-2","text-sm","font-bold","text-fg-muted","outline-none","transition-colors","rounded-[6px_2px_7px_2px/2px_5px_2px_6px]","focus:bg-hover","focus:text-fg-default","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",t&&"pl-8",e].filter(Boolean).join(" "),...n}));Xd.displayName=Zd.displayName;const Tv=c.forwardRef(({className:e,children:t,checked:n,...r},o)=>h.jsxs(qd,{ref:o,className:["relative","flex","cursor-pointer","select-none","items-center","rounded-sm","py-1.5","pl-8","pr-2","text-sm","outline-none","transition-colors","focus:bg-hover","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",e].filter(Boolean).join(" "),checked:n,...r,children:[h.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:h.jsx(Wd,{children:"✓"})}),t]}));Tv.displayName=qd.displayName;const Av=c.forwardRef(({className:e,children:t,...n},r)=>h.jsxs(zd,{ref:r,className:["relative","flex","cursor-pointer","select-none","items-center","rounded-sm","py-1.5","pl-8","pr-2","text-sm","outline-none","transition-colors","focus:bg-hover","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",e].filter(Boolean).join(" "),...n,children:[h.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:h.jsx(Wd,{children:"●"})}),t]}));Av.displayName=zd.displayName;const Mv=c.forwardRef(({className:e,inset:t,...n},r)=>h.jsx(Ud,{ref:r,className:["px-2","py-1.5","text-sm","font-semibold",t&&"pl-8",e].filter(Boolean).join(" "),...n}));Mv.displayName=Ud.displayName;const Ov=c.forwardRef(({className:e,...t},n)=>h.jsx(Gd,{ref:n,className:["-mx-1","my-1","h-px","bg-divider",e].filter(Boolean).join(" "),...t}));Ov.displayName=Gd.displayName;const Iv=({button:e,items:t})=>h.jsxs(Rv,{children:[h.jsx(Cv,{asChild:!0,children:h.jsx("button",{type:"button",className:"flex items-center justify-center",children:e})}),h.jsx(Yd,{align:"end",children:t.map(n=>h.jsx(Xd,{onClick:n.onClick,children:n.name},n.name))})]}),Lv=kt(["w-full","border-2","border-border","bg-surface","text-fg","placeholder:text-fg-placeholder","transition-all","focus:outline-none","focus:shadow-sketchy","disabled:cursor-not-allowed","disabled:opacity-50"],{variants:{variant:{default:[],ghost:["border-transparent","bg-subtle","focus:border-border-focus"],error:["border-border-error","bg-pastel-pink-200/20","focus:border-red-500"]},size:{sm:"h-8 px-2 text-sm rounded-[8px_3px_9px_2px/3px_7px_3px_8px]",md:"h-10 px-3 text-sm rounded-[10px_3px_11px_3px/3px_9px_3px_10px]",lg:"h-12 px-4 text-base rounded-[12px_4px_13px_3px/4px_10px_4px_12px]"}},defaultVariants:{variant:"default",size:"md"}}),Nv=c.forwardRef(({className:e,variant:t,size:n,type:r="text",...o},s)=>h.jsx("input",{ref:s,type:r,className:Lv({variant:t,size:n,className:e}),...o}));Nv.displayName="Input";const Dv=kt(["font-bold","text-fg-muted","whitespace-nowrap"],{variants:{size:{sm:"text-xs",md:"text-sm",lg:"text-base"}},defaultVariants:{size:"sm"}}),Jd=c.forwardRef(({className:e,size:t,...n},r)=>h.jsx("label",{ref:r,className:Dv({size:t,className:e}),...n}));Jd.displayName="Label";function fc(e,[t,n]){return Math.min(n,Math.max(t,e))}function jv(e){const t=c.useRef({value:e,previous:e});return c.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}var ef=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),Fv="VisuallyHidden",tf=c.forwardRef((e,t)=>h.jsx(te.span,{...e,ref:t,style:{...ef,...e.style}}));tf.displayName=Fv;var kv=tf,$v=[" ","Enter","ArrowUp","ArrowDown"],Hv=[" ","Enter"],sn="Select",[Ho,Bo,Bv]=ja(sn),[On]=St(sn,[Bv,Mn]),Vo=Mn(),[Vv,$t]=On(sn),[Uv,Zv]=On(sn),nf=e=>{const{__scopeSelect:t,children:n,open:r,defaultOpen:o,onOpenChange:s,value:a,defaultValue:i,onValueChange:l,dir:u,name:d,autoComplete:f,disabled:p,required:m,form:g}=e,v=Vo(t),[y,x]=c.useState(null),[b,w]=c.useState(null),[S,P]=c.useState(!1),O=Do(u),[R,E]=wt({prop:r,defaultProp:o??!1,onChange:s,caller:sn}),[A,L]=wt({prop:a,defaultProp:i,onChange:l,caller:sn}),T=c.useRef(null),F=y?g||!!y.closest("form"):!0,[V,N]=c.useState(new Set),D=Array.from(V).map(_=>_.props.value).join(";");return h.jsx($a,{...v,children:h.jsxs(Vv,{required:m,scope:t,trigger:y,onTriggerChange:x,valueNode:b,onValueNodeChange:w,valueNodeHasChildren:S,onValueNodeHasChildrenChange:P,contentId:ct(),value:A,onValueChange:L,open:R,onOpenChange:E,dir:O,triggerPointerDownPosRef:T,disabled:p,children:[h.jsx(Ho.Provider,{scope:t,children:h.jsx(Uv,{scope:e.__scopeSelect,onNativeOptionAdd:c.useCallback(_=>{N(j=>new Set(j).add(_))},[]),onNativeOptionRemove:c.useCallback(_=>{N(j=>{const I=new Set(j);return I.delete(_),I})},[]),children:n})}),F?h.jsxs(Sf,{"aria-hidden":!0,required:m,tabIndex:-1,name:d,autoComplete:f,value:A,onChange:_=>L(_.target.value),disabled:p,form:g,children:[A===void 0?h.jsx("option",{value:""}):null,Array.from(V)]},D):null]})})};nf.displayName=sn;var rf="SelectTrigger",of=c.forwardRef((e,t)=>{const{__scopeSelect:n,disabled:r=!1,...o}=e,s=Vo(n),a=$t(rf,n),i=a.disabled||r,l=oe(t,a.onTriggerChange),u=Bo(n),d=c.useRef("touch"),[f,p,m]=Rf(v=>{const y=u().filter(w=>!w.disabled),x=y.find(w=>w.value===a.value),b=Cf(y,v,x);b!==void 0&&a.onValueChange(b.value)}),g=v=>{i||(a.onOpenChange(!0),m()),v&&(a.triggerPointerDownPosRef.current={x:Math.round(v.pageX),y:Math.round(v.pageY)})};return h.jsx(Ha,{asChild:!0,...s,children:h.jsx(te.button,{type:"button",role:"combobox","aria-controls":a.contentId,"aria-expanded":a.open,"aria-required":a.required,"aria-autocomplete":"none",dir:a.dir,"data-state":a.open?"open":"closed",disabled:i,"data-disabled":i?"":void 0,"data-placeholder":Ef(a.value)?"":void 0,...o,ref:l,onClick:B(o.onClick,v=>{v.currentTarget.focus(),d.current!=="mouse"&&g(v)}),onPointerDown:B(o.onPointerDown,v=>{d.current=v.pointerType;const y=v.target;y.hasPointerCapture(v.pointerId)&&y.releasePointerCapture(v.pointerId),v.button===0&&v.ctrlKey===!1&&v.pointerType==="mouse"&&(g(v),v.preventDefault())}),onKeyDown:B(o.onKeyDown,v=>{const y=f.current!=="";!(v.ctrlKey||v.altKey||v.metaKey)&&v.key.length===1&&p(v.key),!(y&&v.key===" ")&&$v.includes(v.key)&&(g(),v.preventDefault())})})})});of.displayName=rf;var sf="SelectValue",af=c.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,children:s,placeholder:a="",...i}=e,l=$t(sf,n),{onValueNodeHasChildrenChange:u}=l,d=s!==void 0,f=oe(t,l.onValueNodeChange);return Ee(()=>{u(d)},[u,d]),h.jsx(te.span,{...i,ref:f,style:{pointerEvents:"none"},children:Ef(l.value)?h.jsx(h.Fragment,{children:a}):s})});af.displayName=sf;var qv="SelectIcon",cf=c.forwardRef((e,t)=>{const{__scopeSelect:n,children:r,...o}=e;return h.jsx(te.span,{"aria-hidden":!0,...o,ref:t,children:r||"▼"})});cf.displayName=qv;var zv="SelectPortal",lf=e=>h.jsx(gr,{asChild:!0,...e});lf.displayName=zv;var an="SelectContent",uf=c.forwardRef((e,t)=>{const n=$t(an,e.__scopeSelect),[r,o]=c.useState();if(Ee(()=>{o(new DocumentFragment)},[]),!n.open){const s=r;return s?yt.createPortal(h.jsx(df,{scope:e.__scopeSelect,children:h.jsx(Ho.Slot,{scope:e.__scopeSelect,children:h.jsx("div",{children:e.children})})}),s):null}return h.jsx(ff,{...e,ref:t})});uf.displayName=an;var Ye=10,[df,Ht]=On(an),Wv="SelectContentImpl",Gv=Cn("SelectContent.RemoveScroll"),ff=c.forwardRef((e,t)=>{const{__scopeSelect:n,position:r="item-aligned",onCloseAutoFocus:o,onEscapeKeyDown:s,onPointerDownOutside:a,side:i,sideOffset:l,align:u,alignOffset:d,arrowPadding:f,collisionBoundary:p,collisionPadding:m,sticky:g,hideWhenDetached:v,avoidCollisions:y,...x}=e,b=$t(an,n),[w,S]=c.useState(null),[P,O]=c.useState(null),R=oe(t,k=>S(k)),[E,A]=c.useState(null),[L,T]=c.useState(null),F=Bo(n),[V,N]=c.useState(!1),D=c.useRef(!1);c.useEffect(()=>{if(w)return Ia(w)},[w]),Oa();const _=c.useCallback(k=>{const[G,...ee]=F().map(J=>J.ref.current),[$]=ee.slice(-1),Y=document.activeElement;for(const J of k)if(J===Y||(J?.scrollIntoView({block:"nearest"}),J===G&&P&&(P.scrollTop=0),J===$&&P&&(P.scrollTop=P.scrollHeight),J?.focus(),document.activeElement!==Y))return},[F,P]),j=c.useCallback(()=>_([E,w]),[_,E,w]);c.useEffect(()=>{V&&j()},[V,j]);const{onOpenChange:I,triggerPointerDownPosRef:M}=b;c.useEffect(()=>{if(w){let k={x:0,y:0};const G=$=>{k={x:Math.abs(Math.round($.pageX)-(M.current?.x??0)),y:Math.abs(Math.round($.pageY)-(M.current?.y??0))}},ee=$=>{k.x<=10&&k.y<=10?$.preventDefault():w.contains($.target)||I(!1),document.removeEventListener("pointermove",G),M.current=null};return M.current!==null&&(document.addEventListener("pointermove",G),document.addEventListener("pointerup",ee,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",G),document.removeEventListener("pointerup",ee,{capture:!0})}}},[w,I,M]),c.useEffect(()=>{const k=()=>I(!1);return window.addEventListener("blur",k),window.addEventListener("resize",k),()=>{window.removeEventListener("blur",k),window.removeEventListener("resize",k)}},[I]);const[H,U]=Rf(k=>{const G=F().filter(Y=>!Y.disabled),ee=G.find(Y=>Y.ref.current===document.activeElement),$=Cf(G,k,ee);$&&setTimeout(()=>$.ref.current.focus())}),Z=c.useCallback((k,G,ee)=>{const $=!D.current&&!ee;(b.value!==void 0&&b.value===G||$)&&(A(k),$&&(D.current=!0))},[b.value]),K=c.useCallback(()=>w?.focus(),[w]),q=c.useCallback((k,G,ee)=>{const $=!D.current&&!ee;(b.value!==void 0&&b.value===G||$)&&T(k)},[b.value]),Q=r==="popper"?zs:hf,ne=Q===zs?{side:i,sideOffset:l,align:u,alignOffset:d,arrowPadding:f,collisionBoundary:p,collisionPadding:m,sticky:g,hideWhenDetached:v,avoidCollisions:y}:{};return h.jsx(df,{scope:n,content:w,viewport:P,onViewportChange:O,itemRefCallback:Z,selectedItem:E,onItemLeave:K,itemTextRefCallback:q,focusSelectedItem:j,selectedItemText:L,position:r,isPositioned:V,searchRef:H,children:h.jsx(pa,{as:Gv,allowPinchZoom:!0,children:h.jsx(Lo,{asChild:!0,trapped:b.open,onMountAutoFocus:k=>{k.preventDefault()},onUnmountAutoFocus:B(o,k=>{b.trigger?.focus({preventScroll:!0}),k.preventDefault()}),children:h.jsx(mr,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:k=>k.preventDefault(),onDismiss:()=>b.onOpenChange(!1),children:h.jsx(Q,{role:"listbox",id:b.contentId,"data-state":b.open?"open":"closed",dir:b.dir,onContextMenu:k=>k.preventDefault(),...x,...ne,onPlaced:()=>N(!0),ref:R,style:{display:"flex",flexDirection:"column",outline:"none",...x.style},onKeyDown:B(x.onKeyDown,k=>{const G=k.ctrlKey||k.altKey||k.metaKey;if(k.key==="Tab"&&k.preventDefault(),!G&&k.key.length===1&&U(k.key),["ArrowUp","ArrowDown","Home","End"].includes(k.key)){let $=F().filter(Y=>!Y.disabled).map(Y=>Y.ref.current);if(["ArrowUp","End"].includes(k.key)&&($=$.slice().reverse()),["ArrowUp","ArrowDown"].includes(k.key)){const Y=k.target,J=$.indexOf(Y);$=$.slice(J+1)}setTimeout(()=>_($)),k.preventDefault()}})})})})})})});ff.displayName=Wv;var Kv="SelectItemAlignedPosition",hf=c.forwardRef((e,t)=>{const{__scopeSelect:n,onPlaced:r,...o}=e,s=$t(an,n),a=Ht(an,n),[i,l]=c.useState(null),[u,d]=c.useState(null),f=oe(t,R=>d(R)),p=Bo(n),m=c.useRef(!1),g=c.useRef(!0),{viewport:v,selectedItem:y,selectedItemText:x,focusSelectedItem:b}=a,w=c.useCallback(()=>{if(s.trigger&&s.valueNode&&i&&u&&v&&y&&x){const R=s.trigger.getBoundingClientRect(),E=u.getBoundingClientRect(),A=s.valueNode.getBoundingClientRect(),L=x.getBoundingClientRect();if(s.dir!=="rtl"){const Y=L.left-E.left,J=A.left-Y,se=R.left-J,fe=R.width+se,Ve=Math.max(fe,E.width),Le=window.innerWidth-Ye,ft=fc(J,[Ye,Math.max(Ye,Le-Ve)]);i.style.minWidth=fe+"px",i.style.left=ft+"px"}else{const Y=E.right-L.right,J=window.innerWidth-A.right-Y,se=window.innerWidth-R.right-J,fe=R.width+se,Ve=Math.max(fe,E.width),Le=window.innerWidth-Ye,ft=fc(J,[Ye,Math.max(Ye,Le-Ve)]);i.style.minWidth=fe+"px",i.style.right=ft+"px"}const T=p(),F=window.innerHeight-Ye*2,V=v.scrollHeight,N=window.getComputedStyle(u),D=parseInt(N.borderTopWidth,10),_=parseInt(N.paddingTop,10),j=parseInt(N.borderBottomWidth,10),I=parseInt(N.paddingBottom,10),M=D+_+V+I+j,H=Math.min(y.offsetHeight*5,M),U=window.getComputedStyle(v),Z=parseInt(U.paddingTop,10),K=parseInt(U.paddingBottom,10),q=R.top+R.height/2-Ye,Q=F-q,ne=y.offsetHeight/2,k=y.offsetTop+ne,G=D+_+k,ee=M-G;if(G<=q){const Y=T.length>0&&y===T[T.length-1].ref.current;i.style.bottom="0px";const J=u.clientHeight-v.offsetTop-v.offsetHeight,se=Math.max(Q,ne+(Y?K:0)+J+j),fe=G+se;i.style.height=fe+"px"}else{const Y=T.length>0&&y===T[0].ref.current;i.style.top="0px";const se=Math.max(q,D+v.offsetTop+(Y?Z:0)+ne)+ee;i.style.height=se+"px",v.scrollTop=G-q+v.offsetTop}i.style.margin=`${Ye}px 0`,i.style.minHeight=H+"px",i.style.maxHeight=F+"px",r?.(),requestAnimationFrame(()=>m.current=!0)}},[p,s.trigger,s.valueNode,i,u,v,y,x,s.dir,r]);Ee(()=>w(),[w]);const[S,P]=c.useState();Ee(()=>{u&&P(window.getComputedStyle(u).zIndex)},[u]);const O=c.useCallback(R=>{R&&g.current===!0&&(w(),b?.(),g.current=!1)},[w,b]);return h.jsx(Yv,{scope:n,contentWrapper:i,shouldExpandOnScrollRef:m,onScrollButtonChange:O,children:h.jsx("div",{ref:l,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:S},children:h.jsx(te.div,{...o,ref:f,style:{boxSizing:"border-box",maxHeight:"100%",...o.style}})})})});hf.displayName=Kv;var Qv="SelectPopperPosition",zs=c.forwardRef((e,t)=>{const{__scopeSelect:n,align:r="start",collisionPadding:o=Ye,...s}=e,a=Vo(n);return h.jsx(Ba,{...a,...s,ref:t,align:r,collisionPadding:o,style:{boxSizing:"border-box",...s.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});zs.displayName=Qv;var[Yv,Qa]=On(an,{}),Ws="SelectViewport",pf=c.forwardRef((e,t)=>{const{__scopeSelect:n,nonce:r,...o}=e,s=Ht(Ws,n),a=Qa(Ws,n),i=oe(t,s.onViewportChange),l=c.useRef(0);return h.jsxs(h.Fragment,{children:[h.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:r}),h.jsx(Ho.Slot,{scope:n,children:h.jsx(te.div,{"data-radix-select-viewport":"",role:"presentation",...o,ref:i,style:{position:"relative",flex:1,overflow:"hidden auto",...o.style},onScroll:B(o.onScroll,u=>{const d=u.currentTarget,{contentWrapper:f,shouldExpandOnScrollRef:p}=a;if(p?.current&&f){const m=Math.abs(l.current-d.scrollTop);if(m>0){const g=window.innerHeight-Ye*2,v=parseFloat(f.style.minHeight),y=parseFloat(f.style.height),x=Math.max(v,y);if(x<g){const b=x+m,w=Math.min(g,b),S=b-w;f.style.height=w+"px",f.style.bottom==="0px"&&(d.scrollTop=S>0?S:0,f.style.justifyContent="flex-end")}}}l.current=d.scrollTop})})})]})});pf.displayName=Ws;var mf="SelectGroup",[Xv,Jv]=On(mf),ey=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=ct();return h.jsx(Xv,{scope:n,id:o,children:h.jsx(te.div,{role:"group","aria-labelledby":o,...r,ref:t})})});ey.displayName=mf;var gf="SelectLabel",ty=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Jv(gf,n);return h.jsx(te.div,{id:o.id,...r,ref:t})});ty.displayName=gf;var mo="SelectItem",[ny,vf]=On(mo),yf=c.forwardRef((e,t)=>{const{__scopeSelect:n,value:r,disabled:o=!1,textValue:s,...a}=e,i=$t(mo,n),l=Ht(mo,n),u=i.value===r,[d,f]=c.useState(s??""),[p,m]=c.useState(!1),g=oe(t,b=>l.itemRefCallback?.(b,r,o)),v=ct(),y=c.useRef("touch"),x=()=>{o||(i.onValueChange(r),i.onOpenChange(!1))};if(r==="")throw new Error("A <Select.Item /> must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return h.jsx(ny,{scope:n,value:r,disabled:o,textId:v,isSelected:u,onItemTextChange:c.useCallback(b=>{f(w=>w||(b?.textContent??"").trim())},[]),children:h.jsx(Ho.ItemSlot,{scope:n,value:r,disabled:o,textValue:d,children:h.jsx(te.div,{role:"option","aria-labelledby":v,"data-highlighted":p?"":void 0,"aria-selected":u&&p,"data-state":u?"checked":"unchecked","aria-disabled":o||void 0,"data-disabled":o?"":void 0,tabIndex:o?void 0:-1,...a,ref:g,onFocus:B(a.onFocus,()=>m(!0)),onBlur:B(a.onBlur,()=>m(!1)),onClick:B(a.onClick,()=>{y.current!=="mouse"&&x()}),onPointerUp:B(a.onPointerUp,()=>{y.current==="mouse"&&x()}),onPointerDown:B(a.onPointerDown,b=>{y.current=b.pointerType}),onPointerMove:B(a.onPointerMove,b=>{y.current=b.pointerType,o?l.onItemLeave?.():y.current==="mouse"&&b.currentTarget.focus({preventScroll:!0})}),onPointerLeave:B(a.onPointerLeave,b=>{b.currentTarget===document.activeElement&&l.onItemLeave?.()}),onKeyDown:B(a.onKeyDown,b=>{l.searchRef?.current!==""&&b.key===" "||(Hv.includes(b.key)&&x(),b.key===" "&&b.preventDefault())})})})})});yf.displayName=mo;var Gn="SelectItemText",xf=c.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,...s}=e,a=$t(Gn,n),i=Ht(Gn,n),l=vf(Gn,n),u=Zv(Gn,n),[d,f]=c.useState(null),p=oe(t,x=>f(x),l.onItemTextChange,x=>i.itemTextRefCallback?.(x,l.value,l.disabled)),m=d?.textContent,g=c.useMemo(()=>h.jsx("option",{value:l.value,disabled:l.disabled,children:m},l.value),[l.disabled,l.value,m]),{onNativeOptionAdd:v,onNativeOptionRemove:y}=u;return Ee(()=>(v(g),()=>y(g)),[v,y,g]),h.jsxs(h.Fragment,{children:[h.jsx(te.span,{id:l.textId,...s,ref:p}),l.isSelected&&a.valueNode&&!a.valueNodeHasChildren?yt.createPortal(s.children,a.valueNode):null]})});xf.displayName=Gn;var bf="SelectItemIndicator",ry=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return vf(bf,n).isSelected?h.jsx(te.span,{"aria-hidden":!0,...r,ref:t}):null});ry.displayName=bf;var Gs="SelectScrollUpButton",oy=c.forwardRef((e,t)=>{const n=Ht(Gs,e.__scopeSelect),r=Qa(Gs,e.__scopeSelect),[o,s]=c.useState(!1),a=oe(t,r.onScrollButtonChange);return Ee(()=>{if(n.viewport&&n.isPositioned){let i=function(){const u=l.scrollTop>0;s(u)};const l=n.viewport;return i(),l.addEventListener("scroll",i),()=>l.removeEventListener("scroll",i)}},[n.viewport,n.isPositioned]),o?h.jsx(wf,{...e,ref:a,onAutoScroll:()=>{const{viewport:i,selectedItem:l}=n;i&&l&&(i.scrollTop=i.scrollTop-l.offsetHeight)}}):null});oy.displayName=Gs;var Ks="SelectScrollDownButton",sy=c.forwardRef((e,t)=>{const n=Ht(Ks,e.__scopeSelect),r=Qa(Ks,e.__scopeSelect),[o,s]=c.useState(!1),a=oe(t,r.onScrollButtonChange);return Ee(()=>{if(n.viewport&&n.isPositioned){let i=function(){const u=l.scrollHeight-l.clientHeight,d=Math.ceil(l.scrollTop)<u;s(d)};const l=n.viewport;return i(),l.addEventListener("scroll",i),()=>l.removeEventListener("scroll",i)}},[n.viewport,n.isPositioned]),o?h.jsx(wf,{...e,ref:a,onAutoScroll:()=>{const{viewport:i,selectedItem:l}=n;i&&l&&(i.scrollTop=i.scrollTop+l.offsetHeight)}}):null});sy.displayName=Ks;var wf=c.forwardRef((e,t)=>{const{__scopeSelect:n,onAutoScroll:r,...o}=e,s=Ht("SelectScrollButton",n),a=c.useRef(null),i=Bo(n),l=c.useCallback(()=>{a.current!==null&&(window.clearInterval(a.current),a.current=null)},[]);return c.useEffect(()=>()=>l(),[l]),Ee(()=>{i().find(d=>d.ref.current===document.activeElement)?.ref.current?.scrollIntoView({block:"nearest"})},[i]),h.jsx(te.div,{"aria-hidden":!0,...o,ref:t,style:{flexShrink:0,...o.style},onPointerDown:B(o.onPointerDown,()=>{a.current===null&&(a.current=window.setInterval(r,50))}),onPointerMove:B(o.onPointerMove,()=>{s.onItemLeave?.(),a.current===null&&(a.current=window.setInterval(r,50))}),onPointerLeave:B(o.onPointerLeave,()=>{l()})})}),ay="SelectSeparator",iy=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return h.jsx(te.div,{"aria-hidden":!0,...r,ref:t})});iy.displayName=ay;var Qs="SelectArrow",cy=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Vo(n),s=$t(Qs,n),a=Ht(Qs,n);return s.open&&a.position==="popper"?h.jsx(Va,{...o,...r,ref:t}):null});cy.displayName=Qs;var ly="SelectBubbleInput",Sf=c.forwardRef(({__scopeSelect:e,value:t,...n},r)=>{const o=c.useRef(null),s=oe(r,o),a=jv(t);return c.useEffect(()=>{const i=o.current;if(!i)return;const l=window.HTMLSelectElement.prototype,d=Object.getOwnPropertyDescriptor(l,"value").set;if(a!==t&&d){const f=new Event("change",{bubbles:!0});d.call(i,t),i.dispatchEvent(f)}},[a,t]),h.jsx(te.select,{...n,style:{...ef,...n.style},ref:s,defaultValue:t})});Sf.displayName=ly;function Ef(e){return e===""||e===void 0}function Rf(e){const t=lt(e),n=c.useRef(""),r=c.useRef(0),o=c.useCallback(a=>{const i=n.current+a;t(i),(function l(u){n.current=u,window.clearTimeout(r.current),u!==""&&(r.current=window.setTimeout(()=>l(""),1e3))})(i)},[t]),s=c.useCallback(()=>{n.current="",window.clearTimeout(r.current)},[]);return c.useEffect(()=>()=>window.clearTimeout(r.current),[]),[n,o,s]}function Cf(e,t,n){const o=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,s=n?e.indexOf(n):-1;let a=uy(e,Math.max(s,0));o.length===1&&(a=a.filter(u=>u!==n));const l=a.find(u=>u.textValue.toLowerCase().startsWith(o.toLowerCase()));return l!==n?l:void 0}function uy(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var dy=nf,fy=of,hy=af,py=cf,my=lf,gy=uf,vy=pf,yy=yf,xy=xf;const by=kt(["inline-flex","items-center","justify-between","gap-2","border-2","bg-surface","text-fg","font-bold","transition-all","outline-none","focus:shadow-sketchy","disabled:cursor-not-allowed","disabled:opacity-50","cursor-pointer","whitespace-nowrap"],{variants:{variant:{default:["border-border"],ghost:["border-transparent","bg-subtle","focus:border-border-focus"]},size:{sm:"h-8 px-2 text-sm rounded-sketchy-sm",md:"h-10 px-3 text-sm rounded-sketchy-md",lg:"h-12 px-4 text-base rounded-sketchy-lg"}},defaultVariants:{variant:"default",size:"md"}}),Wr=({value:e,defaultValue:t,onValueChange:n,placeholder:r,variant:o,size:s,className:a,children:i,disabled:l})=>h.jsxs(dy,{value:e,defaultValue:t,onValueChange:n,disabled:l,children:[h.jsxs(fy,{className:by({variant:o,size:s,className:a}),children:[h.jsx(hy,{placeholder:r}),h.jsx(py,{children:h.jsx(Om,{className:"w-3.5 h-3.5 opacity-60"})})]}),h.jsx(my,{children:h.jsx(Pf,{children:h.jsx(vy,{className:"p-1",children:i})})})]}),Pf=c.forwardRef(({className:e,children:t,...n},r)=>h.jsx(gy,{ref:r,position:"popper",sideOffset:4,className:["z-[1100]","min-w-[var(--radix-select-trigger-width)]","overflow-hidden","rounded-sketchy-md","bg-surface","border-2","border-border","shadow-sketchy","data-[state=open]:animate-fade-in","data-[state=open]:animate-zoom-in",e].filter(Boolean).join(" "),...n,children:t}));Pf.displayName="SelectContent";const gt=c.forwardRef(({className:e,children:t,...n},r)=>h.jsx(yy,{ref:r,className:["relative","flex","items-center","cursor-pointer","select-none","px-3","py-2","text-sm","font-bold","text-fg-muted","outline-none","transition-colors","rounded-sketchy-sm","data-[highlighted]:bg-hover","data-[highlighted]:text-fg-default","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",e].filter(Boolean).join(" "),...n,children:h.jsx(xy,{children:t})}));gt.displayName="SelectItem";Wr.displayName="Select";const wy=kt(["w-full","border-2","border-border","bg-surface","text-fg","placeholder:text-fg-placeholder","transition-all","focus:outline-none","focus:shadow-sketchy","disabled:cursor-not-allowed","disabled:opacity-50","resize-none"],{variants:{variant:{default:[],ghost:["border-transparent","bg-subtle","focus:border-border-focus"],error:["border-border-error","bg-pastel-pink-200/20","focus:border-red-500"]},size:{sm:"p-2 text-sm rounded-[8px_3px_9px_2px/3px_7px_3px_8px] min-h-[60px]",md:"p-3 text-sm rounded-[10px_3px_11px_3px/3px_9px_3px_10px] min-h-[80px]",lg:"p-4 text-base rounded-[12px_4px_13px_3px/4px_10px_4px_12px] min-h-[100px]"}},defaultVariants:{variant:"default",size:"md"}}),Sy=c.forwardRef(({className:e,variant:t,size:n,...r},o)=>h.jsx("textarea",{ref:o,className:wy({variant:t,size:n,className:e}),...r}));Sy.displayName="Textarea";var _f="Toggle",Tf=c.forwardRef((e,t)=>{const{pressed:n,defaultPressed:r,onPressedChange:o,...s}=e,[a,i]=wt({prop:n,onChange:o,defaultProp:r??!1,caller:_f});return h.jsx(te.button,{type:"button","aria-pressed":a,"data-state":a?"on":"off","data-disabled":e.disabled?"":void 0,...s,ref:t,onClick:B(e.onClick,()=>{e.disabled||i(!a)})})});Tf.displayName=_f;var Bt="ToggleGroup",[Af]=St(Bt,[jo]),Mf=jo(),Ya=W.forwardRef((e,t)=>{const{type:n,...r}=e;if(n==="single"){const o=r;return h.jsx(Ey,{...o,ref:t})}if(n==="multiple"){const o=r;return h.jsx(Ry,{...o,ref:t})}throw new Error(`Missing prop \`type\` expected on \`${Bt}\``)});Ya.displayName=Bt;var[Of,If]=Af(Bt),Ey=W.forwardRef((e,t)=>{const{value:n,defaultValue:r,onValueChange:o=()=>{},...s}=e,[a,i]=wt({prop:n,defaultProp:r??"",onChange:o,caller:Bt});return h.jsx(Of,{scope:e.__scopeToggleGroup,type:"single",value:W.useMemo(()=>a?[a]:[],[a]),onItemActivate:i,onItemDeactivate:W.useCallback(()=>i(""),[i]),children:h.jsx(Lf,{...s,ref:t})})}),Ry=W.forwardRef((e,t)=>{const{value:n,defaultValue:r,onValueChange:o=()=>{},...s}=e,[a,i]=wt({prop:n,defaultProp:r??[],onChange:o,caller:Bt}),l=W.useCallback(d=>i((f=[])=>[...f,d]),[i]),u=W.useCallback(d=>i((f=[])=>f.filter(p=>p!==d)),[i]);return h.jsx(Of,{scope:e.__scopeToggleGroup,type:"multiple",value:a,onItemActivate:l,onItemDeactivate:u,children:h.jsx(Lf,{...s,ref:t})})});Ya.displayName=Bt;var[Cy,Py]=Af(Bt),Lf=W.forwardRef((e,t)=>{const{__scopeToggleGroup:n,disabled:r=!1,rovingFocus:o=!0,orientation:s,dir:a,loop:i=!0,...l}=e,u=Mf(n),d=Do(a),f={role:"group",dir:d,...l};return h.jsx(Cy,{scope:n,rovingFocus:o,disabled:r,children:o?h.jsx(nd,{asChild:!0,...u,orientation:s,dir:d,loop:i,children:h.jsx(te.div,{...f,ref:t})}):h.jsx(te.div,{...f,ref:t})})}),go="ToggleGroupItem",Nf=W.forwardRef((e,t)=>{const n=If(go,e.__scopeToggleGroup),r=Py(go,e.__scopeToggleGroup),o=Mf(e.__scopeToggleGroup),s=n.value.includes(e.value),a=r.disabled||e.disabled,i={...e,pressed:s,disabled:a},l=W.useRef(null);return r.rovingFocus?h.jsx(rd,{asChild:!0,...o,focusable:!a,active:s,ref:l,children:h.jsx(hc,{...i,ref:t})}):h.jsx(hc,{...i,ref:t})});Nf.displayName=go;var hc=W.forwardRef((e,t)=>{const{__scopeToggleGroup:n,value:r,...o}=e,s=If(go,n),a={role:"radio","aria-checked":e.pressed,"aria-pressed":void 0},i=s.type==="single"?a:void 0;return h.jsx(Tf,{...i,...o,ref:t,onPressedChange:l=>{l?s.onItemActivate(r):s.onItemDeactivate(r)}})}),_y=Ya,Ty=Nf;const Ay=kt(["inline-flex","gap-0.5","overflow-hidden"],{variants:{variant:{default:["border-2","border-border","rounded-[12px_4px_13px_3px/4px_10px_4px_12px]","bg-surface"],outline:["border-2","border-border","rounded-[12px_4px_13px_3px/4px_10px_4px_12px]","bg-transparent"],pills:["bg-subtle","rounded-[14px_4px_15px_4px/4px_12px_4px_14px]","p-1","border-2","border-border"]}},defaultVariants:{variant:"default"}}),My=kt(["flex","items-center","justify-center","font-bold","transition-all","duration-200","disabled:pointer-events-none","disabled:opacity-50"],{variants:{variant:{default:["text-fg-muted","hover:bg-hover","data-[state=on]:bg-accent-primary","data-[state=on]:text-fg-on-accent","data-[state=on]:shadow-sketchy"],outline:["text-fg-muted","hover:bg-hover-subtle","data-[state=on]:bg-accent-primary","data-[state=on]:text-fg-on-accent"],pills:["text-fg-secondary","rounded-[10px_3px_11px_3px/3px_8px_3px_10px]","data-[state=on]:bg-accent-primary","data-[state=on]:text-fg-on-accent","data-[state=on]:shadow-sketchy","data-[state=on]:border-2","data-[state=on]:border-border-secondary"]},size:{sm:"px-2 py-1.5 text-xs",md:"px-3 py-2 text-sm",lg:"px-4 py-2.5 text-sm"}},defaultVariants:{variant:"default",size:"md"}}),Df=c.createContext({}),Oy=c.forwardRef(({className:e,variant:t,size:n,children:r,...o},s)=>h.jsx(Df.Provider,{value:{variant:t??"default",size:n??"md"},children:h.jsx(_y,{ref:s,className:Ay({variant:t,className:e}),...o,children:r})}));Oy.displayName="ToggleGroup";const Iy=c.forwardRef(({className:e,activeClassName:t,children:n,...r},o)=>{const s=c.useContext(Df);return h.jsx(Ty,{ref:o,className:My({variant:s.variant,size:s.size,className:[e,t].filter(Boolean).join(" ")}),...r,children:n})});Iy.displayName="ToggleGroupItem";var[Uo]=St("Tooltip",[Mn]),Zo=Mn(),jf="TooltipProvider",Ly=700,Ys="tooltip.open",[Ny,Xa]=Uo(jf),Ff=e=>{const{__scopeTooltip:t,delayDuration:n=Ly,skipDelayDuration:r=300,disableHoverableContent:o=!1,children:s}=e,a=c.useRef(!0),i=c.useRef(!1),l=c.useRef(0);return c.useEffect(()=>{const u=l.current;return()=>window.clearTimeout(u)},[]),h.jsx(Ny,{scope:t,isOpenDelayedRef:a,delayDuration:n,onOpen:c.useCallback(()=>{window.clearTimeout(l.current),a.current=!1},[]),onClose:c.useCallback(()=>{window.clearTimeout(l.current),l.current=window.setTimeout(()=>a.current=!0,r)},[r]),isPointerInTransitRef:i,onPointerInTransitChange:c.useCallback(u=>{i.current=u},[]),disableHoverableContent:o,children:s})};Ff.displayName=jf;var ar="Tooltip",[Dy,br]=Uo(ar),kf=e=>{const{__scopeTooltip:t,children:n,open:r,defaultOpen:o,onOpenChange:s,disableHoverableContent:a,delayDuration:i}=e,l=Xa(ar,e.__scopeTooltip),u=Zo(t),[d,f]=c.useState(null),p=ct(),m=c.useRef(0),g=a??l.disableHoverableContent,v=i??l.delayDuration,y=c.useRef(!1),[x,b]=wt({prop:r,defaultProp:o??!1,onChange:R=>{R?(l.onOpen(),document.dispatchEvent(new CustomEvent(Ys))):l.onClose(),s?.(R)},caller:ar}),w=c.useMemo(()=>x?y.current?"delayed-open":"instant-open":"closed",[x]),S=c.useCallback(()=>{window.clearTimeout(m.current),m.current=0,y.current=!1,b(!0)},[b]),P=c.useCallback(()=>{window.clearTimeout(m.current),m.current=0,b(!1)},[b]),O=c.useCallback(()=>{window.clearTimeout(m.current),m.current=window.setTimeout(()=>{y.current=!0,b(!0),m.current=0},v)},[v,b]);return c.useEffect(()=>()=>{m.current&&(window.clearTimeout(m.current),m.current=0)},[]),h.jsx($a,{...u,children:h.jsx(Dy,{scope:t,contentId:p,open:x,stateAttribute:w,trigger:d,onTriggerChange:f,onTriggerEnter:c.useCallback(()=>{l.isOpenDelayedRef.current?O():S()},[l.isOpenDelayedRef,O,S]),onTriggerLeave:c.useCallback(()=>{g?P():(window.clearTimeout(m.current),m.current=0)},[P,g]),onOpen:S,onClose:P,disableHoverableContent:g,children:n})})};kf.displayName=ar;var Xs="TooltipTrigger",$f=c.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=br(Xs,n),s=Xa(Xs,n),a=Zo(n),i=c.useRef(null),l=oe(t,i,o.onTriggerChange),u=c.useRef(!1),d=c.useRef(!1),f=c.useCallback(()=>u.current=!1,[]);return c.useEffect(()=>()=>document.removeEventListener("pointerup",f),[f]),h.jsx(Ha,{asChild:!0,...a,children:h.jsx(te.button,{"aria-describedby":o.open?o.contentId:void 0,"data-state":o.stateAttribute,...r,ref:l,onPointerMove:B(e.onPointerMove,p=>{p.pointerType!=="touch"&&!d.current&&!s.isPointerInTransitRef.current&&(o.onTriggerEnter(),d.current=!0)}),onPointerLeave:B(e.onPointerLeave,()=>{o.onTriggerLeave(),d.current=!1}),onPointerDown:B(e.onPointerDown,()=>{o.open&&o.onClose(),u.current=!0,document.addEventListener("pointerup",f,{once:!0})}),onFocus:B(e.onFocus,()=>{u.current||o.onOpen()}),onBlur:B(e.onBlur,o.onClose),onClick:B(e.onClick,o.onClose)})})});$f.displayName=Xs;var Ja="TooltipPortal",[jy,Fy]=Uo(Ja,{forceMount:void 0}),Hf=e=>{const{__scopeTooltip:t,forceMount:n,children:r,container:o}=e,s=br(Ja,t);return h.jsx(jy,{scope:t,forceMount:n,children:h.jsx(dt,{present:n||s.open,children:h.jsx(gr,{asChild:!0,container:o,children:r})})})};Hf.displayName=Ja;var Pn="TooltipContent",Bf=c.forwardRef((e,t)=>{const n=Fy(Pn,e.__scopeTooltip),{forceMount:r=n.forceMount,side:o="top",...s}=e,a=br(Pn,e.__scopeTooltip);return h.jsx(dt,{present:r||a.open,children:a.disableHoverableContent?h.jsx(Vf,{side:o,...s,ref:t}):h.jsx(ky,{side:o,...s,ref:t})})}),ky=c.forwardRef((e,t)=>{const n=br(Pn,e.__scopeTooltip),r=Xa(Pn,e.__scopeTooltip),o=c.useRef(null),s=oe(t,o),[a,i]=c.useState(null),{trigger:l,onClose:u}=n,d=o.current,{onPointerInTransitChange:f}=r,p=c.useCallback(()=>{i(null),f(!1)},[f]),m=c.useCallback((g,v)=>{const y=g.currentTarget,x={x:g.clientX,y:g.clientY},b=Uy(x,y.getBoundingClientRect()),w=Zy(x,b),S=qy(v.getBoundingClientRect()),P=Wy([...w,...S]);i(P),f(!0)},[f]);return c.useEffect(()=>()=>p(),[p]),c.useEffect(()=>{if(l&&d){const g=y=>m(y,d),v=y=>m(y,l);return l.addEventListener("pointerleave",g),d.addEventListener("pointerleave",v),()=>{l.removeEventListener("pointerleave",g),d.removeEventListener("pointerleave",v)}}},[l,d,m,p]),c.useEffect(()=>{if(a){const g=v=>{const y=v.target,x={x:v.clientX,y:v.clientY},b=l?.contains(y)||d?.contains(y),w=!zy(x,a);b?p():w&&(p(),u())};return document.addEventListener("pointermove",g),()=>document.removeEventListener("pointermove",g)}},[l,d,a,u,p]),h.jsx(Vf,{...e,ref:s})}),[$y,Hy]=Uo(ar,{isInside:!1}),By=Ym("TooltipContent"),Vf=c.forwardRef((e,t)=>{const{__scopeTooltip:n,children:r,"aria-label":o,onEscapeKeyDown:s,onPointerDownOutside:a,...i}=e,l=br(Pn,n),u=Zo(n),{onClose:d}=l;return c.useEffect(()=>(document.addEventListener(Ys,d),()=>document.removeEventListener(Ys,d)),[d]),c.useEffect(()=>{if(l.trigger){const f=p=>{p.target?.contains(l.trigger)&&d()};return window.addEventListener("scroll",f,{capture:!0}),()=>window.removeEventListener("scroll",f,{capture:!0})}},[l.trigger,d]),h.jsx(mr,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:f=>f.preventDefault(),onDismiss:d,children:h.jsxs(Ba,{"data-state":l.stateAttribute,...u,...i,ref:t,style:{...i.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[h.jsx(By,{children:r}),h.jsx($y,{scope:n,isInside:!0,children:h.jsx(kv,{id:l.contentId,role:"tooltip",children:o||r})})]})})});Bf.displayName=Pn;var Uf="TooltipArrow",Vy=c.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=Zo(n);return Hy(Uf,n).isInside?null:h.jsx(Va,{...o,...r,ref:t})});Vy.displayName=Uf;function Uy(e,t){const n=Math.abs(t.top-e.y),r=Math.abs(t.bottom-e.y),o=Math.abs(t.right-e.x),s=Math.abs(t.left-e.x);switch(Math.min(n,r,o,s)){case s:return"left";case o:return"right";case n:return"top";case r:return"bottom";default:throw new Error("unreachable")}}function Zy(e,t,n=5){const r=[];switch(t){case"top":r.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case"bottom":r.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case"left":r.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case"right":r.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return r}function qy(e){const{top:t,right:n,bottom:r,left:o}=e;return[{x:o,y:t},{x:n,y:t},{x:n,y:r},{x:o,y:r}]}function zy(e,t){const{x:n,y:r}=e;let o=!1;for(let s=0,a=t.length-1;s<t.length;a=s++){const i=t[s],l=t[a],u=i.x,d=i.y,f=l.x,p=l.y;d>r!=p>r&&n<(f-u)*(r-d)/(p-d)+u&&(o=!o)}return o}function Wy(e){const t=e.slice();return t.sort((n,r)=>n.x<r.x?-1:n.x>r.x?1:n.y<r.y?-1:n.y>r.y?1:0),Gy(t)}function Gy(e){if(e.length<=1)return e.slice();const t=[];for(let r=0;r<e.length;r++){const o=e[r];for(;t.length>=2;){const s=t[t.length-1],a=t[t.length-2];if((s.x-a.x)*(o.y-a.y)>=(s.y-a.y)*(o.x-a.x))t.pop();else break}t.push(o)}t.pop();const n=[];for(let r=e.length-1;r>=0;r--){const o=e[r];for(;n.length>=2;){const s=n[n.length-1],a=n[n.length-2];if((s.x-a.x)*(o.y-a.y)>=(s.y-a.y)*(o.x-a.x))n.pop();else break}n.push(o)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}var Ky=Ff,Qy=kf,Yy=$f,Xy=Hf,Zf=Bf;const Jy=Ky,e8=Qy,t8=Yy,qf=c.forwardRef(({className:e,sideOffset:t=4,...n},r)=>h.jsx(Zf,{ref:r,sideOffset:t,className:["z-50","overflow-hidden","px-3","py-1.5","text-xs","font-bold","bg-elevated","text-fg-default","border-2","border-border-secondary","rounded-[8px_3px_9px_2px/3px_6px_3px_7px]","shadow-sketchy","animate-in","fade-in-0","zoom-in-95","data-[state=closed]:animate-out","data-[state=closed]:fade-out-0","data-[state=closed]:zoom-out-95","data-[side=bottom]:slide-in-from-top-2","data-[side=left]:slide-in-from-right-2","data-[side=right]:slide-in-from-left-2","data-[side=top]:slide-in-from-bottom-2",e].filter(Boolean).join(" "),...n}));qf.displayName=Zf.displayName;const n8=({content:e,children:t,side:n="top",delayDuration:r=200})=>h.jsx(Jy,{children:h.jsxs(e8,{delayDuration:r,children:[h.jsx(t8,{asChild:!0,children:t}),h.jsx(Xy,{children:h.jsx(qf,{side:n,children:e})})]})}),zf=c.forwardRef(({icon:e,title:t,description:n,className:r="",...o},s)=>h.jsxs("div",{ref:s,className:["flex flex-col items-center justify-center text-center","h-[400px]","bg-muted/30","border-2 border-dashed","border-border-secondary","rounded-[24px_8px_25px_7px/8px_20px_8px_22px]","p-8",r].join(" "),...o,children:[e&&h.jsx("div",{className:"mb-4 text-6xl opacity-80",children:e}),t&&h.jsx("h3",{className:"text-xl font-bold mb-2 text-fg-muted",children:t}),n&&h.jsx("p",{className:"text-fg-tertiary max-w-[400px] font-medium",children:n})]}));zf.displayName="Empty";const Wf=c.forwardRef(({page:e,last:t,onChange:n,className:r="",...o},s)=>{const a=Number(e),i=Number(t),l=[];for(let f=1;f<i+1;f++)(a===f||a===1&&f<a+5||a===2&&f<a+4||f>a-3&&f<a+3||a===i-1&&f>a-4||a===i&&f>a-5)&&l.push(f);const u=a===1,d=a===i;return h.jsxs("nav",{ref:s,className:`mt-8 flex justify-center items-center gap-1 ${r}`,...o,children:[h.jsxs(xn,{disabled:u,onClick:()=>!u&&n(1),"aria-label":"First page",isSkip:!0,children:[h.jsx(ds,{width:16}),h.jsx(ds,{width:16})]}),h.jsx(xn,{disabled:u,onClick:()=>!u&&n(a-1),"aria-label":"Previous page",children:h.jsx(ds,{width:20})}),l.map(f=>h.jsx(xn,{active:a===f,onClick:()=>n(f),"aria-label":`Page ${f}`,"aria-current":a===f?"page":void 0,children:f},f)),h.jsx(xn,{disabled:d,onClick:()=>!d&&n(a+1),"aria-label":"Next page",children:h.jsx(fs,{width:20})}),h.jsxs(xn,{disabled:d,onClick:()=>!d&&n(i),"aria-label":"Last page",isSkip:!0,children:[h.jsx(fs,{width:16}),h.jsx(fs,{width:16})]})]})});Wf.displayName="Pagination";const xn=c.forwardRef(({active:e,disabled:t,isSkip:n,children:r,className:o="",...s},a)=>{const i=`
|
|
7
|
-
flex justify-center items-center
|
|
8
|
-
leading-normal text-base font-bold
|
|
9
|
-
w-9 h-9 md:w-10 md:h-10
|
|
10
|
-
border-2 border-transparent
|
|
11
|
-
rounded-[10px_3px_11px_3px/3px_8px_3px_10px]
|
|
12
|
-
transition-all duration-200
|
|
13
|
-
`,l=e?"cursor-default bg-accent-primary border-border text-fg-on-accent shadow-sketchy sketchy-sm":t?"cursor-default text-fg-disabled border-transparent":"cursor-pointer text-fg-default hover:bg-hover hover:border-border-secondary",u=n?"relative [&>svg]:absolute [&>svg:first-child]:-translate-x-[3px] [&>svg:last-child]:translate-x-[3px]":"";return h.jsx("button",{ref:a,type:"button",disabled:t,className:`${i} ${l} ${u} ${o}`,...s,children:r})});xn.displayName="PaginationItem";const r8=kt(["h-full","transition-all","duration-300","ease-out"],{variants:{color:{primary:"bg-pastel-blue-200",success:"bg-pastel-green-200",danger:"bg-pastel-pink-200",warning:"bg-pastel-orange-200"}},defaultVariants:{color:"primary"}}),o8=c.forwardRef(({value:e,max:t,color:n,className:r="",...o},s)=>{const a=Math.min(100,Math.max(0,e/t*100));return h.jsx("div",{ref:s,className:["w-full h-3","bg-surface","border-2 border-border","rounded-[6px_2px_7px_2px/2px_5px_2px_6px]","overflow-hidden",r].join(" "),role:"progressbar","aria-valuenow":e,"aria-valuemin":0,"aria-valuemax":t,...o,children:h.jsx("div",{className:r8({color:n}),style:{width:`${a}%`}})})});o8.displayName="Progress";const xt=c.forwardRef(({width:e,height:t=30,opacity:n,className:r="",style:o,...s},a)=>h.jsx("div",{ref:a,className:["rounded-[10px_3px_11px_3px/3px_8px_3px_10px]","border-2","border-divider","bg-[length:200%_100%]","bg-gradient-to-r","from-pastel-lavender-200/30","via-pastel-yellow-200/20","to-pastel-lavender-200/30","dark:from-zinc-800","dark:via-zinc-700","dark:to-zinc-800","animate-shimmer","animate-fade-in",r].join(" "),style:{width:e,height:t,opacity:n,...o},...s}));xt.displayName="Skeleton";const pc=({children:e,fallback:t})=>e||t,mc=e=>{let t;const n=new Set,r=(u,d)=>{const f=typeof u=="function"?u(t):u;if(!Object.is(f,t)){const p=t;t=d??(typeof f!="object"||f===null)?f:Object.assign({},t,f),n.forEach(m=>m(t,p))}},o=()=>t,i={setState:r,getState:o,getInitialState:()=>l,subscribe:u=>(n.add(u),()=>n.delete(u))},l=t=e(r,o,i);return i},s8=(e=>e?mc(e):mc),a8=e=>e;function i8(e,t=a8){const n=W.useSyncExternalStore(e.subscribe,W.useCallback(()=>t(e.getState()),[e,t]),W.useCallback(()=>t(e.getInitialState()),[e,t]));return W.useDebugValue(n),n}const gc=e=>{const t=s8(e),n=r=>i8(t,r);return Object.assign(n,t),n},c8=(e=>e?gc(e):gc),ei=c8(e=>({theme:"light",setTheme:t=>{e({theme:t})},toggleTheme:()=>{e(t=>({theme:t.theme==="light"?"dark":"light"}))}}));ei.subscribe(e=>{localStorage.setItem("theme",e.theme),document.documentElement.classList.add(e.theme),document.documentElement.classList.remove(e.theme==="dark"?"light":"dark")});var ys,vc;function l8(){if(vc)return ys;vc=1;function e(i){return i&&typeof i=="object"&&"default"in i?i.default:i}var t=y0(),n=e(t);function r(i,l,u){return l in i?Object.defineProperty(i,l,{value:u,enumerable:!0,configurable:!0,writable:!0}):i[l]=u,i}function o(i,l){i.prototype=Object.create(l.prototype),i.prototype.constructor=i,i.__proto__=l}var s=!!(typeof window<"u"&&window.document&&window.document.createElement);function a(i,l,u){if(typeof i!="function")throw new Error("Expected reducePropsToState to be a function.");if(typeof l!="function")throw new Error("Expected handleStateChangeOnClient to be a function.");if(typeof u<"u"&&typeof u!="function")throw new Error("Expected mapStateOnServer to either be undefined or a function.");function d(f){return f.displayName||f.name||"Component"}return function(p){if(typeof p!="function")throw new Error("Expected WrappedComponent to be a React component.");var m=[],g;function v(){g=i(m.map(function(x){return x.props})),y.canUseDOM?l(g):u&&(g=u(g))}var y=(function(x){o(b,x);function b(){return x.apply(this,arguments)||this}b.peek=function(){return g},b.rewind=function(){if(b.canUseDOM)throw new Error("You may only call rewind() on the server. Call peek() to read the current state.");var P=g;return g=void 0,m=[],P};var w=b.prototype;return w.UNSAFE_componentWillMount=function(){m.push(this),v()},w.componentDidUpdate=function(){v()},w.componentWillUnmount=function(){var P=m.indexOf(this);m.splice(P,1),v()},w.render=function(){return n.createElement(p,this.props)},b})(t.PureComponent);return r(y,"displayName","SideEffect("+d(p)+")"),r(y,"canUseDOM",s),y}}return ys=a,ys}var u8=l8();const d8=fr(u8);var xs,yc;function f8(){if(yc)return xs;yc=1;var e=typeof Element<"u",t=typeof Map=="function",n=typeof Set=="function",r=typeof ArrayBuffer=="function"&&!!ArrayBuffer.isView;function o(s,a){if(s===a)return!0;if(s&&a&&typeof s=="object"&&typeof a=="object"){if(s.constructor!==a.constructor)return!1;var i,l,u;if(Array.isArray(s)){if(i=s.length,i!=a.length)return!1;for(l=i;l--!==0;)if(!o(s[l],a[l]))return!1;return!0}var d;if(t&&s instanceof Map&&a instanceof Map){if(s.size!==a.size)return!1;for(d=s.entries();!(l=d.next()).done;)if(!a.has(l.value[0]))return!1;for(d=s.entries();!(l=d.next()).done;)if(!o(l.value[1],a.get(l.value[0])))return!1;return!0}if(n&&s instanceof Set&&a instanceof Set){if(s.size!==a.size)return!1;for(d=s.entries();!(l=d.next()).done;)if(!a.has(l.value[0]))return!1;return!0}if(r&&ArrayBuffer.isView(s)&&ArrayBuffer.isView(a)){if(i=s.length,i!=a.length)return!1;for(l=i;l--!==0;)if(s[l]!==a[l])return!1;return!0}if(s.constructor===RegExp)return s.source===a.source&&s.flags===a.flags;if(s.valueOf!==Object.prototype.valueOf&&typeof s.valueOf=="function"&&typeof a.valueOf=="function")return s.valueOf()===a.valueOf();if(s.toString!==Object.prototype.toString&&typeof s.toString=="function"&&typeof a.toString=="function")return s.toString()===a.toString();if(u=Object.keys(s),i=u.length,i!==Object.keys(a).length)return!1;for(l=i;l--!==0;)if(!Object.prototype.hasOwnProperty.call(a,u[l]))return!1;if(e&&s instanceof Element)return!1;for(l=i;l--!==0;)if(!((u[l]==="_owner"||u[l]==="__v"||u[l]==="__o")&&s.$$typeof)&&!o(s[u[l]],a[u[l]]))return!1;return!0}return s!==s&&a!==a}return xs=function(a,i){try{return o(a,i)}catch(l){if((l.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw l}},xs}var h8=f8();const p8=fr(h8);var bs,xc;function m8(){if(xc)return bs;xc=1;var e=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,n=Object.prototype.propertyIsEnumerable;function r(s){if(s==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(s)}function o(){try{if(!Object.assign)return!1;var s=new String("abc");if(s[5]="de",Object.getOwnPropertyNames(s)[0]==="5")return!1;for(var a={},i=0;i<10;i++)a["_"+String.fromCharCode(i)]=i;var l=Object.getOwnPropertyNames(a).map(function(d){return a[d]});if(l.join("")!=="0123456789")return!1;var u={};return"abcdefghijklmnopqrst".split("").forEach(function(d){u[d]=d}),Object.keys(Object.assign({},u)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}return bs=o()?Object.assign:function(s,a){for(var i,l=r(s),u,d=1;d<arguments.length;d++){i=Object(arguments[d]);for(var f in i)t.call(i,f)&&(l[f]=i[f]);if(e){u=e(i);for(var p=0;p<u.length;p++)n.call(i,u[p])&&(l[u[p]]=i[u[p]])}}return l},bs}var g8=m8();const v8=fr(g8);var Xt={BODY:"bodyAttributes",HTML:"htmlAttributes",TITLE:"titleAttributes"},X={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title"};Object.keys(X).map(function(e){return X[e]});var le={CHARSET:"charset",CSS_TEXT:"cssText",HREF:"href",HTTPEQUIV:"http-equiv",INNER_HTML:"innerHTML",ITEM_PROP:"itemprop",NAME:"name",PROPERTY:"property",REL:"rel",SRC:"src",TARGET:"target"},vo={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},ir={DEFAULT_TITLE:"defaultTitle",DEFER:"defer",ENCODE_SPECIAL_CHARACTERS:"encodeSpecialCharacters",ON_CHANGE_CLIENT_STATE:"onChangeClientState",TITLE_TEMPLATE:"titleTemplate"},y8=Object.keys(vo).reduce(function(e,t){return e[vo[t]]=t,e},{}),x8=[X.NOSCRIPT,X.SCRIPT,X.STYLE],Je="data-react-helmet",b8=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w8=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},S8=(function(){function e(t,n){for(var r=0;r<n.length;r++){var o=n[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}})(),Te=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},E8=function(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)},bc=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n},R8=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t&&(typeof t=="object"||typeof t=="function")?t:e},Js=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return n===!1?String(t):String(t).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")},C8=function(t){var n=wn(t,X.TITLE),r=wn(t,ir.TITLE_TEMPLATE);if(r&&n)return r.replace(/%s/g,function(){return Array.isArray(n)?n.join(""):n});var o=wn(t,ir.DEFAULT_TITLE);return n||o||void 0},P8=function(t){return wn(t,ir.ON_CHANGE_CLIENT_STATE)||function(){}},ws=function(t,n){return n.filter(function(r){return typeof r[t]<"u"}).map(function(r){return r[t]}).reduce(function(r,o){return Te({},r,o)},{})},_8=function(t,n){return n.filter(function(r){return typeof r[X.BASE]<"u"}).map(function(r){return r[X.BASE]}).reverse().reduce(function(r,o){if(!r.length)for(var s=Object.keys(o),a=0;a<s.length;a++){var i=s[a],l=i.toLowerCase();if(t.indexOf(l)!==-1&&o[l])return r.concat(o)}return r},[])},Zn=function(t,n,r){var o={};return r.filter(function(s){return Array.isArray(s[t])?!0:(typeof s[t]<"u"&&O8("Helmet: "+t+' should be of type "Array". Instead found type "'+b8(s[t])+'"'),!1)}).map(function(s){return s[t]}).reverse().reduce(function(s,a){var i={};a.filter(function(p){for(var m=void 0,g=Object.keys(p),v=0;v<g.length;v++){var y=g[v],x=y.toLowerCase();n.indexOf(x)!==-1&&!(m===le.REL&&p[m].toLowerCase()==="canonical")&&!(x===le.REL&&p[x].toLowerCase()==="stylesheet")&&(m=x),n.indexOf(y)!==-1&&(y===le.INNER_HTML||y===le.CSS_TEXT||y===le.ITEM_PROP)&&(m=y)}if(!m||!p[m])return!1;var b=p[m].toLowerCase();return o[m]||(o[m]={}),i[m]||(i[m]={}),o[m][b]?!1:(i[m][b]=!0,!0)}).reverse().forEach(function(p){return s.push(p)});for(var l=Object.keys(i),u=0;u<l.length;u++){var d=l[u],f=v8({},o[d],i[d]);o[d]=f}return s},[]).reverse()},wn=function(t,n){for(var r=t.length-1;r>=0;r--){var o=t[r];if(o.hasOwnProperty(n))return o[n]}return null},T8=function(t){return{baseTag:_8([le.HREF,le.TARGET],t),bodyAttributes:ws(Xt.BODY,t),defer:wn(t,ir.DEFER),encode:wn(t,ir.ENCODE_SPECIAL_CHARACTERS),htmlAttributes:ws(Xt.HTML,t),linkTags:Zn(X.LINK,[le.REL,le.HREF],t),metaTags:Zn(X.META,[le.NAME,le.CHARSET,le.HTTPEQUIV,le.PROPERTY,le.ITEM_PROP],t),noscriptTags:Zn(X.NOSCRIPT,[le.INNER_HTML],t),onChangeClientState:P8(t),scriptTags:Zn(X.SCRIPT,[le.SRC,le.INNER_HTML],t),styleTags:Zn(X.STYLE,[le.CSS_TEXT],t),title:C8(t),titleAttributes:ws(Xt.TITLE,t)}},ea=(function(){var e=Date.now();return function(t){var n=Date.now();n-e>16?(e=n,t(n)):setTimeout(function(){ea(t)},0)}})(),wc=function(t){return clearTimeout(t)},A8=typeof window<"u"?window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||ea:global.requestAnimationFrame||ea,M8=typeof window<"u"?window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||wc:global.cancelAnimationFrame||wc,O8=function(t){return console&&typeof console.warn=="function"&&console.warn(t)},qn=null,I8=function(t){qn&&M8(qn),t.defer?qn=A8(function(){Sc(t,function(){qn=null})}):(Sc(t),qn=null)},Sc=function(t,n){var r=t.baseTag,o=t.bodyAttributes,s=t.htmlAttributes,a=t.linkTags,i=t.metaTags,l=t.noscriptTags,u=t.onChangeClientState,d=t.scriptTags,f=t.styleTags,p=t.title,m=t.titleAttributes;ta(X.BODY,o),ta(X.HTML,s),L8(p,m);var g={baseTag:vn(X.BASE,r),linkTags:vn(X.LINK,a),metaTags:vn(X.META,i),noscriptTags:vn(X.NOSCRIPT,l),scriptTags:vn(X.SCRIPT,d),styleTags:vn(X.STYLE,f)},v={},y={};Object.keys(g).forEach(function(x){var b=g[x],w=b.newTags,S=b.oldTags;w.length&&(v[x]=w),S.length&&(y[x]=g[x].oldTags)}),n&&n(),u(t,v,y)},Gf=function(t){return Array.isArray(t)?t.join(""):t},L8=function(t,n){typeof t<"u"&&document.title!==t&&(document.title=Gf(t)),ta(X.TITLE,n)},ta=function(t,n){var r=document.getElementsByTagName(t)[0];if(r){for(var o=r.getAttribute(Je),s=o?o.split(","):[],a=[].concat(s),i=Object.keys(n),l=0;l<i.length;l++){var u=i[l],d=n[u]||"";r.getAttribute(u)!==d&&r.setAttribute(u,d),s.indexOf(u)===-1&&s.push(u);var f=a.indexOf(u);f!==-1&&a.splice(f,1)}for(var p=a.length-1;p>=0;p--)r.removeAttribute(a[p]);s.length===a.length?r.removeAttribute(Je):r.getAttribute(Je)!==i.join(",")&&r.setAttribute(Je,i.join(","))}},vn=function(t,n){var r=document.head||document.querySelector(X.HEAD),o=r.querySelectorAll(t+"["+Je+"]"),s=Array.prototype.slice.call(o),a=[],i=void 0;return n&&n.length&&n.forEach(function(l){var u=document.createElement(t);for(var d in l)if(l.hasOwnProperty(d))if(d===le.INNER_HTML)u.innerHTML=l.innerHTML;else if(d===le.CSS_TEXT)u.styleSheet?u.styleSheet.cssText=l.cssText:u.appendChild(document.createTextNode(l.cssText));else{var f=typeof l[d]>"u"?"":l[d];u.setAttribute(d,f)}u.setAttribute(Je,"true"),s.some(function(p,m){return i=m,u.isEqualNode(p)})?s.splice(i,1):a.push(u)}),s.forEach(function(l){return l.parentNode.removeChild(l)}),a.forEach(function(l){return r.appendChild(l)}),{oldTags:s,newTags:a}},Kf=function(t){return Object.keys(t).reduce(function(n,r){var o=typeof t[r]<"u"?r+'="'+t[r]+'"':""+r;return n?n+" "+o:o},"")},N8=function(t,n,r,o){var s=Kf(r),a=Gf(n);return s?"<"+t+" "+Je+'="true" '+s+">"+Js(a,o)+"</"+t+">":"<"+t+" "+Je+'="true">'+Js(a,o)+"</"+t+">"},D8=function(t,n,r){return n.reduce(function(o,s){var a=Object.keys(s).filter(function(u){return!(u===le.INNER_HTML||u===le.CSS_TEXT)}).reduce(function(u,d){var f=typeof s[d]>"u"?d:d+'="'+Js(s[d],r)+'"';return u?u+" "+f:f},""),i=s.innerHTML||s.cssText||"",l=x8.indexOf(t)===-1;return o+"<"+t+" "+Je+'="true" '+a+(l?"/>":">"+i+"</"+t+">")},"")},Qf=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return Object.keys(t).reduce(function(r,o){return r[vo[o]||o]=t[o],r},n)},j8=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return Object.keys(t).reduce(function(r,o){return r[y8[o]||o]=t[o],r},n)},F8=function(t,n,r){var o,s=(o={key:n},o[Je]=!0,o),a=Qf(r,s);return[W.createElement(X.TITLE,a,n)]},k8=function(t,n){return n.map(function(r,o){var s,a=(s={key:o},s[Je]=!0,s);return Object.keys(r).forEach(function(i){var l=vo[i]||i;if(l===le.INNER_HTML||l===le.CSS_TEXT){var u=r.innerHTML||r.cssText;a.dangerouslySetInnerHTML={__html:u}}else a[l]=r[i]}),W.createElement(t,a)})},mt=function(t,n,r){switch(t){case X.TITLE:return{toComponent:function(){return F8(t,n.title,n.titleAttributes)},toString:function(){return N8(t,n.title,n.titleAttributes,r)}};case Xt.BODY:case Xt.HTML:return{toComponent:function(){return Qf(n)},toString:function(){return Kf(n)}};default:return{toComponent:function(){return k8(t,n)},toString:function(){return D8(t,n,r)}}}},Yf=function(t){var n=t.baseTag,r=t.bodyAttributes,o=t.encode,s=t.htmlAttributes,a=t.linkTags,i=t.metaTags,l=t.noscriptTags,u=t.scriptTags,d=t.styleTags,f=t.title,p=f===void 0?"":f,m=t.titleAttributes;return{base:mt(X.BASE,n,o),bodyAttributes:mt(Xt.BODY,r,o),htmlAttributes:mt(Xt.HTML,s,o),link:mt(X.LINK,a,o),meta:mt(X.META,i,o),noscript:mt(X.NOSCRIPT,l,o),script:mt(X.SCRIPT,u,o),style:mt(X.STYLE,d,o),title:mt(X.TITLE,{title:p,titleAttributes:m},o)}},$8=function(t){var n,r;return r=n=(function(o){E8(s,o);function s(){return w8(this,s),R8(this,o.apply(this,arguments))}return s.prototype.shouldComponentUpdate=function(i){return!p8(this.props,i)},s.prototype.mapNestedChildrenToProps=function(i,l){if(!l)return null;switch(i.type){case X.SCRIPT:case X.NOSCRIPT:return{innerHTML:l};case X.STYLE:return{cssText:l}}throw new Error("<"+i.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")},s.prototype.flattenArrayTypeChildren=function(i){var l,u=i.child,d=i.arrayTypeChildren,f=i.newChildProps,p=i.nestedChildren;return Te({},d,(l={},l[u.type]=[].concat(d[u.type]||[],[Te({},f,this.mapNestedChildrenToProps(u,p))]),l))},s.prototype.mapObjectTypeChildren=function(i){var l,u,d=i.child,f=i.newProps,p=i.newChildProps,m=i.nestedChildren;switch(d.type){case X.TITLE:return Te({},f,(l={},l[d.type]=m,l.titleAttributes=Te({},p),l));case X.BODY:return Te({},f,{bodyAttributes:Te({},p)});case X.HTML:return Te({},f,{htmlAttributes:Te({},p)})}return Te({},f,(u={},u[d.type]=Te({},p),u))},s.prototype.mapArrayTypeChildrenToProps=function(i,l){var u=Te({},l);return Object.keys(i).forEach(function(d){var f;u=Te({},u,(f={},f[d]=i[d],f))}),u},s.prototype.warnOnInvalidChildren=function(i,l){return!0},s.prototype.mapChildrenToProps=function(i,l){var u=this,d={};return W.Children.forEach(i,function(f){if(!(!f||!f.props)){var p=f.props,m=p.children,g=bc(p,["children"]),v=j8(g);switch(u.warnOnInvalidChildren(f,m),f.type){case X.LINK:case X.META:case X.NOSCRIPT:case X.SCRIPT:case X.STYLE:d=u.flattenArrayTypeChildren({child:f,arrayTypeChildren:d,newChildProps:v,nestedChildren:m});break;default:l=u.mapObjectTypeChildren({child:f,newProps:l,newChildProps:v,nestedChildren:m});break}}}),l=this.mapArrayTypeChildrenToProps(d,l),l},s.prototype.render=function(){var i=this.props,l=i.children,u=bc(i,["children"]),d=Te({},u);return l&&(d=this.mapChildrenToProps(l,d)),W.createElement(t,d)},S8(s,null,[{key:"canUseDOM",set:function(i){t.canUseDOM=i}}]),s})(W.Component),n.propTypes={base:ce.object,bodyAttributes:ce.object,children:ce.oneOfType([ce.arrayOf(ce.node),ce.node]),defaultTitle:ce.string,defer:ce.bool,encodeSpecialCharacters:ce.bool,htmlAttributes:ce.object,link:ce.arrayOf(ce.object),meta:ce.arrayOf(ce.object),noscript:ce.arrayOf(ce.object),onChangeClientState:ce.func,script:ce.arrayOf(ce.object),style:ce.arrayOf(ce.object),title:ce.string,titleAttributes:ce.object,titleTemplate:ce.string},n.defaultProps={defer:!0,encodeSpecialCharacters:!0},n.peek=t.peek,n.rewind=function(){var o=t.rewind();return o||(o=Yf({baseTag:[],bodyAttributes:{},htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}})),o},r},H8=function(){return null},B8=d8(T8,I8,Yf)(H8),na=$8(B8);na.renderStatic=na.rewind;function qo({title:e,variant:t="default",description:n,headerRight:r,children:o}){return h.jsxs(h.Fragment,{children:[h.jsx(na,{children:h.jsx("title",{children:e?`${e} | Ocean Brain`:"Ocean Brain"})}),t==="default"&&h.jsx("div",{className:"mb-4 pb-3 border-b-2 border-border",children:h.jsxs("div",{className:r?"flex items-center justify-between":void 0,children:[h.jsxs("div",{children:[h.jsx("h1",{className:"text-lg font-bold",children:e}),n&&h.jsx("p",{className:"text-sm text-fg-tertiary font-medium mt-1",children:n})]}),r]})}),t==="subtle"&&h.jsx("div",{className:"mb-6",children:h.jsxs("div",{className:r?"flex items-center justify-between":void 0,children:[h.jsxs("div",{children:[h.jsx("h1",{className:"text-lg font-bold",children:e}),n&&h.jsx("p",{className:"text-sm text-fg-tertiary font-medium mt-1",children:n})]}),r]})}),o]})}function V8({itemsPerPage:e,onItemsPerPageChange:t,isAutoLimit:n=!1,sortBy:r,onSortByChange:o,sortOrder:s,onSortOrderChange:a,pinnedFirst:i,onPinnedFirstChange:l}){return h.jsx("div",{className:"flex justify-end mb-4",children:h.jsxs("div",{className:"inline-flex flex-wrap gap-3 items-center px-4 py-2.5 bg-surface border-2 border-border rounded-sketchy-lg shadow-sketchy",children:[h.jsxs("div",{className:"flex gap-1.5 items-center",children:[h.jsx(Ma,{fontSize:24,className:"min-w-8 text-fg-tertiary"}),h.jsxs(Wr,{value:n?"auto":String(e),onValueChange:u=>{u!=="auto"&&t(Number(u))},variant:"ghost",size:"sm",children:[n&&h.jsxs(gt,{value:"auto",children:["Auto (",e,")"]}),h.jsx(gt,{value:"25",children:"25"}),h.jsx(gt,{value:"50",children:"50"}),h.jsx(gt,{value:"100",children:"100"})]})]}),h.jsx("div",{className:"w-px h-5 bg-divider"}),h.jsxs("div",{className:"flex gap-1.5 items-center",children:[h.jsx(ou,{fontSize:24,className:"min-w-8 text-fg-tertiary"}),h.jsxs(Wr,{value:r,onValueChange:u=>o(u),variant:"ghost",size:"sm",children:[h.jsx(gt,{value:"updatedAt",children:"Updated"}),h.jsx(gt,{value:"createdAt",children:"Created"})]}),h.jsxs(Wr,{value:s,onValueChange:u=>a(u),variant:"ghost",size:"sm",children:[h.jsx(gt,{value:"desc",children:"Newest"}),h.jsx(gt,{value:"asc",children:"Oldest"})]})]}),h.jsx("div",{className:"w-px h-5 bg-divider"}),h.jsxs(Jd,{htmlFor:"pinnedFirst",size:"sm",className:"flex items-center gap-1.5 cursor-pointer",children:[h.jsx(Hu,{id:"pinnedFirst",size:"sm",checked:i,onChange:u=>l(u.target.checked)}),h.jsx("span",{className:"text-fg-secondary",children:"Pinned First"})]})]})})}const U8=e=>{let t=!1;return()=>{t||(window.requestAnimationFrame(()=>{e(),t=!1}),t=!0)}},Ss=new Map;function Z8(){const e=Io({select:n=>n.pathname}),t=c.useRef(null);return c.useEffect(()=>{if(t.current?.parentElement){const{parentElement:n}=t.current,r=a=>{if(a!==0){Ss.set(e,a);return}Ss.delete(e)},o=U8(()=>{if(t.current){const{scrollTop:a}=n;r(a)}}),s=Ss.get(e);return s&&(n.scrollTop=s),n.addEventListener("scroll",o),()=>{n.removeEventListener("scroll",o)}}},[e]),h.jsx("div",{ref:t,style:{display:"none"}})}const zo="/",Xf="/calendar",Jf="/reminders",eh="/graph",th="/search",nh="/tag",wr="/$id",ti="/tag/$id",rh="/setting",q8="/setting/manage-image",z8="/setting/manage-image/$id",W8="/setting/placeholder",ra="An unexpected routing error occurred.",oh=e=>typeof e=="object"&&e!==null&&"errors"in e&&Array.isArray(e.errors),G8=e=>e instanceof Error?e.message:oh(e)?e.errors?.[0]?.message??ra:ra,K8=e=>{if(oh(e))return e.errors?.[0]?.code};function ni({title:e,error:t,description:n,onRetry:r,showBackAction:o=!0,showHomeAction:s=!0}){const a=ln(),i=Pe(),[l,u]=c.useState("idle"),d=G8(t),f=K8(t),p=async()=>{try{const m=[f,d].filter(Boolean).join(" :: ");await navigator.clipboard.writeText(m||ra),u("copied")}catch{u("failed")}};return h.jsxs("div",{className:"rounded-sketchy-lg border-2 border-border bg-surface p-6 shadow-sketchy",children:[h.jsx("p",{className:"text-lg font-bold",children:e}),n&&h.jsx("p",{className:"mt-2 text-sm text-fg-tertiary",children:n}),h.jsxs("div",{className:"mt-4 rounded-sketchy-md border border-border-subtle bg-subtle px-3 py-2 text-sm text-fg-secondary",children:[d,f&&h.jsxs("span",{className:"ml-2 font-bold text-fg-tertiary",children:["[",f,"]"]})]}),h.jsxs("div",{className:"mt-4 flex flex-wrap gap-2",children:[r&&h.jsx(Lt,{size:"sm",onClick:r,children:"Try again"}),o&&h.jsx(Lt,{size:"sm",variant:"ghost",onClick:()=>i.history.back(),children:"Go back"}),s&&h.jsx(Lt,{size:"sm",variant:"ghost",onClick:()=>a({to:zo,search:{page:1,sortBy:"updatedAt",sortOrder:"desc",pinnedFirst:!1}}),children:"Go home"}),h.jsx(Lt,{size:"sm",variant:"ghost",onClick:p,children:l==="copied"?"Copied details":l==="failed"?"Copy failed":"Copy details"})]})]})}function Qe({title:e="Loading page",description:t="Preparing route resources."}){return h.jsx(qo,{title:e,description:t,variant:"none",children:h.jsxs("div",{className:"flex flex-col gap-4",children:[h.jsx(xt,{height:"56px"}),h.jsx(xt,{height:"220px"}),h.jsx(xt,{height:"160px"})]})})}function Q8({error:e,reset:t}){return h.jsx(qo,{title:"Something went wrong",variant:"none",children:h.jsx(ni,{title:"Route failed to render",description:"Retry the route or navigate somewhere safe.",error:e,onRetry:t})})}function Y8(){return h.jsx(qo,{title:"Not found",variant:"none",children:h.jsxs("div",{className:"rounded-sketchy-lg border-2 border-border bg-surface p-6 shadow-sketchy",children:[h.jsx("p",{className:"text-lg font-bold",children:"This page does not exist."}),h.jsx("p",{className:"mt-2 text-sm text-fg-tertiary",children:"Check the URL or navigate from the sidebar."})]})})}const X8=(e=[],t=[])=>e.length!==t.length||e.some((n,r)=>!Object.is(n,t[r]));class J8 extends c.Component{state={error:null};static getDerivedStateFromError(t){return{error:t}}componentDidUpdate(t){this.state.error!==null&&X8(t.resetKeys,this.props.resetKeys)&&this.resetErrorBoundary()}resetErrorBoundary=()=>{this.props.onReset?.(),this.setState({error:null})};render(){return this.state.error!==null?this.props.fallbackRender({error:this.state.error,resetErrorBoundary:this.resetErrorBoundary}):this.props.children}}function sh({children:e,fallback:t,errorTitle:n,errorDescription:r,resetKeys:o,renderError:s}){return h.jsx(z1,{children:({reset:a})=>h.jsx(J8,{onReset:a,resetKeys:o,fallbackRender:({error:i,resetErrorBoundary:l})=>s?s({error:i,retry:l}):h.jsx(ni,{title:n,description:r,error:i,onRetry:l}),children:h.jsx(c.Suspense,{fallback:t,children:e})})})}var Es={exports:{}};var Ec;function e6(){return Ec||(Ec=1,(function(e){(function(){var t={}.hasOwnProperty;function n(){for(var s="",a=0;a<arguments.length;a++){var i=arguments[a];i&&(s=o(s,r.call(this,i)))}return s}function r(s){if(typeof s=="string"||typeof s=="number")return this&&this[s]||s;if(typeof s!="object")return"";if(Array.isArray(s))return n.apply(this,s);if(s.toString!==Object.prototype.toString&&!s.toString.toString().includes("[native code]"))return s.toString();var a="";for(var i in s)t.call(s,i)&&s[i]&&(a=o(a,this&&this[i]||i));return a}function o(s,a){return a?s?s+" "+a:s+a:s}e.exports?(n.default=n,e.exports=n):window.classNames=n})()})(Es)),Es.exports}var t6=e6();const n6=fr(t6),r6="_SiteLayout_180qv_1",o6="_side_180qv_7",s6="_open_180qv_24",a6="_menu_180qv_29",i6="_top_180qv_52",c6="_center_180qv_65",l6="_content_180qv_73",u6={SiteLayout:r6,side:o6,open:s6,menu:a6,top:i6,"top-content":"_top-content_180qv_59",center:c6,content:l6},Zt=n6.bind(u6),d6=({sidebar:e,topNavigation:t,children:n})=>{const r=Io({select:a=>a.pathname}),[o,s]=c.useState(!1);return c.useEffect(()=>{s(!1)},[r]),h.jsxs("div",{className:Zt("SiteLayout"),children:[h.jsx("div",{className:"md:hidden",children:h.jsx("button",{type:"button",className:Zt("menu"),onClick:()=>s(a=>!a),children:h.jsx(eu,{className:"h-6 w-6 text-fg-on-accent"})})}),h.jsx("aside",{className:Zt("side",{open:o}),children:e}),h.jsxs("main",{className:Zt("center"),children:[h.jsx("div",{className:Zt("top"),children:h.jsx("div",{className:Zt("top-content"),children:t})}),h.jsx("div",{className:Zt("content"),children:n}),h.jsx(Z8,{})]})]})};function ah(e,t){return function(){return e.apply(t,arguments)}}const{toString:f6}=Object.prototype,{getPrototypeOf:ri}=Object,{iterator:Wo,toStringTag:ih}=Symbol,Go=(e=>t=>{const n=f6.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),ot=e=>(e=e.toLowerCase(),t=>Go(t)===e),Ko=e=>t=>typeof t===e,{isArray:In}=Array,_n=Ko("undefined");function Sr(e){return e!==null&&!_n(e)&&e.constructor!==null&&!_n(e.constructor)&&Me(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ch=ot("ArrayBuffer");function h6(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ch(e.buffer),t}const p6=Ko("string"),Me=Ko("function"),lh=Ko("number"),Er=e=>e!==null&&typeof e=="object",m6=e=>e===!0||e===!1,Gr=e=>{if(Go(e)!=="object")return!1;const t=ri(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(ih in e)&&!(Wo in e)},g6=e=>{if(!Er(e)||Sr(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},v6=ot("Date"),y6=ot("File"),x6=e=>!!(e&&typeof e.uri<"u"),b6=e=>e&&typeof e.getParts<"u",w6=ot("Blob"),S6=ot("FileList"),E6=e=>Er(e)&&Me(e.pipe);function R6(){return typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}}const Rc=R6(),Cc=typeof Rc.FormData<"u"?Rc.FormData:void 0,C6=e=>{let t;return e&&(Cc&&e instanceof Cc||Me(e.append)&&((t=Go(e))==="formdata"||t==="object"&&Me(e.toString)&&e.toString()==="[object FormData]"))},P6=ot("URLSearchParams"),[_6,T6,A6,M6]=["ReadableStream","Request","Response","Headers"].map(ot),O6=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Rr(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,o;if(typeof e!="object"&&(e=[e]),In(e))for(r=0,o=e.length;r<o;r++)t.call(null,e[r],r,e);else{if(Sr(e))return;const s=n?Object.getOwnPropertyNames(e):Object.keys(e),a=s.length;let i;for(r=0;r<a;r++)i=s[r],t.call(null,e[i],i,e)}}function uh(e,t){if(Sr(e))return null;t=t.toLowerCase();const n=Object.keys(e);let r=n.length,o;for(;r-- >0;)if(o=n[r],t===o.toLowerCase())return o;return null}const Kt=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,dh=e=>!_n(e)&&e!==Kt;function oa(){const{caseless:e,skipUndefined:t}=dh(this)&&this||{},n={},r=(o,s)=>{if(s==="__proto__"||s==="constructor"||s==="prototype")return;const a=e&&uh(n,s)||s;Gr(n[a])&&Gr(o)?n[a]=oa(n[a],o):Gr(o)?n[a]=oa({},o):In(o)?n[a]=o.slice():(!t||!_n(o))&&(n[a]=o)};for(let o=0,s=arguments.length;o<s;o++)arguments[o]&&Rr(arguments[o],r);return n}const I6=(e,t,n,{allOwnKeys:r}={})=>(Rr(t,(o,s)=>{n&&Me(o)?Object.defineProperty(e,s,{value:ah(o,n),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,s,{value:o,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:r}),e),L6=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),N6=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),Object.defineProperty(e.prototype,"constructor",{value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},D6=(e,t,n,r)=>{let o,s,a;const i={};if(t=t||{},e==null)return t;do{for(o=Object.getOwnPropertyNames(e),s=o.length;s-- >0;)a=o[s],(!r||r(a,e,t))&&!i[a]&&(t[a]=e[a],i[a]=!0);e=n!==!1&&ri(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},j6=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},F6=e=>{if(!e)return null;if(In(e))return e;let t=e.length;if(!lh(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},k6=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&ri(Uint8Array)),$6=(e,t)=>{const r=(e&&e[Wo]).call(e);let o;for(;(o=r.next())&&!o.done;){const s=o.value;t.call(e,s[0],s[1])}},H6=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},B6=ot("HTMLFormElement"),V6=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),Pc=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),U6=ot("RegExp"),fh=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Rr(n,(o,s)=>{let a;(a=t(o,s,e))!==!1&&(r[s]=a||o)}),Object.defineProperties(e,r)},Z6=e=>{fh(e,(t,n)=>{if(Me(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Me(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},q6=(e,t)=>{const n={},r=o=>{o.forEach(s=>{n[s]=!0})};return In(e)?r(e):r(String(e).split(t)),n},z6=()=>{},W6=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function G6(e){return!!(e&&Me(e.append)&&e[ih]==="FormData"&&e[Wo])}const K6=e=>{const t=new Array(10),n=(r,o)=>{if(Er(r)){if(t.indexOf(r)>=0)return;if(Sr(r))return r;if(!("toJSON"in r)){t[o]=r;const s=In(r)?[]:{};return Rr(r,(a,i)=>{const l=n(a,o+1);!_n(l)&&(s[i]=l)}),t[o]=void 0,s}}return r};return n(e,0)},Q6=ot("AsyncFunction"),Y6=e=>e&&(Er(e)||Me(e))&&Me(e.then)&&Me(e.catch),hh=((e,t)=>e?setImmediate:t?((n,r)=>(Kt.addEventListener("message",({source:o,data:s})=>{o===Kt&&s===n&&r.length&&r.shift()()},!1),o=>{r.push(o),Kt.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",Me(Kt.postMessage)),X6=typeof queueMicrotask<"u"?queueMicrotask.bind(Kt):typeof process<"u"&&process.nextTick||hh,J6=e=>e!=null&&Me(e[Wo]),C={isArray:In,isArrayBuffer:ch,isBuffer:Sr,isFormData:C6,isArrayBufferView:h6,isString:p6,isNumber:lh,isBoolean:m6,isObject:Er,isPlainObject:Gr,isEmptyObject:g6,isReadableStream:_6,isRequest:T6,isResponse:A6,isHeaders:M6,isUndefined:_n,isDate:v6,isFile:y6,isReactNativeBlob:x6,isReactNative:b6,isBlob:w6,isRegExp:U6,isFunction:Me,isStream:E6,isURLSearchParams:P6,isTypedArray:k6,isFileList:S6,forEach:Rr,merge:oa,extend:I6,trim:O6,stripBOM:L6,inherits:N6,toFlatObject:D6,kindOf:Go,kindOfTest:ot,endsWith:j6,toArray:F6,forEachEntry:$6,matchAll:H6,isHTMLForm:B6,hasOwnProperty:Pc,hasOwnProp:Pc,reduceDescriptors:fh,freezeMethods:Z6,toObjectSet:q6,toCamelCase:V6,noop:z6,toFiniteNumber:W6,findKey:uh,global:Kt,isContextDefined:dh,isSpecCompliantForm:G6,toJSONObject:K6,isAsyncFn:Q6,isThenable:Y6,setImmediate:hh,asap:X6,isIterable:J6};let z=class ph extends Error{static from(t,n,r,o,s,a){const i=new ph(t.message,n||t.code,r,o,s);return i.cause=t,i.name=t.name,t.status!=null&&i.status==null&&(i.status=t.status),a&&Object.assign(i,a),i}constructor(t,n,r,o,s){super(t),Object.defineProperty(this,"message",{value:t,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,n&&(this.code=n),r&&(this.config=r),o&&(this.request=o),s&&(this.response=s,this.status=s.status)}toJSON(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:C.toJSONObject(this.config),code:this.code,status:this.status}}};z.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE";z.ERR_BAD_OPTION="ERR_BAD_OPTION";z.ECONNABORTED="ECONNABORTED";z.ETIMEDOUT="ETIMEDOUT";z.ERR_NETWORK="ERR_NETWORK";z.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS";z.ERR_DEPRECATED="ERR_DEPRECATED";z.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE";z.ERR_BAD_REQUEST="ERR_BAD_REQUEST";z.ERR_CANCELED="ERR_CANCELED";z.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT";z.ERR_INVALID_URL="ERR_INVALID_URL";const ex=null;function sa(e){return C.isPlainObject(e)||C.isArray(e)}function mh(e){return C.endsWith(e,"[]")?e.slice(0,-2):e}function Rs(e,t,n){return e?e.concat(t).map(function(o,s){return o=mh(o),!n&&s?"["+o+"]":o}).join(n?".":""):t}function tx(e){return C.isArray(e)&&!e.some(sa)}const nx=C.toFlatObject(C,{},null,function(t){return/^is[A-Z]/.test(t)});function Qo(e,t,n){if(!C.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=C.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(v,y){return!C.isUndefined(y[v])});const r=n.metaTokens,o=n.visitor||d,s=n.dots,a=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&C.isSpecCompliantForm(t);if(!C.isFunction(o))throw new TypeError("visitor must be a function");function u(g){if(g===null)return"";if(C.isDate(g))return g.toISOString();if(C.isBoolean(g))return g.toString();if(!l&&C.isBlob(g))throw new z("Blob is not supported. Use a Buffer instead.");return C.isArrayBuffer(g)||C.isTypedArray(g)?l&&typeof Blob=="function"?new Blob([g]):Buffer.from(g):g}function d(g,v,y){let x=g;if(C.isReactNative(t)&&C.isReactNativeBlob(g))return t.append(Rs(y,v,s),u(g)),!1;if(g&&!y&&typeof g=="object"){if(C.endsWith(v,"{}"))v=r?v:v.slice(0,-2),g=JSON.stringify(g);else if(C.isArray(g)&&tx(g)||(C.isFileList(g)||C.endsWith(v,"[]"))&&(x=C.toArray(g)))return v=mh(v),x.forEach(function(w,S){!(C.isUndefined(w)||w===null)&&t.append(a===!0?Rs([v],S,s):a===null?v:v+"[]",u(w))}),!1}return sa(g)?!0:(t.append(Rs(y,v,s),u(g)),!1)}const f=[],p=Object.assign(nx,{defaultVisitor:d,convertValue:u,isVisitable:sa});function m(g,v){if(!C.isUndefined(g)){if(f.indexOf(g)!==-1)throw Error("Circular reference detected in "+v.join("."));f.push(g),C.forEach(g,function(x,b){(!(C.isUndefined(x)||x===null)&&o.call(t,x,C.isString(b)?b.trim():b,v,p))===!0&&m(x,v?v.concat(b):[b])}),f.pop()}}if(!C.isObject(e))throw new TypeError("data must be an object");return m(e),t}function _c(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function oi(e,t){this._pairs=[],e&&Qo(e,this,t)}const gh=oi.prototype;gh.append=function(t,n){this._pairs.push([t,n])};gh.toString=function(t){const n=t?function(r){return t.call(this,r,_c)}:_c;return this._pairs.map(function(o){return n(o[0])+"="+n(o[1])},"").join("&")};function rx(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function vh(e,t,n){if(!t)return e;const r=n&&n.encode||rx,o=C.isFunction(n)?{serialize:n}:n,s=o&&o.serialize;let a;if(s?a=s(t,o):a=C.isURLSearchParams(t)?t.toString():new oi(t,o).toString(r),a){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+a}return e}class Tc{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){C.forEach(this.handlers,function(r){r!==null&&t(r)})}}const si={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0},ox=typeof URLSearchParams<"u"?URLSearchParams:oi,sx=typeof FormData<"u"?FormData:null,ax=typeof Blob<"u"?Blob:null,ix={isBrowser:!0,classes:{URLSearchParams:ox,FormData:sx,Blob:ax},protocols:["http","https","file","blob","url","data"]},ai=typeof window<"u"&&typeof document<"u",aa=typeof navigator=="object"&&navigator||void 0,cx=ai&&(!aa||["ReactNative","NativeScript","NS"].indexOf(aa.product)<0),lx=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",ux=ai&&window.location.href||"http://localhost",dx=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ai,hasStandardBrowserEnv:cx,hasStandardBrowserWebWorkerEnv:lx,navigator:aa,origin:ux},Symbol.toStringTag,{value:"Module"})),Se={...dx,...ix};function fx(e,t){return Qo(e,new Se.classes.URLSearchParams,{visitor:function(n,r,o,s){return Se.isNode&&C.isBuffer(n)?(this.append(r,n.toString("base64")),!1):s.defaultVisitor.apply(this,arguments)},...t})}function hx(e){return C.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function px(e){const t={},n=Object.keys(e);let r;const o=n.length;let s;for(r=0;r<o;r++)s=n[r],t[s]=e[s];return t}function yh(e){function t(n,r,o,s){let a=n[s++];if(a==="__proto__")return!0;const i=Number.isFinite(+a),l=s>=n.length;return a=!a&&C.isArray(o)?o.length:a,l?(C.hasOwnProp(o,a)?o[a]=[o[a],r]:o[a]=r,!i):((!o[a]||!C.isObject(o[a]))&&(o[a]=[]),t(n,r,o[a],s)&&C.isArray(o[a])&&(o[a]=px(o[a])),!i)}if(C.isFormData(e)&&C.isFunction(e.entries)){const n={};return C.forEachEntry(e,(r,o)=>{t(hx(r),o,n,0)}),n}return null}function mx(e,t,n){if(C.isString(e))try{return(t||JSON.parse)(e),C.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const Cr={transitional:si,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,s=C.isObject(t);if(s&&C.isHTMLForm(t)&&(t=new FormData(t)),C.isFormData(t))return o?JSON.stringify(yh(t)):t;if(C.isArrayBuffer(t)||C.isBuffer(t)||C.isStream(t)||C.isFile(t)||C.isBlob(t)||C.isReadableStream(t))return t;if(C.isArrayBufferView(t))return t.buffer;if(C.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let i;if(s){if(r.indexOf("application/x-www-form-urlencoded")>-1)return fx(t,this.formSerializer).toString();if((i=C.isFileList(t))||r.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return Qo(i?{"files[]":t}:t,l&&new l,this.formSerializer)}}return s||o?(n.setContentType("application/json",!1),mx(t)):t}],transformResponse:[function(t){const n=this.transitional||Cr.transitional,r=n&&n.forcedJSONParsing,o=this.responseType==="json";if(C.isResponse(t)||C.isReadableStream(t))return t;if(t&&C.isString(t)&&(r&&!this.responseType||o)){const a=!(n&&n.silentJSONParsing)&&o;try{return JSON.parse(t,this.parseReviver)}catch(i){if(a)throw i.name==="SyntaxError"?z.from(i,z.ERR_BAD_RESPONSE,this,null,this.response):i}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Se.classes.FormData,Blob:Se.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};C.forEach(["delete","get","head","post","put","patch"],e=>{Cr.headers[e]={}});const gx=C.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),vx=e=>{const t={};let n,r,o;return e&&e.split(`
|
|
14
|
-
`).forEach(function(a){o=a.indexOf(":"),n=a.substring(0,o).trim().toLowerCase(),r=a.substring(o+1).trim(),!(!n||t[n]&&gx[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Ac=Symbol("internals");function zn(e){return e&&String(e).trim().toLowerCase()}function Kr(e){return e===!1||e==null?e:C.isArray(e)?e.map(Kr):String(e)}function yx(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const xx=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Cs(e,t,n,r,o){if(C.isFunction(r))return r.call(this,t,n);if(o&&(t=n),!!C.isString(t)){if(C.isString(r))return t.indexOf(r)!==-1;if(C.isRegExp(r))return r.test(t)}}function bx(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function wx(e,t){const n=C.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(o,s,a){return this[r].call(this,t,o,s,a)},configurable:!0})})}let Oe=class{constructor(t){t&&this.set(t)}set(t,n,r){const o=this;function s(i,l,u){const d=zn(l);if(!d)throw new Error("header name must be a non-empty string");const f=C.findKey(o,d);(!f||o[f]===void 0||u===!0||u===void 0&&o[f]!==!1)&&(o[f||l]=Kr(i))}const a=(i,l)=>C.forEach(i,(u,d)=>s(u,d,l));if(C.isPlainObject(t)||t instanceof this.constructor)a(t,n);else if(C.isString(t)&&(t=t.trim())&&!xx(t))a(vx(t),n);else if(C.isObject(t)&&C.isIterable(t)){let i={},l,u;for(const d of t){if(!C.isArray(d))throw TypeError("Object iterator must return a key-value pair");i[u=d[0]]=(l=i[u])?C.isArray(l)?[...l,d[1]]:[l,d[1]]:d[1]}a(i,n)}else t!=null&&s(n,t,r);return this}get(t,n){if(t=zn(t),t){const r=C.findKey(this,t);if(r){const o=this[r];if(!n)return o;if(n===!0)return yx(o);if(C.isFunction(n))return n.call(this,o,r);if(C.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=zn(t),t){const r=C.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Cs(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let o=!1;function s(a){if(a=zn(a),a){const i=C.findKey(r,a);i&&(!n||Cs(r,r[i],i,n))&&(delete r[i],o=!0)}}return C.isArray(t)?t.forEach(s):s(t),o}clear(t){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const s=n[r];(!t||Cs(this,this[s],s,t,!0))&&(delete this[s],o=!0)}return o}normalize(t){const n=this,r={};return C.forEach(this,(o,s)=>{const a=C.findKey(r,s);if(a){n[a]=Kr(o),delete n[s];return}const i=t?bx(s):String(s).trim();i!==s&&delete n[s],n[i]=Kr(o),r[i]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return C.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=t&&C.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(`
|
|
15
|
-
`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(o=>r.set(o)),r}static accessor(t){const r=(this[Ac]=this[Ac]={accessors:{}}).accessors,o=this.prototype;function s(a){const i=zn(a);r[i]||(wx(o,a),r[i]=!0)}return C.isArray(t)?t.forEach(s):s(t),this}};Oe.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);C.reduceDescriptors(Oe.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});C.freezeMethods(Oe);function Ps(e,t){const n=this||Cr,r=t||n,o=Oe.from(r.headers);let s=r.data;return C.forEach(e,function(i){s=i.call(n,s,o.normalize(),t?t.status:void 0)}),o.normalize(),s}function xh(e){return!!(e&&e.__CANCEL__)}let Pr=class extends z{constructor(t,n,r){super(t??"canceled",z.ERR_CANCELED,n,r),this.name="CanceledError",this.__CANCEL__=!0}};function bh(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new z("Request failed with status code "+n.status,[z.ERR_BAD_REQUEST,z.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function Sx(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function Ex(e,t){e=e||10;const n=new Array(e),r=new Array(e);let o=0,s=0,a;return t=t!==void 0?t:1e3,function(l){const u=Date.now(),d=r[s];a||(a=u),n[o]=l,r[o]=u;let f=s,p=0;for(;f!==o;)p+=n[f++],f=f%e;if(o=(o+1)%e,o===s&&(s=(s+1)%e),u-a<t)return;const m=d&&u-d;return m?Math.round(p*1e3/m):void 0}}function Rx(e,t){let n=0,r=1e3/t,o,s;const a=(u,d=Date.now())=>{n=d,o=null,s&&(clearTimeout(s),s=null),e(...u)};return[(...u)=>{const d=Date.now(),f=d-n;f>=r?a(u,d):(o=u,s||(s=setTimeout(()=>{s=null,a(o)},r-f)))},()=>o&&a(o)]}const yo=(e,t,n=3)=>{let r=0;const o=Ex(50,250);return Rx(s=>{const a=s.loaded,i=s.lengthComputable?s.total:void 0,l=a-r,u=o(l),d=a<=i;r=a;const f={loaded:a,total:i,progress:i?a/i:void 0,bytes:l,rate:u||void 0,estimated:u&&i&&d?(i-a)/u:void 0,event:s,lengthComputable:i!=null,[t?"download":"upload"]:!0};e(f)},n)},Mc=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},Oc=e=>(...t)=>C.asap(()=>e(...t)),Cx=Se.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,Se.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(Se.origin),Se.navigator&&/(msie|trident)/i.test(Se.navigator.userAgent)):()=>!0,Px=Se.hasStandardBrowserEnv?{write(e,t,n,r,o,s,a){if(typeof document>"u")return;const i=[`${e}=${encodeURIComponent(t)}`];C.isNumber(n)&&i.push(`expires=${new Date(n).toUTCString()}`),C.isString(r)&&i.push(`path=${r}`),C.isString(o)&&i.push(`domain=${o}`),s===!0&&i.push("secure"),C.isString(a)&&i.push(`SameSite=${a}`),document.cookie=i.join("; ")},read(e){if(typeof document>"u")return null;const t=document.cookie.match(new RegExp("(?:^|; )"+e+"=([^;]*)"));return t?decodeURIComponent(t[1]):null},remove(e){this.write(e,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function _x(e){return typeof e!="string"?!1:/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Tx(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function wh(e,t,n){let r=!_x(t);return e&&(r||n==!1)?Tx(e,t):t}const Ic=e=>e instanceof Oe?{...e}:e;function cn(e,t){t=t||{};const n={};function r(u,d,f,p){return C.isPlainObject(u)&&C.isPlainObject(d)?C.merge.call({caseless:p},u,d):C.isPlainObject(d)?C.merge({},d):C.isArray(d)?d.slice():d}function o(u,d,f,p){if(C.isUndefined(d)){if(!C.isUndefined(u))return r(void 0,u,f,p)}else return r(u,d,f,p)}function s(u,d){if(!C.isUndefined(d))return r(void 0,d)}function a(u,d){if(C.isUndefined(d)){if(!C.isUndefined(u))return r(void 0,u)}else return r(void 0,d)}function i(u,d,f){if(f in t)return r(u,d);if(f in e)return r(void 0,u)}const l={url:s,method:s,data:s,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:i,headers:(u,d,f)=>o(Ic(u),Ic(d),f,!0)};return C.forEach(Object.keys({...e,...t}),function(d){if(d==="__proto__"||d==="constructor"||d==="prototype")return;const f=C.hasOwnProp(l,d)?l[d]:o,p=f(e[d],t[d],d);C.isUndefined(p)&&f!==i||(n[d]=p)}),n}const Sh=e=>{const t=cn({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:o,xsrfCookieName:s,headers:a,auth:i}=t;if(t.headers=a=Oe.from(a),t.url=vh(wh(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),i&&a.set("Authorization","Basic "+btoa((i.username||"")+":"+(i.password?unescape(encodeURIComponent(i.password)):""))),C.isFormData(n)){if(Se.hasStandardBrowserEnv||Se.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if(C.isFunction(n.getHeaders)){const l=n.getHeaders(),u=["content-type","content-length"];Object.entries(l).forEach(([d,f])=>{u.includes(d.toLowerCase())&&a.set(d,f)})}}if(Se.hasStandardBrowserEnv&&(r&&C.isFunction(r)&&(r=r(t)),r||r!==!1&&Cx(t.url))){const l=o&&s&&Px.read(s);l&&a.set(o,l)}return t},Ax=typeof XMLHttpRequest<"u",Mx=Ax&&function(e){return new Promise(function(n,r){const o=Sh(e);let s=o.data;const a=Oe.from(o.headers).normalize();let{responseType:i,onUploadProgress:l,onDownloadProgress:u}=o,d,f,p,m,g;function v(){m&&m(),g&&g(),o.cancelToken&&o.cancelToken.unsubscribe(d),o.signal&&o.signal.removeEventListener("abort",d)}let y=new XMLHttpRequest;y.open(o.method.toUpperCase(),o.url,!0),y.timeout=o.timeout;function x(){if(!y)return;const w=Oe.from("getAllResponseHeaders"in y&&y.getAllResponseHeaders()),P={data:!i||i==="text"||i==="json"?y.responseText:y.response,status:y.status,statusText:y.statusText,headers:w,config:e,request:y};bh(function(R){n(R),v()},function(R){r(R),v()},P),y=null}"onloadend"in y?y.onloadend=x:y.onreadystatechange=function(){!y||y.readyState!==4||y.status===0&&!(y.responseURL&&y.responseURL.indexOf("file:")===0)||setTimeout(x)},y.onabort=function(){y&&(r(new z("Request aborted",z.ECONNABORTED,e,y)),y=null)},y.onerror=function(S){const P=S&&S.message?S.message:"Network Error",O=new z(P,z.ERR_NETWORK,e,y);O.event=S||null,r(O),y=null},y.ontimeout=function(){let S=o.timeout?"timeout of "+o.timeout+"ms exceeded":"timeout exceeded";const P=o.transitional||si;o.timeoutErrorMessage&&(S=o.timeoutErrorMessage),r(new z(S,P.clarifyTimeoutError?z.ETIMEDOUT:z.ECONNABORTED,e,y)),y=null},s===void 0&&a.setContentType(null),"setRequestHeader"in y&&C.forEach(a.toJSON(),function(S,P){y.setRequestHeader(P,S)}),C.isUndefined(o.withCredentials)||(y.withCredentials=!!o.withCredentials),i&&i!=="json"&&(y.responseType=o.responseType),u&&([p,g]=yo(u,!0),y.addEventListener("progress",p)),l&&y.upload&&([f,m]=yo(l),y.upload.addEventListener("progress",f),y.upload.addEventListener("loadend",m)),(o.cancelToken||o.signal)&&(d=w=>{y&&(r(!w||w.type?new Pr(null,e,y):w),y.abort(),y=null)},o.cancelToken&&o.cancelToken.subscribe(d),o.signal&&(o.signal.aborted?d():o.signal.addEventListener("abort",d)));const b=Sx(o.url);if(b&&Se.protocols.indexOf(b)===-1){r(new z("Unsupported protocol "+b+":",z.ERR_BAD_REQUEST,e));return}y.send(s||null)})},Ox=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,o;const s=function(u){if(!o){o=!0,i();const d=u instanceof Error?u:this.reason;r.abort(d instanceof z?d:new Pr(d instanceof Error?d.message:d))}};let a=t&&setTimeout(()=>{a=null,s(new z(`timeout of ${t}ms exceeded`,z.ETIMEDOUT))},t);const i=()=>{e&&(a&&clearTimeout(a),a=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(s):u.removeEventListener("abort",s)}),e=null)};e.forEach(u=>u.addEventListener("abort",s));const{signal:l}=r;return l.unsubscribe=()=>C.asap(i),l}},Ix=function*(e,t){let n=e.byteLength;if(n<t){yield e;return}let r=0,o;for(;r<n;)o=r+t,yield e.slice(r,o),r=o},Lx=async function*(e,t){for await(const n of Nx(e))yield*Ix(n,t)},Nx=async function*(e){if(e[Symbol.asyncIterator]){yield*e;return}const t=e.getReader();try{for(;;){const{done:n,value:r}=await t.read();if(n)break;yield r}}finally{await t.cancel()}},Lc=(e,t,n,r)=>{const o=Lx(e,t);let s=0,a,i=l=>{a||(a=!0,r&&r(l))};return new ReadableStream({async pull(l){try{const{done:u,value:d}=await o.next();if(u){i(),l.close();return}let f=d.byteLength;if(n){let p=s+=f;n(p)}l.enqueue(new Uint8Array(d))}catch(u){throw i(u),u}},cancel(l){return i(l),o.return()}},{highWaterMark:2})},Nc=64*1024,{isFunction:Br}=C,Dx=(({Request:e,Response:t})=>({Request:e,Response:t}))(C.global),{ReadableStream:Dc,TextEncoder:jc}=C.global,Fc=(e,...t)=>{try{return!!e(...t)}catch{return!1}},jx=e=>{e=C.merge.call({skipUndefined:!0},Dx,e);const{fetch:t,Request:n,Response:r}=e,o=t?Br(t):typeof fetch=="function",s=Br(n),a=Br(r);if(!o)return!1;const i=o&&Br(Dc),l=o&&(typeof jc=="function"?(g=>v=>g.encode(v))(new jc):async g=>new Uint8Array(await new n(g).arrayBuffer())),u=s&&i&&Fc(()=>{let g=!1;const v=new n(Se.origin,{body:new Dc,method:"POST",get duplex(){return g=!0,"half"}}).headers.has("Content-Type");return g&&!v}),d=a&&i&&Fc(()=>C.isReadableStream(new r("").body)),f={stream:d&&(g=>g.body)};o&&["text","arrayBuffer","blob","formData","stream"].forEach(g=>{!f[g]&&(f[g]=(v,y)=>{let x=v&&v[g];if(x)return x.call(v);throw new z(`Response type '${g}' is not supported`,z.ERR_NOT_SUPPORT,y)})});const p=async g=>{if(g==null)return 0;if(C.isBlob(g))return g.size;if(C.isSpecCompliantForm(g))return(await new n(Se.origin,{method:"POST",body:g}).arrayBuffer()).byteLength;if(C.isArrayBufferView(g)||C.isArrayBuffer(g))return g.byteLength;if(C.isURLSearchParams(g)&&(g=g+""),C.isString(g))return(await l(g)).byteLength},m=async(g,v)=>{const y=C.toFiniteNumber(g.getContentLength());return y??p(v)};return async g=>{let{url:v,method:y,data:x,signal:b,cancelToken:w,timeout:S,onDownloadProgress:P,onUploadProgress:O,responseType:R,headers:E,withCredentials:A="same-origin",fetchOptions:L}=Sh(g),T=t||fetch;R=R?(R+"").toLowerCase():"text";let F=Ox([b,w&&w.toAbortSignal()],S),V=null;const N=F&&F.unsubscribe&&(()=>{F.unsubscribe()});let D;try{if(O&&u&&y!=="get"&&y!=="head"&&(D=await m(E,x))!==0){let U=new n(v,{method:"POST",body:x,duplex:"half"}),Z;if(C.isFormData(x)&&(Z=U.headers.get("content-type"))&&E.setContentType(Z),U.body){const[K,q]=Mc(D,yo(Oc(O)));x=Lc(U.body,Nc,K,q)}}C.isString(A)||(A=A?"include":"omit");const _=s&&"credentials"in n.prototype,j={...L,signal:F,method:y.toUpperCase(),headers:E.normalize().toJSON(),body:x,duplex:"half",credentials:_?A:void 0};V=s&&new n(v,j);let I=await(s?T(V,L):T(v,j));const M=d&&(R==="stream"||R==="response");if(d&&(P||M&&N)){const U={};["status","statusText","headers"].forEach(Q=>{U[Q]=I[Q]});const Z=C.toFiniteNumber(I.headers.get("content-length")),[K,q]=P&&Mc(Z,yo(Oc(P),!0))||[];I=new r(Lc(I.body,Nc,K,()=>{q&&q(),N&&N()}),U)}R=R||"text";let H=await f[C.findKey(f,R)||"text"](I,g);return!M&&N&&N(),await new Promise((U,Z)=>{bh(U,Z,{data:H,headers:Oe.from(I.headers),status:I.status,statusText:I.statusText,config:g,request:V})})}catch(_){throw N&&N(),_&&_.name==="TypeError"&&/Load failed|fetch/i.test(_.message)?Object.assign(new z("Network Error",z.ERR_NETWORK,g,V,_&&_.response),{cause:_.cause||_}):z.from(_,_&&_.code,g,V,_&&_.response)}}},Fx=new Map,Eh=e=>{let t=e&&e.env||{};const{fetch:n,Request:r,Response:o}=t,s=[r,o,n];let a=s.length,i=a,l,u,d=Fx;for(;i--;)l=s[i],u=d.get(l),u===void 0&&d.set(l,u=i?new Map:jx(t)),d=u;return u};Eh();const ii={http:ex,xhr:Mx,fetch:{get:Eh}};C.forEach(ii,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const kc=e=>`- ${e}`,kx=e=>C.isFunction(e)||e===null||e===!1;function $x(e,t){e=C.isArray(e)?e:[e];const{length:n}=e;let r,o;const s={};for(let a=0;a<n;a++){r=e[a];let i;if(o=r,!kx(r)&&(o=ii[(i=String(r)).toLowerCase()],o===void 0))throw new z(`Unknown adapter '${i}'`);if(o&&(C.isFunction(o)||(o=o.get(t))))break;s[i||"#"+a]=o}if(!o){const a=Object.entries(s).map(([l,u])=>`adapter ${l} `+(u===!1?"is not supported by the environment":"is not available in the build"));let i=n?a.length>1?`since :
|
|
16
|
-
`+a.map(kc).join(`
|
|
17
|
-
`):" "+kc(a[0]):"as no adapter specified";throw new z("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return o}const Rh={getAdapter:$x,adapters:ii};function _s(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Pr(null,e)}function $c(e){return _s(e),e.headers=Oe.from(e.headers),e.data=Ps.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Rh.getAdapter(e.adapter||Cr.adapter,e)(e).then(function(r){return _s(e),r.data=Ps.call(e,e.transformResponse,r),r.headers=Oe.from(r.headers),r},function(r){return xh(r)||(_s(e),r&&r.response&&(r.response.data=Ps.call(e,e.transformResponse,r.response),r.response.headers=Oe.from(r.response.headers))),Promise.reject(r)})}const Ch="1.13.6",Yo={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{Yo[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Hc={};Yo.transitional=function(t,n,r){function o(s,a){return"[Axios v"+Ch+"] Transitional option '"+s+"'"+a+(r?". "+r:"")}return(s,a,i)=>{if(t===!1)throw new z(o(a," has been removed"+(n?" in "+n:"")),z.ERR_DEPRECATED);return n&&!Hc[a]&&(Hc[a]=!0,console.warn(o(a," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(s,a,i):!0}};Yo.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function Hx(e,t,n){if(typeof e!="object")throw new z("options must be an object",z.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let o=r.length;for(;o-- >0;){const s=r[o],a=t[s];if(a){const i=e[s],l=i===void 0||a(i,s,e);if(l!==!0)throw new z("option "+s+" must be "+l,z.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new z("Unknown option "+s,z.ERR_BAD_OPTION)}}const Qr={assertOptions:Hx,validators:Yo},Ze=Qr.validators;let Jt=class{constructor(t){this.defaults=t||{},this.interceptors={request:new Tc,response:new Tc}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let o={};Error.captureStackTrace?Error.captureStackTrace(o):o=new Error;const s=o.stack?o.stack.replace(/^.+\n/,""):"";try{r.stack?s&&!String(r.stack).endsWith(s.replace(/^.+\n.+\n/,""))&&(r.stack+=`
|
|
18
|
-
`+s):r.stack=s}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=cn(this.defaults,n);const{transitional:r,paramsSerializer:o,headers:s}=n;r!==void 0&&Qr.assertOptions(r,{silentJSONParsing:Ze.transitional(Ze.boolean),forcedJSONParsing:Ze.transitional(Ze.boolean),clarifyTimeoutError:Ze.transitional(Ze.boolean),legacyInterceptorReqResOrdering:Ze.transitional(Ze.boolean)},!1),o!=null&&(C.isFunction(o)?n.paramsSerializer={serialize:o}:Qr.assertOptions(o,{encode:Ze.function,serialize:Ze.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),Qr.assertOptions(n,{baseUrl:Ze.spelling("baseURL"),withXsrfToken:Ze.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=s&&C.merge(s.common,s[n.method]);s&&C.forEach(["delete","get","head","post","put","patch","common"],g=>{delete s[g]}),n.headers=Oe.concat(a,s);const i=[];let l=!0;this.interceptors.request.forEach(function(v){if(typeof v.runWhen=="function"&&v.runWhen(n)===!1)return;l=l&&v.synchronous;const y=n.transitional||si;y&&y.legacyInterceptorReqResOrdering?i.unshift(v.fulfilled,v.rejected):i.push(v.fulfilled,v.rejected)});const u=[];this.interceptors.response.forEach(function(v){u.push(v.fulfilled,v.rejected)});let d,f=0,p;if(!l){const g=[$c.bind(this),void 0];for(g.unshift(...i),g.push(...u),p=g.length,d=Promise.resolve(n);f<p;)d=d.then(g[f++],g[f++]);return d}p=i.length;let m=n;for(;f<p;){const g=i[f++],v=i[f++];try{m=g(m)}catch(y){v.call(this,y);break}}try{d=$c.call(this,m)}catch(g){return Promise.reject(g)}for(f=0,p=u.length;f<p;)d=d.then(u[f++],u[f++]);return d}getUri(t){t=cn(this.defaults,t);const n=wh(t.baseURL,t.url,t.allowAbsoluteUrls);return vh(n,t.params,t.paramsSerializer)}};C.forEach(["delete","get","head","options"],function(t){Jt.prototype[t]=function(n,r){return this.request(cn(r||{},{method:t,url:n,data:(r||{}).data}))}});C.forEach(["post","put","patch"],function(t){function n(r){return function(s,a,i){return this.request(cn(i||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:s,data:a}))}}Jt.prototype[t]=n(),Jt.prototype[t+"Form"]=n(!0)});let Bx=class Ph{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(s){n=s});const r=this;this.promise.then(o=>{if(!r._listeners)return;let s=r._listeners.length;for(;s-- >0;)r._listeners[s](o);r._listeners=null}),this.promise.then=o=>{let s;const a=new Promise(i=>{r.subscribe(i),s=i}).then(o);return a.cancel=function(){r.unsubscribe(s)},a},t(function(s,a,i){r.reason||(r.reason=new Pr(s,a,i),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new Ph(function(o){t=o}),cancel:t}}};function Vx(e){return function(n){return e.apply(null,n)}}function Ux(e){return C.isObject(e)&&e.isAxiosError===!0}const ia={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(ia).forEach(([e,t])=>{ia[t]=e});function _h(e){const t=new Jt(e),n=ah(Jt.prototype.request,t);return C.extend(n,Jt.prototype,t,{allOwnKeys:!0}),C.extend(n,t,null,{allOwnKeys:!0}),n.create=function(o){return _h(cn(e,o))},n}const de=_h(Cr);de.Axios=Jt;de.CanceledError=Pr;de.CancelToken=Bx;de.isCancel=xh;de.VERSION=Ch;de.toFormData=Qo;de.AxiosError=z;de.Cancel=de.CanceledError;de.all=function(t){return Promise.all(t)};de.spread=Vx;de.isAxiosError=Ux;de.mergeConfig=cn;de.AxiosHeaders=Oe;de.formToJSON=e=>yh(C.isHTMLForm(e)?new FormData(e):e);de.getAdapter=Rh.getAdapter;de.HttpStatusCode=ia;de.default=de;const{Axios:oS,AxiosError:sS,CanceledError:aS,isCancel:iS,CancelToken:cS,VERSION:lS,all:uS,Cancel:dS,isAxiosError:fS,spread:hS,toFormData:pS,AxiosHeaders:mS,HttpStatusCode:gS,formToJSON:vS,getAdapter:yS,mergeConfig:xS}=de,Zx=e=>({type:"error",category:"graphql",errors:e.map(t=>({code:t.extensions?.code??"GRAPHQL_ERROR",message:t.message??"GraphQL request failed",details:t}))}),qx=e=>{const t=de.isAxiosError(e)?e.response?.data?.message??e.message??"Network request failed":"Network request failed",n=de.isAxiosError(e)?e.code??(e.response?.status?`HTTP_${e.response.status}`:"NETWORK_ERROR"):"NETWORK_ERROR",r=de.isAxiosError(e)?e.response?.data:void 0;return{type:"error",category:"network",errors:[{code:n,message:t,details:r}]}};async function Re(e,t,n){const r=typeof e=="string"?{query:e,variables:t,operationName:n}:e;try{const{data:o}=await de.post("/graphql",r);return o.errors&&o.errors.length>0?Zx(o.errors):o.data?{type:"success",...o.data}:{type:"error",category:"graphql",errors:[{code:"EMPTY_RESPONSE",message:"GraphQL response data is empty",details:o}]}}catch(o){return qx(o)}}const zx=async e=>{try{const t=await Re(`
|
|
19
|
-
query GetServerCache($key: String!) {
|
|
20
|
-
cache(key: $key) {
|
|
21
|
-
value
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
`,{key:e});if(t.type==="error")throw t;return t.cache.value}catch{return""}},Wx=async(e,t)=>Re(`
|
|
25
|
-
mutation SetServerCache($key: String!, $value: String!) {
|
|
26
|
-
setCache(key: $key, value: $value) {
|
|
27
|
-
value
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
`,{key:e,value:encodeURIComponent(t)}),Gx=e=>!e||e.length===0?null:[...new Set(e)].sort(),Kx=e=>!e||e.length===0?null:[...new Set(e)].sort(),Xe={notes:{all:()=>["notes"],listAll:()=>["notes","list"],list:(e={})=>["notes","list",{limit:e.limit??25,offset:e.offset??0,query:e.query??"",sortBy:e.sortBy??null,sortOrder:e.sortOrder??null,pinnedFirst:e.pinnedFirst??null,fields:Gx(e.fields)}],tagListAll:()=>["notes","tag-list"],tagList:(e={})=>["notes","tag-list",{limit:e.limit??25,offset:e.offset??0,query:e.query??""}],detail:e=>["notes","detail",{id:e}],pinned:()=>["notes","pinned"],backReferences:e=>["notes","back-references",{noteId:e}],graph:()=>["notes","graph"]},tags:{all:()=>["tags"],list:(e={})=>["tags","list",{limit:e.limit??50,offset:e.offset??0,query:e.query??""}]},images:{all:()=>["images"],listAll:()=>["images","list"],list:(e={})=>["images","list",{limit:e.limit??50,offset:e.offset??0}],detail:e=>["images","detail",{id:e}],notes:e=>["images","notes",{id:e}]},reminders:{all:()=>["reminders"],note:(e,t={})=>["reminders","note",e,{limit:t.limit??10,offset:t.offset??0}],noteAllPages:e=>["reminders","note",e],upcoming:(e={})=>["reminders","upcoming",{limit:e.limit??10,offset:e.offset??0}],upcomingAllPages:()=>["reminders","upcoming"],inDateRangeAll:()=>["reminders","in-date-range"],inDateRange:(e,t)=>["reminders","in-date-range",{year:e,month:t}]},placeholders:{all:()=>["placeholders"],listAll:()=>["placeholders","list"],list:(e={})=>["placeholders","list",{limit:e.limit??25,offset:e.offset??0,query:e.query??"",fields:Kx(e.fields)}]},calendar:{notesInDateRange:(e,t)=>["calendar","notes-in-date-range",{year:e,month:t}]},ui:{heroBanner:()=>["ui","hero-banner"]}},Qx=()=>{const e=Fu(),t=hr(),{theme:n}=ei(o=>o),{data:r}=em({queryKey:Xe.ui.heroBanner(),async queryFn(){return zx("heroBanner")}});return r?h.jsx("div",{className:"p-3 pb-0",children:h.jsxs("div",{className:"relative rounded-[16px_5px_17px_4px/5px_13px_5px_15px] border-2 border-border shadow-sketchy overflow-hidden cursor-pointer group",onClick:async()=>{await e("Do you want to remove this hero banner?")&&(await Wx("heroBanner",""),await t.invalidateQueries({queryKey:Xe.ui.heroBanner(),exact:!0}))},children:[h.jsx("img",{className:"w-full transition-transform duration-300 group-hover:scale-105",style:{filter:n==="dark"?"brightness(0.85) saturate(0.9)":void 0},src:r}),h.jsx("div",{className:"absolute inset-0 bg-black/0 group-hover:bg-black/20 transition-colors duration-300 flex items-center justify-center",children:h.jsx("span",{className:"text-white text-xs font-bold opacity-0 group-hover:opacity-100 transition-opacity duration-300 bg-black/50 px-3 py-1.5 rounded-[8px_3px_9px_2px/3px_6px_3px_7px]",children:"Click to remove"})})]})}):null},Yx=new Set(["content","order","layout"]),Xx=`query FetchNotes(
|
|
31
|
-
$searchFilter: SearchFilterInput,
|
|
32
|
-
$pagination: PaginationInput
|
|
33
|
-
) {
|
|
34
|
-
allNotes(
|
|
35
|
-
searchFilter: $searchFilter,
|
|
36
|
-
pagination: $pagination
|
|
37
|
-
) {
|
|
38
|
-
totalCount
|
|
39
|
-
notes {
|
|
40
|
-
__NOTE_ADDITIONAL_FIELDS__ id
|
|
41
|
-
title
|
|
42
|
-
pinned
|
|
43
|
-
createdAt
|
|
44
|
-
updatedAt
|
|
45
|
-
tags {
|
|
46
|
-
id
|
|
47
|
-
name
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}`,Jx=e=>{if(!e||e.length===0)return"";const t=Array.from(new Set(e.filter(n=>Yx.has(n))));return t.length===0?"":t.map(n=>" "+n).join(`
|
|
52
|
-
`)+`
|
|
53
|
-
`};function Th({limit:e=25,offset:t=0,query:n="",sortBy:r,sortOrder:o,pinnedFirst:s,fields:a}={}){const i=Jx(a),l=Xx.replace("__NOTE_ADDITIONAL_FIELDS__",i);return Re(l,{searchFilter:{query:n,sortBy:r,sortOrder:o,pinnedFirst:s},pagination:{limit:e,offset:t}})}function bS({query:e="",limit:t=25,offset:n=0}={}){return Re(`query FetchTagNotes(
|
|
54
|
-
$searchFilter: SearchFilterInput,
|
|
55
|
-
$pagination: PaginationInput
|
|
56
|
-
) {
|
|
57
|
-
tagNotes(
|
|
58
|
-
searchFilter: $searchFilter,
|
|
59
|
-
pagination: $pagination
|
|
60
|
-
) {
|
|
61
|
-
totalCount
|
|
62
|
-
notes {
|
|
63
|
-
id
|
|
64
|
-
title
|
|
65
|
-
pinned
|
|
66
|
-
tags {
|
|
67
|
-
id
|
|
68
|
-
name
|
|
69
|
-
}
|
|
70
|
-
createdAt
|
|
71
|
-
updatedAt
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}`,{searchFilter:{query:e},pagination:{limit:t,offset:n}})}function wS(e){return Re(`query FetchNote($id: ID!) {
|
|
75
|
-
note(id: $id) {
|
|
76
|
-
title
|
|
77
|
-
pinned
|
|
78
|
-
layout
|
|
79
|
-
content
|
|
80
|
-
updatedAt
|
|
81
|
-
}
|
|
82
|
-
}`,{id:e})}function SS(e){return Re(`query FetchBackReferences($id: ID!) {
|
|
83
|
-
backReferences(id: $id) {
|
|
84
|
-
id
|
|
85
|
-
title
|
|
86
|
-
}
|
|
87
|
-
}`,{id:e})}function ES(e){return Re(`query FetchImageNotes($src: String!) {
|
|
88
|
-
imageNotes(src: $src) {
|
|
89
|
-
id
|
|
90
|
-
title
|
|
91
|
-
createdAt
|
|
92
|
-
updatedAt
|
|
93
|
-
}
|
|
94
|
-
}`,{src:e})}function eb(e){return Re(`mutation CreateNote($note: NoteInput!) {
|
|
95
|
-
createNote(note: $note) {
|
|
96
|
-
id
|
|
97
|
-
}
|
|
98
|
-
}`,{note:e})}const RS=({id:e,...t})=>Re(`mutation UpdateNote($id: ID!, $note: NoteInput!) {
|
|
99
|
-
updateNote(id: $id, note: $note) {
|
|
100
|
-
id
|
|
101
|
-
title
|
|
102
|
-
}
|
|
103
|
-
}`,{id:e,note:t});function tb(e,t){return Re(`mutation PinNote($id: ID!, $pinned: Boolean!) {
|
|
104
|
-
pinNote(id: $id, pinned: $pinned) {
|
|
105
|
-
id
|
|
106
|
-
title
|
|
107
|
-
pinned
|
|
108
|
-
createdAt
|
|
109
|
-
updatedAt
|
|
110
|
-
}
|
|
111
|
-
}`,{id:e,pinned:t})}function nb(e){return Re(`mutation DeleteNote($id: ID!) {
|
|
112
|
-
deleteNote(id: $id)
|
|
113
|
-
}`,{id:e})}function rb(e){return Re(`mutation ReorderNotes($notes: [NoteOrderInput!]!) {
|
|
114
|
-
reorderNotes(notes: $notes) {
|
|
115
|
-
id
|
|
116
|
-
order
|
|
117
|
-
}
|
|
118
|
-
}`,{notes:e})}function CS(){return Re(`query FetchNoteGraph {
|
|
119
|
-
noteGraph {
|
|
120
|
-
nodes {
|
|
121
|
-
id
|
|
122
|
-
title
|
|
123
|
-
connections
|
|
124
|
-
}
|
|
125
|
-
links {
|
|
126
|
-
source
|
|
127
|
-
target
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}`)}var Yr={exports:{}},ob=Yr.exports,Bc;function sb(){return Bc||(Bc=1,(function(e,t){(function(n,r){e.exports=r()})(ob,(function(){var n=1e3,r=6e4,o=36e5,s="millisecond",a="second",i="minute",l="hour",u="day",d="week",f="month",p="quarter",m="year",g="date",v="Invalid Date",y=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,x=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,b={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(N){var D=["th","st","nd","rd"],_=N%100;return"["+N+(D[(_-20)%10]||D[_]||D[0])+"]"}},w=function(N,D,_){var j=String(N);return!j||j.length>=D?N:""+Array(D+1-j.length).join(_)+N},S={s:w,z:function(N){var D=-N.utcOffset(),_=Math.abs(D),j=Math.floor(_/60),I=_%60;return(D<=0?"+":"-")+w(j,2,"0")+":"+w(I,2,"0")},m:function N(D,_){if(D.date()<_.date())return-N(_,D);var j=12*(_.year()-D.year())+(_.month()-D.month()),I=D.clone().add(j,f),M=_-I<0,H=D.clone().add(j+(M?-1:1),f);return+(-(j+(_-I)/(M?I-H:H-I))||0)},a:function(N){return N<0?Math.ceil(N)||0:Math.floor(N)},p:function(N){return{M:f,y:m,w:d,d:u,D:g,h:l,m:i,s:a,ms:s,Q:p}[N]||String(N||"").toLowerCase().replace(/s$/,"")},u:function(N){return N===void 0}},P="en",O={};O[P]=b;var R="$isDayjsObject",E=function(N){return N instanceof F||!(!N||!N[R])},A=function N(D,_,j){var I;if(!D)return P;if(typeof D=="string"){var M=D.toLowerCase();O[M]&&(I=M),_&&(O[M]=_,I=M);var H=D.split("-");if(!I&&H.length>1)return N(H[0])}else{var U=D.name;O[U]=D,I=U}return!j&&I&&(P=I),I||!j&&P},L=function(N,D){if(E(N))return N.clone();var _=typeof D=="object"?D:{};return _.date=N,_.args=arguments,new F(_)},T=S;T.l=A,T.i=E,T.w=function(N,D){return L(N,{locale:D.$L,utc:D.$u,x:D.$x,$offset:D.$offset})};var F=(function(){function N(_){this.$L=A(_.locale,null,!0),this.parse(_),this.$x=this.$x||_.x||{},this[R]=!0}var D=N.prototype;return D.parse=function(_){this.$d=(function(j){var I=j.date,M=j.utc;if(I===null)return new Date(NaN);if(T.u(I))return new Date;if(I instanceof Date)return new Date(I);if(typeof I=="string"&&!/Z$/i.test(I)){var H=I.match(y);if(H){var U=H[2]-1||0,Z=(H[7]||"0").substring(0,3);return M?new Date(Date.UTC(H[1],U,H[3]||1,H[4]||0,H[5]||0,H[6]||0,Z)):new Date(H[1],U,H[3]||1,H[4]||0,H[5]||0,H[6]||0,Z)}}return new Date(I)})(_),this.init()},D.init=function(){var _=this.$d;this.$y=_.getFullYear(),this.$M=_.getMonth(),this.$D=_.getDate(),this.$W=_.getDay(),this.$H=_.getHours(),this.$m=_.getMinutes(),this.$s=_.getSeconds(),this.$ms=_.getMilliseconds()},D.$utils=function(){return T},D.isValid=function(){return this.$d.toString()!==v},D.isSame=function(_,j){var I=L(_);return this.startOf(j)<=I&&I<=this.endOf(j)},D.isAfter=function(_,j){return L(_)<this.startOf(j)},D.isBefore=function(_,j){return this.endOf(j)<L(_)},D.$g=function(_,j,I){return T.u(_)?this[j]:this.set(I,_)},D.unix=function(){return Math.floor(this.valueOf()/1e3)},D.valueOf=function(){return this.$d.getTime()},D.startOf=function(_,j){var I=this,M=!!T.u(j)||j,H=T.p(_),U=function(ee,$){var Y=T.w(I.$u?Date.UTC(I.$y,$,ee):new Date(I.$y,$,ee),I);return M?Y:Y.endOf(u)},Z=function(ee,$){return T.w(I.toDate()[ee].apply(I.toDate("s"),(M?[0,0,0,0]:[23,59,59,999]).slice($)),I)},K=this.$W,q=this.$M,Q=this.$D,ne="set"+(this.$u?"UTC":"");switch(H){case m:return M?U(1,0):U(31,11);case f:return M?U(1,q):U(0,q+1);case d:var k=this.$locale().weekStart||0,G=(K<k?K+7:K)-k;return U(M?Q-G:Q+(6-G),q);case u:case g:return Z(ne+"Hours",0);case l:return Z(ne+"Minutes",1);case i:return Z(ne+"Seconds",2);case a:return Z(ne+"Milliseconds",3);default:return this.clone()}},D.endOf=function(_){return this.startOf(_,!1)},D.$set=function(_,j){var I,M=T.p(_),H="set"+(this.$u?"UTC":""),U=(I={},I[u]=H+"Date",I[g]=H+"Date",I[f]=H+"Month",I[m]=H+"FullYear",I[l]=H+"Hours",I[i]=H+"Minutes",I[a]=H+"Seconds",I[s]=H+"Milliseconds",I)[M],Z=M===u?this.$D+(j-this.$W):j;if(M===f||M===m){var K=this.clone().set(g,1);K.$d[U](Z),K.init(),this.$d=K.set(g,Math.min(this.$D,K.daysInMonth())).$d}else U&&this.$d[U](Z);return this.init(),this},D.set=function(_,j){return this.clone().$set(_,j)},D.get=function(_){return this[T.p(_)]()},D.add=function(_,j){var I,M=this;_=Number(_);var H=T.p(j),U=function(q){var Q=L(M);return T.w(Q.date(Q.date()+Math.round(q*_)),M)};if(H===f)return this.set(f,this.$M+_);if(H===m)return this.set(m,this.$y+_);if(H===u)return U(1);if(H===d)return U(7);var Z=(I={},I[i]=r,I[l]=o,I[a]=n,I)[H]||1,K=this.$d.getTime()+_*Z;return T.w(K,this)},D.subtract=function(_,j){return this.add(-1*_,j)},D.format=function(_){var j=this,I=this.$locale();if(!this.isValid())return I.invalidDate||v;var M=_||"YYYY-MM-DDTHH:mm:ssZ",H=T.z(this),U=this.$H,Z=this.$m,K=this.$M,q=I.weekdays,Q=I.months,ne=I.meridiem,k=function($,Y,J,se){return $&&($[Y]||$(j,M))||J[Y].slice(0,se)},G=function($){return T.s(U%12||12,$,"0")},ee=ne||function($,Y,J){var se=$<12?"AM":"PM";return J?se.toLowerCase():se};return M.replace(x,(function($,Y){return Y||(function(J){switch(J){case"YY":return String(j.$y).slice(-2);case"YYYY":return T.s(j.$y,4,"0");case"M":return K+1;case"MM":return T.s(K+1,2,"0");case"MMM":return k(I.monthsShort,K,Q,3);case"MMMM":return k(Q,K);case"D":return j.$D;case"DD":return T.s(j.$D,2,"0");case"d":return String(j.$W);case"dd":return k(I.weekdaysMin,j.$W,q,2);case"ddd":return k(I.weekdaysShort,j.$W,q,3);case"dddd":return q[j.$W];case"H":return String(U);case"HH":return T.s(U,2,"0");case"h":return G(1);case"hh":return G(2);case"a":return ee(U,Z,!0);case"A":return ee(U,Z,!1);case"m":return String(Z);case"mm":return T.s(Z,2,"0");case"s":return String(j.$s);case"ss":return T.s(j.$s,2,"0");case"SSS":return T.s(j.$ms,3,"0");case"Z":return H}return null})($)||H.replace(":","")}))},D.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},D.diff=function(_,j,I){var M,H=this,U=T.p(j),Z=L(_),K=(Z.utcOffset()-this.utcOffset())*r,q=this-Z,Q=function(){return T.m(H,Z)};switch(U){case m:M=Q()/12;break;case f:M=Q();break;case p:M=Q()/3;break;case d:M=(q-K)/6048e5;break;case u:M=(q-K)/864e5;break;case l:M=q/o;break;case i:M=q/r;break;case a:M=q/n;break;default:M=q}return I?M:T.a(M)},D.daysInMonth=function(){return this.endOf(f).$D},D.$locale=function(){return O[this.$L]},D.locale=function(_,j){if(!_)return this.$L;var I=this.clone(),M=A(_,j,!0);return M&&(I.$L=M),I},D.clone=function(){return T.w(this.$d,this)},D.toDate=function(){return new Date(this.valueOf())},D.toJSON=function(){return this.isValid()?this.toISOString():null},D.toISOString=function(){return this.$d.toISOString()},D.toString=function(){return this.$d.toUTCString()},N})(),V=F.prototype;return L.prototype=V,[["$ms",s],["$s",a],["$m",i],["$H",l],["$W",u],["$M",f],["$y",m],["$D",g]].forEach((function(N){V[N[1]]=function(D){return this.$g(D,N[0],N[1])}})),L.extend=function(N,D){return N.$i||(N(D,F,L),N.$i=!0),L},L.locale=A,L.isDayjs=E,L.unix=function(N){return L(1e3*N)},L.en=O[P],L.Ls=O,L.p={},L}))})(Yr)),Yr.exports}var ab=sb();const we=fr(ab),ib=()=>{const e=new Date,t=e.getDate(),n=e.getMonth(),r=e.getFullYear(),s=new Date(r,n,1).getDay();return Math.ceil((t+s)/7)},cb=()=>[{name:"Year",template:"year",replacement:we().format("YYYY")},{name:"Month",template:"month",replacement:we().format("MM")},{name:"Short Month",template:"mon",replacement:we().format("M")},{name:"Day",template:"day",replacement:we().format("DD")},{name:"Short Day",template:"d",replacement:we().format("D")},{name:"Week of Month",template:"week_of_month",replacement:ib().toString()},{name:"Hour 24",template:"hour",replacement:we().format("HH")},{name:"Hour 12",template:"hour_12",replacement:we().format("hh")},{name:"Short Hour 24",template:"h",replacement:we().format("H")},{name:"Short Hour 12",template:"h_12",replacement:we().format("h")},{name:"AM/PM",template:"ampm",replacement:we().format("A")},{name:"Minute",template:"minute",replacement:we().format("mm")},{name:"Short Minute",template:"m",replacement:we().format("m")},{name:"Second",template:"second",replacement:we().format("ss")},{name:"Short Second",template:"s",replacement:we().format("s")}],lb="{%",ub="%}",Vc=e=>e.replace(new RegExp(`${lb}([^}]+)${ub}`,"g"),(t,n)=>cb().find(o=>o.template===n)?.replacement||t),Ah=()=>{const e=Fu(),t=qg(),n=hr(),r=ln();return{onCreate:async(i="",l="",u)=>{const d=Vc(i),f=Vc(l),p=await eb({title:d,content:f,...u&&{layout:u}});p.type!=="error"&&r({to:wr,params:{id:p.createNote.id}})},onPinned:async(i,l,u)=>{try{const d=await tb(i,!l);if(d.type==="error"){t(d.errors[0].message);return}await Promise.all([n.invalidateQueries({queryKey:Xe.notes.listAll(),exact:!1}),n.invalidateQueries({queryKey:Xe.notes.tagListAll(),exact:!1}),n.invalidateQueries({queryKey:Xe.notes.pinned(),exact:!0})]),u?.()}catch{t("Failed to update note pin status")}},onDelete:async(i,l)=>{if(await e("Are you really sure?")){const u=await nb(i);if(u.type==="error"){t(u.errors[0].message);return}await Promise.all([n.invalidateQueries({queryKey:Xe.notes.listAll(),exact:!1}),n.invalidateQueries({queryKey:Xe.notes.tagListAll(),exact:!1}),n.invalidateQueries({queryKey:Xe.notes.pinned(),exact:!0})]),l?.()}}}};function db(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return c.useMemo(()=>r=>{t.forEach(o=>o(r))},t)}const Xo=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u";function Ln(e){const t=Object.prototype.toString.call(e);return t==="[object Window]"||t==="[object global]"}function ci(e){return"nodeType"in e}function Ie(e){var t,n;return e?Ln(e)?e:ci(e)&&(t=(n=e.ownerDocument)==null?void 0:n.defaultView)!=null?t:window:window}function li(e){const{Document:t}=Ie(e);return e instanceof t}function _r(e){return Ln(e)?!1:e instanceof Ie(e).HTMLElement}function Mh(e){return e instanceof Ie(e).SVGElement}function Nn(e){return e?Ln(e)?e.document:ci(e)?li(e)?e:_r(e)||Mh(e)?e.ownerDocument:document:document:document}const ut=Xo?c.useLayoutEffect:c.useEffect;function ui(e){const t=c.useRef(e);return ut(()=>{t.current=e}),c.useCallback(function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return t.current==null?void 0:t.current(...r)},[])}function fb(){const e=c.useRef(null),t=c.useCallback((r,o)=>{e.current=setInterval(r,o)},[]),n=c.useCallback(()=>{e.current!==null&&(clearInterval(e.current),e.current=null)},[]);return[t,n]}function cr(e,t){t===void 0&&(t=[e]);const n=c.useRef(e);return ut(()=>{n.current!==e&&(n.current=e)},t),n}function Tr(e,t){const n=c.useRef();return c.useMemo(()=>{const r=e(n.current);return n.current=r,r},[...t])}function xo(e){const t=ui(e),n=c.useRef(null),r=c.useCallback(o=>{o!==n.current&&t?.(o,n.current),n.current=o},[]);return[n,r]}function ca(e){const t=c.useRef();return c.useEffect(()=>{t.current=e},[e]),t.current}let Ts={};function Ar(e,t){return c.useMemo(()=>{if(t)return t;const n=Ts[e]==null?0:Ts[e]+1;return Ts[e]=n,e+"-"+n},[e,t])}function Oh(e){return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return r.reduce((s,a)=>{const i=Object.entries(a);for(const[l,u]of i){const d=s[l];d!=null&&(s[l]=d+e*u)}return s},{...t})}}const Sn=Oh(1),lr=Oh(-1);function hb(e){return"clientX"in e&&"clientY"in e}function di(e){if(!e)return!1;const{KeyboardEvent:t}=Ie(e.target);return t&&e instanceof t}function pb(e){if(!e)return!1;const{TouchEvent:t}=Ie(e.target);return t&&e instanceof t}function la(e){if(pb(e)){if(e.touches&&e.touches.length){const{clientX:t,clientY:n}=e.touches[0];return{x:t,y:n}}else if(e.changedTouches&&e.changedTouches.length){const{clientX:t,clientY:n}=e.changedTouches[0];return{x:t,y:n}}}return hb(e)?{x:e.clientX,y:e.clientY}:null}const ur=Object.freeze({Translate:{toString(e){if(!e)return;const{x:t,y:n}=e;return"translate3d("+(t?Math.round(t):0)+"px, "+(n?Math.round(n):0)+"px, 0)"}},Scale:{toString(e){if(!e)return;const{scaleX:t,scaleY:n}=e;return"scaleX("+t+") scaleY("+n+")"}},Transform:{toString(e){if(e)return[ur.Translate.toString(e),ur.Scale.toString(e)].join(" ")}},Transition:{toString(e){let{property:t,duration:n,easing:r}=e;return t+" "+n+"ms "+r}}}),Uc="a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";function mb(e){return e.matches(Uc)?e:e.querySelector(Uc)}const gb={display:"none"};function vb(e){let{id:t,value:n}=e;return W.createElement("div",{id:t,style:gb},n)}function yb(e){let{id:t,announcement:n,ariaLiveType:r="assertive"}=e;const o={position:"fixed",top:0,left:0,width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0 0 0 0)",clipPath:"inset(100%)",whiteSpace:"nowrap"};return W.createElement("div",{id:t,style:o,role:"status","aria-live":r,"aria-atomic":!0},n)}function xb(){const[e,t]=c.useState("");return{announce:c.useCallback(r=>{r!=null&&t(r)},[]),announcement:e}}const Ih=c.createContext(null);function bb(e){const t=c.useContext(Ih);c.useEffect(()=>{if(!t)throw new Error("useDndMonitor must be used within a children of <DndContext>");return t(e)},[e,t])}function wb(){const[e]=c.useState(()=>new Set),t=c.useCallback(r=>(e.add(r),()=>e.delete(r)),[e]);return[c.useCallback(r=>{let{type:o,event:s}=r;e.forEach(a=>{var i;return(i=a[o])==null?void 0:i.call(a,s)})},[e]),t]}const Sb={draggable:`
|
|
131
|
-
To pick up a draggable item, press the space bar.
|
|
132
|
-
While dragging, use the arrow keys to move the item.
|
|
133
|
-
Press space again to drop the item in its new position, or press escape to cancel.
|
|
134
|
-
`},Eb={onDragStart(e){let{active:t}=e;return"Picked up draggable item "+t.id+"."},onDragOver(e){let{active:t,over:n}=e;return n?"Draggable item "+t.id+" was moved over droppable area "+n.id+".":"Draggable item "+t.id+" is no longer over a droppable area."},onDragEnd(e){let{active:t,over:n}=e;return n?"Draggable item "+t.id+" was dropped over droppable area "+n.id:"Draggable item "+t.id+" was dropped."},onDragCancel(e){let{active:t}=e;return"Dragging was cancelled. Draggable item "+t.id+" was dropped."}};function Rb(e){let{announcements:t=Eb,container:n,hiddenTextDescribedById:r,screenReaderInstructions:o=Sb}=e;const{announce:s,announcement:a}=xb(),i=Ar("DndLiveRegion"),[l,u]=c.useState(!1);if(c.useEffect(()=>{u(!0)},[]),bb(c.useMemo(()=>({onDragStart(f){let{active:p}=f;s(t.onDragStart({active:p}))},onDragMove(f){let{active:p,over:m}=f;t.onDragMove&&s(t.onDragMove({active:p,over:m}))},onDragOver(f){let{active:p,over:m}=f;s(t.onDragOver({active:p,over:m}))},onDragEnd(f){let{active:p,over:m}=f;s(t.onDragEnd({active:p,over:m}))},onDragCancel(f){let{active:p,over:m}=f;s(t.onDragCancel({active:p,over:m}))}}),[s,t])),!l)return null;const d=W.createElement(W.Fragment,null,W.createElement(vb,{id:r,value:o.draggable}),W.createElement(yb,{id:i,announcement:a}));return n?yt.createPortal(d,n):d}var he;(function(e){e.DragStart="dragStart",e.DragMove="dragMove",e.DragEnd="dragEnd",e.DragCancel="dragCancel",e.DragOver="dragOver",e.RegisterDroppable="registerDroppable",e.SetDroppableDisabled="setDroppableDisabled",e.UnregisterDroppable="unregisterDroppable"})(he||(he={}));function bo(){}function Zc(e,t){return c.useMemo(()=>({sensor:e,options:t??{}}),[e,t])}function Cb(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return c.useMemo(()=>[...t].filter(r=>r!=null),[...t])}const et=Object.freeze({x:0,y:0});function Lh(e,t){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function Nh(e,t){let{data:{value:n}}=e,{data:{value:r}}=t;return n-r}function Pb(e,t){let{data:{value:n}}=e,{data:{value:r}}=t;return r-n}function qc(e){let{left:t,top:n,height:r,width:o}=e;return[{x:t,y:n},{x:t+o,y:n},{x:t,y:n+r},{x:t+o,y:n+r}]}function Dh(e,t){if(!e||e.length===0)return null;const[n]=e;return n[t]}function zc(e,t,n){return t===void 0&&(t=e.left),n===void 0&&(n=e.top),{x:t+e.width*.5,y:n+e.height*.5}}const _b=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=zc(t,t.left,t.top),s=[];for(const a of r){const{id:i}=a,l=n.get(i);if(l){const u=Lh(zc(l),o);s.push({id:i,data:{droppableContainer:a,value:u}})}}return s.sort(Nh)},Tb=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=qc(t),s=[];for(const a of r){const{id:i}=a,l=n.get(i);if(l){const u=qc(l),d=o.reduce((p,m,g)=>p+Lh(u[g],m),0),f=Number((d/4).toFixed(4));s.push({id:i,data:{droppableContainer:a,value:f}})}}return s.sort(Nh)};function Ab(e,t){const n=Math.max(t.top,e.top),r=Math.max(t.left,e.left),o=Math.min(t.left+t.width,e.left+e.width),s=Math.min(t.top+t.height,e.top+e.height),a=o-r,i=s-n;if(r<o&&n<s){const l=t.width*t.height,u=e.width*e.height,d=a*i,f=d/(l+u-d);return Number(f.toFixed(4))}return 0}const Mb=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=[];for(const s of r){const{id:a}=s,i=n.get(a);if(i){const l=Ab(i,t);l>0&&o.push({id:a,data:{droppableContainer:s,value:l}})}}return o.sort(Pb)};function Ob(e,t,n){return{...e,scaleX:t&&n?t.width/n.width:1,scaleY:t&&n?t.height/n.height:1}}function jh(e,t){return e&&t?{x:e.left-t.left,y:e.top-t.top}:et}function Ib(e){return function(n){for(var r=arguments.length,o=new Array(r>1?r-1:0),s=1;s<r;s++)o[s-1]=arguments[s];return o.reduce((a,i)=>({...a,top:a.top+e*i.y,bottom:a.bottom+e*i.y,left:a.left+e*i.x,right:a.right+e*i.x}),{...n})}}const Lb=Ib(1);function Nb(e){if(e.startsWith("matrix3d(")){const t=e.slice(9,-1).split(/, /);return{x:+t[12],y:+t[13],scaleX:+t[0],scaleY:+t[5]}}else if(e.startsWith("matrix(")){const t=e.slice(7,-1).split(/, /);return{x:+t[4],y:+t[5],scaleX:+t[0],scaleY:+t[3]}}return null}function Db(e,t,n){const r=Nb(t);if(!r)return e;const{scaleX:o,scaleY:s,x:a,y:i}=r,l=e.left-a-(1-o)*parseFloat(n),u=e.top-i-(1-s)*parseFloat(n.slice(n.indexOf(" ")+1)),d=o?e.width/o:e.width,f=s?e.height/s:e.height;return{width:d,height:f,top:u,right:l+d,bottom:u+f,left:l}}const jb={ignoreTransform:!1};function Dn(e,t){t===void 0&&(t=jb);let n=e.getBoundingClientRect();if(t.ignoreTransform){const{transform:u,transformOrigin:d}=Ie(e).getComputedStyle(e);u&&(n=Db(n,u,d))}const{top:r,left:o,width:s,height:a,bottom:i,right:l}=n;return{top:r,left:o,width:s,height:a,bottom:i,right:l}}function Wc(e){return Dn(e,{ignoreTransform:!0})}function Fb(e){const t=e.innerWidth,n=e.innerHeight;return{top:0,left:0,right:t,bottom:n,width:t,height:n}}function kb(e,t){return t===void 0&&(t=Ie(e).getComputedStyle(e)),t.position==="fixed"}function $b(e,t){t===void 0&&(t=Ie(e).getComputedStyle(e));const n=/(auto|scroll|overlay)/;return["overflow","overflowX","overflowY"].some(o=>{const s=t[o];return typeof s=="string"?n.test(s):!1})}function Jo(e,t){const n=[];function r(o){if(t!=null&&n.length>=t||!o)return n;if(li(o)&&o.scrollingElement!=null&&!n.includes(o.scrollingElement))return n.push(o.scrollingElement),n;if(!_r(o)||Mh(o)||n.includes(o))return n;const s=Ie(e).getComputedStyle(o);return o!==e&&$b(o,s)&&n.push(o),kb(o,s)?n:r(o.parentNode)}return e?r(e):n}function Fh(e){const[t]=Jo(e,1);return t??null}function As(e){return!Xo||!e?null:Ln(e)?e:ci(e)?li(e)||e===Nn(e).scrollingElement?window:_r(e)?e:null:null}function kh(e){return Ln(e)?e.scrollX:e.scrollLeft}function $h(e){return Ln(e)?e.scrollY:e.scrollTop}function ua(e){return{x:kh(e),y:$h(e)}}var ge;(function(e){e[e.Forward=1]="Forward",e[e.Backward=-1]="Backward"})(ge||(ge={}));function Hh(e){return!Xo||!e?!1:e===document.scrollingElement}function Bh(e){const t={x:0,y:0},n=Hh(e)?{height:window.innerHeight,width:window.innerWidth}:{height:e.clientHeight,width:e.clientWidth},r={x:e.scrollWidth-n.width,y:e.scrollHeight-n.height},o=e.scrollTop<=t.y,s=e.scrollLeft<=t.x,a=e.scrollTop>=r.y,i=e.scrollLeft>=r.x;return{isTop:o,isLeft:s,isBottom:a,isRight:i,maxScroll:r,minScroll:t}}const Hb={x:.2,y:.2};function Bb(e,t,n,r,o){let{top:s,left:a,right:i,bottom:l}=n;r===void 0&&(r=10),o===void 0&&(o=Hb);const{isTop:u,isBottom:d,isLeft:f,isRight:p}=Bh(e),m={x:0,y:0},g={x:0,y:0},v={height:t.height*o.y,width:t.width*o.x};return!u&&s<=t.top+v.height?(m.y=ge.Backward,g.y=r*Math.abs((t.top+v.height-s)/v.height)):!d&&l>=t.bottom-v.height&&(m.y=ge.Forward,g.y=r*Math.abs((t.bottom-v.height-l)/v.height)),!p&&i>=t.right-v.width?(m.x=ge.Forward,g.x=r*Math.abs((t.right-v.width-i)/v.width)):!f&&a<=t.left+v.width&&(m.x=ge.Backward,g.x=r*Math.abs((t.left+v.width-a)/v.width)),{direction:m,speed:g}}function Vb(e){if(e===document.scrollingElement){const{innerWidth:s,innerHeight:a}=window;return{top:0,left:0,right:s,bottom:a,width:s,height:a}}const{top:t,left:n,right:r,bottom:o}=e.getBoundingClientRect();return{top:t,left:n,right:r,bottom:o,width:e.clientWidth,height:e.clientHeight}}function Vh(e){return e.reduce((t,n)=>Sn(t,ua(n)),et)}function Ub(e){return e.reduce((t,n)=>t+kh(n),0)}function Zb(e){return e.reduce((t,n)=>t+$h(n),0)}function qb(e,t){if(t===void 0&&(t=Dn),!e)return;const{top:n,left:r,bottom:o,right:s}=t(e);Fh(e)&&(o<=0||s<=0||n>=window.innerHeight||r>=window.innerWidth)&&e.scrollIntoView({block:"center",inline:"center"})}const zb=[["x",["left","right"],Ub],["y",["top","bottom"],Zb]];class fi{constructor(t,n){this.rect=void 0,this.width=void 0,this.height=void 0,this.top=void 0,this.bottom=void 0,this.right=void 0,this.left=void 0;const r=Jo(n),o=Vh(r);this.rect={...t},this.width=t.width,this.height=t.height;for(const[s,a,i]of zb)for(const l of a)Object.defineProperty(this,l,{get:()=>{const u=i(r),d=o[s]-u;return this.rect[l]+d},enumerable:!0});Object.defineProperty(this,"rect",{enumerable:!1})}}class Yn{constructor(t){this.target=void 0,this.listeners=[],this.removeAll=()=>{this.listeners.forEach(n=>{var r;return(r=this.target)==null?void 0:r.removeEventListener(...n)})},this.target=t}add(t,n,r){var o;(o=this.target)==null||o.addEventListener(t,n,r),this.listeners.push([t,n,r])}}function Wb(e){const{EventTarget:t}=Ie(e);return e instanceof t?e:Nn(e)}function Ms(e,t){const n=Math.abs(e.x),r=Math.abs(e.y);return typeof t=="number"?Math.sqrt(n**2+r**2)>t:"x"in t&&"y"in t?n>t.x&&r>t.y:"x"in t?n>t.x:"y"in t?r>t.y:!1}var We;(function(e){e.Click="click",e.DragStart="dragstart",e.Keydown="keydown",e.ContextMenu="contextmenu",e.Resize="resize",e.SelectionChange="selectionchange",e.VisibilityChange="visibilitychange"})(We||(We={}));function Gc(e){e.preventDefault()}function Gb(e){e.stopPropagation()}var re;(function(e){e.Space="Space",e.Down="ArrowDown",e.Right="ArrowRight",e.Left="ArrowLeft",e.Up="ArrowUp",e.Esc="Escape",e.Enter="Enter",e.Tab="Tab"})(re||(re={}));const Uh={start:[re.Space,re.Enter],cancel:[re.Esc],end:[re.Space,re.Enter,re.Tab]},Kb=(e,t)=>{let{currentCoordinates:n}=t;switch(e.code){case re.Right:return{...n,x:n.x+25};case re.Left:return{...n,x:n.x-25};case re.Down:return{...n,y:n.y+25};case re.Up:return{...n,y:n.y-25}}};class hi{constructor(t){this.props=void 0,this.autoScrollEnabled=!1,this.referenceCoordinates=void 0,this.listeners=void 0,this.windowListeners=void 0,this.props=t;const{event:{target:n}}=t;this.props=t,this.listeners=new Yn(Nn(n)),this.windowListeners=new Yn(Ie(n)),this.handleKeyDown=this.handleKeyDown.bind(this),this.handleCancel=this.handleCancel.bind(this),this.attach()}attach(){this.handleStart(),this.windowListeners.add(We.Resize,this.handleCancel),this.windowListeners.add(We.VisibilityChange,this.handleCancel),setTimeout(()=>this.listeners.add(We.Keydown,this.handleKeyDown))}handleStart(){const{activeNode:t,onStart:n}=this.props,r=t.node.current;r&&qb(r),n(et)}handleKeyDown(t){if(di(t)){const{active:n,context:r,options:o}=this.props,{keyboardCodes:s=Uh,coordinateGetter:a=Kb,scrollBehavior:i="smooth"}=o,{code:l}=t;if(s.end.includes(l)){this.handleEnd(t);return}if(s.cancel.includes(l)){this.handleCancel(t);return}const{collisionRect:u}=r.current,d=u?{x:u.left,y:u.top}:et;this.referenceCoordinates||(this.referenceCoordinates=d);const f=a(t,{active:n,context:r.current,currentCoordinates:d});if(f){const p=lr(f,d),m={x:0,y:0},{scrollableAncestors:g}=r.current;for(const v of g){const y=t.code,{isTop:x,isRight:b,isLeft:w,isBottom:S,maxScroll:P,minScroll:O}=Bh(v),R=Vb(v),E={x:Math.min(y===re.Right?R.right-R.width/2:R.right,Math.max(y===re.Right?R.left:R.left+R.width/2,f.x)),y:Math.min(y===re.Down?R.bottom-R.height/2:R.bottom,Math.max(y===re.Down?R.top:R.top+R.height/2,f.y))},A=y===re.Right&&!b||y===re.Left&&!w,L=y===re.Down&&!S||y===re.Up&&!x;if(A&&E.x!==f.x){const T=v.scrollLeft+p.x,F=y===re.Right&&T<=P.x||y===re.Left&&T>=O.x;if(F&&!p.y){v.scrollTo({left:T,behavior:i});return}F?m.x=v.scrollLeft-T:m.x=y===re.Right?v.scrollLeft-P.x:v.scrollLeft-O.x,m.x&&v.scrollBy({left:-m.x,behavior:i});break}else if(L&&E.y!==f.y){const T=v.scrollTop+p.y,F=y===re.Down&&T<=P.y||y===re.Up&&T>=O.y;if(F&&!p.x){v.scrollTo({top:T,behavior:i});return}F?m.y=v.scrollTop-T:m.y=y===re.Down?v.scrollTop-P.y:v.scrollTop-O.y,m.y&&v.scrollBy({top:-m.y,behavior:i});break}}this.handleMove(t,Sn(lr(f,this.referenceCoordinates),m))}}}handleMove(t,n){const{onMove:r}=this.props;t.preventDefault(),r(n)}handleEnd(t){const{onEnd:n}=this.props;t.preventDefault(),this.detach(),n()}handleCancel(t){const{onCancel:n}=this.props;t.preventDefault(),this.detach(),n()}detach(){this.listeners.removeAll(),this.windowListeners.removeAll()}}hi.activators=[{eventName:"onKeyDown",handler:(e,t,n)=>{let{keyboardCodes:r=Uh,onActivation:o}=t,{active:s}=n;const{code:a}=e.nativeEvent;if(r.start.includes(a)){const i=s.activatorNode.current;return i&&e.target!==i?!1:(e.preventDefault(),o?.({event:e.nativeEvent}),!0)}return!1}}];function Kc(e){return!!(e&&"distance"in e)}function Qc(e){return!!(e&&"delay"in e)}class pi{constructor(t,n,r){var o;r===void 0&&(r=Wb(t.event.target)),this.props=void 0,this.events=void 0,this.autoScrollEnabled=!0,this.document=void 0,this.activated=!1,this.initialCoordinates=void 0,this.timeoutId=null,this.listeners=void 0,this.documentListeners=void 0,this.windowListeners=void 0,this.props=t,this.events=n;const{event:s}=t,{target:a}=s;this.props=t,this.events=n,this.document=Nn(a),this.documentListeners=new Yn(this.document),this.listeners=new Yn(r),this.windowListeners=new Yn(Ie(a)),this.initialCoordinates=(o=la(s))!=null?o:et,this.handleStart=this.handleStart.bind(this),this.handleMove=this.handleMove.bind(this),this.handleEnd=this.handleEnd.bind(this),this.handleCancel=this.handleCancel.bind(this),this.handleKeydown=this.handleKeydown.bind(this),this.removeTextSelection=this.removeTextSelection.bind(this),this.attach()}attach(){const{events:t,props:{options:{activationConstraint:n,bypassActivationConstraint:r}}}=this;if(this.listeners.add(t.move.name,this.handleMove,{passive:!1}),this.listeners.add(t.end.name,this.handleEnd),t.cancel&&this.listeners.add(t.cancel.name,this.handleCancel),this.windowListeners.add(We.Resize,this.handleCancel),this.windowListeners.add(We.DragStart,Gc),this.windowListeners.add(We.VisibilityChange,this.handleCancel),this.windowListeners.add(We.ContextMenu,Gc),this.documentListeners.add(We.Keydown,this.handleKeydown),n){if(r!=null&&r({event:this.props.event,activeNode:this.props.activeNode,options:this.props.options}))return this.handleStart();if(Qc(n)){this.timeoutId=setTimeout(this.handleStart,n.delay),this.handlePending(n);return}if(Kc(n)){this.handlePending(n);return}}this.handleStart()}detach(){this.listeners.removeAll(),this.windowListeners.removeAll(),setTimeout(this.documentListeners.removeAll,50),this.timeoutId!==null&&(clearTimeout(this.timeoutId),this.timeoutId=null)}handlePending(t,n){const{active:r,onPending:o}=this.props;o(r,t,this.initialCoordinates,n)}handleStart(){const{initialCoordinates:t}=this,{onStart:n}=this.props;t&&(this.activated=!0,this.documentListeners.add(We.Click,Gb,{capture:!0}),this.removeTextSelection(),this.documentListeners.add(We.SelectionChange,this.removeTextSelection),n(t))}handleMove(t){var n;const{activated:r,initialCoordinates:o,props:s}=this,{onMove:a,options:{activationConstraint:i}}=s;if(!o)return;const l=(n=la(t))!=null?n:et,u=lr(o,l);if(!r&&i){if(Kc(i)){if(i.tolerance!=null&&Ms(u,i.tolerance))return this.handleCancel();if(Ms(u,i.distance))return this.handleStart()}if(Qc(i)&&Ms(u,i.tolerance))return this.handleCancel();this.handlePending(i,u);return}t.cancelable&&t.preventDefault(),a(l)}handleEnd(){const{onAbort:t,onEnd:n}=this.props;this.detach(),this.activated||t(this.props.active),n()}handleCancel(){const{onAbort:t,onCancel:n}=this.props;this.detach(),this.activated||t(this.props.active),n()}handleKeydown(t){t.code===re.Esc&&this.handleCancel()}removeTextSelection(){var t;(t=this.document.getSelection())==null||t.removeAllRanges()}}const Qb={cancel:{name:"pointercancel"},move:{name:"pointermove"},end:{name:"pointerup"}};class mi extends pi{constructor(t){const{event:n}=t,r=Nn(n.target);super(t,Qb,r)}}mi.activators=[{eventName:"onPointerDown",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;return!n.isPrimary||n.button!==0?!1:(r?.({event:n}),!0)}}];const Yb={move:{name:"mousemove"},end:{name:"mouseup"}};var da;(function(e){e[e.RightClick=2]="RightClick"})(da||(da={}));class Xb extends pi{constructor(t){super(t,Yb,Nn(t.event.target))}}Xb.activators=[{eventName:"onMouseDown",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;return n.button===da.RightClick?!1:(r?.({event:n}),!0)}}];const Os={cancel:{name:"touchcancel"},move:{name:"touchmove"},end:{name:"touchend"}};class Jb extends pi{constructor(t){super(t,Os)}static setup(){return window.addEventListener(Os.move.name,t,{capture:!1,passive:!1}),function(){window.removeEventListener(Os.move.name,t)};function t(){}}}Jb.activators=[{eventName:"onTouchStart",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;const{touches:o}=n;return o.length>1?!1:(r?.({event:n}),!0)}}];var Xn;(function(e){e[e.Pointer=0]="Pointer",e[e.DraggableRect=1]="DraggableRect"})(Xn||(Xn={}));var wo;(function(e){e[e.TreeOrder=0]="TreeOrder",e[e.ReversedTreeOrder=1]="ReversedTreeOrder"})(wo||(wo={}));function e4(e){let{acceleration:t,activator:n=Xn.Pointer,canScroll:r,draggingRect:o,enabled:s,interval:a=5,order:i=wo.TreeOrder,pointerCoordinates:l,scrollableAncestors:u,scrollableAncestorRects:d,delta:f,threshold:p}=e;const m=n4({delta:f,disabled:!s}),[g,v]=fb(),y=c.useRef({x:0,y:0}),x=c.useRef({x:0,y:0}),b=c.useMemo(()=>{switch(n){case Xn.Pointer:return l?{top:l.y,bottom:l.y,left:l.x,right:l.x}:null;case Xn.DraggableRect:return o}},[n,o,l]),w=c.useRef(null),S=c.useCallback(()=>{const O=w.current;if(!O)return;const R=y.current.x*x.current.x,E=y.current.y*x.current.y;O.scrollBy(R,E)},[]),P=c.useMemo(()=>i===wo.TreeOrder?[...u].reverse():u,[i,u]);c.useEffect(()=>{if(!s||!u.length||!b){v();return}for(const O of P){if(r?.(O)===!1)continue;const R=u.indexOf(O),E=d[R];if(!E)continue;const{direction:A,speed:L}=Bb(O,E,b,t,p);for(const T of["x","y"])m[T][A[T]]||(L[T]=0,A[T]=0);if(L.x>0||L.y>0){v(),w.current=O,g(S,a),y.current=L,x.current=A;return}}y.current={x:0,y:0},x.current={x:0,y:0},v()},[t,S,r,v,s,a,JSON.stringify(b),JSON.stringify(m),g,u,P,d,JSON.stringify(p)])}const t4={x:{[ge.Backward]:!1,[ge.Forward]:!1},y:{[ge.Backward]:!1,[ge.Forward]:!1}};function n4(e){let{delta:t,disabled:n}=e;const r=ca(t);return Tr(o=>{if(n||!r||!o)return t4;const s={x:Math.sign(t.x-r.x),y:Math.sign(t.y-r.y)};return{x:{[ge.Backward]:o.x[ge.Backward]||s.x===-1,[ge.Forward]:o.x[ge.Forward]||s.x===1},y:{[ge.Backward]:o.y[ge.Backward]||s.y===-1,[ge.Forward]:o.y[ge.Forward]||s.y===1}}},[n,t,r])}function r4(e,t){const n=t!=null?e.get(t):void 0,r=n?n.node.current:null;return Tr(o=>{var s;return t==null?null:(s=r??o)!=null?s:null},[r,t])}function o4(e,t){return c.useMemo(()=>e.reduce((n,r)=>{const{sensor:o}=r,s=o.activators.map(a=>({eventName:a.eventName,handler:t(a.handler,r)}));return[...n,...s]},[]),[e,t])}var dr;(function(e){e[e.Always=0]="Always",e[e.BeforeDragging=1]="BeforeDragging",e[e.WhileDragging=2]="WhileDragging"})(dr||(dr={}));var fa;(function(e){e.Optimized="optimized"})(fa||(fa={}));const Yc=new Map;function s4(e,t){let{dragging:n,dependencies:r,config:o}=t;const[s,a]=c.useState(null),{frequency:i,measure:l,strategy:u}=o,d=c.useRef(e),f=y(),p=cr(f),m=c.useCallback(function(x){x===void 0&&(x=[]),!p.current&&a(b=>b===null?x:b.concat(x.filter(w=>!b.includes(w))))},[p]),g=c.useRef(null),v=Tr(x=>{if(f&&!n)return Yc;if(!x||x===Yc||d.current!==e||s!=null){const b=new Map;for(let w of e){if(!w)continue;if(s&&s.length>0&&!s.includes(w.id)&&w.rect.current){b.set(w.id,w.rect.current);continue}const S=w.node.current,P=S?new fi(l(S),S):null;w.rect.current=P,P&&b.set(w.id,P)}return b}return x},[e,s,n,f,l]);return c.useEffect(()=>{d.current=e},[e]),c.useEffect(()=>{f||m()},[n,f]),c.useEffect(()=>{s&&s.length>0&&a(null)},[JSON.stringify(s)]),c.useEffect(()=>{f||typeof i!="number"||g.current!==null||(g.current=setTimeout(()=>{m(),g.current=null},i))},[i,f,m,...r]),{droppableRects:v,measureDroppableContainers:m,measuringScheduled:s!=null};function y(){switch(u){case dr.Always:return!1;case dr.BeforeDragging:return n;default:return!n}}}function Zh(e,t){return Tr(n=>e?n||(typeof t=="function"?t(e):e):null,[t,e])}function a4(e,t){return Zh(e,t)}function i4(e){let{callback:t,disabled:n}=e;const r=ui(t),o=c.useMemo(()=>{if(n||typeof window>"u"||typeof window.MutationObserver>"u")return;const{MutationObserver:s}=window;return new s(r)},[r,n]);return c.useEffect(()=>()=>o?.disconnect(),[o]),o}function es(e){let{callback:t,disabled:n}=e;const r=ui(t),o=c.useMemo(()=>{if(n||typeof window>"u"||typeof window.ResizeObserver>"u")return;const{ResizeObserver:s}=window;return new s(r)},[n]);return c.useEffect(()=>()=>o?.disconnect(),[o]),o}function c4(e){return new fi(Dn(e),e)}function Xc(e,t,n){t===void 0&&(t=c4);const[r,o]=c.useState(null);function s(){o(l=>{if(!e)return null;if(e.isConnected===!1){var u;return(u=l??n)!=null?u:null}const d=t(e);return JSON.stringify(l)===JSON.stringify(d)?l:d})}const a=i4({callback(l){if(e)for(const u of l){const{type:d,target:f}=u;if(d==="childList"&&f instanceof HTMLElement&&f.contains(e)){s();break}}}}),i=es({callback:s});return ut(()=>{s(),e?(i?.observe(e),a?.observe(document.body,{childList:!0,subtree:!0})):(i?.disconnect(),a?.disconnect())},[e]),r}function l4(e){const t=Zh(e);return jh(e,t)}const Jc=[];function u4(e){const t=c.useRef(e),n=Tr(r=>e?r&&r!==Jc&&e&&t.current&&e.parentNode===t.current.parentNode?r:Jo(e):Jc,[e]);return c.useEffect(()=>{t.current=e},[e]),n}function d4(e){const[t,n]=c.useState(null),r=c.useRef(e),o=c.useCallback(s=>{const a=As(s.target);a&&n(i=>i?(i.set(a,ua(a)),new Map(i)):null)},[]);return c.useEffect(()=>{const s=r.current;if(e!==s){a(s);const i=e.map(l=>{const u=As(l);return u?(u.addEventListener("scroll",o,{passive:!0}),[u,ua(u)]):null}).filter(l=>l!=null);n(i.length?new Map(i):null),r.current=e}return()=>{a(e),a(s)};function a(i){i.forEach(l=>{const u=As(l);u?.removeEventListener("scroll",o)})}},[o,e]),c.useMemo(()=>e.length?t?Array.from(t.values()).reduce((s,a)=>Sn(s,a),et):Vh(e):et,[e,t])}function el(e,t){t===void 0&&(t=[]);const n=c.useRef(null);return c.useEffect(()=>{n.current=null},t),c.useEffect(()=>{const r=e!==et;r&&!n.current&&(n.current=e),!r&&n.current&&(n.current=null)},[e]),n.current?lr(e,n.current):et}function f4(e){c.useEffect(()=>{if(!Xo)return;const t=e.map(n=>{let{sensor:r}=n;return r.setup==null?void 0:r.setup()});return()=>{for(const n of t)n?.()}},e.map(t=>{let{sensor:n}=t;return n}))}function h4(e,t){return c.useMemo(()=>e.reduce((n,r)=>{let{eventName:o,handler:s}=r;return n[o]=a=>{s(a,t)},n},{}),[e,t])}function qh(e){return c.useMemo(()=>e?Fb(e):null,[e])}const tl=[];function p4(e,t){t===void 0&&(t=Dn);const[n]=e,r=qh(n?Ie(n):null),[o,s]=c.useState(tl);function a(){s(()=>e.length?e.map(l=>Hh(l)?r:new fi(t(l),l)):tl)}const i=es({callback:a});return ut(()=>{i?.disconnect(),a(),e.forEach(l=>i?.observe(l))},[e]),o}function m4(e){if(!e)return null;if(e.children.length>1)return e;const t=e.children[0];return _r(t)?t:e}function g4(e){let{measure:t}=e;const[n,r]=c.useState(null),o=c.useCallback(u=>{for(const{target:d}of u)if(_r(d)){r(f=>{const p=t(d);return f?{...f,width:p.width,height:p.height}:p});break}},[t]),s=es({callback:o}),a=c.useCallback(u=>{const d=m4(u);s?.disconnect(),d&&s?.observe(d),r(d?t(d):null)},[t,s]),[i,l]=xo(a);return c.useMemo(()=>({nodeRef:i,rect:n,setRef:l}),[n,i,l])}const v4=[{sensor:mi,options:{}},{sensor:hi,options:{}}],y4={current:{}},Xr={draggable:{measure:Wc},droppable:{measure:Wc,strategy:dr.WhileDragging,frequency:fa.Optimized},dragOverlay:{measure:Dn}};class Jn extends Map{get(t){var n;return t!=null&&(n=super.get(t))!=null?n:void 0}toArray(){return Array.from(this.values())}getEnabled(){return this.toArray().filter(t=>{let{disabled:n}=t;return!n})}getNodeFor(t){var n,r;return(n=(r=this.get(t))==null?void 0:r.node.current)!=null?n:void 0}}const x4={activatorEvent:null,active:null,activeNode:null,activeNodeRect:null,collisions:null,containerNodeRect:null,draggableNodes:new Map,droppableRects:new Map,droppableContainers:new Jn,over:null,dragOverlay:{nodeRef:{current:null},rect:null,setRef:bo},scrollableAncestors:[],scrollableAncestorRects:[],measuringConfiguration:Xr,measureDroppableContainers:bo,windowRect:null,measuringScheduled:!1},b4={activatorEvent:null,activators:[],active:null,activeNodeRect:null,ariaDescribedById:{draggable:""},dispatch:bo,draggableNodes:new Map,over:null,measureDroppableContainers:bo},ts=c.createContext(b4),zh=c.createContext(x4);function w4(){return{draggable:{active:null,initialCoordinates:{x:0,y:0},nodes:new Map,translate:{x:0,y:0}},droppable:{containers:new Jn}}}function S4(e,t){switch(t.type){case he.DragStart:return{...e,draggable:{...e.draggable,initialCoordinates:t.initialCoordinates,active:t.active}};case he.DragMove:return e.draggable.active==null?e:{...e,draggable:{...e.draggable,translate:{x:t.coordinates.x-e.draggable.initialCoordinates.x,y:t.coordinates.y-e.draggable.initialCoordinates.y}}};case he.DragEnd:case he.DragCancel:return{...e,draggable:{...e.draggable,active:null,initialCoordinates:{x:0,y:0},translate:{x:0,y:0}}};case he.RegisterDroppable:{const{element:n}=t,{id:r}=n,o=new Jn(e.droppable.containers);return o.set(r,n),{...e,droppable:{...e.droppable,containers:o}}}case he.SetDroppableDisabled:{const{id:n,key:r,disabled:o}=t,s=e.droppable.containers.get(n);if(!s||r!==s.key)return e;const a=new Jn(e.droppable.containers);return a.set(n,{...s,disabled:o}),{...e,droppable:{...e.droppable,containers:a}}}case he.UnregisterDroppable:{const{id:n,key:r}=t,o=e.droppable.containers.get(n);if(!o||r!==o.key)return e;const s=new Jn(e.droppable.containers);return s.delete(n),{...e,droppable:{...e.droppable,containers:s}}}default:return e}}function E4(e){let{disabled:t}=e;const{active:n,activatorEvent:r,draggableNodes:o}=c.useContext(ts),s=ca(r),a=ca(n?.id);return c.useEffect(()=>{if(!t&&!r&&s&&a!=null){if(!di(s)||document.activeElement===s.target)return;const i=o.get(a);if(!i)return;const{activatorNode:l,node:u}=i;if(!l.current&&!u.current)return;requestAnimationFrame(()=>{for(const d of[l.current,u.current]){if(!d)continue;const f=mb(d);if(f){f.focus();break}}})}},[r,t,o,a,s]),null}function R4(e,t){let{transform:n,...r}=t;return e!=null&&e.length?e.reduce((o,s)=>s({transform:o,...r}),n):n}function C4(e){return c.useMemo(()=>({draggable:{...Xr.draggable,...e?.draggable},droppable:{...Xr.droppable,...e?.droppable},dragOverlay:{...Xr.dragOverlay,...e?.dragOverlay}}),[e?.draggable,e?.droppable,e?.dragOverlay])}function P4(e){let{activeNode:t,measure:n,initialRect:r,config:o=!0}=e;const s=c.useRef(!1),{x:a,y:i}=typeof o=="boolean"?{x:o,y:o}:o;ut(()=>{if(!a&&!i||!t){s.current=!1;return}if(s.current||!r)return;const u=t?.node.current;if(!u||u.isConnected===!1)return;const d=n(u),f=jh(d,r);if(a||(f.x=0),i||(f.y=0),s.current=!0,Math.abs(f.x)>0||Math.abs(f.y)>0){const p=Fh(u);p&&p.scrollBy({top:f.y,left:f.x})}},[t,a,i,r,n])}const Wh=c.createContext({...et,scaleX:1,scaleY:1});var Mt;(function(e){e[e.Uninitialized=0]="Uninitialized",e[e.Initializing=1]="Initializing",e[e.Initialized=2]="Initialized"})(Mt||(Mt={}));const _4=c.memo(function(t){var n,r,o,s;let{id:a,accessibility:i,autoScroll:l=!0,children:u,sensors:d=v4,collisionDetection:f=Mb,measuring:p,modifiers:m,...g}=t;const v=c.useReducer(S4,void 0,w4),[y,x]=v,[b,w]=wb(),[S,P]=c.useState(Mt.Uninitialized),O=S===Mt.Initialized,{draggable:{active:R,nodes:E,translate:A},droppable:{containers:L}}=y,T=R!=null?E.get(R):null,F=c.useRef({initial:null,translated:null}),V=c.useMemo(()=>{var be;return R!=null?{id:R,data:(be=T?.data)!=null?be:y4,rect:F}:null},[R,T]),N=c.useRef(null),[D,_]=c.useState(null),[j,I]=c.useState(null),M=cr(g,Object.values(g)),H=Ar("DndDescribedBy",a),U=c.useMemo(()=>L.getEnabled(),[L]),Z=C4(p),{droppableRects:K,measureDroppableContainers:q,measuringScheduled:Q}=s4(U,{dragging:O,dependencies:[A.x,A.y],config:Z.droppable}),ne=r4(E,R),k=c.useMemo(()=>j?la(j):null,[j]),G=o0(),ee=a4(ne,Z.draggable.measure);P4({activeNode:R!=null?E.get(R):null,config:G.layoutShiftCompensation,initialRect:ee,measure:Z.draggable.measure});const $=Xc(ne,Z.draggable.measure,ee),Y=Xc(ne?ne.parentElement:null),J=c.useRef({activatorEvent:null,active:null,activeNode:ne,collisionRect:null,collisions:null,droppableRects:K,draggableNodes:E,draggingNode:null,draggingNodeRect:null,droppableContainers:L,over:null,scrollableAncestors:[],scrollAdjustedTranslate:null}),se=L.getNodeFor((n=J.current.over)==null?void 0:n.id),fe=g4({measure:Z.dragOverlay.measure}),Ve=(r=fe.nodeRef.current)!=null?r:ne,Le=O?(o=fe.rect)!=null?o:$:null,ft=!!(fe.nodeRef.current&&fe.rect),ht=l4(ft?null:$),Vt=qh(Ve?Ie(Ve):null),xe=u4(O?se??ne:null),fn=p4(xe),hn=R4(m,{transform:{x:A.x-ht.x,y:A.y-ht.y,scaleX:1,scaleY:1},activatorEvent:j,active:V,activeNodeRect:$,containerNodeRect:Y,draggingNodeRect:Le,over:J.current.over,overlayNodeRect:fe.rect,scrollableAncestors:xe,scrollableAncestorRects:fn,windowRect:Vt}),jn=k?Sn(k,A):null,Ir=d4(xe),Lr=el(Ir),ae=el(Ir,[$]),ie=Sn(hn,Lr),me=Le?Lb(Le,hn):null,Et=V&&me?f({active:V,collisionRect:me,droppableRects:K,droppableContainers:U,pointerCoordinates:jn}):null,vi=Dh(Et,"id"),[Rt,yi]=c.useState(null),Jh=ft?hn:Sn(hn,ae),e0=Ob(Jh,(s=Rt?.rect)!=null?s:null,$),ns=c.useRef(null),xi=c.useCallback((be,Ne)=>{let{sensor:De,options:Ct}=Ne;if(N.current==null)return;const Ue=E.get(N.current);if(!Ue)return;const je=be.nativeEvent,st=new De({active:N.current,activeNode:Ue,event:je,options:Ct,context:J,onAbort(ye){if(!E.get(ye))return;const{onDragAbort:at}=M.current,pt={id:ye};at?.(pt),b({type:"onDragAbort",event:pt})},onPending(ye,Pt,at,pt){if(!E.get(ye))return;const{onDragPending:kn}=M.current,_t={id:ye,constraint:Pt,initialCoordinates:at,offset:pt};kn?.(_t),b({type:"onDragPending",event:_t})},onStart(ye){const Pt=N.current;if(Pt==null)return;const at=E.get(Pt);if(!at)return;const{onDragStart:pt}=M.current,Fn={activatorEvent:je,active:{id:Pt,data:at.data,rect:F}};yt.unstable_batchedUpdates(()=>{pt?.(Fn),P(Mt.Initializing),x({type:he.DragStart,initialCoordinates:ye,active:Pt}),b({type:"onDragStart",event:Fn}),_(ns.current),I(je)})},onMove(ye){x({type:he.DragMove,coordinates:ye})},onEnd:pn(he.DragEnd),onCancel:pn(he.DragCancel)});ns.current=st;function pn(ye){return async function(){const{active:at,collisions:pt,over:Fn,scrollAdjustedTranslate:kn}=J.current;let _t=null;if(at&&kn){const{cancelDrop:$n}=M.current;_t={activatorEvent:je,active:at,collisions:pt,delta:kn,over:Fn},ye===he.DragEnd&&typeof $n=="function"&&await Promise.resolve($n(_t))&&(ye=he.DragCancel)}N.current=null,yt.unstable_batchedUpdates(()=>{x({type:ye}),P(Mt.Uninitialized),yi(null),_(null),I(null),ns.current=null;const $n=ye===he.DragEnd?"onDragEnd":"onDragCancel";if(_t){const rs=M.current[$n];rs?.(_t),b({type:$n,event:_t})}})}}},[E]),t0=c.useCallback((be,Ne)=>(De,Ct)=>{const Ue=De.nativeEvent,je=E.get(Ct);if(N.current!==null||!je||Ue.dndKit||Ue.defaultPrevented)return;const st={active:je};be(De,Ne.options,st)===!0&&(Ue.dndKit={capturedBy:Ne.sensor},N.current=Ct,xi(De,Ne))},[E,xi]),bi=o4(d,t0);f4(d),ut(()=>{$&&S===Mt.Initializing&&P(Mt.Initialized)},[$,S]),c.useEffect(()=>{const{onDragMove:be}=M.current,{active:Ne,activatorEvent:De,collisions:Ct,over:Ue}=J.current;if(!Ne||!De)return;const je={active:Ne,activatorEvent:De,collisions:Ct,delta:{x:ie.x,y:ie.y},over:Ue};yt.unstable_batchedUpdates(()=>{be?.(je),b({type:"onDragMove",event:je})})},[ie.x,ie.y]),c.useEffect(()=>{const{active:be,activatorEvent:Ne,collisions:De,droppableContainers:Ct,scrollAdjustedTranslate:Ue}=J.current;if(!be||N.current==null||!Ne||!Ue)return;const{onDragOver:je}=M.current,st=Ct.get(vi),pn=st&&st.rect.current?{id:st.id,rect:st.rect.current,data:st.data,disabled:st.disabled}:null,ye={active:be,activatorEvent:Ne,collisions:De,delta:{x:Ue.x,y:Ue.y},over:pn};yt.unstable_batchedUpdates(()=>{yi(pn),je?.(ye),b({type:"onDragOver",event:ye})})},[vi]),ut(()=>{J.current={activatorEvent:j,active:V,activeNode:ne,collisionRect:me,collisions:Et,droppableRects:K,draggableNodes:E,draggingNode:Ve,draggingNodeRect:Le,droppableContainers:L,over:Rt,scrollableAncestors:xe,scrollAdjustedTranslate:ie},F.current={initial:Le,translated:me}},[V,ne,Et,me,E,Ve,Le,K,L,Rt,xe,ie]),e4({...G,delta:A,draggingRect:me,pointerCoordinates:jn,scrollableAncestors:xe,scrollableAncestorRects:fn});const n0=c.useMemo(()=>({active:V,activeNode:ne,activeNodeRect:$,activatorEvent:j,collisions:Et,containerNodeRect:Y,dragOverlay:fe,draggableNodes:E,droppableContainers:L,droppableRects:K,over:Rt,measureDroppableContainers:q,scrollableAncestors:xe,scrollableAncestorRects:fn,measuringConfiguration:Z,measuringScheduled:Q,windowRect:Vt}),[V,ne,$,j,Et,Y,fe,E,L,K,Rt,q,xe,fn,Z,Q,Vt]),r0=c.useMemo(()=>({activatorEvent:j,activators:bi,active:V,activeNodeRect:$,ariaDescribedById:{draggable:H},dispatch:x,draggableNodes:E,over:Rt,measureDroppableContainers:q}),[j,bi,V,$,x,H,E,Rt,q]);return W.createElement(Ih.Provider,{value:w},W.createElement(ts.Provider,{value:r0},W.createElement(zh.Provider,{value:n0},W.createElement(Wh.Provider,{value:e0},u)),W.createElement(E4,{disabled:i?.restoreFocus===!1})),W.createElement(Rb,{...i,hiddenTextDescribedById:H}));function o0(){const be=D?.autoScrollEnabled===!1,Ne=typeof l=="object"?l.enabled===!1:l===!1,De=O&&!be&&!Ne;return typeof l=="object"?{...l,enabled:De}:{enabled:De}}}),T4=c.createContext(null),nl="button",A4="Draggable";function M4(e){let{id:t,data:n,disabled:r=!1,attributes:o}=e;const s=Ar(A4),{activators:a,activatorEvent:i,active:l,activeNodeRect:u,ariaDescribedById:d,draggableNodes:f,over:p}=c.useContext(ts),{role:m=nl,roleDescription:g="draggable",tabIndex:v=0}=o??{},y=l?.id===t,x=c.useContext(y?Wh:T4),[b,w]=xo(),[S,P]=xo(),O=h4(a,t),R=cr(n);ut(()=>(f.set(t,{id:t,key:s,node:b,activatorNode:S,data:R}),()=>{const A=f.get(t);A&&A.key===s&&f.delete(t)}),[f,t]);const E=c.useMemo(()=>({role:m,tabIndex:v,"aria-disabled":r,"aria-pressed":y&&m===nl?!0:void 0,"aria-roledescription":g,"aria-describedby":d.draggable}),[r,m,v,y,g,d.draggable]);return{active:l,activatorEvent:i,activeNodeRect:u,attributes:E,isDragging:y,listeners:r?void 0:O,node:b,over:p,setNodeRef:w,setActivatorNodeRef:P,transform:x}}function O4(){return c.useContext(zh)}const I4="Droppable",L4={timeout:25};function N4(e){let{data:t,disabled:n=!1,id:r,resizeObserverConfig:o}=e;const s=Ar(I4),{active:a,dispatch:i,over:l,measureDroppableContainers:u}=c.useContext(ts),d=c.useRef({disabled:n}),f=c.useRef(!1),p=c.useRef(null),m=c.useRef(null),{disabled:g,updateMeasurementsFor:v,timeout:y}={...L4,...o},x=cr(v??r),b=c.useCallback(()=>{if(!f.current){f.current=!0;return}m.current!=null&&clearTimeout(m.current),m.current=setTimeout(()=>{u(Array.isArray(x.current)?x.current:[x.current]),m.current=null},y)},[y]),w=es({callback:b,disabled:g||!a}),S=c.useCallback((E,A)=>{w&&(A&&(w.unobserve(A),f.current=!1),E&&w.observe(E))},[w]),[P,O]=xo(S),R=cr(t);return c.useEffect(()=>{!w||!P.current||(w.disconnect(),f.current=!1,w.observe(P.current))},[P,w]),c.useEffect(()=>(i({type:he.RegisterDroppable,element:{id:r,key:s,disabled:n,node:P,rect:p,data:R}}),()=>i({type:he.UnregisterDroppable,key:s,id:r})),[r]),c.useEffect(()=>{n!==d.current.disabled&&(i({type:he.SetDroppableDisabled,id:r,key:s,disabled:n}),d.current.disabled=n)},[r,s,n,i]),{active:a,rect:p,isOver:l?.id===r,node:P,over:l,setNodeRef:O}}const D4=e=>{let{transform:t}=e;return{...t,x:0}};function gi(e,t,n){const r=e.slice();return r.splice(n<0?r.length+n:n,0,r.splice(t,1)[0]),r}function j4(e,t){return e.reduce((n,r,o)=>{const s=t.get(r);return s&&(n[o]=s),n},Array(e.length))}function Vr(e){return e!==null&&e>=0}function F4(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}function k4(e){return typeof e=="boolean"?{draggable:e,droppable:e}:e}const Gh=e=>{let{rects:t,activeIndex:n,overIndex:r,index:o}=e;const s=gi(t,r,n),a=t[o],i=s[o];return!i||!a?null:{x:i.left-a.left,y:i.top-a.top,scaleX:i.width/a.width,scaleY:i.height/a.height}},Ur={scaleX:1,scaleY:1},$4=e=>{var t;let{activeIndex:n,activeNodeRect:r,index:o,rects:s,overIndex:a}=e;const i=(t=s[n])!=null?t:r;if(!i)return null;if(o===n){const u=s[a];return u?{x:0,y:n<a?u.top+u.height-(i.top+i.height):u.top-i.top,...Ur}:null}const l=H4(s,o,n);return o>n&&o<=a?{x:0,y:-i.height-l,...Ur}:o<n&&o>=a?{x:0,y:i.height+l,...Ur}:{x:0,y:0,...Ur}};function H4(e,t,n){const r=e[t],o=e[t-1],s=e[t+1];return r?n<t?o?r.top-(o.top+o.height):s?s.top-(r.top+r.height):0:s?s.top-(r.top+r.height):o?r.top-(o.top+o.height):0:0}const Kh="Sortable",Qh=W.createContext({activeIndex:-1,containerId:Kh,disableTransforms:!1,items:[],overIndex:-1,useDragOverlay:!1,sortedRects:[],strategy:Gh,disabled:{draggable:!1,droppable:!1}});function B4(e){let{children:t,id:n,items:r,strategy:o=Gh,disabled:s=!1}=e;const{active:a,dragOverlay:i,droppableRects:l,over:u,measureDroppableContainers:d}=O4(),f=Ar(Kh,n),p=i.rect!==null,m=c.useMemo(()=>r.map(O=>typeof O=="object"&&"id"in O?O.id:O),[r]),g=a!=null,v=a?m.indexOf(a.id):-1,y=u?m.indexOf(u.id):-1,x=c.useRef(m),b=!F4(m,x.current),w=y!==-1&&v===-1||b,S=k4(s);ut(()=>{b&&g&&d(m)},[b,m,g,d]),c.useEffect(()=>{x.current=m},[m]);const P=c.useMemo(()=>({activeIndex:v,containerId:f,disabled:S,disableTransforms:w,items:m,overIndex:y,useDragOverlay:p,sortedRects:j4(m,l),strategy:o}),[v,f,S.draggable,S.droppable,w,m,y,l,p,o]);return W.createElement(Qh.Provider,{value:P},t)}const V4=e=>{let{id:t,items:n,activeIndex:r,overIndex:o}=e;return gi(n,r,o).indexOf(t)},U4=e=>{let{containerId:t,isSorting:n,wasDragging:r,index:o,items:s,newIndex:a,previousItems:i,previousContainerId:l,transition:u}=e;return!u||!r||i!==s&&o===a?!1:n?!0:a!==o&&t===l},Z4={duration:200,easing:"ease"},Yh="transform",q4=ur.Transition.toString({property:Yh,duration:0,easing:"linear"}),z4={roleDescription:"sortable"};function W4(e){let{disabled:t,index:n,node:r,rect:o}=e;const[s,a]=c.useState(null),i=c.useRef(n);return ut(()=>{if(!t&&n!==i.current&&r.current){const l=o.current;if(l){const u=Dn(r.current,{ignoreTransform:!0}),d={x:l.left-u.left,y:l.top-u.top,scaleX:l.width/u.width,scaleY:l.height/u.height};(d.x||d.y)&&a(d)}}n!==i.current&&(i.current=n)},[t,n,r,o]),c.useEffect(()=>{s&&a(null)},[s]),s}function G4(e){let{animateLayoutChanges:t=U4,attributes:n,disabled:r,data:o,getNewIndex:s=V4,id:a,strategy:i,resizeObserverConfig:l,transition:u=Z4}=e;const{items:d,containerId:f,activeIndex:p,disabled:m,disableTransforms:g,sortedRects:v,overIndex:y,useDragOverlay:x,strategy:b}=c.useContext(Qh),w=K4(r,m),S=d.indexOf(a),P=c.useMemo(()=>({sortable:{containerId:f,index:S,items:d},...o}),[f,o,S,d]),O=c.useMemo(()=>d.slice(d.indexOf(a)),[d,a]),{rect:R,node:E,isOver:A,setNodeRef:L}=N4({id:a,data:P,disabled:w.droppable,resizeObserverConfig:{updateMeasurementsFor:O,...l}}),{active:T,activatorEvent:F,activeNodeRect:V,attributes:N,setNodeRef:D,listeners:_,isDragging:j,over:I,setActivatorNodeRef:M,transform:H}=M4({id:a,data:P,attributes:{...z4,...n},disabled:w.draggable}),U=db(L,D),Z=!!T,K=Z&&!g&&Vr(p)&&Vr(y),q=!x&&j,Q=q&&K?H:null,k=K?Q??(i??b)({rects:v,activeNodeRect:V,activeIndex:p,overIndex:y,index:S}):null,G=Vr(p)&&Vr(y)?s({id:a,items:d,activeIndex:p,overIndex:y}):S,ee=T?.id,$=c.useRef({activeId:ee,items:d,newIndex:G,containerId:f}),Y=d!==$.current.items,J=t({active:T,containerId:f,isDragging:j,isSorting:Z,id:a,index:S,items:d,newIndex:$.current.newIndex,previousItems:$.current.items,previousContainerId:$.current.containerId,transition:u,wasDragging:$.current.activeId!=null}),se=W4({disabled:!J,index:S,node:E,rect:R});return c.useEffect(()=>{Z&&$.current.newIndex!==G&&($.current.newIndex=G),f!==$.current.containerId&&($.current.containerId=f),d!==$.current.items&&($.current.items=d)},[Z,G,f,d]),c.useEffect(()=>{if(ee===$.current.activeId)return;if(ee!=null&&$.current.activeId==null){$.current.activeId=ee;return}const Ve=setTimeout(()=>{$.current.activeId=ee},50);return()=>clearTimeout(Ve)},[ee]),{active:T,activeIndex:p,attributes:N,data:P,rect:R,index:S,newIndex:G,items:d,isOver:A,isSorting:Z,isDragging:j,listeners:_,node:E,overIndex:y,over:I,setNodeRef:U,setActivatorNodeRef:M,setDroppableNodeRef:L,setDraggableNodeRef:D,transform:se??k,transition:fe()};function fe(){if(se||Y&&$.current.newIndex===S)return q4;if(!(q&&!di(F)||!u)&&(Z||J))return ur.Transition.toString({...u,property:Yh})}}function K4(e,t){var n,r;return typeof e=="boolean"?{draggable:e,droppable:!1}:{draggable:(n=e?.draggable)!=null?n:t.draggable,droppable:(r=e?.droppable)!=null?r:t.droppable}}function So(e){if(!e)return!1;const t=e.data.current;return!!(t&&"sortable"in t&&typeof t.sortable=="object"&&"containerId"in t.sortable&&"items"in t.sortable&&"index"in t.sortable)}const Q4=[re.Down,re.Right,re.Up,re.Left],Y4=(e,t)=>{let{context:{active:n,collisionRect:r,droppableRects:o,droppableContainers:s,over:a,scrollableAncestors:i}}=t;if(Q4.includes(e.code)){if(e.preventDefault(),!n||!r)return;const l=[];s.getEnabled().forEach(f=>{if(!f||f!=null&&f.disabled)return;const p=o.get(f.id);if(p)switch(e.code){case re.Down:r.top<p.top&&l.push(f);break;case re.Up:r.top>p.top&&l.push(f);break;case re.Left:r.left>p.left&&l.push(f);break;case re.Right:r.left<p.left&&l.push(f);break}});const u=Tb({collisionRect:r,droppableRects:o,droppableContainers:l});let d=Dh(u,"id");if(d===a?.id&&u.length>1&&(d=u[1].id),d!=null){const f=s.get(n.id),p=s.get(d),m=p?o.get(p.id):null,g=p?.node.current;if(g&&m&&f&&p){const y=Jo(g).some((O,R)=>i[R]!==O),x=Xh(f,p),b=X4(f,p),w=y||!x?{x:0,y:0}:{x:b?r.width-m.width:0,y:b?r.height-m.height:0},S={x:m.left,y:m.top};return w.x&&w.y?S:lr(S,w)}}}};function Xh(e,t){return!So(e)||!So(t)?!1:e.data.current.sortable.containerId===t.data.current.sortable.containerId}function X4(e,t){return!So(e)||!So(t)||!Xh(e,t)?!1:e.data.current.sortable.index<t.data.current.sortable.index}const J4=e=>{const{data:t}=Ul({queryKey:Xe.notes.pinned(),async queryFn(){const n=await Re(`
|
|
135
|
-
query {
|
|
136
|
-
pinnedNotes {
|
|
137
|
-
id
|
|
138
|
-
title
|
|
139
|
-
order
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
`);if(n.type==="error")throw n;return n.pinnedNotes}});return h.jsx(h.Fragment,{children:e.render(t)})},ew=e=>{const{data:t}=Ul({queryKey:Xe.notes.list(e.searchParams),async queryFn(){const n=await Th(e.searchParams);if(n.type==="error")throw n;return n.allNotes}});return e.render(t)};function tw({query:e="",limit:t=50,offset:n=0}={}){return Re(`query FetchTags(
|
|
143
|
-
$searchFilter: SearchFilterInput,
|
|
144
|
-
$pagination: PaginationInput
|
|
145
|
-
) {
|
|
146
|
-
allTags(
|
|
147
|
-
searchFilter: $searchFilter,
|
|
148
|
-
pagination: $pagination
|
|
149
|
-
) {
|
|
150
|
-
totalCount
|
|
151
|
-
tags {
|
|
152
|
-
id
|
|
153
|
-
name
|
|
154
|
-
referenceCount
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}`,{searchFilter:{query:e},pagination:{limit:t,offset:n}})}function PS({name:e=""}){return Re(`mutation CreateTag($name: String!) {
|
|
158
|
-
createTag(name: $name) {
|
|
159
|
-
id
|
|
160
|
-
name
|
|
161
|
-
}
|
|
162
|
-
}`,{name:e})}function nw({id:e,tooltip:t,children:n}){const{attributes:r,listeners:o,setNodeRef:s,setActivatorNodeRef:a,transform:i,transition:l,isDragging:u}=G4({id:e}),d={transform:ur.Transform.toString(i),transition:l,opacity:u?.5:1},f=h.jsx("div",{className:"flex-1 min-w-0 font-bold text-sm truncate",children:n});return h.jsxs("div",{ref:s,style:d,...r,className:"flex items-center gap-2 p-2 rounded-md hover:bg-hover-subtle transition-colors",children:[h.jsx("button",{ref:a,...o,className:"cursor-grab active:cursor-grabbing touch-none flex items-center justify-center",style:{cursor:u?"grabbing":"grab"},children:h.jsx(eu,{className:"size-4 text-fg-placeholder hover:text-fg-secondary"})}),t?h.jsx(n8,{content:t,side:"right",children:f}):f]})}function rw({notes:e,pathname:t,pinnedItems:n,setPinnedItems:r,handleDragEnd:o,sensors:s}){c.useEffect(()=>{r(e)},[e,r]);const a=n.length>0?n:e;return a.length===0?null:h.jsx(_4,{sensors:s,collisionDetection:_b,onDragEnd:o,modifiers:[D4],children:h.jsx(B4,{items:a.map(i=>i.id),strategy:$4,children:a.map(i=>h.jsx(nw,{id:i.id,tooltip:i.title||"Untitled",children:h.jsx(bt,{className:`transition-colors ${t===`/${i.id}`?"text-accent-primary":"text-fg-secondary hover:text-fg-default"}`,to:wr,params:{id:i.id},children:i.title||"Untitled"})},i.id))})})}const ow=()=>{const e=Io({select:i=>i.pathname}),t=hr(),[n,r]=c.useState([]),o=tm({mutationFn:rb,onSuccess:()=>{t.invalidateQueries({queryKey:Xe.notes.pinned(),exact:!0})}}),s=Cb(Zc(mi,{activationConstraint:{distance:8}}),Zc(hi,{coordinateGetter:Y4})),a=i=>{const{active:l,over:u}=i;u&&l.id!==u.id&&r(d=>{const f=d.findIndex(g=>g.id===l.id),p=d.findIndex(g=>g.id===u.id),m=gi(d,f,p);return o.mutate(m.map((g,v)=>({id:g.id,order:v}))),m})};return h.jsx("div",{className:"flex flex-col gap-2",children:h.jsx(sh,{fallback:h.jsxs(h.Fragment,{children:[h.jsx(xt,{height:"24px",opacity:.5}),h.jsx(xt,{height:"24px",opacity:.5})]}),errorTitle:"Failed to load pinned notes",errorDescription:"Retry loading the pinned note list.",renderError:({error:i,retry:l})=>h.jsx(ni,{title:"Failed to load pinned notes",description:"Retry loading the pinned note list.",error:i,onRetry:l,showBackAction:!1,showHomeAction:!1}),children:h.jsx(J4,{render:i=>h.jsx(rw,{notes:i,pathname:e,pinnedItems:n,setPinnedItems:r,handleDragEnd:a,sensors:s})})})})},sw=()=>{const{onCreate:e}=Ah();return h.jsxs("div",{className:"p-3 flex flex-col gap-2",children:[h.jsxs(Lt,{variant:"primary",size:"lg",className:"w-full shadow-sketchy",onClick:()=>e(),children:[h.jsx(Fm,{className:"w-5 h-5",weight:"bold"})," Capture"]}),h.jsxs("div",{className:"font-bold flex items-center gap-2 p-2 pt-6 mt-5 border-t-2 border-dashed border-border-subtle",children:[h.jsx(km,{className:"w-5 h-5",weight:"fill"}),"Pinned"]}),h.jsx(ow,{})]})},aw=e=>{const[t,n]=c.useState(!1),r=c.useRef(null),o=c.useRef(!0),s=c.useRef(0),a=c.useCallback(()=>{r.current!==null&&(clearTimeout(r.current),r.current=null)},[]);c.useEffect(()=>(o.current=!0,()=>{o.current=!1,a()}),[a]);const i=c.useCallback(l=>{s.current+=1;const u=s.current;a(),o.current&&n(!0),r.current=setTimeout(()=>{r.current=null,Promise.resolve().then(l).catch(()=>{}).finally(()=>{o.current&&s.current===u&&n(!1)})},e)},[a,e]);return[t,i]},iw=()=>{const e=ln(),[t,n]=c.useState(""),[r,o]=c.useState([]),[s,a]=c.useState([]),[,i]=aw(500);c.useEffect(()=>{if(t.length<=0){i(()=>{}),o([]),a([]);return}i(()=>{Th({query:t,limit:5}).then(f=>{f.type==="success"&&o(f.allNotes.notes)}),tw({query:t,limit:5}).then(f=>{f.type==="success"&&a(f.allTags.tags)})})},[t,i]);const l=f=>{f?.preventDefault(),e({to:th,search:{query:t,page:1}})},u=()=>{n("")},d=r.length>0||s.length>0;return h.jsx("div",{className:"p-3",children:h.jsxs("form",{className:"flex flex-col gap-3",onSubmit:l,children:[h.jsx("div",{className:"flex gap-3",children:h.jsxs("div",{style:{gridTemplateColumns:"40px 1fr 32px"},className:"grid flex-1 bg-surface border-2 border-border rounded-[12px_4px_13px_3px/4px_10px_4px_12px] shadow-sketchy",children:[h.jsx("button",{type:"submit",className:"flex items-center justify-center hover:text-accent-primary transition-colors",children:h.jsx(jm,{className:"h-5 w-5",weight:"bold"})}),h.jsx("input",{type:"text",placeholder:"Search...",value:t,onChange:f=>n(f.target.value),className:"h-10 w-full bg-transparent text-fg-default py-4 outline-none font-bold"}),t&&h.jsx("button",{type:"button",className:"flex items-center justify-center hover:text-accent-primary transition-colors",onClick:u,children:h.jsx(cu,{className:"h-4 w-4",weight:"bold"})})]})}),d&&h.jsxs("div",{className:"p-3 bg-surface border-2 border-border rounded-[16px_5px_17px_4px/5px_13px_5px_15px] shadow-sketchy",children:[r.length>0&&h.jsx("ul",{className:"flex flex-col",children:r.map(({id:f,title:p})=>h.jsx("li",{className:"flex py-2 items-center border-b border-dashed border-border-subtle last:border-b-0",children:h.jsx(bt,{to:wr,params:{id:f},className:"text-sm font-bold hover:text-accent-primary transition-colors",children:p||"Untitled"})},f))}),s.length>0&&h.jsx("ul",{className:"flex flex-wrap gap-2 p-2",children:s.map(({id:f,name:p})=>h.jsx("li",{className:"flex items-center gap-2",children:h.jsx(bt,{to:ti,params:{id:f},search:{page:1},children:h.jsx($u,{name:p})})},f))}),h.jsx("div",{className:"p-2 border-t border-dashed border-border-subtle",children:h.jsxs("button",{type:"submit",className:"text-sm font-bold text-pastel-blue-200 hover:text-pastel-teal-200 transition-colors",children:["view detailed results ",">"]})})]})]})})},cw=[{name:"Notes",path:zo,icon:Dm},{name:"Graph",path:eh,icon:Bm},{name:"Calendar",path:Xf,icon:Mm},{name:"Reminders",path:Jf,icon:Am},{name:"Tags",path:nh,icon:Hm},{name:"Setting",path:rh,icon:Nm}],lw=()=>{const e=Io({select:t=>t.pathname});return h.jsx("nav",{"aria-label":"Primary navigation",className:"flex gap-2 p-3",children:cw.map(t=>{const n=e===t.path;return h.jsx(bt,{to:t.path,children:h.jsxs("div",{className:`flex items-center gap-2 text-sm font-bold px-3 py-2 border-2 transition-all rounded-[10px_3px_11px_3px/3px_8px_3px_10px] ${n?"bg-accent-primary text-fg-on-accent border-border-secondary shadow-sketchy":"border-transparent hover:border-border-secondary hover:bg-hover"}`,children:[h.jsx(t.icon,{className:"size-5",weight:n?"fill":"regular"}),t.name]})},t.path)})})},uw=({children:e})=>h.jsx(d6,{sidebar:h.jsxs(h.Fragment,{children:[h.jsx(Qx,{}),h.jsx(iw,{}),h.jsx(sw,{})]}),topNavigation:h.jsx(lw,{}),children:e}),dw=["updatedAt","createdAt"],fw=["asc","desc"],hw=["create","update"],Mr=e=>Array.isArray(e)?e[0]:e,Tn=(e,t,{min:n=1,max:r=Number.MAX_SAFE_INTEGER}={})=>{const o=Mr(e),s=typeof o=="number"?o:typeof o=="string"?Number(o):Number.NaN;return!Number.isInteger(s)||s<n||s>r?t:s},pw=e=>{const t=Mr(e);if(t==null||t==="")return;const n=Tn(t,Number.NaN);return Number.isNaN(n)?void 0:n},mw=(e,t=!1)=>{const n=Mr(e);return n===!0||n==="true"?!0:n===!1||n==="false"?!1:t},gw=(e,t="")=>{const n=Mr(e);return typeof n=="string"?n:t},ha=(e,t,n)=>{const r=Mr(e);return typeof r!="string"?n:t.includes(r)?r:n},vw=e=>({page:Tn(e.page,1),limit:pw(e.limit),sortBy:ha(e.sortBy,dw,"updatedAt"),sortOrder:ha(e.sortOrder,fw,"desc"),pinnedFirst:mw(e.pinnedFirst,!1)}),Or=e=>({page:Tn(e.page,1)}),yw=e=>({page:Tn(e.page,1),query:gw(e.query,"")}),xw=e=>({year:Tn(e.year,we().year(),{min:1970,max:9999}),month:Tn(e.month,we().month()+1,{min:1,max:12}),type:ha(e.type,hw,"create")}),bw=e=>{let t=0;for(let n=0;n<e.length;n++)t+=e.charCodeAt(n);return t},_S={high:"bg-accent-danger",medium:"bg-pastel-yellow-200 dark:bg-elevated",low:"bg-accent-success"},TS={high:"bg-accent-soft-danger",medium:"bg-pastel-yellow-200/50 dark:bg-elevated/50",low:"bg-accent-soft-success"},AS="bg-red-200 dark:bg-emphasis",rl=["bg-pastel-yellow-200 dark:bg-muted","bg-pastel-green-200 dark:bg-muted","bg-pastel-pink-200 dark:bg-muted","bg-pastel-orange-200 dark:bg-muted","bg-pastel-blue-200 dark:bg-muted","bg-pastel-purple-200 dark:bg-muted","bg-pastel-teal-200 dark:bg-muted","bg-pastel-lavender-200 dark:bg-muted"],ww=e=>rl[bw(e)%rl.length];function Sw(e){const t=new Date,n=new Date(e),r=Math.floor((t.getTime()-n.getTime())/1e3);let o=Math.floor(r/31536e3);return o>=1?o+" years ago":(o=Math.floor(r/2592e3),o>=1?o+" months ago":(o=Math.floor(r/86400),o>=1?o+" days ago":(o=Math.floor(r/3600),o>=1?o+" hours ago":(o=Math.floor(r/60),o>=1?o+" minutes ago":Math.floor(r)+" seconds ago"))))}function Ew({id:e,title:t,tags:n,pinned:r,createdAt:o,updatedAt:s,onPinned:a,onDelete:i}){const l=new Date(Number(o)),u=Sw(Number(s));return h.jsxs("div",{className:`${ww(e)} p-4 relative sketchy shadow-sketchy`,children:[r&&h.jsx("div",{className:"sketch-tape"}),h.jsx("div",{className:"rounded-xl flex justify-between items-center",children:h.jsxs("div",{className:"flex flex-col w-full gap-4",children:[h.jsxs("div",{className:"flex justify-between",children:[h.jsxs("div",{className:"flex flex-col gap-2",children:[h.jsx("div",{className:"text-fg-default text-xs",children:u}),h.jsxs("div",{className:"text-fg-muted text-xs",children:["(",l.toDateString(),")"]})]}),h.jsx("div",{className:"flex items-center gap-2",children:h.jsx(Iv,{button:h.jsx(Lm,{className:"w-5 h-5"}),items:[{name:r?"Unpin":"Pin",onClick:()=>a?.()},{name:"Delete",onClick:()=>i?.()}]})})]}),h.jsx(bt,{className:"font-bold",to:wr,params:{id:e},children:t||"Untitled"}),n.length>0&&h.jsx("div",{className:"flex flex-wrap gap-2",children:n.map(d=>h.jsx(bt,{to:ti,params:{id:d.id},search:{page:1},children:h.jsx($u,{name:d.name})},d.id))})]})},e)]},e)}function Rw(e,t,n,r){const o=Math.max(Math.floor((Math.max(e,0)+n)/(t+n)),1);return Math.max(o*r,r)}function Cw({minItemWidth:e,gap:t,rows:n,fallback:r,override:o}){const[s,a]=c.useState(null),[i,l]=c.useState(r??n),u=c.useCallback(p=>{a(p)},[]),d=o==null,f=d?i:o;return c.useLayoutEffect(()=>{if(!d)return;if(!s){l(v=>v===(r??n)?v:r??n);return}let p=null;const m=()=>{const v=Rw(s.offsetWidth,e,t,n);l(y=>y===v?y:v)},g=()=>{p===null&&(p=window.requestAnimationFrame(()=>{p=null,m()}))};if(g(),typeof ResizeObserver<"u"){const v=new ResizeObserver(()=>{g()});return v.observe(s),()=>{v.disconnect(),p!==null&&window.cancelAnimationFrame(p)}}return window.addEventListener("resize",g),window.addEventListener("orientationchange",g),()=>{window.removeEventListener("resize",g),window.removeEventListener("orientationchange",g),p!==null&&window.cancelAnimationFrame(p)}},[s,r,t,d,e,n]),{containerRef:u,limit:f,isAutoLimit:d}}const Pw=240,_w=24,Tw=6,ol=o1(zo);function Aw(){const e=ol.useNavigate(),{limit:t,page:n,sortBy:r,sortOrder:o,pinnedFirst:s}=ol.useSearch(),{containerRef:a,limit:i,isAutoLimit:l}=Cw({minItemWidth:Pw,gap:_w,rows:Tw,override:t??null}),{onDelete:u,onPinned:d}=Ah(),f=p=>{e({search:m=>({...m,...p})})};return h.jsx(qo,{title:"",variant:"none",children:h.jsxs("div",{ref:a,children:[h.jsx(V8,{itemsPerPage:i,onItemsPerPageChange:p=>f({limit:p,page:1}),isAutoLimit:l,sortBy:r,onSortByChange:p=>f({sortBy:p,page:1}),sortOrder:o,onSortOrderChange:p=>f({sortOrder:p,page:1}),pinnedFirst:s,onPinnedFirstChange:p=>f({pinnedFirst:p,page:1})}),h.jsx(sh,{fallback:h.jsxs("div",{className:"grid gap-6 mt-3",style:{gridTemplateColumns:"repeat(auto-fill, minmax(240px, 1fr))"},children:[h.jsx(xt,{height:"112px"}),h.jsx(xt,{height:"112px"}),h.jsx(xt,{height:"112px"})]}),errorTitle:"Failed to load notes",errorDescription:"Retry loading the current note list.",resetKeys:[n,i,r,o,s],children:h.jsx(ew,{searchParams:{offset:(n-1)*i,limit:i,sortBy:r,sortOrder:o,pinnedFirst:s},render:({notes:p,totalCount:m})=>h.jsx(pc,{fallback:h.jsx(zf,{icon:"🧠",title:"Ocean is calm",description:"Capture anything and make waves in the ocean!"}),children:p.length>0&&h.jsxs(h.Fragment,{children:[h.jsx("div",{className:"grid gap-6 mt-3",style:{gridTemplateColumns:"repeat(auto-fill, minmax(240px, 1fr))"},children:p.map(g=>h.jsx(Ew,{...g,onPinned:()=>d(g.id,g.pinned),onDelete:()=>u(g.id)},g.id))}),h.jsx(pc,{fallback:null,children:m&&i<m&&h.jsx(Wf,{page:n,last:Math.ceil(m/i),onChange:g=>{f({page:g})}})})]})})})})]})})}const Be=c1({component:()=>h.jsx(uw,{children:h.jsx(Tl,{})}),errorComponent:Q8,notFoundComponent:Y8}),Mw=He({getParentRoute:()=>Be,path:zo,component:Aw,validateSearch:vw}),Ow=He({getParentRoute:()=>Be,path:Xf,component:nt(()=>tt(()=>import("./Calendar-ST5q_8KT.js"),__vite__mapDeps([0,1,2,3,4,5]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading calendar",description:"Preparing note and reminder snapshots."}),validateSearch:xw}),Iw=He({getParentRoute:()=>Be,path:Jf,component:nt(()=>tt(()=>import("./Reminders-DjWRombU.js"),__vite__mapDeps([6,1,2,3,7,4,8]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading reminders",description:"Collecting upcoming reminder cards."}),validateSearch:Or}),Lw=He({getParentRoute:()=>Be,path:eh,component:nt(()=>tt(()=>import("./Graph-CzJjt6rP.js"),__vite__mapDeps([9,1,2,3]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading graph",description:"Preparing the linked note constellation."})}),Nw=He({getParentRoute:()=>Be,path:th,component:nt(()=>tt(()=>import("./Search-BANPp2ZV.js"),__vite__mapDeps([10,1,2,3]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading search",description:"Preparing indexed note results."}),validateSearch:yw}),Dw=He({getParentRoute:()=>Be,path:nh,component:nt(()=>tt(()=>import("./Tag-DbKSLTj0.js"),__vite__mapDeps([11,1,2,3]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading tags",description:"Preparing the tag catalog."}),validateSearch:Or}),jw=He({getParentRoute:()=>Be,path:wr,component:nt(()=>tt(()=>import("./Note-Bu7fN3B6.js"),__vite__mapDeps([12,1,2,3,13,7,14,15]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading note",description:"Preparing the editor and note content."})}),Fw=He({getParentRoute:()=>Be,path:ti,component:nt(()=>tt(()=>import("./TagNotes-B6s7jtL7.js"),__vite__mapDeps([16,1,2,3]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading tagged notes",description:"Preparing notes for the selected tag."}),validateSearch:Or}),kw=He({getParentRoute:()=>Be,path:rh,component:nt(()=>tt(()=>import("./index-BzWwEDoL.js"),__vite__mapDeps([17,1,2,3,18]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading settings",description:"Preparing workspace preferences."})}),$w=He({getParentRoute:()=>Be,path:q8,component:nt(()=>tt(()=>import("./manage-image-g-MC6Fkc.js"),__vite__mapDeps([19,1,2,3,20,13]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading image manager",description:"Preparing uploaded image metadata."}),validateSearch:Or}),Hw=He({getParentRoute:()=>Be,path:z8,component:nt(()=>tt(()=>import("./manage-image-detail-DOx6QsCl.js"),__vite__mapDeps([21,1,2,3,20,13,18]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading image detail",description:"Preparing references for the selected image."})}),Bw=He({getParentRoute:()=>Be,path:W8,component:nt(()=>tt(()=>import("./placeholder-DV3u6MrA.js"),__vite__mapDeps([22,1,2,3,5,14]))),pendingComponent:()=>h.jsx(Qe,{title:"Loading placeholders",description:"Preparing template replacement rules."}),validateSearch:Or}),Vw=Be.addChildren([Mw,Ow,Iw,Lw,Nw,Dw,jw,Fw,kw,$w,Hw,Bw]),Uw=g1({routeTree:Vw,defaultPreload:"intent",defaultPendingComponent:()=>h.jsx(Qe,{title:"Loading page",description:"Preparing the next route."})});function Zw(){const{setTheme:e}=ei();return c.useEffect(()=>{const t=localStorage.getItem("theme");return t&&e(t),w0.listenThemeChange(n=>e(n?"dark":"light"),!t)},[e]),h.jsx(Wg,{children:h.jsx(x1,{router:Uw})})}v0.createRoot(document.getElementById("root")).render(h.jsx(W.StrictMode,{children:h.jsx(Zw,{})}));export{Ah as $,n6 as A,Lt as B,Xf as C,eu as D,zf as E,pc as F,Th as G,PS as H,Jd as I,Nv as J,Sy as K,bt as L,Gt as M,wr as N,Om as O,qo as P,sh as Q,Jf as R,xt as S,Oy as T,TS as U,Hu as V,Iv as W,Lm as X,qg as Y,wS as Z,aw as _,ds as a,RS as a0,hr as a1,bS as a2,Ew as a3,ve as a4,q8 as a5,W8 as a6,Fm as a7,Fu as a8,tm as a9,z8 as aa,Sw as ab,$u as ac,ES as ad,n8 as ae,Wx as af,de as ag,cb as ah,lb as ai,ub as aj,cu as ak,fs as b,Re as c,we as d,Iy as e,o1 as f,ww as g,Wf as h,ni as i,ln as j,ei as k,Ul as l,CS as m,bw as n,AS as o,_S as p,Xe as q,ew as r,Am as s,th as t,em as u,tw as v,Cw as w,ti as x,nh as y,SS as z};
|