ocean-brain 0.5.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/dist/mcp.js +660 -31
  2. package/package.json +2 -1
  3. package/server/client/dist/assets/{Calendar-BU9XgX2N.js → Calendar-BJHLksEZ.js} +1 -1
  4. package/server/client/dist/assets/{Callout-C6tVCxOT.js → Callout-wFx9oCas.js} +1 -1
  5. package/server/client/dist/assets/Graph-9piERaNR.js +1 -0
  6. package/server/client/dist/assets/{Image-DxWhlIDG.js → Image-DK0lnaK2.js} +1 -1
  7. package/server/client/dist/assets/{Image.es-BjGK7y6Y.js → Image.es-Be7par_j.js} +1 -1
  8. package/server/client/dist/assets/Note-CC9ybxXL.js +21 -0
  9. package/server/client/dist/assets/{Plus.es-EcmtS_uw.js → Plus.es-BKm7uDYu.js} +1 -1
  10. package/server/client/dist/assets/Reminders-DRxA8v98.js +1 -0
  11. package/server/client/dist/assets/Search-BunSQrqv.js +1 -0
  12. package/server/client/dist/assets/{SurfaceCard-CO0oVxeL.js → SurfaceCard-FhlC8VSR.js} +1 -1
  13. package/server/client/dist/assets/Tag-z_crJ5JP.js +1 -0
  14. package/server/client/dist/assets/TagNotes-D7wIJ4jy.js +1 -0
  15. package/server/client/dist/assets/{Trash.es-DmwfSy3l.js → Trash.es-ByMVwx0d.js} +1 -1
  16. package/server/client/dist/assets/ViewNotes-Duo9XmcJ.js +1 -0
  17. package/server/client/dist/assets/Views-D4Z_O9Kd.js +1 -0
  18. package/server/client/dist/assets/{image.api-DeF9ck7g.js → image.api-B5Qi-Txv.js} +1 -1
  19. package/server/client/dist/assets/{index-BZUGWdOU.css → index-Cd81UxEh.css} +1 -1
  20. package/server/client/dist/assets/index-cHJQCo8V.js +1 -0
  21. package/server/client/dist/assets/index-nYj7BL3a.js +327 -0
  22. package/server/client/dist/assets/manage-image-detail-DcZggB1M.js +1 -0
  23. package/server/client/dist/assets/manage-image-glbtBibn.js +1 -0
  24. package/server/client/dist/assets/{mcp-Bh743HBz.js → mcp-BBUpQdS9.js} +1 -1
  25. package/server/client/dist/assets/{note-core-Z6kqulGB.js → note-core-DMZcZ4yV.js} +53 -53
  26. package/server/client/dist/assets/{note-vendor-i1M2FSI2.js → note-vendor-uuJO2MTD.js} +1 -1
  27. package/server/client/dist/assets/{placeholder-XQqo1Fvr.js → placeholder-B_qb_qkc.js} +5 -5
  28. package/server/client/dist/assets/properties-CiyQv6Tb.js +1 -0
  29. package/server/client/dist/assets/trash-CQnj4Rmv.js +1 -0
  30. package/server/client/dist/assets/{useReminderMutate-D21PurIS.js → useReminderMutate-CSKliBcc.js} +1 -1
  31. package/server/client/dist/assets/view-dashboard-B5fKgvk_.js +99 -0
  32. package/server/client/dist/index.html +4 -4
  33. package/server/dist/features/note/graphql/note.field.resolver.js +2 -0
  34. package/server/dist/features/note/graphql/note.field.resolver.js.map +1 -1
  35. package/server/dist/features/note/graphql/note.mutation.resolver.js +119 -0
  36. package/server/dist/features/note/graphql/note.mutation.resolver.js.map +1 -1
  37. package/server/dist/features/note/graphql/note.query.resolver.js +14 -0
  38. package/server/dist/features/note/graphql/note.query.resolver.js.map +1 -1
  39. package/server/dist/features/note/graphql/note.type-defs.js +100 -0
  40. package/server/dist/features/note/graphql/note.type-defs.js.map +1 -1
  41. package/server/dist/features/note/http/mcp.js +394 -1
  42. package/server/dist/features/note/http/mcp.js.map +1 -1
  43. package/server/dist/features/note/services/markdown-intent-write.js +495 -0
  44. package/server/dist/features/note/services/markdown-intent-write.js.map +1 -0
  45. package/server/dist/features/note/services/markdown-patch.js +601 -0
  46. package/server/dist/features/note/services/markdown-patch.js.map +1 -0
  47. package/server/dist/features/note/services/properties.js +874 -0
  48. package/server/dist/features/note/services/properties.js.map +1 -0
  49. package/server/dist/features/note/services/snapshot.js +94 -12
  50. package/server/dist/features/note/services/snapshot.js.map +1 -1
  51. package/server/dist/features/note/services/trash.js +70 -2
  52. package/server/dist/features/note/services/trash.js.map +1 -1
  53. package/server/dist/features/note/services/write.js +21 -7
  54. package/server/dist/features/note/services/write.js.map +1 -1
  55. package/server/dist/features/view/graphql/view.query.resolver.js +31 -1
  56. package/server/dist/features/view/graphql/view.query.resolver.js.map +1 -1
  57. package/server/dist/features/view/graphql/view.type-defs.js +57 -1
  58. package/server/dist/features/view/graphql/view.type-defs.js.map +1 -1
  59. package/server/dist/features/view/services/workspace.js +367 -43
  60. package/server/dist/features/view/services/workspace.js.map +1 -1
  61. package/server/dist/modules/blocknote.js +367 -7
  62. package/server/dist/modules/blocknote.js.map +1 -1
  63. package/server/dist/routes/mcp.js +21 -1
  64. package/server/dist/routes/mcp.js.map +1 -1
  65. package/server/prisma/migrations/20260527073000_0017_note_properties/migration.sql +105 -0
  66. package/server/prisma/migrations/20260531073000_0018_view_query/migration.sql +3 -0
  67. package/server/prisma/schema.prisma +226 -130
  68. package/server/client/dist/assets/Graph-Dond2hGK.js +0 -1
  69. package/server/client/dist/assets/Note-Cr6GtXUM.js +0 -21
  70. package/server/client/dist/assets/Reminders-BlLLT_x0.js +0 -1
  71. package/server/client/dist/assets/Search-CrZ0ap8x.js +0 -1
  72. package/server/client/dist/assets/Tag-vws5AfNW.js +0 -1
  73. package/server/client/dist/assets/TagNotes-Fmf1Kgim.js +0 -1
  74. package/server/client/dist/assets/ViewNotes-BALN7IfH.js +0 -1
  75. package/server/client/dist/assets/Views-Ccc_Ml5U.js +0 -1
  76. package/server/client/dist/assets/index-BSVE2cGd.js +0 -1
  77. package/server/client/dist/assets/index-BvKBTjQq.js +0 -246
  78. package/server/client/dist/assets/manage-image-IoTXaMBP.js +0 -1
  79. package/server/client/dist/assets/manage-image-detail-BRTXwOsh.js +0 -1
  80. package/server/client/dist/assets/trash-hiJIg6-c.js +0 -1
  81. package/server/client/dist/assets/view-dashboard-BuaZ4MvI.js +0 -90
@@ -1,246 +0,0 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/Calendar-BU9XgX2N.js","assets/note-vendor-i1M2FSI2.js","assets/graph-vendor-CUxe67Lr.js","assets/note-core-Z6kqulGB.js","assets/Callout-C6tVCxOT.js","assets/Views-Ccc_Ml5U.js","assets/view-dashboard-BuaZ4MvI.js","assets/SurfaceCard-CO0oVxeL.js","assets/Plus.es-EcmtS_uw.js","assets/Reminders-BlLLT_x0.js","assets/useReminderMutate-D21PurIS.js","assets/Graph-Dond2hGK.js","assets/Search-CrZ0ap8x.js","assets/Tag-vws5AfNW.js","assets/Note-Cr6GtXUM.js","assets/image.api-DeF9ck7g.js","assets/Note-W4f6H9K0.css","assets/TagNotes-Fmf1Kgim.js","assets/ViewNotes-BALN7IfH.js","assets/index-BSVE2cGd.js","assets/Trash.es-DmwfSy3l.js","assets/Image.es-BjGK7y6Y.js","assets/mcp-Bh743HBz.js","assets/trash-hiJIg6-c.js","assets/manage-image-IoTXaMBP.js","assets/Image-DxWhlIDG.js","assets/manage-image-detail-BRTXwOsh.js","assets/placeholder-XQqo1Fvr.js"])))=>i.map(i=>d[i]);
2
- import{j as h,w as Kp,r as Ht,R as Jl,a as Ga,c as Gp,u as Qp,o as Yp,s as Xp,f as Jp,b as e1,d as t1,h as n1,e as r1,l as o1,_ as Ke,g as s1}from"./note-vendor-i1M2FSI2.js";import{a as c,R as Ko,N as M,g as Kn,r as a1,P as be}from"./graph-vendor-CUxe67Lr.js";import"./note-core-Z6kqulGB.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 Qa={DARK:"(prefers-color-scheme: dark)",LIGHT:"(prefers-color-scheme: light)",RETINA:"(min-resolution: 2dppx)",RESPONSIVE:e=>`screen and (max-width: ${e})`},eu=e=>typeof window<"u"&&window.matchMedia?window.matchMedia(e):null,Ya=(e,t,n=!0)=>{const r=eu(e);n&&t(r?.matches||!1);const o=s=>{t?.(s.matches)};return r?.addEventListener("change",o),()=>{r?.removeEventListener("change",o)}},i1=(e,t=!0)=>Ya(Qa.DARK,e,t),c1=(e,t,n=!0)=>Ya(Qa.RESPONSIVE(e),t,n),l1={MEDIA_QUERY:Qa,listenThemeChange:i1,listenResponsiveChange:c1,createMediaQuery:eu,listenMediaQueryChange:Ya};var we=(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))(we||{});function tu({update:e,notify:t,unwatched:n}){return{link:r,unlink:o,propagate:s,checkDirty:a,shallowPropagate:i};function r(u,f,d){const p=f.depsTail;if(p!==void 0&&p.dep===u)return;const m=p!==void 0?p.nextDep:f.deps;if(m!==void 0&&m.dep===u){m.version=d,f.depsTail=m;return}const v=u.subsTail;if(v!==void 0&&v.version===d&&v.sub===f)return;const g=f.depsTail=u.subsTail={version:d,dep:u,sub:f,prevDep:p,nextDep:m,prevSub:v,nextSub:void 0};m!==void 0&&(m.prevDep=g),p!==void 0?p.nextDep=g:f.deps=g,v!==void 0?v.nextSub=g:u.subs=g}function o(u,f=u.sub){const d=u.dep,p=u.prevDep,m=u.nextDep,v=u.nextSub,g=u.prevSub;return m!==void 0?m.prevDep=p:f.depsTail=p,p!==void 0?p.nextDep=m:f.deps=m,v!==void 0?v.prevSub=g:d.subsTail=g,g!==void 0?g.nextSub=v:(d.subs=v)===void 0&&n(d),m}function s(u){let f=u.nextSub,d;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 v=p.subs;if(v!==void 0){const g=(u=v).nextSub;g!==void 0&&(d={value:f,prev:d},f=g);continue}}if((u=f)!==void 0){f=u.nextSub;continue}for(;d!==void 0;)if(u=d.value,d=d.prev,u!==void 0){f=u.nextSub;continue e}break}while(!0)}function a(u,f){let d,p=0,m=!1;e:do{const v=u.dep,g=v.flags;if(f.flags&16)m=!0;else if((g&17)===17){if(e(v)){const y=v.subs;y.nextSub!==void 0&&i(y),m=!0}}else if((g&33)===33){(u.nextSub!==void 0||u.prevSub!==void 0)&&(d={value:u,prev:d}),u=v.deps,f=v,++p;continue}if(!m){const y=u.nextDep;if(y!==void 0){u=y;continue}}for(;p--;){const y=f.subs,b=y.nextSub!==void 0;if(b?(u=d.value,d=d.prev):u=y,m){if(e(f)){b&&i(y),f=u.sub;continue}m=!1}else f.flags&=-33;f=u.sub;const x=u.nextDep;if(x!==void 0){u=x;continue e}}return m}while(!0)}function i(u){do{const f=u.sub,d=f.flags;(d&48)===32&&(f.flags=d|16,(d&6)===2&&t(f))}while((u=u.nextSub)!==void 0)}function l(u,f){let d=f.depsTail;for(;d!==void 0;){if(d===u)return!0;d=d.prevDep}return!1}}let Xa=0,on=0,vr=0;const kt=[],{link:kC,unlink:nu,propagate:$C,checkDirty:u1,shallowPropagate:HC}=tu({update(e){return e.depsTail!==void 0?p1(e):m1(e)},notify(e){let t=vr,n=t;do if(kt[t++]=e,e.flags&=-3,e=e.subs?.sub,e===void 0||!(e.flags&2))break;while(!0);for(vr=t;n<--t;){const r=kt[n];kt[n++]=kt[t],kt[t]=r}},unwatched(e){e.flags&1?e.depsTail!==void 0&&(e.depsTail=void 0,e.flags=17,Go(e)):y1.call(e)}});function d1(){return Xa}function f1(){++Xa}function h1(){--Xa||v1()}function p1(e){e.depsTail=void 0,e.flags=5;try{const t=e.value;return t!==(e.value=e.getter(t))}finally{e.flags&=-5,Go(e)}}function m1(e){return e.flags=1,e.currentValue!==(e.currentValue=e.pendingValue)}function g1(e){const t=e.flags;if(t&16||t&32&&u1(e.deps,e)){e.depsTail=void 0,e.flags=6;try{e.fn()}finally{e.flags&=-5,Go(e)}}else e.flags=2}function v1(){try{for(;on<vr;){const e=kt[on];kt[on++]=void 0,g1(e)}}finally{for(;on<vr;){const e=kt[on];kt[on++]=void 0,e.flags|=10}on=0,vr=0}}function y1(){this.depsTail=void 0,this.flags=0,Go(this);const e=this.subs;e!==void 0&&nu(e)}function Go(e){const t=e.depsTail;let n=t!==void 0?t.nextDep:e.deps;for(;n!==void 0;)n=nu(n,e)}function Ja(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 ca=[];let po=0;const{link:oc,unlink:b1,propagate:x1,checkDirty:ru,shallowPropagate:sc}=tu({update(e){return e._update()},notify(e){ca[la++]=e,e.flags&=~we.Watching},unwatched(e){e.depsTail!==void 0&&(e.depsTail=void 0,e.flags=we.Mutable|we.Dirty,So(e))}});let Jr=0,la=0,At;function So(e){const t=e.depsTail;let n=t!==void 0?t.nextDep:e.deps;for(;n!==void 0;)n=b1(n,e)}function ou(){if(!(d1()>0)){for(;Jr<la;){const e=ca[Jr];ca[Jr++]=void 0,e.notify()}Jr=0,la=0}}function su(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?we.None:we.Mutable,get(){return At!==void 0&&oc(o,At,po),o._snapshot},subscribe(s){const a=Ja(s),i={current:!1},l=w1(()=>{o.get(),i.current?a.next?.(o._snapshot):i.current=!0});return{unsubscribe:()=>{l.stop()}}},_update(s){const a=At,i=Object.is;if(n)At=o,++po,o.depsTail=void 0;else if(s===void 0)return!1;n&&(o.flags=we.Mutable|we.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{At=a,n&&(o.flags&=~we.RecursedCheck),So(o)}}};return n?(o.flags=we.Mutable|we.Dirty,o.get=function(){const s=o.flags;if(s&we.Dirty||s&we.Pending&&ru(o.deps,o)){if(o._update()){const a=o.subs;a!==void 0&&sc(a)}}else s&we.Pending&&(o.flags=s&~we.Pending);return At!==void 0&&oc(o,At,po),o._snapshot}):o.set=function(s){if(o._update(s)){const a=o.subs;a!==void 0&&(x1(a),sc(a),ou())}},o}function w1(e){const t=()=>{const r=At;At=n,++po,n.depsTail=void 0,n.flags=we.Watching|we.RecursedCheck;try{return e()}finally{At=r,n.flags&=~we.RecursedCheck,So(n)}},n={deps:void 0,depsTail:void 0,subs:void 0,subsTail:void 0,flags:we.Watching|we.RecursedCheck,notify(){const r=this.flags;r&we.Dirty||r&we.Pending&&ru(this.deps,this)?t():this.flags=we.Watching},stop(){this.flags=we.None,this.depsTail=void 0,So(this)}};return t(),n}class E1{constructor(t){this.atom=su(t)}setState(t){this.atom.set(t)}get state(){return this.atom.get()}get(){return this.state}subscribe(t){return this.atom.subscribe(Ja(t))}}class S1{constructor(t){this.atom=su(t)}get state(){return this.atom.get()}get(){return this.state}subscribe(t){return this.atom.subscribe(Ja(t))}}function R1(e){return typeof e=="function"?new S1(e):new E1(e)}function C1(e){try{f1(),e()}finally{h1(),ou()}}const Yt="__TSR_index",ac="popstate",ic="beforeunload";function A1(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 f=e.getBlockers?.()??[],d=l.type==="PUSH"||l.type==="REPLACE";if(typeof document<"u"&&f.length&&d)for(const p of f){const m=Ro(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[Yt];i=cc(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[Yt];i=cc(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[Yt]!==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 cc(e,t){t||(t={});const n=ei();return{...t,key:n,__TSR_key:n,[Yt]:e}}function T1(e){const t=typeof document<"u"?window:void 0,n=t.history.pushState,r=t.history.replaceState;let o=[];const s=()=>o,a=S=>o=S,i=(S=>S),l=(()=>Ro(`${t.location.pathname}${t.location.search}${t.location.hash}`,t.history.state));if(!t.history.state?.__TSR_key&&!t.history.state?.key){const S=ei();t.history.replaceState({[Yt]:0,key:S,__TSR_key:S},"")}let u=l(),f,d=!1,p=!1,m=!1,v=!1;const g=()=>u;let y,b;const x=()=>{y&&(A._ignoreSubscribers=!0,(y.isPush?t.history.pushState:t.history.replaceState)(y.state,"",y.href),A._ignoreSubscribers=!1,y=void 0,b=void 0,f=void 0)},w=(S,N,I)=>{const P=i(N);b||(f=u),u=Ro(N,I),y={href:P,state:I,isPush:y?.isPush||S==="push"},b||(b=Promise.resolve().then(()=>x()))},E=S=>{u=l(),A.notify({type:S})},C=async()=>{if(p){p=!1;return}const S=l(),N=S.state[Yt]-u.state[Yt],I=N===1,P=N===-1,H=!I&&!P||d;d=!1;const q=H?"GO":P?"BACK":"FORWARD",D=H?{type:"GO",index:N}:{type:P?"BACK":"FORWARD"};if(m)m=!1;else{const F=s();if(typeof document<"u"&&F.length){for(const T of F)if(await T.blockerFn({currentLocation:u,nextLocation:S,action:q})){p=!0,t.history.go(1),A.notify(D);return}}}u=l(),A.notify(D)},O=S=>{if(v){v=!1;return}let N=!1;const I=s();if(typeof document<"u"&&I.length)for(const P of I){const H=P.enableBeforeUnload??!0;if(H===!0){N=!0;break}if(typeof H=="function"&&H()===!0){N=!0;break}}if(N)return S.preventDefault(),S.returnValue=""},A=A1({getLocation:g,getLength:()=>t.history.length,pushState:(S,N)=>w("push",S,N),replaceState:(S,N)=>w("replace",S,N),back:S=>(S&&(m=!0),v=!0,t.history.back()),forward:S=>{S&&(m=!0),v=!0,t.history.forward()},go:S=>{d=!0,t.history.go(S)},createHref:S=>i(S),flush:x,destroy:()=>{t.history.pushState=n,t.history.replaceState=r,t.removeEventListener(ic,O,{capture:!0}),t.removeEventListener(ac,C)},onBlocked:()=>{f&&u!==f&&(u=f)},getBlockers:s,setBlockers:a,notifyOnIndexChange:!1});return t.addEventListener(ic,O,{capture:!0}),t.addEventListener(ac,C),t.history.pushState=function(...S){const N=n.apply(t.history,S);return A._ignoreSubscribers||E("PUSH"),N},t.history.replaceState=function(...S){const N=r.apply(t.history,S);return A._ignoreSubscribers||E("REPLACE"),N},A}function P1(e){let t=e.replace(/[\x00-\x1f\x7f]/g,"");return t.startsWith("//")&&(t="/"+t.replace(/^\/+/,"")),t}function Ro(e,t){const n=P1(e),r=n.indexOf("#"),o=n.indexOf("?"),s=ei();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||{[Yt]:0,key:s,__TSR_key:s}}}function ei(){return(Math.random()+1).toString(36).substring(7)}const M1=!1;function yr(e){let t;return C1(()=>{t=e()}),t}function Sr(e){return e[e.length-1]}function _1(e){return typeof e=="function"}function Gt(e,t){return _1(e)?e(t):e}const N1=Object.prototype.hasOwnProperty,lc=Object.prototype.propertyIsEnumerable;function st(e,t,n=0){if(e===t)return e;if(n>500)return t;const r=t,o=fc(e)&&fc(r);if(!o&&!(Co(e)&&Co(r)))return r;const s=o?e:uc(e);if(!s)return r;const a=o?r:uc(r);if(!a)return r;const i=s.length,l=a.length,u=o?new Array(l):{};let f=0;for(let d=0;d<l;d++){const p=o?d:a[d],m=e[p],v=r[p];if(m===v){u[p]=m,(o?d<i:N1.call(e,p))&&f++;continue}if(m===null||v===null||typeof m!="object"||typeof v!="object"){u[p]=v;continue}const g=st(m,v,n+1);u[p]=g,g===m&&f++}return i===l&&f===i?e:u}function uc(e){const t=Object.getOwnPropertyNames(e);for(const o of t)if(!lc.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(!lc.call(e,o))return!1;r.push(o)}return r}function Co(e){if(!dc(e))return!1;const t=e.constructor;if(typeof t>"u")return!0;const n=t.prototype;return!(!dc(n)||!n.hasOwnProperty("isPrototypeOf"))}function dc(e){return Object.prototype.toString.call(e)==="[object Object]"}function fc(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function dn(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(!dn(e[r],t[r],n))return!1;return!0}if(Co(e)&&Co(t)){const r=n?.ignoreUndefined??!0;if(n?.partial){for(const a in t)if((!r||t[a]!==void 0)&&!dn(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||!dn(e[a],t[a],n)))return!1;return o===s}return!1}function Zn(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 O1(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 Rr(e){return!!(e&&typeof e=="object"&&typeof e.then=="function")}function I1(e){return e.replace(/[\x00-\x1f\x7f]/g,"")}function hc(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 I1(t)}const L1=["http:","https:","mailto:","tel:"];function Ao(e,t){if(!e)return!1;try{const n=new URL(e);return!t.has(n.protocol)}catch{return!1}}function ir(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+=hc(e.slice(n,o.index))+o[0],n=t.lastIndex;r=r+hc(n?e.slice(n):e);let s=!1;return r.startsWith("//")&&(s=!0,r="/"+r.replace(/^\/+/,"")),{path:r,handledProtocolRelativeURL:s}}function D1(e){return/\s|[^\u0000-\u007F]/.test(e)?e.replace(/\s|[^\u0000-\u007F]/gu,encodeURIComponent):e}var j1="Invariant failed";function en(e,t){if(!e)throw new Error(j1)}function To(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 Un=0,mn=1,gn=2,Cr=3,an=4,au=5;function F1(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 ti(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]=Un,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]=gn,n[1]=t,n[2]=t,n[3]=i,n[4]=i,n[5]=i,n}if(s.charCodeAt(0)===36)return n[0]=mn,n[1]=t,n[2]=t+1,n[3]=o,n[4]=o,n[5]=o,n;const a=F1(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 f=i+3,d=l;if(f<d)return n[0]=Cr,n[1]=t+i,n[2]=t+f,n[3]=t+d,n[4]=t+l+1,n[5]=o,n}}else if(u===36){const f=i+1,d=i+2;return d===l?(n[0]=gn,n[1]=t+i,n[2]=t+f,n[3]=t+d,n[4]=t+l+1,n[5]=e.length,n):(n[0]=mn,n[1]=t+i,n[2]=t+d,n[3]=t+l,n[4]=t+l+1,n[5]=o,n)}}return n[0]=Un,n[1]=t,n[2]=t,n[3]=o,n[4]=o,n[5]=o,n}function Qo(e,t,n,r,o,s,a){a?.(n);let i=r;{const l=n.fullPath??n.from,u=l.length,f=n.options?.caseSensitive??e,d=!!(n.options?.params?.parse&&n.options?.skipRouteOnParseError?.params);for(;i<u;){const m=ti(l,i,t);let v;const g=i,y=m[5];switch(i=y+1,s++,m[0]){case Un:{const x=l.substring(m[2],m[3]);if(f){const w=o.static?.get(x);if(w)v=w;else{o.static??=new Map;const E=cn(n.fullPath??n.from);E.parent=o,E.depth=s,v=E,o.static.set(x,E)}}else{const w=x.toLowerCase(),E=o.staticInsensitive?.get(w);if(E)v=E;else{o.staticInsensitive??=new Map;const C=cn(n.fullPath??n.from);C.parent=o,C.depth=s,v=C,o.staticInsensitive.set(w,C)}}break}case mn:{const x=l.substring(g,m[1]),w=l.substring(m[4],y),E=f&&!!(x||w),C=x?E?x:x.toLowerCase():void 0,O=w?E?w:w.toLowerCase():void 0,A=!d&&o.dynamic?.find(S=>!S.skipOnParamError&&S.caseSensitive===E&&S.prefix===C&&S.suffix===O);if(A)v=A;else{const S=Ls(mn,n.fullPath??n.from,E,C,O);v=S,S.depth=s,S.parent=o,o.dynamic??=[],o.dynamic.push(S)}break}case Cr:{const x=l.substring(g,m[1]),w=l.substring(m[4],y),E=f&&!!(x||w),C=x?E?x:x.toLowerCase():void 0,O=w?E?w:w.toLowerCase():void 0,A=!d&&o.optional?.find(S=>!S.skipOnParamError&&S.caseSensitive===E&&S.prefix===C&&S.suffix===O);if(A)v=A;else{const S=Ls(Cr,n.fullPath??n.from,E,C,O);v=S,S.parent=o,S.depth=s,o.optional??=[],o.optional.push(S)}break}case gn:{const x=l.substring(g,m[1]),w=l.substring(m[4],y),E=f&&!!(x||w),C=x?E?x:x.toLowerCase():void 0,O=w?E?w:w.toLowerCase():void 0,A=Ls(gn,n.fullPath??n.from,E,C,O);v=A,A.parent=o,A.depth=s,o.wildcard??=[],o.wildcard.push(A)}}o=v}if(d&&n.children&&!n.isRoot&&n.id&&n.id.charCodeAt(n.id.lastIndexOf("/")+1)===95){const m=cn(n.fullPath??n.from);m.kind=au,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=cn(n.fullPath??n.from);m.kind=an,m.parent=o,s++,m.depth=s,o.index=m,o=m}o.parse=n.options?.params?.parse??null,o.skipOnParamError=d,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)Qo(e,t,l,i,o,s,a)}function Is(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 Wt(e){if(e.pathless)for(const t of e.pathless)Wt(t);if(e.static)for(const t of e.static.values())Wt(t);if(e.staticInsensitive)for(const t of e.staticInsensitive.values())Wt(t);if(e.dynamic?.length){e.dynamic.sort(Is);for(const t of e.dynamic)Wt(t)}if(e.optional?.length){e.optional.sort(Is);for(const t of e.optional)Wt(t)}if(e.wildcard?.length){e.wildcard.sort(Is);for(const t of e.wildcard)Wt(t)}}function cn(e){return{kind:Un,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 Ls(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 k1(e,t){const n=cn("/"),r=new Uint16Array(6);for(const o of e)Qo(!1,r,o,1,n,0);Wt(n),t.masksTree=n,t.flatCache=To(1e3)}function $1(e,t){e||="/";const n=t.flatCache.get(e);if(n)return n;const r=ni(e,t.masksTree);return t.flatCache.set(e,r),r}function H1(e,t,n,r,o){e||="/",r||="/";const s=t?`case\0${e}`:e;let a=o.singleCache.get(s);if(!a){a=cn("/");const i=new Uint16Array(6);Qo(t,i,{from:e},1,a,0),o.singleCache.set(s,a)}return ni(r,a,n)}function B1(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=ni(e,t.segmentTree,n)}catch(a){if(a instanceof URIError)s=null;else throw a}return s&&(s.branch=U1(s.route)),t.matchCache.set(r,s),s}function V1(e){return e==="/"?e:e.replace(/\/{1,}$/,"")}function Z1(e,t=!1,n){const r=cn(e.fullPath),o=new Uint16Array(6),s={},a={};let i=0;return Qo(t,o,e,1,r,0,u=>{if(n?.(u,i),en(!(u.id in s),`Duplicate routes found with id: ${String(u.id)}`),s[u.id]=u,i!==0&&u.path){const f=V1(u.fullPath);(!a[f]||u.fullPath.endsWith("/"))&&(a[f]=u)}i++}),Wt(r),{processedTree:{segmentTree:r,singleCache:To(1e3),matchCache:To(1e3),flatCache:null,masksTree:null},routesById:s,routesByPath:a}}function ni(e,t,n=!1){const r=e.split("/"),o=q1(e,r,t,n);if(!o)return null;const[s]=iu(e,r,o);return{route:o.node.route,rawParams:s,parsedParams:o.parsedParams}}function iu(e,t,n){const r=z1(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 f=r[i];if(f.kind===an)break;if(f.kind===au){u--,a--,l--;continue}const d=t[a],p=l;if(d&&(l+=d.length),f.kind===mn){o??=n.node.fullPath.split("/");const m=o[u],v=f.prefix?.length??0;if(m.charCodeAt(v)===123){const y=f.suffix?.length??0,b=m.substring(v+2,m.length-y-1),x=d.substring(v,d.length-y);s[b]=decodeURIComponent(x)}else{const y=m.substring(1);s[y]=decodeURIComponent(d)}}else if(f.kind===Cr){if(n.skipped&1<<i){a--,l=p-1;continue}o??=n.node.fullPath.split("/");const m=o[u],v=f.prefix?.length??0,g=f.suffix?.length??0,y=m.substring(v+3,m.length-g-1),b=f.suffix||f.prefix?d.substring(v,d.length-g):d;b&&(s[y]=decodeURIComponent(b))}else if(f.kind===gn){const m=f,v=e.substring(p+(m.prefix?.length??0),e.length-(m.suffix?.length??0)),g=decodeURIComponent(v);s["*"]=g,s._splat=g;break}}return n.rawParams&&Object.assign(s,n.rawParams),[s,{part:a,node:i,path:l,segment:u}]}function U1(e){const t=[e];for(;e.parentRoute;)e=e.parentRoute,t.push(e);return t.reverse(),t}function z1(e){const t=Array(e.depth+1);do t[e.depth]=e,e=e.parent;while(e);return t}function q1(e,t,n,r){if(e==="/"&&n.index)return{node:n.index,skipped:0};const o=!Sr(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,f=null;for(;i.length;){const d=i.pop(),{node:p,index:m,skipped:v,depth:g,statics:y,dynamics:b,optionals:x}=d;let{extract:w,rawParams:E,parsedParams:C}=d;if(p.skipOnParamError){if(!Ds(e,t,d))continue;E=d.rawParams,w=d.extract,C=d.parsedParams}r&&p.route&&p.kind!==an&&cr(u,d)&&(u=d);const O=m===a;if(O&&(p.route&&!s&&cr(f,d)&&(f=d),!p.optional&&!p.wildcard&&!p.index&&!p.pathless))continue;const A=O?void 0:t[m];let S;if(O&&p.index){const N={node:p.index,index:m,skipped:v,depth:g+1,statics:y,dynamics:b,optionals:x,extract:w,rawParams:E,parsedParams:C};let I=!0;if(p.index.skipOnParamError&&(Ds(e,t,N)||(I=!1)),I){if(y===a&&!b&&!x&&!v)return N;cr(f,N)&&(f=N)}}if(p.wildcard&&cr(l,d))for(const N of p.wildcard){const{prefix:I,suffix:P}=N;if(I&&(O||!(N.caseSensitive?A:S??=A.toLowerCase()).startsWith(I)))continue;if(P){if(O)continue;const q=t.slice(m).join("/").slice(-P.length);if((N.caseSensitive?q:q.toLowerCase())!==P)continue}const H={node:N,index:a,skipped:v,depth:g,statics:y,dynamics:b,optionals:x,extract:w,rawParams:E,parsedParams:C};if(!(N.skipOnParamError&&!Ds(e,t,H))){l=H;break}}if(p.optional){const N=v|1<<g,I=g+1;for(let P=p.optional.length-1;P>=0;P--){const H=p.optional[P];i.push({node:H,index:m,skipped:N,depth:I,statics:y,dynamics:b,optionals:x,extract:w,rawParams:E,parsedParams:C})}if(!O)for(let P=p.optional.length-1;P>=0;P--){const H=p.optional[P],{prefix:q,suffix:D}=H;if(q||D){const F=H.caseSensitive?A:S??=A.toLowerCase();if(q&&!F.startsWith(q)||D&&!F.endsWith(D))continue}i.push({node:H,index:m+1,skipped:v,depth:I,statics:y,dynamics:b,optionals:x+1,extract:w,rawParams:E,parsedParams:C})}}if(!O&&p.dynamic&&A)for(let N=p.dynamic.length-1;N>=0;N--){const I=p.dynamic[N],{prefix:P,suffix:H}=I;if(P||H){const q=I.caseSensitive?A:S??=A.toLowerCase();if(P&&!q.startsWith(P)||H&&!q.endsWith(H))continue}i.push({node:I,index:m+1,skipped:v,depth:g+1,statics:y,dynamics:b+1,optionals:x,extract:w,rawParams:E,parsedParams:C})}if(!O&&p.staticInsensitive){const N=p.staticInsensitive.get(S??=A.toLowerCase());N&&i.push({node:N,index:m+1,skipped:v,depth:g+1,statics:y+1,dynamics:b,optionals:x,extract:w,rawParams:E,parsedParams:C})}if(!O&&p.static){const N=p.static.get(A);N&&i.push({node:N,index:m+1,skipped:v,depth:g+1,statics:y+1,dynamics:b,optionals:x,extract:w,rawParams:E,parsedParams:C})}if(p.pathless){const N=g+1;for(let I=p.pathless.length-1;I>=0;I--){const P=p.pathless[I];i.push({node:P,index:m,skipped:v,depth:N,statics:y,dynamics:b,optionals:x,extract:w,rawParams:E,parsedParams:C})}}}if(f&&l)return cr(l,f)?f:l;if(f)return f;if(l)return l;if(r&&u){let d=u.index;for(let m=0;m<u.index;m++)d+=t[m].length;const p=d===e.length?"/":e.slice(d);return u.rawParams??={},u.rawParams["**"]=decodeURIComponent(p),u}return null}function Ds(e,t,n){try{const[r,o]=iu(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 cr(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===an)>(e.node.kind===an)||t.node.kind===an==(e.node.kind===an)&&t.depth>e.depth))):!0}function mo(e){return ri(e.filter(t=>t!==void 0).join("/"))}function ri(e){return e.replace(/\/{2,}/g,"/")}function cu(e){return e==="/"?e:e.replace(/^\/{1,}/,"")}function Xt(e){const t=e.length;return t>1&&e[t-1]==="/"?e.replace(/\/{1,}$/,""):e}function lu(e){return Xt(cu(e))}function Po(e,t){return e?.endsWith("/")&&e!=="/"&&e!==`${t}/`?e.slice(0,-1):e}function W1(e,t,n){return Po(e,n)===Po(t,n)}function K1({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 d=r.get(a);if(d)return d}let i;if(s)i=e.split("/");else if(o)i=t.split("/");else{for(i=e.split("/");i.length>1&&Sr(i)==="";)i.pop();const d=t.split("/");for(let p=0,m=d.length;p<m;p++){const v=d[p];v===""?p?p===m-1&&i.push(v):i=[v]:v===".."?i.pop():v==="."||i.push(v)}}i.length>1&&(Sr(i)===""?n==="never"&&i.pop():n==="always"&&i.push(""));let l,u="";for(let d=0;d<i.length;d++){d>0&&(u+="/");const p=i[d];if(!p)continue;l=ti(p,0,l);const m=l[0];if(m===Un){u+=p;continue}const v=l[5],g=p.substring(0,l[1]),y=p.substring(l[4],v),b=p.substring(l[2],l[3]);m===mn?u+=g||y?`${g}{$${b}}${y}`:`$${b}`:m===gn?u+=g||y?`${g}{$}${y}`:"$":u+=`${g}{-$${b}}${y}`}u=ri(u);const f=u||"/";return a&&r&&r.set(a,f),f}function G1(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 js(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=>mc(o,n)).join("/"):mc(r,n)}function pc({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 d=i;l=ti(e,d,l);const p=l[5];if(i=p+1,d===p)continue;const m=l[0];if(m===Un){u+="/"+e.substring(d,p);continue}if(m===gn){const v=t._splat;s._splat=v,s["*"]=v;const g=e.substring(d,l[1]),y=e.substring(l[4],p);if(!v){o=!0,(g||y)&&(u+="/"+g+y);continue}const b=js("_splat",t,n);u+="/"+g+b+y;continue}if(m===mn){const v=e.substring(l[2],l[3]);!o&&!(v in t)&&(o=!0),s[v]=t[v];const g=e.substring(d,l[1]),y=e.substring(l[4],p),b=js(v,t,n)??"undefined";u+="/"+g+b+y;continue}if(m===Cr){const v=e.substring(l[2],l[3]),g=t[v];if(g==null)continue;s[v]=g;const y=e.substring(d,l[1]),b=e.substring(l[4],p),x=js(v,t,n)??"";u+="/"+y+x+b;continue}}return e.endsWith("/")&&(u+="/"),{usedParams:s,interpolatedPath:u||"/",isMissingParams:o}}function mc(e,t){const n=encodeURIComponent(e);return t?.(n)??n}function uu(e={}){if(e.isNotFound=!0,e.throw)throw e;return e}function et(e){return!!e?.isNotFound}function Q1(){try{if(typeof window<"u"&&typeof window.sessionStorage=="object")return window.sessionStorage}catch{}}const ua="tsr-scroll-restoration-v1_3",Y1=(e,t)=>{let n;return(...r)=>{n||(n=setTimeout(()=>{e(...r),n=null},t))}};function X1(){const e=Q1();if(!e)return null;const t=e.getItem(ua);let n=t?JSON.parse(t):{};return{state:n,set:r=>{n=Gt(r,n)||n;try{e.setItem(ua,JSON.stringify(n))}catch{console.warn("[ts-router] Could not persist scroll restoration state to sessionStorage.")}}}}const eo=X1(),J1=e=>e.state.__TSR_key||e.href;function em(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 Mo=!1;function tm({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];Mo=!0;e:{if(r&&l&&Object.keys(l).length>0){for(const d in l){const p=l[d];if(d==="window")window.scrollTo({top:p.scrollY,left:p.scrollX,behavior:n});else if(d){const m=document.querySelector(d);m&&(m.scrollLeft=p.scrollX,m.scrollTop=p.scrollY)}}break e}const u=(s??window.location).hash.split("#",2)[1];if(u){const d=window.history.state?.__hashScrollIntoViewOptions??!0;if(d){const p=document.getElementById(u);p&&p.scrollIntoView(d)}break e}const f={top:0,left:0,behavior:n};if(window.scrollTo(f),o)for(const d of o){if(d==="window")continue;const p=typeof d=="function"?d():document.querySelector(d);p&&p.scrollTo(f)}}Mo=!1}function nm(e,t){if(!eo||((e.options.scrollRestoration??!1)&&(e.isScrollRestoring=!0),e.isScrollRestorationSetup||!eo))return;e.isScrollRestorationSetup=!0,Mo=!1;const r=e.options.getScrollRestorationKey||J1;window.history.scrollRestoration="manual";const o=s=>{if(Mo||!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=em(s.target)}const i=r(e.state.location);eo.set(l=>{const u=l[i]||={},f=u[a]||={};if(a==="window")f.scrollX=window.scrollX||0,f.scrollY=window.scrollY||0;else if(a){const d=document.querySelector(a);d&&(f.scrollX=d.scrollLeft||0,f.scrollY=d.scrollTop||0)}return l})};typeof document<"u"&&document.addEventListener("scroll",Y1(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})||(tm({storageKey:ua,key:a,behavior:e.options.scrollRestorationBehavior,shouldScrollRestoration:e.isScrollRestoring,scrollToTopSelectors:e.options.scrollToTopSelectors,location:e.history.location}),e.isScrollRestoring&&eo.set(i=>(i[a]||={},i)))})}function rm(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 om(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 Fs(e){return e?e==="false"?!1:e==="true"?!0:+e*0===0&&+e+""===e?+e:e:""}function sm(e){const t=new URLSearchParams(e),n={};for(const[r,o]of t.entries()){const s=n[r];s==null?n[r]=Fs(o):Array.isArray(s)?s.push(Fs(o)):n[r]=[s,Fs(o)]}return n}const am=cm(JSON.parse),im=lm(JSON.stringify,JSON.parse);function cm(e){return t=>{t[0]==="?"&&(t=t.substring(1));const n=sm(t);for(const r in n){const o=n[r];if(typeof o=="string")try{n[r]=e(o)}catch{}}return n}}function lm(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=om(o,r);return s?`?${s}`:""}}const ft="__root__";function du(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 at(e){return e instanceof Response&&!!e.options}const da=e=>{if(!e.rendered)return e.rendered=!0,e.onReady?.()},Yo=(e,t)=>!!(e.preload&&!e.router.state.matches.some(n=>n.id===t)),$n=(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},gc=(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},Qt=(e,t,n)=>{if(!(!at(n)&&!et(n)))throw at(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:at(n)?"redirected":r.status==="pending"?"success":r.status,context:$n(e,t.index),isFetching:!1,error:n})),et(n)&&!n.routeId&&(n.routeId=t.routeId),t._nonReactive.loadPromise?.resolve()),at(n)&&(e.rendered=!0,n.options._fromLocation=e.location,n.redirectHandled=!0,n=e.router.resolveRedirect(n))),n},fu=(e,t)=>!!e.router.getMatch(t)._nonReactive.dehydrated,lr=(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,Qt(e,e.router.getMatch(o),n);try{a.options.onError?.(n)}catch(i){n=i,Qt(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&&!at(n)&&!et(n)&&(e.serialError??=n)},hu=(e,t,n,r)=>{if(r._nonReactive.pendingTimeout!==void 0)return;const o=n.options.pendingMs??e.router.options.defaultPendingMs;if(!!(e.onReady&&!Yo(e,t)&&(n.options.loader||n.options.beforeLoad||mu(n))&&typeof o=="number"&&o!==1/0&&(n.options.pendingComponent??e.router.options?.defaultPendingComponent))){const a=setTimeout(()=>{da(e)},o);r._nonReactive.pendingTimeout=a}},um=(e,t,n)=>{const r=e.router.getMatch(t);if(!r._nonReactive.beforeLoadPromise&&!r._nonReactive.loaderPromise)return;hu(e,t,n,r);const o=()=>{const s=e.router.getMatch(t);s.preload&&(s.status==="redirected"||s.status==="notFound")&&Qt(e,s,s.error)};return r._nonReactive.beforeLoadPromise?r._nonReactive.beforeLoadPromise.then(o):o()},dm=(e,t,n,r)=>{const o=e.router.getMatch(t),s=o._nonReactive.loadPromise;o._nonReactive.loadPromise=Zn(()=>{s?.resolve()});const{paramsError:a,searchError:i}=o;a&&lr(e,n,a,"PARSE_PARAMS"),i&&lr(e,n,i,"VALIDATE_SEARCH"),hu(e,t,r,o);const l=new AbortController;let u=!1;const f=()=>{u||(u=!0,e.updateMatch(t,E=>({...E,isFetching:"beforeLoad",fetchCount:E.fetchCount+1,abortController:l})))},d=()=>{o._nonReactive.beforeLoadPromise?.resolve(),o._nonReactive.beforeLoadPromise=void 0,e.updateMatch(t,E=>({...E,isFetching:!1}))};if(!r.options.beforeLoad){yr(()=>{f(),d()});return}o._nonReactive.beforeLoadPromise=Zn();const p={...$n(e,n,!1),...o.__routeContext},{search:m,params:v,cause:g}=o,y=Yo(e,t),b={search:m,abortController:l,params:v,preload:y,context:p,location:e.location,navigate:E=>e.router.navigate({...E,_fromLocation:e.location}),buildLocation:e.router.buildLocation,cause:y?"preload":g,matches:e.matches,routeId:r.id,...e.router.options.additionalContext},x=E=>{if(E===void 0){yr(()=>{f(),d()});return}(at(E)||et(E))&&(f(),lr(e,n,E,"BEFORE_LOAD")),yr(()=>{f(),e.updateMatch(t,C=>({...C,__beforeLoadContext:E})),d()})};let w;try{if(w=r.options.beforeLoad(b),Rr(w))return f(),w.catch(E=>{lr(e,n,E,"BEFORE_LOAD")}).then(x)}catch(E){f(),lr(e,n,E,"BEFORE_LOAD")}x(w)},fm=(e,t)=>{const{id:n,routeId:r}=e.matches[t],o=e.router.looseRoutesById[r],s=()=>i(),a=()=>dm(e,n,t,o),i=()=>{if(fu(e,n))return;const l=um(e,n,o);return Rr(l)?l.then(a):a()};return s()},hm=(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,f=s?.scripts,d=s?.styles;return{meta:l,links:u,headScripts:f,headers:i,scripts:a,styles:d}})},pu=(e,t,n,r,o)=>{const s=t[r-1],{params:a,loaderDeps:i,abortController:l,cause:u}=e.router.getMatch(n),f=$n(e,r),d=Yo(e,n);return{params:a,deps:i,preload:!!d,parentMatchPromise:s,abortController:l,context:f,location:e.location,navigate:p=>e.router.navigate({...p,_fromLocation:e.location}),cause:d?"preload":u,route:o,...e.router.options.additionalContext}},vc=async(e,t,n,r,o)=>{try{const s=e.router.getMatch(n);try{(!(M1??e.router.isServer)||s.ssr===!0)&&_o(o);const a=o.options.loader?.(pu(e,t,n,r,o)),i=o.options.loader&&Rr(a);if((i||o._lazyPromise||o._componentsPromise||o.options.head||o.options.scripts||o.options.headers||s._nonReactive.minPendingPromise)&&e.updateMatch(n,f=>({...f,isFetching:"loader"})),o.options.loader){const f=i?await a:a;Qt(e,e.router.getMatch(n),f),f!==void 0&&e.updateMatch(n,d=>({...d,loaderData:f}))}o._lazyPromise&&await o._lazyPromise;const u=s._nonReactive.minPendingPromise;u&&await u,o._componentsPromise&&await o._componentsPromise,e.updateMatch(n,f=>({...f,error:void 0,context:$n(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:$n(e,r)}));return}const l=s._nonReactive.minPendingPromise;l&&await l,et(a)&&await o.options.notFoundComponent?.preload?.(),Qt(e,e.router.getMatch(n),a);try{o.options.onError?.(a)}catch(u){i=u,Qt(e,e.router.getMatch(n),u)}e.updateMatch(n,u=>({...u,error:i,context:$n(e,r),status:"error",isFetching:!1}))}}catch(s){const a=e.router.getMatch(n);a&&(a._nonReactive.loaderPromise=void 0),Qt(e,a,s)}},pm=async(e,t,n)=>{async function r(d,p,m,v){const g=Date.now()-p.updatedAt,y=d?v.options.preloadStaleTime??e.router.options.defaultPreloadStaleTime??3e4:v.options.staleTime??e.router.options.defaultStaleTime??0,b=v.options.shouldReload,x=typeof b=="function"?b(pu(e,t,o,n,v)):b,{status:w,invalid:E}=m;a=w==="success"&&(E||(x??g>y)),d&&v.options.preload===!1||(a&&!e.sync?(i=!0,(async()=>{try{await vc(e,t,o,n,v);const C=e.router.getMatch(o);C._nonReactive.loaderPromise?.resolve(),C._nonReactive.loadPromise?.resolve(),C._nonReactive.loaderPromise=void 0}catch(C){at(C)&&await e.router.navigate(C.options)}})()):(w!=="success"||a&&e.sync)&&await vc(e,t,o,n,v))}const{id:o,routeId:s}=e.matches[n];let a=!1,i=!1;const l=e.router.looseRoutesById[s];if(!fu(e,o)){const d=e.router.getMatch(o),p=Yo(e,o);if(d._nonReactive.loaderPromise){if(d.status==="success"&&!e.sync&&!d.preload)return d;await d._nonReactive.loaderPromise;const m=e.router.getMatch(o),v=m._nonReactive.error||m.error;v&&Qt(e,m,v),m.status==="pending"&&await r(p,d,m,l)}else{const m=p&&!e.router.state.matches.some(g=>g.id===o),v=e.router.getMatch(o);v._nonReactive.loaderPromise=Zn(),m!==v.preload&&e.updateMatch(o,g=>({...g,preload:m})),await r(p,d,v,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 f=i?u.isFetching:!1;return f!==u.isFetching||u.invalid!==!1?(e.updateMatch(o,d=>({...d,isFetching:f,invalid:!1})),e.router.getMatch(o)):u};async function yc(e){const t=e,n=[];t.router.state.matches.some(p=>p._forcePending)&&da(t);let r;for(let p=0;p<t.matches.length;p++){try{const m=fm(t,p);Rr(m)&&await m}catch(m){if(at(m))throw m;if(et(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?gc(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(pm(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 v=m.reason;if(at(v))throw v;et(v)?i??=v:l??=v}if(l!==void 0)throw l}const u=i??(r&&!t.preload?r:void 0);let f=t.serialError?t.firstBadMatchIndex??0:t.matches.length-1;if(!u&&r&&t.preload)return t.matches;if(u){const p=gc(t,u);en(p!==void 0);const m=t.matches[p],v=t.router.looseRoutesById[m.routeId],g=t.router.options?.defaultNotFoundComponent;!v.options.notFoundComponent&&g&&(v.options.notFoundComponent=g),u.routeId=m.routeId;const y=m.routeId===t.router.routeTree.id;t.updateMatch(m.id,b=>({...b,...y?{status:"success",globalNotFound:!0,error:void 0}:{status:"notFound",error:u},isFetching:!1})),f=p,await _o(v)}else if(!t.preload){const p=t.matches[0];p.globalNotFound||t.router.getMatch(p.id)?.globalNotFound&&t.updateMatch(p.id,v=>({...v,globalNotFound:!1,error:void 0}))}if(t.serialError&&t.firstBadMatchIndex!==void 0){const p=t.router.looseRoutesById[t.matches[t.firstBadMatchIndex].routeId];await _o(p)}for(let p=0;p<=f;p++){const m=t.matches[p],{id:v,routeId:g}=m,y=t.router.looseRoutesById[g];try{const b=hm(t,v,y);if(b){const x=await b;t.updateMatch(v,w=>({...w,...x}))}}catch(b){console.error(`Error executing head for route ${g}:`,b)}}const d=da(t);if(Rr(d)&&await d,u)throw u;if(t.serialError&&!t.preload&&!t.onReady)throw t.serialError;return t.matches}async function _o(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 gu){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 mu(e){for(const t of gu)if(e.options[t]?.preload)return!0;return!1}const gu=["component","errorComponent","pendingComponent","notFoundComponent"];function mm(e){return{input:({url:t})=>{for(const n of e)t=fa(n,t);return t},output:({url:t})=>{for(let n=e.length-1;n>=0;n--)t=vu(e[n],t);return t}}}function gm(e){const t=lu(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=mo(["/",t,a.pathname]),a)}}function fa(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 vu(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 fn(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 vm(e){const t=e.filter(n=>n.status!=="redirected");return t.length===e.length?e:t}class ym{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=G1(this.options.pathParamsAllowedCharacters)),(!this.history||this.options.history&&this.options.history!==this.history)&&(this.options.history?this.history=this.options.history:this.history=T1()),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=To(1e3),p=this.buildRouteTree(),this.setRoutes(p)}!this.__store&&this.latestLocation&&(this.__store=R1(xm(this.latestLocation)),nm(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=lu(l);m&&m!=="/"&&p.push(gm({basepath:l})),u&&p.push(u),this.rewrite=p.length===0?void 0:p.length===1?p[0]:mm(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=Z1(this.routeTree,this.options.caseSensitive,(r,o)=>{r.init({originalIndex:o})});return this.options.routeMasks&&k1(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:f,href:d,state:p})=>{if(!this.rewrite&&!/[ \x00-\x1f\x7f\u0080-\uffff]/.test(l)){const x=this.options.parseSearch(u),w=this.options.stringifySearch(x);return{href:l+w+f,publicHref:d,pathname:ir(l).path,external:!1,searchStr:w,search:st(r?.search,x),hash:ir(f.slice(1)).path,state:st(r?.state,p)}}const m=new URL(d,this.origin),v=fa(this.rewrite,m),g=this.options.parseSearch(v.search),y=this.options.stringifySearch(g);return v.search=y,{href:v.href.replace(v.origin,""),publicHref:d,pathname:ir(v.pathname).path,external:!!this.rewrite&&v.origin!==this.origin,searchStr:y,search:st(r?.search,g),hash:ir(v.hash.slice(1)).path,state:st(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)=>K1({base:n,to:ri(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=>wm({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,"."),f=i.search,d={...i.params},p=s.to?this.resolvePathWithBase(u,`${s.to}`):this.resolvePathWithBase(u,"."),m=s.params===!1||s.params===null?{}:(s.params??!0)===!0?d:Object.assign(d,Gt(s.params,d)),v=this.getMatchedRoutes(p);let g=v.matchedRoutes;if((!v.foundRoute||v.foundRoute.path!=="/"&&v.routeParams["**"])&&this.options.notFoundRoute&&(g=[...g,this.options.notFoundRoute]),Object.keys(m).length>0)for(const P of g){const H=P.options.params?.stringify??P.options.stringifyParams;if(H)try{Object.assign(m,H(m))}catch{}}const b=n.leaveParams?p:ir(pc({path:p,params:m,decoder:this.pathParamsDecoder,server:this.isServer}).interpolatedPath).path;let x=f;if(n._includeValidateSearch&&this.options.search?.strict){const P={};g.forEach(H=>{if(H.options.validateSearch)try{Object.assign(P,go(H.options.validateSearch,{...P,...x}))}catch{}}),x=P}x=Em({search:x,dest:s,destRoutes:g,_includeValidateSearch:n._includeValidateSearch}),x=st(f,x);const w=this.options.stringifySearch(x),E=s.hash===!0?a.hash:s.hash?Gt(s.hash,a.hash):void 0,C=E?`#${E}`:"";let O=s.state===!0?a.state:s.state?Gt(s.state,a.state):{};O=st(a.state,O);const A=`${b}${w}${C}`;let S,N,I=!1;if(this.rewrite){const P=new URL(A,this.origin),H=vu(this.rewrite,P);S=P.href.replace(P.origin,""),H.origin!==this.origin?(N=H.href,I=!0):N=H.pathname+H.search+H.hash}else S=D1(A),N=S;return{publicHref:N,href:S,pathname:b,search:x,searchStr:w,state:O,hash:E??"",external:I,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 f=$1(i.pathname,this.processedTree);if(f){Object.assign(u,f.rawParams);const{from:d,params:p,...m}=f.route,v=p===!1||p===null?{}:(p??!0)===!0?u:Object.assign(u,Gt(p,u));a={from:n.from,...m,params:v},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(f=>{o.state[f]=this.latestLocation.state[f]});const u=dn(o.state,this.latestLocation.state);return l.forEach(f=>{delete o.state[f]}),u},a=Xt(this.latestLocation.href)===Xt(o.href),i=this.commitLocationPromise;if(this.commitLocationPromise=Zn(()=>{i?.resolve()}),a&&s())this.load();else{let{maskedLocation:l,hashScrollIntoView:u,...f}=o;l&&(f={...l,state:{...l.state,__tempKey:void 0,__tempLocation:{...f,search:f.searchStr,state:{...f.state,__tempKey:void 0,__tempLocation:void 0,__TSR_key:void 0,key:void 0}}}},(f.unmaskOnReload??this.options.unmaskOnReload??!1)&&(f.state.__tempKey=this.tempLocationKey)),f.state.__hashScrollIntoViewOptions=u??this.options.defaultHashScrollIntoView??!0,this.shouldViewTransition=n,this.history[o.replace?"replace":"push"](f.publicHref,f.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 d=this.history.location.state.__TSR_index,p=Ro(i,{__TSR_index:n?d:d+1}),m=new URL(p.pathname,this.origin),v=fa(this.rewrite,m);l.to=v.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 f=this.commitLocation({...u,viewTransition:s,replace:n,resetScroll:r,hashScrollIntoView:o,ignoreBlocker:a});return Promise.resolve().then(()=>{this.pendingBuiltLocation===u&&(this.pendingBuiltLocation=void 0)}),f},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(Ao(l,this.protocolAllowlist))return Promise.resolve();if(!a.ignoreBlocker){const f=this.history.getBlockers?.()??[];for(const d of f)if(d?.blockerFn&&await d.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",...fn({resolvedLocation:u,location:l})}),this.emit({type:"onBeforeLoad",...fn({resolvedLocation:u,location:l})}),await yc({router:this,sync:n?.sync,matches:this.state.pendingMatches,location:l,updateMatch:this.updateMatch,onReady:async()=>{this.startTransition(()=>{this.startViewTransition(async()=>{let f=[],d=[],p=[],m=[];yr(()=>{this.__store.setState(v=>{const g=v.matches,y=v.pendingMatches||v.matches;return f=g.filter(b=>!y.some(x=>x.id===b.id)),d=g.filter(b=>!y.some(x=>x.routeId===b.routeId)),p=y.filter(b=>!g.some(x=>x.routeId===b.routeId)),m=y.filter(b=>g.some(x=>x.routeId===b.routeId)),{...v,isLoading:!1,loadedAt:Date.now(),matches:y,pendingMatches:void 0,cachedMatches:[...v.cachedMatches,...f.filter(b=>b.status!=="error"&&b.status!=="notFound"&&b.status!=="redirected")]}}),this.clearExpiredCache()}),[[d,"onLeave"],[p,"onEnter"],[m,"onStay"]].forEach(([v,g])=>{v.forEach(y=>{this.looseRoutesById[y.routeId].options[g]?.(y)})})})})}})}catch(l){at(l)?(r=l,this.navigate({...r.options,replace:!0,ignoreBlocker:!0})):et(l)&&(o=l),this.__store.setState(u=>({...u,statusCode:r?r.status:o?404:u.matches.some(f=>f.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(fn({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:vm(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&&Ao(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=_o,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)]);yr(()=>{o.forEach(i=>{a.has(i.id)||this.__store.setState(l=>({...l,cachedMatches:[...l.cachedMatches,i]}))})});try{return o=await yc({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(at(i))return i.options.reloadDocument?void 0:await this.preloadRoute({...i.options,_fromLocation:r});et(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=H1(s.pathname,r?.caseSensitive??!1,r?.fuzzy??!1,i.pathname,this.processedTree);return!l||n.params&&!dn(l.rawParams,n.params,{partial:!0})?!1:r?.includeSearch??!0?dn(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??im,parseSearch:t.parseSearch??am,protocolAllowlist:t.protocolAllowlist??L1}),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["**"]:Xt(t.pathname))&&(this.options.notFoundRoute?i=[...i,this.options.notFoundRoute]:l=!0);const u=l?Rm(this.options.notFoundMode,i):void 0,f=new Array(i.length),d=new Map(this.state.matches.map(p=>[p.routeId,p]));for(let p=0;p<i.length;p++){const m=i[p],v=f[p-1];let g,y,b;{const D=v?.search??t.search,F=v?._strictSearch??void 0;try{const T=go(m.options.validateSearch,{...D})??void 0;g={...D,...T},y={...F,...T},b=void 0}catch(T){let L=T;if(T instanceof No||(L=new No(T.message,{cause:T})),n?.throwOnError)throw L;g=D,y={},b=L}}const x=m.options.loaderDeps?.({search:g})??"",w=x?JSON.stringify(x):"",{interpolatedPath:E,usedParams:C}=pc({path:m.fullPath,params:s,decoder:this.pathParamsDecoder,server:this.isServer}),O=m.id+E+w,A=this.getMatch(O),S=d.get(m.id),N=A?._strictParams??C;let I;if(!A)try{bc(m,C,a,N)}catch(D){if(et(D)||at(D)?I=D:I=new bm(D.message,{cause:D}),n?.throwOnError)throw I}Object.assign(s,N);const P=S?"stay":"enter";let H;if(A)H={...A,cause:P,params:S?.params??s,_strictParams:N,search:st(S?S.search:A.search,g),_strictSearch:y};else{const D=m.options.loader||m.options.beforeLoad||m.lazyFn||mu(m)?"pending":"success";H={id:O,ssr:m.options.ssr,index:p,routeId:m.id,params:S?.params??s,_strictParams:N,pathname:E,updatedAt:Date.now(),search:S?st(S.search,g):g,_strictSearch:y,searchError:void 0,status:D,isFetching:!1,error:void 0,paramsError:I,__routeContext:void 0,_nonReactive:{loadPromise:Zn()},__beforeLoadContext:void 0,context:{},abortController:new AbortController,fetchCount:0,cause:P,loaderDeps:S?st(S.loaderDeps,x):x,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||(H.globalNotFound=u===m.id),H.searchError=b;const q=this.getParentContext(v);H.context={...q,...H.__routeContext,...H.__beforeLoadContext},f[p]=H}for(let p=0;p<f.length;p++){const m=f[p],v=this.looseRoutesById[m.routeId],g=this.getMatch(m.id),y=d.get(m.routeId);if(m.params=y?st(y.params,s):s,!g){const b=f[p-1],x=this.getParentContext(b);if(v.options.context){const w={deps:m.loaderDeps,params:m.params,context:x??{},location:t,navigate:E=>this.navigate({...E,_fromLocation:t}),buildLocation:this.buildLocation,cause:m.cause,abortController:m.abortController,preload:!!m.preload,matches:f,routeId:v.id};m.__routeContext=v.options.context(w)??void 0}m.context={...x,...m.__routeContext,...m.__beforeLoadContext}}}return f}matchRoutesLightweight(t){const{matchedRoutes:n,routeParams:r,parsedParams:o}=this.getMatchedRoutes(t.pathname),s=Sr(n),a={...t.search};for(const f of n)try{Object.assign(a,go(f.options.validateSearch,a))}catch{}const i=Sr(this.state.matches),l=i&&i.routeId===s.id&&t.pathname===this.state.location.pathname;let u;if(l)u=i.params;else{const f={...r};for(const d of n)try{bc(d,r,o??{},f)}catch{}u=f}return{matchedRoutes:n,fullPath:s.fullPath,search:a,params:u}}}class No extends Error{}class bm extends Error{}function xm(e){return{loadedAt:0,isLoading:!1,isTransitioning:!1,status:"idle",resolvedLocation:void 0,location:e,matches:[],pendingMatches:[],cachedMatches:[],statusCode:200}}function go(e,t){if(e==null)return{};if("~standard"in e){const n=e["~standard"].validate(t);if(n instanceof Promise)throw new No("Async validation not supported");if(n.issues)throw new No(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 wm({pathname:e,routesById:t,processedTree:n}){const r={},o=Xt(e);let s,a;const i=B1(o,n,!0);return i&&(s=i.route,Object.assign(r,i.rawParams),a=Object.assign({},i.parsedParams)),{matchedRoutes:i?.branch||[t[ft]],routeParams:r,foundRoute:s,parsedParams:a}}function Em({search:e,dest:t,destRoutes:n,_includeValidateSearch:r}){return Sm(n)(e,t,r??!1)}function Sm(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((f,d)=>d(f),a));const u=i(l);return"postSearchFilters"in o.options&&o.options.postSearchFilters?o.options.postSearchFilters.reduce((f,d)=>d(f),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,...go(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:Gt(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 Rm(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 ft}function bc(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 Cm="Error preloading route! ☝️";class yu{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=ft:this.parentRoute||en(!1);let s=o?ft:r?.path;s&&s!=="/"&&(s=cu(s));const a=r?.id||s;let i=o?ft:mo([this.parentRoute.id===ft?"":this.parentRoute.id,a]);s===ft&&(s="/"),i!==ft&&(i=mo(["/",i]));const l=i===ft?"/":mo([this.parentRoute.fullPath,s]);this._path=s,this._id=i,this._fullPath=l,this._to=Xt(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=>du({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 Am{constructor({id:t}){this.notFound=n=>uu({routeId:this.id,...n}),this.redirect=n=>du({from:this.id,...n}),this.id=t}}class Tm extends yu{constructor(t){super(t)}}const Pm="use",xc=Ko[Pm],to=typeof window<"u"?c.useLayoutEffect:c.useEffect;function ks(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 Mm(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 _m(e){const t=c.useRef(null);return c.useImperativeHandle(e,()=>t.current,[]),t}function oi(e){const t=e.errorComponent??si;return h.jsx(Nm,{getResetKey:e.getResetKey,onCatch:e.onCatch,children:({error:n,reset:r})=>n?c.createElement(t,{error:n,reset:r}):e.children})}class Nm 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 si({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 Om({children:e,fallback:t=null}){return bu()?h.jsx(M.Fragment,{children:e}):h.jsx(M.Fragment,{children:t})}function bu(){return M.useSyncExternalStore(Im,()=>!0,()=>!1)}function Im(){return()=>{}}function Lm(e,t){return e===t}function Dm(e,t,n=Lm){const r=c.useCallback(a=>{if(!e)return()=>{};const{unsubscribe:i}=e.subscribe(a);return i},[e]),o=c.useCallback(()=>e?.get(),[e]);return Kp.useSyncExternalStoreWithSelector(r,o,o,t,n)}const xu=c.createContext(null);function We(e){const t=c.useContext(xu);return e?.warn,t}function it(e){const t=We({warn:e?.router===void 0}),n=e?.router||t,r=c.useRef(void 0);return Dm(n.__store,o=>{if(e?.select){if(e.structuralSharing??n.options.defaultStructuralSharing){const s=st(r.current,e.select(o));return r.current=s,s}return e.select(o)}return o})}const Xo=c.createContext(void 0),jm=c.createContext(void 0);function gt(e){const t=c.useContext(e.from?jm:Xo);return it({select:r=>{const o=r.matches.find(s=>e.from?e.from===s.routeId:s.id===t);if(en(!((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 Jo(e){return gt({from:e.from,strict:e.strict,structuralSharing:e.structuralSharing,select:t=>e.select?e.select(t.loaderData):t.loaderData})}function es(e){const{select:t,...n}=e;return gt({...n,select:r=>t?t(r.loaderDeps):r.loaderDeps})}function ts(e){return gt({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 ns(e){return gt({from:e.from,strict:e.strict,shouldThrow:e.shouldThrow,structuralSharing:e.structuralSharing,select:t=>e.select?e.select(t.search):t.search})}function Rn(e){const t=We();return c.useCallback(n=>t.navigate({...n,from:n.from??e?.from}),[e?.from,t])}function Fm(e,t){const n=We(),r=_m(t),{activeProps:o,inactiveProps:s,activeOptions:a,to:i,preload:l,preloadDelay:u,hashScrollIntoView:f,replace:d,startTransition:p,resetScroll:m,viewTransition:v,children:g,target:y,disabled:b,style:x,className:w,onClick:E,onBlur:C,onFocus:O,onMouseEnter:A,onMouseLeave:S,onTouchStart:N,ignoreBlocker:I,params:P,search:H,hash:q,state:D,mask:F,reloadDocument:T,unsafeRelative:L,from:j,_fromLocation:_,...V}=e,W=bu(),Q=it({select:ce=>{const ge=ce.matches[ce.matches.length-1];return{search:ge?.search,hash:ce.location.hash,path:ge?.pathname}},structuralSharing:!0}),B=e.from,z=c.useMemo(()=>({...e,from:B}),[n,Q,B,e._fromLocation,e.hash,e.to,e.search,e.params,e.state,e.mask,e.unsafeRelative]),U=c.useMemo(()=>n.buildLocation({...z}),[n,z]),J=U.maskedLocation?U.maskedLocation.publicHref:U.publicHref,$=U.maskedLocation?U.maskedLocation.external:U.external,k=c.useMemo(()=>Zm(J,$,n.history,b),[b,$,J,n.history]),ee=c.useMemo(()=>{if(k?.external)return Ao(k.href,n.protocolAllowlist)?void 0:k.href;if(!Um(i)&&!(typeof i!="string"||i.indexOf(":")===-1))try{return new URL(i),Ao(i,n.protocolAllowlist)?void 0:i}catch{}},[i,k,n.protocolAllowlist]),Z=it({select:ce=>{if(ee)return!1;if(a?.exact){if(!W1(ce.location.pathname,U.pathname,n.basepath))return!1}else{const ge=Po(ce.location.pathname,n.basepath),Re=Po(U.pathname,n.basepath);if(!(ge.startsWith(Re)&&(ge.length===Re.length||ge[Re.length]==="/")))return!1}return(a?.includeSearch??!0)&&!dn(ce.location.search,U.search,{partial:!a?.exact,ignoreUndefined:!a?.explicitUndefined})?!1:a?.includeHash?W&&ce.location.hash===U.hash:!0}}),X=Z?Gt(o,{})??km:$s,te=Z?$s:Gt(s,{})??$s,ie=[w,X.className,te.className].filter(Boolean).join(" "),ue=(x||X.style||te.style)&&{...x,...X.style,...te.style},[Ye,Fe]=c.useState(!1),Ze=c.useRef(!1),ct=e.reloadDocument||ee?!1:l??n.options.defaultPreload,Ie=u??n.options.defaultPreloadDelay??0,Ne=c.useCallback(()=>{n.preloadRoute({...z,_builtLocation:U}).catch(ce=>{console.warn(ce),console.warn(Cm)})},[n,z,U]),Ut=c.useCallback(ce=>{ce?.isIntersecting&&Ne()},[Ne]);Mm(r,Ut,Vm,{disabled:!!b||ct!=="viewport"}),c.useEffect(()=>{Ze.current||!b&&ct==="render"&&(Ne(),Ze.current=!0)},[b,Ne,ct]);const Te=ce=>{const ge=ce.currentTarget.getAttribute("target"),Re=y!==void 0?y:ge;if(!b&&!zm(ce)&&!ce.defaultPrevented&&(!Re||Re==="_self")&&ce.button===0){ce.preventDefault(),Ht.flushSync(()=>{Fe(!0)});const ut=n.subscribe("onResolved",()=>{ut(),Fe(!1)});n.navigate({...z,replace:d,resetScroll:m,hashScrollIntoView:f,startTransition:p,viewTransition:v,ignoreBlocker:I})}};if(ee)return{...V,ref:r,href:ee,...g&&{children:g},...y&&{target:y},...b&&{disabled:b},...x&&{style:x},...w&&{className:w},...E&&{onClick:E},...C&&{onBlur:C},...O&&{onFocus:O},...A&&{onMouseEnter:A},...S&&{onMouseLeave:S},...N&&{onTouchStart:N}};const lt=ce=>{if(b||ct!=="intent")return;if(!Ie){Ne();return}const ge=ce.currentTarget;if(ur.has(ge))return;const Re=setTimeout(()=>{ur.delete(ge),Ne()},Ie);ur.set(ge,Re)},Tn=ce=>{b||ct!=="intent"||Ne()},Pn=ce=>{if(b||!ct||!Ie)return;const ge=ce.currentTarget,Re=ur.get(ge);Re&&(clearTimeout(Re),ur.delete(ge))};return{...V,...X,...te,href:k?.href,ref:r,onClick:Nn([E,Te]),onBlur:Nn([C,Pn]),onFocus:Nn([O,lt]),onMouseEnter:Nn([A,lt]),onMouseLeave:Nn([S,Pn]),onTouchStart:Nn([N,Tn]),disabled:!!b,target:y,...ue&&{style:ue},...ie&&{className:ie},...b&&$m,...Z&&Hm,...W&&Ye&&Bm}}const $s={},km={className:"active"},$m={role:"link","aria-disabled":!0},Hm={"data-status":"active","aria-current":"page"},Bm={"data-transitioning":"transitioning"},ur=new WeakMap,Vm={rootMargin:"100px"},Nn=e=>t=>{for(const n of e)if(n){if(t.defaultPrevented)return;n(t)}};function Zm(e,t,n,r){if(!r)return t?{href:e,external:!0}:{href:n.createHref(e)||"/",external:!1}}function Um(e){if(typeof e!="string")return!1;const t=e.charCodeAt(0);return t===47?e.charCodeAt(1)!==47:t===46}const Pt=c.forwardRef((e,t)=>{const{_asChild:n,...r}=e,{type:o,...s}=Fm(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 zm(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function qm(e){return new Wm({id:e})}class Wm extends Am{constructor({id:t}){super({id:t}),this.useMatch=n=>gt({select:n?.select,from:this.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>gt({from:this.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>ns({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useParams=n=>ts({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useLoaderDeps=n=>es({...n,from:this.id,strict:!1}),this.useLoaderData=n=>Jo({...n,from:this.id,strict:!1}),this.useNavigate=()=>{const n=We();return Rn({from:n.routesById[this.id].fullPath})},this.notFound=n=>uu({routeId:this.id,...n}),this.Link=M.forwardRef((n,r)=>{const s=We().routesById[this.id].fullPath;return h.jsx(Pt,{ref:r,from:s,...n})})}}let Km=class extends yu{constructor(t){super(t),this.useMatch=n=>gt({select:n?.select,from:this.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>gt({...n,from:this.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>ns({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useParams=n=>ts({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useLoaderDeps=n=>es({...n,from:this.id}),this.useLoaderData=n=>Jo({...n,from:this.id}),this.useNavigate=()=>Rn({from:this.fullPath}),this.Link=M.forwardRef((n,r)=>h.jsx(Pt,{ref:r,from:this.fullPath,...n})),this.$$typeof=Symbol.for("react.memo")}};function Le(e){return new Km(e)}class Gm extends Tm{constructor(t){super(t),this.useMatch=n=>gt({select:n?.select,from:this.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>gt({...n,from:this.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>ns({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useParams=n=>ts({select:n?.select,structuralSharing:n?.structuralSharing,from:this.id}),this.useLoaderDeps=n=>es({...n,from:this.id}),this.useLoaderData=n=>Jo({...n,from:this.id}),this.useNavigate=()=>Rn({from:this.fullPath}),this.Link=M.forwardRef((n,r)=>h.jsx(Pt,{ref:r,from:this.fullPath,...n})),this.$$typeof=Symbol.for("react.memo")}}function Qm(e){return new Gm(e)}function wc(e){return typeof e=="object"?new Ec(e,{silent:!0}).createRoute(e):new Ec(e,{silent:!0}).createRoute}class Ec{constructor(t,n){this.path=t,this.createRoute=r=>{const o=Le(r);return o.isRoot=!1,o},this.silent=n?.silent}}class Sc{constructor(t){this.useMatch=n=>gt({select:n?.select,from:this.options.id,structuralSharing:n?.structuralSharing}),this.useRouteContext=n=>gt({from:this.options.id,select:r=>n?.select?n.select(r.context):r.context}),this.useSearch=n=>ns({select:n?.select,structuralSharing:n?.structuralSharing,from:this.options.id}),this.useParams=n=>ts({select:n?.select,structuralSharing:n?.structuralSharing,from:this.options.id}),this.useLoaderDeps=n=>es({...n,from:this.options.id}),this.useLoaderData=n=>Jo({...n,from:this.options.id}),this.useNavigate=()=>{const n=We();return Rn({from:n.routesById[this.options.id].fullPath})},this.options=t,this.$$typeof=Symbol.for("react.memo")}}function Rc(e){return typeof e=="object"?new Sc(e):t=>new Sc({id:e,...t})}function Ge(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,O1(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(xc)xc(a());else throw a();return c.createElement(r,u)};return i.preload=a,i}function Ym(){const e=We(),t=c.useRef({router:e,mounted:!1}),[n,r]=c.useState(!1),{hasPendingMatches:o,isLoading:s}=it({select:d=>({isLoading:d.isLoading,hasPendingMatches:d.matches.some(p=>p.status==="pending")}),structuralSharing:!0}),a=ks(s),i=s||n||o,l=ks(i),u=s||o,f=ks(u);return e.startTransition=d=>{r(!0),c.startTransition(()=>{d(),r(!1)})},c.useEffect(()=>{const d=e.history.subscribe(e.load),p=e.buildLocation({to:e.latestLocation.pathname,search:!0,params:!0,hash:!0,state:!0,_includeValidateSearch:!0});return Xt(e.latestLocation.publicHref)!==Xt(p.publicHref)&&e.commitLocation({...p,replace:!0}),()=>{d()}},[e,e.history]),to(()=>{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]),to(()=>{a&&!s&&e.emit({type:"onLoad",...fn(e.state)})},[a,e,s]),to(()=>{f&&!u&&e.emit({type:"onBeforeRouteMount",...fn(e.state)})},[u,f,e]),to(()=>{if(l&&!i){const d=fn(e.state);e.emit({type:"onResolved",...d}),e.__store.setState(p=>({...p,status:"idle",resolvedLocation:p.location})),d.hrefChanged&&rm(e)}},[i,l,e]),null}function Xm(e){const t=it({select:n=>`not-found-${n.location.pathname}-${n.status}`});return h.jsx(oi,{getResetKey:()=>t,onCatch:(n,r)=>{if(et(n))e.onCatch?.(n,r);else throw n},errorComponent:({error:n})=>{if(et(n))return e.fallback?.(n);throw n},children:e.children})}function Jm(){return h.jsx("p",{children:"Not Found"})}function Fn(e){return h.jsx(h.Fragment,{children:e.children})}function wu(e,t,n){return t.options.notFoundComponent?h.jsx(t.options.notFoundComponent,{...n}):e.options.defaultNotFoundComponent?h.jsx(e.options.defaultNotFoundComponent,{...n}):h.jsx(Jm,{})}function eg(){return We().isScrollRestoring,null}const Eu=c.memo(function({matchId:t}){const n=We(),r=it({select:g=>{const y=g.matches.findIndex(x=>x.id===t),b=g.matches[y];return en(b),{routeId:b.routeId,ssr:b.ssr,_displayPending:b._displayPending,resetKey:g.loadedAt,parentRouteId:g.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,f=r.ssr===!1||r.ssr==="data-only",d=(!o.isRoot||o.options.wrapInSuspense||f)&&(o.options.wrapInSuspense??s??(o.options.errorComponent?.preload||f))?c.Suspense:Fn,p=i?oi:Fn,m=u?Xm:Fn,v=o.isRoot?o.options.shellComponent??Fn:Fn;return h.jsxs(v,{children:[h.jsx(Xo.Provider,{value:t,children:h.jsx(d,{fallback:a,children:h.jsx(p,{getResetKey:()=>r.resetKey,errorComponent:i||si,onCatch:(g,y)=>{if(et(g))throw g;l?.(g,y)},children:h.jsx(m,{fallback:g=>{if(!u||g.routeId&&g.routeId!==r.routeId||!g.routeId&&!o.isRoot)throw g;return c.createElement(u,g)},children:f||r._displayPending?h.jsx(Om,{fallback:a,children:h.jsx(Cc,{matchId:t})}):h.jsx(Cc,{matchId:t})})})})}),r.parentRouteId===ft&&n.options.scrollRestoration?h.jsxs(h.Fragment,{children:[h.jsx(tg,{}),h.jsx(eg,{})]}):null]})});function tg(){const e=We(),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",...fn(e.state)}),t.current=e.latestLocation)}},e.latestLocation.state.__TSR_key)}const Cc=c.memo(function({matchId:t}){const n=We(),{match:r,key:o,routeId:s}=it({select:l=>{const u=l.matches.find(v=>v.id===t),f=u.routeId,p=(n.routesById[f].options.remountDeps??n.options.defaultRemountDeps)?.({routeId:f,loaderDeps:u.loaderDeps,params:u._strictParams,search:u._strictSearch});return{key:p?JSON.stringify(p):void 0,routeId:f,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(Su,{})},[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 f=Zn();u._nonReactive.minPendingPromise=f,setTimeout(()=>{f.resolve(),u._nonReactive.minPendingPromise=void 0},l)}}throw n.getMatch(r.id)?._nonReactive.loadPromise}if(r.status==="notFound")return en(et(r.error)),wu(n,a,r.error);if(r.status==="redirected")throw en(at(r.error)),n.getMatch(r.id)?._nonReactive.loadPromise;if(r.status==="error")throw r.error;return i}),Su=c.memo(function(){const t=We(),n=c.useContext(Xo),r=it({select:u=>u.matches.find(f=>f.id===n)?.routeId}),o=t.routesById[r],s=it({select:u=>{const d=u.matches.find(p=>p.id===n);return en(d),d.globalNotFound}}),a=it({select:u=>{const f=u.matches,d=f.findIndex(p=>p.id===n);return f[d+1]?.id}}),i=t.options.defaultPendingComponent?h.jsx(t.options.defaultPendingComponent,{}):null;if(s)return wu(t,o,void 0);if(!a)return null;const l=h.jsx(Eu,{matchId:a});return r===ft?h.jsx(c.Suspense,{fallback:i,children:l}):l});function ng(){const e=We(),n=e.routesById[ft].options.pendingComponent??e.options.defaultPendingComponent,r=n?h.jsx(n,{}):null,o=typeof document<"u"&&e.ssr?Fn:c.Suspense,s=h.jsxs(o,{fallback:r,children:[h.jsx(Ym,{}),h.jsx(rg,{})]});return e.options.InnerWrap?h.jsx(e.options.InnerWrap,{children:s}):s}function rg(){const e=We(),t=it({select:o=>o.matches[0]?.id}),n=it({select:o=>o.loadedAt}),r=t?h.jsx(Eu,{matchId:t}):null;return h.jsx(Xo.Provider,{value:t,children:e.options.disableGlobalCatchBoundary?r:h.jsx(oi,{getResetKey:()=>n,errorComponent:si,onCatch:void 0,children:r})})}const og=e=>new sg(e);class sg extends ym{constructor(t){super(t)}}typeof globalThis<"u"?(globalThis.createFileRoute=wc,globalThis.createLazyFileRoute=Rc):typeof window<"u"&&(window.createFileRoute=wc,window.createLazyFileRoute=Rc);function ag({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(xu.Provider,{value:e,children:t});return e.options.Wrap?h.jsx(e.options.Wrap,{children:r}):r}function ig({router:e,...t}){return h.jsx(ag,{router:e,...t,children:h.jsx(ng,{})})}function rs(e){return it({select:t=>e?.select?e.select(t.location):t.location})}var Gn=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(){}},cg={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},lg=class{#e=cg;#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)}},ln=new lg;function ug(e){setTimeout(e,0)}var vn=typeof window>"u"||"Deno"in globalThis;function ze(){}function dg(e,t){return typeof e=="function"?e(t):e}function ha(e){return typeof e=="number"&&e>=0&&e!==1/0}function Ru(e,t){return Math.max(e+(t||0)-Date.now(),0)}function Jt(e,t){return typeof e=="function"?e(t):e}function ht(e,t){return typeof e=="function"?e(t):e}function Ac(e,t){const{type:n="all",exact:r,fetchStatus:o,predicate:s,queryKey:a,stale:i}=e;if(a){if(r){if(t.queryHash!==ai(a,t.options))return!1}else if(!Ar(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 Tc(e,t){const{exact:n,status:r,predicate:o,mutationKey:s}=e;if(s){if(!t.options.mutationKey)return!1;if(n){if(yn(t.options.mutationKey)!==yn(s))return!1}else if(!Ar(t.options.mutationKey,s))return!1}return!(r&&t.state.status!==r||o&&!o(t))}function ai(e,t){return(t?.queryKeyHashFn||yn)(e)}function yn(e){return JSON.stringify(e,(t,n)=>pa(n)?Object.keys(n).sort().reduce((r,o)=>(r[o]=n[o],r),{}):n)}function Ar(e,t){return e===t?!0:typeof e!=typeof t?!1:e&&t&&typeof e=="object"&&typeof t=="object"?Object.keys(t).every(n=>Ar(e[n],t[n])):!1}var fg=Object.prototype.hasOwnProperty;function Cu(e,t,n=0){if(e===t)return e;if(n>500)return t;const r=Pc(e)&&Pc(t);if(!r&&!(pa(e)&&pa(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 f=0;f<i;f++){const d=r?f:a[f],p=e[d],m=t[d];if(p===m){l[d]=p,(r?f<s:fg.call(e,d))&&u++;continue}if(p===null||m===null||typeof p!="object"||typeof m!="object"){l[d]=m;continue}const v=Cu(p,m,n+1);l[d]=v,v===p&&u++}return s===i&&u===s?e:l}function Oo(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 Pc(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function pa(e){if(!Mc(e))return!1;const t=e.constructor;if(t===void 0)return!0;const n=t.prototype;return!(!Mc(n)||!n.hasOwnProperty("isPrototypeOf")||Object.getPrototypeOf(e)!==Object.prototype)}function Mc(e){return Object.prototype.toString.call(e)==="[object Object]"}function hg(e){return new Promise(t=>{ln.setTimeout(t,e)})}function ma(e,t,n){return typeof n.structuralSharing=="function"?n.structuralSharing(e,t):n.structuralSharing!==!1?Cu(e,t):t}function pg(e,t,n=0){const r=[...e,t];return n&&r.length>n?r.slice(1):r}function mg(e,t,n=0){const r=[t,...e];return n&&r.length>n?r.slice(0,-1):r}var ii=Symbol();function Au(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:!e.queryFn||e.queryFn===ii?()=>Promise.reject(new Error(`Missing queryFn: '${e.queryHash}'`)):e.queryFn}function ci(e,t){return typeof e=="function"?e(...t):!!e}function gg(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 vg=class extends Gn{#e;#t;#n;constructor(){super(),this.#n=e=>{if(!vn&&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"}},li=new vg;function ga(){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 yg=ug;function bg(){let e=[],t=0,n=i=>{i()},r=i=>{i()},o=yg;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 _e=bg(),xg=class extends Gn{#e=!0;#t;#n;constructor(){super(),this.#n=e=>{if(!vn&&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}},Io=new xg;function wg(e){return Math.min(1e3*2**e,3e4)}function Tu(e){return(e??"online")==="online"?Io.isOnline():!0}var va=class extends Error{constructor(e){super("CancelledError"),this.revert=e?.revert,this.silent=e?.silent}};function Pu(e){let t=!1,n=0,r;const o=ga(),s=()=>o.status!=="pending",a=g=>{if(!s()){const y=new va(g);p(y),e.onCancel?.(y)}},i=()=>{t=!0},l=()=>{t=!1},u=()=>li.isFocused()&&(e.networkMode==="always"||Io.isOnline())&&e.canRun(),f=()=>Tu(e.networkMode)&&e.canRun(),d=g=>{s()||(r?.(),o.resolve(g))},p=g=>{s()||(r?.(),o.reject(g))},m=()=>new Promise(g=>{r=y=>{(s()||u())&&g(y)},e.onPause?.()}).then(()=>{r=void 0,s()||e.onContinue?.()}),v=()=>{if(s())return;let g;const y=n===0?e.initialPromise:void 0;try{g=y??e.fn()}catch(b){g=Promise.reject(b)}Promise.resolve(g).then(d).catch(b=>{if(s())return;const x=e.retry??(vn?0:3),w=e.retryDelay??wg,E=typeof w=="function"?w(n,b):w,C=x===!0||typeof x=="number"&&n<x||typeof x=="function"&&x(n,b);if(t||!C){p(b);return}n++,e.onFail?.(n,b),hg(E).then(()=>u()?void 0:m()).then(()=>{t?p(b):v()})})};return{promise:o,status:()=>o.status,cancel:a,continue:()=>(r?.(),o),cancelRetry:i,continueRetry:l,canStart:f,start:()=>(f()?v():m().then(v),o)}}var Mu=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),ha(this.gcTime)&&(this.#e=ln.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(vn?1/0:300*1e3))}clearGcTimeout(){this.#e&&(ln.clearTimeout(this.#e),this.#e=void 0)}},Eg=class extends Mu{#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=Nc(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=Nc(this.options);t.data!==void 0&&(this.setState(_c(t.data,t.dataUpdatedAt)),this.#e=t)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus==="idle"&&this.#n.remove(this)}setData(e,t){const n=ma(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(ze).catch(ze):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}reset(){this.destroy(),this.setState(this.#e)}isActive(){return this.observers.some(e=>ht(e.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===ii||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:!Ru(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=Au(this.options,t),u=(()=>{const f={client:this.#o,queryKey:this.queryKey,meta:this.meta};return r(f),f})();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=Pu({initialPromise:t?.initialPromise,fn:a.fetchFn,onCancel:i=>{i instanceof va&&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 va){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,..._u(n.data,this.options),fetchMeta:e.meta??null};case"success":const r={...n,..._c(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),_e.batch(()=>{this.observers.forEach(n=>{n.onQueryUpdate()}),this.#n.notify({query:this,type:"updated",action:e})})}};function _u(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:Tu(t.networkMode)?"fetching":"paused",...e===void 0&&{error:null,status:"pending"}}}function _c(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:"success"}}function Nc(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 Nu=class extends Gn{constructor(e,t){super(),this.options=t,this.#e=e,this.#s=null,this.#i=ga(),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),Oc(this.#t,this.options)?this.#d():this.updateResult(),this.#b())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return ya(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return ya(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#x(),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 ht(this.options.enabled,this.#t)!="boolean")throw new Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#E(),this.#t.setOptions(this.options),t._defaulted&&!Oo(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#t,observer:this});const r=this.hasListeners();r&&Ic(this.#t,n,this.options,t)&&this.#d(),this.updateResult(),r&&(this.#t!==n||ht(this.options.enabled,this.#t)!==ht(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||ht(this.options.enabled,this.#t)!==ht(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 Rg(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.#E();let t=this.#t.fetch(this.options,e);return e?.throwOnError||(t=t.catch(ze)),t}#g(){this.#x();const e=Jt(this.options.staleTime,this.#t);if(vn||this.#o.isStale||!ha(e))return;const n=Ru(this.#o.dataUpdatedAt,e)+1;this.#l=ln.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,!(vn||ht(this.options.enabled,this.#t)===!1||!ha(this.#c)||this.#c===0)&&(this.#u=ln.setInterval(()=>{(this.options.refetchIntervalInBackground||li.isFocused())&&this.#d()},this.#c))}#b(){this.#g(),this.#y(this.#v())}#x(){this.#l&&(ln.clearTimeout(this.#l),this.#l=void 0)}#w(){this.#u&&(ln.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 f={...u},d=!1,p;if(t._optimisticResults){const S=this.hasListeners(),N=!S&&Oc(e,t),I=S&&Ic(e,n,t,r);(N||I)&&(f={...f,..._u(u.data,e.options)}),t._optimisticResults==="isRestoring"&&(f.fetchStatus="idle")}let{error:m,errorUpdatedAt:v,status:g}=f;p=f.data;let y=!1;if(t.placeholderData!==void 0&&p===void 0&&g==="pending"){let S;o?.isPlaceholderData&&t.placeholderData===a?.placeholderData?(S=o.data,y=!0):S=typeof t.placeholderData=="function"?t.placeholderData(this.#h?.state.data,this.#h):t.placeholderData,S!==void 0&&(g="success",p=ma(o?.data,S,t),d=!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=ma(o?.data,p,t),this.#f=p,this.#s=null}catch(S){this.#s=S}this.#s&&(m=this.#s,p=this.#f,v=Date.now(),g="error");const b=f.fetchStatus==="fetching",x=g==="pending",w=g==="error",E=x&&b,C=p!==void 0,A={status:g,fetchStatus:f.fetchStatus,isPending:x,isSuccess:g==="success",isError:w,isInitialLoading:E,isLoading:E,data:p,dataUpdatedAt:f.dataUpdatedAt,error:m,errorUpdatedAt:v,failureCount:f.fetchFailureCount,failureReason:f.fetchFailureReason,errorUpdateCount:f.errorUpdateCount,isFetched:f.dataUpdateCount>0||f.errorUpdateCount>0,isFetchedAfterMount:f.dataUpdateCount>l.dataUpdateCount||f.errorUpdateCount>l.errorUpdateCount,isFetching:b,isRefetching:b&&!x,isLoadingError:w&&!C,isPaused:f.fetchStatus==="paused",isPlaceholderData:d,isRefetchError:w&&C,isStale:ui(e,t),refetch:this.refetch,promise:this.#i,isEnabled:ht(t.enabled,e)!==!1};if(this.options.experimental_prefetchInRender){const S=A.data!==void 0,N=A.status==="error"&&!S,I=q=>{N?q.reject(A.error):S&&q.resolve(A.data)},P=()=>{const q=this.#i=A.promise=ga();I(q)},H=this.#i;switch(H.status){case"pending":e.queryHash===n.queryHash&&I(H);break;case"fulfilled":(N||A.data!==H.value)&&P();break;case"rejected":(!N||A.error!==H.reason)&&P();break}}return A}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),Oo(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.#S({listeners:n()})}#E(){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.#b()}#S(e){_e.batch(()=>{e.listeners&&this.listeners.forEach(t=>{t(this.#o)}),this.#e.getQueryCache().notify({query:this.#t,type:"observerResultsUpdated"})})}};function Sg(e,t){return ht(t.enabled,e)!==!1&&e.state.data===void 0&&!(e.state.status==="error"&&t.retryOnMount===!1)}function Oc(e,t){return Sg(e,t)||e.state.data!==void 0&&ya(e,t,t.refetchOnMount)}function ya(e,t,n){if(ht(t.enabled,e)!==!1&&Jt(t.staleTime,e)!=="static"){const r=typeof n=="function"?n(e):n;return r==="always"||r!==!1&&ui(e,t)}return!1}function Ic(e,t,n,r){return(e!==t||ht(r.enabled,e)===!1)&&(!n.suspense||e.state.status!=="error")&&ui(e,n)}function ui(e,t){return ht(t.enabled,e)!==!1&&e.isStaleByTime(Jt(t.staleTime,e))}function Rg(e,t){return!Oo(e.getCurrentResult(),t)}function Lc(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 f=!1;const d=v=>{gg(v,()=>t.signal,()=>f=!0)},p=Au(t.options,t.fetchOptions),m=async(v,g,y)=>{if(f)return Promise.reject();if(g==null&&v.pages.length)return Promise.resolve(v);const x=(()=>{const O={client:t.client,queryKey:t.queryKey,pageParam:g,direction:y?"backward":"forward",meta:t.options.meta};return d(O),O})(),w=await p(x),{maxPages:E}=t.options,C=y?mg:pg;return{pages:C(v.pages,w,E),pageParams:C(v.pageParams,g,E)}};if(o&&s.length){const v=o==="backward",g=v?Cg:Dc,y={pages:s,pageParams:a},b=g(r,y);i=await m(y,b,v)}else{const v=e??s.length;do{const g=l===0?a[0]??r.initialPageParam:Dc(r,i);if(l>0&&g==null)break;i=await m(i,g),l++}while(l<v)}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 Dc(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 Cg(e,{pages:t,pageParams:n}){return t.length>0?e.getPreviousPageParam?.(t[0],t,n[0],n):void 0}var Ag=class extends Mu{#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||Ou(),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=Pu({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),_e.batch(()=>{this.#t.forEach(n=>{n.onMutationUpdate(e)}),this.#n.notify({mutation:this,type:"updated",action:e})})}};function Ou(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}var Tg=class extends Gn{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 Ag({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=no(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=no(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=no(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=no(e);return typeof t=="string"?this.#t.get(t)?.find(r=>r!==e&&r.state.isPaused)?.continue()??Promise.resolve():Promise.resolve()}clear(){_e.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=>Tc(t,n))}findAll(e={}){return this.getAll().filter(t=>Tc(e,t))}notify(e){_e.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){const e=this.getAll().filter(t=>t.state.isPaused);return _e.batch(()=>Promise.all(e.map(t=>t.continue().catch(ze))))}};function no(e){return e.options.scope?.id}var Pg=class extends Gn{#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),Oo(this.options,n)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#n,observer:this}),n?.mutationKey&&this.options.mutationKey&&yn(n.mutationKey)!==yn(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??Ou();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){_e.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)})})}},Mg=class extends Gn{constructor(e={}){super(),this.config=e,this.#e=new Map}#e;build(e,t,n){const r=t.queryKey,o=t.queryHash??ai(r,t);let s=this.get(o);return s||(s=new Eg({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(){_e.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=>Ac(t,n))}findAll(e={}){const t=this.getAll();return Object.keys(e).length>0?t.filter(n=>Ac(e,n)):t}notify(e){_e.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){_e.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){_e.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}},_g=class{#e;#t;#n;#o;#r;#a;#i;#s;constructor(e={}){this.#e=e.queryCache||new Mg,this.#t=e.mutationCache||new Tg,this.#n=e.defaultOptions||{},this.#o=new Map,this.#r=new Map,this.#a=0}mount(){this.#a++,this.#a===1&&(this.#i=li.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#s=Io.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=dg(t,s);if(a!==void 0)return this.#e.build(this,r).setData(a,{...n,manual:!0})}setQueriesData(e,t,n){return _e.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;_e.batch(()=>{t.findAll(e).forEach(n=>{t.remove(n)})})}resetQueries(e,t){const n=this.#e;return _e.batch(()=>(n.findAll(e).forEach(r=>{r.reset()}),this.refetchQueries({type:"active",...e},t)))}cancelQueries(e,t={}){const n={revert:!0,...t},r=_e.batch(()=>this.#e.findAll(e).map(o=>o.cancel(n)));return Promise.all(r).then(ze).catch(ze)}invalidateQueries(e,t={}){return _e.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=_e.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(ze)),o.state.fetchStatus==="paused"?Promise.resolve():s}));return Promise.all(r).then(ze)}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(ze).catch(ze)}fetchInfiniteQuery(e){return e.behavior=Lc(e.pages),this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(ze).catch(ze)}ensureInfiniteQueryData(e){return e.behavior=Lc(e.pages),this.ensureQueryData(e)}resumePausedMutations(){return Io.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(yn(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){const t=[...this.#o.values()],n={};return t.forEach(r=>{Ar(e,r.queryKey)&&Object.assign(n,r.defaultOptions)}),n}setMutationDefaults(e,t){this.#r.set(yn(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){const t=[...this.#r.values()],n={};return t.forEach(r=>{Ar(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=ai(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===ii&&(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()}},Iu=c.createContext(void 0),Qn=e=>{const t=c.useContext(Iu);if(!t)throw new Error("No QueryClient set, use QueryClientProvider to set one");return t},Ng=({client:e,children:t})=>(c.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),h.jsx(Iu.Provider,{value:e,children:t})),Lu=c.createContext(!1),Og=()=>c.useContext(Lu);Lu.Provider;function Du(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}var ju=c.createContext(Du()),Ig=()=>c.useContext(ju),Lg=({children:e})=>{const[t]=c.useState(()=>Du());return h.jsx(ju.Provider,{value:t,children:typeof e=="function"?e(t):e})},Dg=(e,t,n)=>{const r=n?.state.error&&typeof e.throwOnError=="function"?ci(e.throwOnError,[n.state.error,n]):e.throwOnError;(e.suspense||e.experimental_prefetchInRender||r)&&(t.isReset()||(e.retryOnMount=!1))},jg=e=>{c.useEffect(()=>{e.clearReset()},[e])},Fg=({result:e,errorResetBoundary:t,throwOnError:n,query:r,suspense:o})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(o&&e.data===void 0||ci(n,[e.error,r])),kg=(e,t)=>t.state.data===void 0,$g=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))}},Hg=(e,t)=>e.isLoading&&e.isFetching&&!t,Bg=(e,t)=>e?.suspense&&t.isPending,jc=(e,t,n)=>t.fetchOptimistic(e).catch(()=>{n.clearReset()});function Fu(e,t,n){const r=Og(),o=Ig(),s=Qn(),a=s.defaultQueryOptions(e);s.getDefaultOptions().queries?._experimental_beforeQuery?.(a);const i=s.getQueryCache().get(a.queryHash);a._optimisticResults=r?"isRestoring":"optimistic",$g(a),Dg(a,o,i),jg(o);const l=!s.getQueryCache().get(a.queryHash),[u]=c.useState(()=>new t(s,a)),f=u.getOptimisticResult(a),d=!r&&e.subscribed!==!1;if(c.useSyncExternalStore(c.useCallback(p=>{const m=d?u.subscribe(_e.batchCalls(p)):ze;return u.updateResult(),m},[u,d]),()=>u.getCurrentResult(),()=>u.getCurrentResult()),c.useEffect(()=>{u.setOptions(a)},[a,u]),Bg(a,f))throw jc(a,u,o);if(Fg({result:f,errorResetBoundary:o,throwOnError:a.throwOnError,query:i,suspense:a.suspense}))throw f.error;return s.getDefaultOptions().queries?._experimental_afterQuery?.(a,f),a.experimental_prefetchInRender&&!vn&&Hg(f,r)&&(l?jc(a,u,o):i?.promise)?.catch(ze).finally(()=>{u.updateResult()}),a.notifyOnChangeProps?f:u.trackResult(f)}function Vg(e,t){return Fu(e,Nu)}function ku(e,t){return Fu({...e,enabled:!0,suspense:!0,throwOnError:kg,placeholderData:void 0},Nu)}function Zg(e,t){const n=Qn(),[r]=c.useState(()=>new Pg(n,e));c.useEffect(()=>{r.setOptions(e)},[r,e]);const o=c.useSyncExternalStore(c.useCallback(a=>r.subscribe(_e.batchCalls(a)),[r]),()=>r.getCurrentResult(),()=>r.getCurrentResult()),s=c.useCallback((a,i)=>{r.mutate(a,i).catch(ze)},[r]);if(o.error&&ci(r.options.throwOnError,[o.error]))throw o.error;return{...o,mutate:s,mutateAsync:o.mutate}}var Hs={confirmLabel:"OK",dismissible:!0},Fc={confirmLabel:"Continue",cancelLabel:"Cancel",tone:"default",dismissible:!0},Ug=e=>typeof e=="string"?{title:e,...Hs}:{...Hs,...e,dismissible:e.dismissible??Hs.dismissible},zg=e=>typeof e=="string"?{title:e,...Fc}:{...Fc,...e,dismissible:e.dismissible??e.tone!=="danger"},qg=()=>{let e={current:null};const t=new Set,n=()=>{t.forEach(l=>l())},r=l=>{e=l,n()},o=()=>e,s=()=>{const l=e.current;!l||l.kind!=="alert"||(r({current:null}),l.resolver())},a=l=>{const u=e.current;!u||u.kind!=="confirm"||(r({current:null}),u.resolver(l))},i=()=>{const l=e.current;if(l){if(l.kind==="confirm"){a(!1);return}s()}};return{subscribe:l=>(t.add(l),()=>{t.delete(l)}),getSnapshot:o,alert:l=>{const u=Ug(l);return i(),new Promise(f=>{r({current:{kind:"alert",options:u,resolver:f}})})},confirm:l=>{const u=zg(l);return i(),new Promise(f=>{r({current:{kind:"confirm",options:u,resolver:f}})})},resolveAlert:s,resolveConfirm:a,dismiss:i,reset:()=>{i()}}},$u=c.createContext(null),Wg=()=>{const e=c.useRef();return e.current||(e.current=qg()),e.current},Kg=({children:e,components:t})=>{const n=Wg(),r=c.useSyncExternalStore(n.subscribe,n.getSnapshot,n.getSnapshot);c.useEffect(()=>()=>{n.reset()},[n]);const o=n,s=r.current;return h.jsxs($u.Provider,{value:o,children:[e,s?.kind==="alert"&&h.jsx(t.Alert,{open:!0,options:s.options,onClose:n.resolveAlert}),s?.kind==="confirm"&&h.jsx(t.Confirm,{open:!0,options:s.options,onCancel:()=>n.resolveConfirm(!1),onConfirm:()=>n.resolveConfirm(!0)})]})},Gg=()=>{const e=c.useContext($u);if(!e)throw new Error("useModal must be used within ModalProvider");return e};function Qg(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 Nt(e,t=[]){let n=[];function r(s,a){const i=c.createContext(a),l=n.length;n=[...n,a];const u=d=>{const{scope:p,children:m,...v}=d,g=p?.[e]?.[l]||i,y=c.useMemo(()=>v,Object.values(v));return h.jsx(g.Provider,{value:y,children:m})};u.displayName=s+"Provider";function f(d,p){const m=p?.[e]?.[l]||i,v=c.useContext(m);if(v)return v;if(a!==void 0)return a;throw new Error(`\`${d}\` must be used within \`${s}\``)}return[u,f]}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,Yg(o,...t)]}function Yg(...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 d=l(s)[`__scope${u}`];return{...i,...d}},{});return c.useMemo(()=>({[`__scope${t.scopeName}`]:a}),[a])}};return n.scopeName=t.scopeName,n}function kc(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function Dr(...e){return t=>{let n=!1;const r=e.map(o=>{const s=kc(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():kc(e[o],null)}}}}function le(...e){return c.useCallback(Dr(...e),e)}function K(e,t,{checkForDefaultPrevented:n=!0}={}){return function(o){if(e?.(o),n===!1||!o.defaultPrevented)return t?.(o)}}var Be=globalThis?.document?c.useLayoutEffect:()=>{},Xg=Ko[" useId ".trim().toString()]||(()=>{}),Jg=0;function Tt(e){const[t,n]=c.useState(Xg());return Be(()=>{n(r=>r??String(Jg++))},[e]),t?`radix-${t}`:""}var e2=Ko[" useInsertionEffect ".trim().toString()]||Be;function Vt({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){const[o,s,a]=t2({defaultProp:t,onChange:n}),i=e!==void 0,l=i?e:o;{const f=c.useRef(e!==void 0);c.useEffect(()=>{const d=f.current;d!==i&&console.warn(`${r} is changing from ${d?"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.`),f.current=i},[i,r])}const u=c.useCallback(f=>{if(i){const d=n2(f)?f(e):f;d!==e&&a.current?.(d)}else s(f)},[i,e,s,a]);return[l,u]}function t2({defaultProp:e,onChange:t}){const[n,r]=c.useState(e),o=c.useRef(n),s=c.useRef(t);return e2(()=>{s.current=t},[t]),c.useEffect(()=>{o.current!==n&&(s.current?.(n),o.current=n)},[n,o]),[n,r,s]}function n2(e){return typeof e=="function"}function zn(e){const t=r2(e),n=c.forwardRef((r,o)=>{const{children:s,...a}=r,i=c.Children.toArray(s),l=i.find(o2);if(l){const u=l.props.children,f=i.map(d=>d===l?c.Children.count(u)>1?c.Children.only(null):c.isValidElement(u)?u.props.children:null:d);return h.jsx(t,{...a,ref:o,children:c.isValidElement(u)?c.cloneElement(u,void 0,f):null})}return h.jsx(t,{...a,ref:o,children:s})});return n.displayName=`${e}.Slot`,n}function r2(e){const t=c.forwardRef((n,r)=>{const{children:o,...s}=n;if(c.isValidElement(o)){const a=a2(o),i=s2(s,o.props);return o.type!==c.Fragment&&(i.ref=r?Dr(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 Hu=Symbol("radix.slottable");function Bu(e){const t=({children:n})=>h.jsx(h.Fragment,{children:n});return t.displayName=`${e}.Slottable`,t.__radixId=Hu,t}function o2(e){return c.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===Hu}function s2(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 a2(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 i2=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],re=i2.reduce((e,t)=>{const n=zn(`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 Vu(e,t){e&&Ht.flushSync(()=>e.dispatchEvent(t))}function Mt(e){const t=c.useRef(e);return c.useEffect(()=>{t.current=e}),c.useMemo(()=>(...n)=>t.current?.(...n),[])}function c2(e,t=globalThis?.document){const n=Mt(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 l2="DismissableLayer",ba="dismissableLayer.update",u2="dismissableLayer.pointerDownOutside",d2="dismissableLayer.focusOutside",$c,Zu=c.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),jr=c.forwardRef((e,t)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:s,onInteractOutside:a,onDismiss:i,...l}=e,u=c.useContext(Zu),[f,d]=c.useState(null),p=f?.ownerDocument??globalThis?.document,[,m]=c.useState({}),v=le(t,A=>d(A)),g=Array.from(u.layers),[y]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),b=g.indexOf(y),x=f?g.indexOf(f):-1,w=u.layersWithOutsidePointerEventsDisabled.size>0,E=x>=b,C=p2(A=>{const S=A.target,N=[...u.branches].some(I=>I.contains(S));!E||N||(o?.(A),a?.(A),A.defaultPrevented||i?.())},p),O=m2(A=>{const S=A.target;[...u.branches].some(I=>I.contains(S))||(s?.(A),a?.(A),A.defaultPrevented||i?.())},p);return c2(A=>{x===u.layers.size-1&&(r?.(A),!A.defaultPrevented&&i&&(A.preventDefault(),i()))},p),c.useEffect(()=>{if(f)return n&&(u.layersWithOutsidePointerEventsDisabled.size===0&&($c=p.body.style.pointerEvents,p.body.style.pointerEvents="none"),u.layersWithOutsidePointerEventsDisabled.add(f)),u.layers.add(f),Hc(),()=>{n&&u.layersWithOutsidePointerEventsDisabled.size===1&&(p.body.style.pointerEvents=$c)}},[f,p,n,u]),c.useEffect(()=>()=>{f&&(u.layers.delete(f),u.layersWithOutsidePointerEventsDisabled.delete(f),Hc())},[f,u]),c.useEffect(()=>{const A=()=>m({});return document.addEventListener(ba,A),()=>document.removeEventListener(ba,A)},[]),h.jsx(re.div,{...l,ref:v,style:{pointerEvents:w?E?"auto":"none":void 0,...e.style},onFocusCapture:K(e.onFocusCapture,O.onFocusCapture),onBlurCapture:K(e.onBlurCapture,O.onBlurCapture),onPointerDownCapture:K(e.onPointerDownCapture,C.onPointerDownCapture)})});jr.displayName=l2;var f2="DismissableLayerBranch",h2=c.forwardRef((e,t)=>{const n=c.useContext(Zu),r=c.useRef(null),o=le(t,r);return c.useEffect(()=>{const s=r.current;if(s)return n.branches.add(s),()=>{n.branches.delete(s)}},[n.branches]),h.jsx(re.div,{...e,ref:o})});h2.displayName=f2;function p2(e,t=globalThis?.document){const n=Mt(e),r=c.useRef(!1),o=c.useRef(()=>{});return c.useEffect(()=>{const s=i=>{if(i.target&&!r.current){let l=function(){Uu(u2,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 m2(e,t=globalThis?.document){const n=Mt(e),r=c.useRef(!1);return c.useEffect(()=>{const o=s=>{s.target&&!r.current&&Uu(d2,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 Hc(){const e=new CustomEvent(ba);document.dispatchEvent(e)}function Uu(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?Vu(o,s):o.dispatchEvent(s)}var Bs="focusScope.autoFocusOnMount",Vs="focusScope.autoFocusOnUnmount",Bc={bubbles:!1,cancelable:!0},g2="FocusScope",os=c.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:s,...a}=e,[i,l]=c.useState(null),u=Mt(o),f=Mt(s),d=c.useRef(null),p=le(t,g=>l(g)),m=c.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;c.useEffect(()=>{if(r){let g=function(w){if(m.paused||!i)return;const E=w.target;i.contains(E)?d.current=E:qt(d.current,{select:!0})},y=function(w){if(m.paused||!i)return;const E=w.relatedTarget;E!==null&&(i.contains(E)||qt(d.current,{select:!0}))},b=function(w){if(document.activeElement===document.body)for(const C of w)C.removedNodes.length>0&&qt(i)};document.addEventListener("focusin",g),document.addEventListener("focusout",y);const x=new MutationObserver(b);return i&&x.observe(i,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",g),document.removeEventListener("focusout",y),x.disconnect()}}},[r,i,m.paused]),c.useEffect(()=>{if(i){Zc.add(m);const g=document.activeElement;if(!i.contains(g)){const b=new CustomEvent(Bs,Bc);i.addEventListener(Bs,u),i.dispatchEvent(b),b.defaultPrevented||(v2(E2(zu(i)),{select:!0}),document.activeElement===g&&qt(i))}return()=>{i.removeEventListener(Bs,u),setTimeout(()=>{const b=new CustomEvent(Vs,Bc);i.addEventListener(Vs,f),i.dispatchEvent(b),b.defaultPrevented||qt(g??document.body,{select:!0}),i.removeEventListener(Vs,f),Zc.remove(m)},0)}}},[i,u,f,m]);const v=c.useCallback(g=>{if(!n&&!r||m.paused)return;const y=g.key==="Tab"&&!g.altKey&&!g.ctrlKey&&!g.metaKey,b=document.activeElement;if(y&&b){const x=g.currentTarget,[w,E]=y2(x);w&&E?!g.shiftKey&&b===E?(g.preventDefault(),n&&qt(w,{select:!0})):g.shiftKey&&b===w&&(g.preventDefault(),n&&qt(E,{select:!0})):b===x&&g.preventDefault()}},[n,r,m.paused]);return h.jsx(re.div,{tabIndex:-1,...a,ref:p,onKeyDown:v})});os.displayName=g2;function v2(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(qt(r,{select:t}),document.activeElement!==n)return}function y2(e){const t=zu(e),n=Vc(t,e),r=Vc(t.reverse(),e);return[n,r]}function zu(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 Vc(e,t){for(const n of e)if(!b2(n,{upTo:t}))return n}function b2(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 x2(e){return e instanceof HTMLInputElement&&"select"in e}function qt(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&x2(e)&&t&&e.select()}}var Zc=w2();function w2(){let e=[];return{add(t){const n=e[0];t!==n&&n?.pause(),e=Uc(e,t),e.unshift(t)},remove(t){e=Uc(e,t),e[0]?.resume()}}}function Uc(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function E2(e){return e.filter(t=>t.tagName!=="A")}var S2="Portal",Fr=c.forwardRef((e,t)=>{const{container:n,...r}=e,[o,s]=c.useState(!1);Be(()=>s(!0),[]);const a=n||o&&globalThis?.document?.body;return a?Jl.createPortal(h.jsx(re.div,{...r,ref:t}),a):null});Fr.displayName=S2;function R2(e,t){return c.useReducer((n,r)=>t[n][r]??n,e)}var Ot=e=>{const{present:t,children:n}=e,r=C2(t),o=typeof n=="function"?n({present:r.isPresent}):c.Children.only(n),s=le(r.ref,A2(o));return typeof n=="function"||r.isPresent?c.cloneElement(o,{ref:s}):null};Ot.displayName="Presence";function C2(e){const[t,n]=c.useState(),r=c.useRef(null),o=c.useRef(e),s=c.useRef("none"),a=e?"mounted":"unmounted",[i,l]=R2(a,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return c.useEffect(()=>{const u=ro(r.current);s.current=i==="mounted"?u:"none"},[i]),Be(()=>{const u=r.current,f=o.current;if(f!==e){const p=s.current,m=ro(u);e?l("MOUNT"):m==="none"||u?.display==="none"?l("UNMOUNT"):l(f&&p!==m?"ANIMATION_OUT":"UNMOUNT"),o.current=e}},[e,l]),Be(()=>{if(t){let u;const f=t.ownerDocument.defaultView??window,d=m=>{const g=ro(r.current).includes(CSS.escape(m.animationName));if(m.target===t&&g&&(l("ANIMATION_END"),!o.current)){const y=t.style.animationFillMode;t.style.animationFillMode="forwards",u=f.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=y)})}},p=m=>{m.target===t&&(s.current=ro(r.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{f.clearTimeout(u),t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(i),ref:c.useCallback(u=>{r.current=u?getComputedStyle(u):null,n(u)},[])}}function ro(e){return e?.animationName||"none"}function A2(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 Zs=0;function di(){c.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??zc()),document.body.insertAdjacentElement("beforeend",e[1]??zc()),Zs++,()=>{Zs===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),Zs--}},[])}function zc(){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 T2=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},On=new WeakMap,oo=new WeakMap,so={},Us=0,qu=function(e){return e&&(e.host||qu(e.parentNode))},P2=function(e,t){return t.map(function(n){if(e.contains(n))return n;var r=qu(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})},M2=function(e,t,n,r){var o=P2(t,Array.isArray(e)?e:[e]);so[n]||(so[n]=new WeakMap);var s=so[n],a=[],i=new Set,l=new Set(o),u=function(d){!d||i.has(d)||(i.add(d),u(d.parentNode))};o.forEach(u);var f=function(d){!d||l.has(d)||Array.prototype.forEach.call(d.children,function(p){if(i.has(p))f(p);else try{var m=p.getAttribute(r),v=m!==null&&m!=="false",g=(On.get(p)||0)+1,y=(s.get(p)||0)+1;On.set(p,g),s.set(p,y),a.push(p),g===1&&v&&oo.set(p,!0),y===1&&p.setAttribute(n,"true"),v||p.setAttribute(r,"true")}catch(b){console.error("aria-hidden: cannot operate on ",p,b)}})};return f(t),i.clear(),Us++,function(){a.forEach(function(d){var p=On.get(d)-1,m=s.get(d)-1;On.set(d,p),s.set(d,m),p||(oo.has(d)||d.removeAttribute(r),oo.delete(d)),m||d.removeAttribute(n)}),Us--,Us||(On=new WeakMap,On=new WeakMap,oo=new WeakMap,so={})}},fi=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=T2(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live], script"))),M2(r,o,n,"aria-hidden")):function(){return null}},ss="Dialog",[Wu,Ku]=Nt(ss),[_2,Et]=Wu(ss),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,f]=Vt({prop:r,defaultProp:o??!1,onChange:s,caller:ss});return h.jsx(_2,{scope:t,triggerRef:i,contentRef:l,contentId:Tt(),titleId:Tt(),descriptionId:Tt(),open:u,onOpenChange:f,onOpenToggle:c.useCallback(()=>f(d=>!d),[f]),modal:a,children:n})};Gu.displayName=ss;var Qu="DialogTrigger",Yu=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=Et(Qu,n),s=le(t,o.triggerRef);return h.jsx(re.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":mi(o.open),...r,ref:s,onClick:K(e.onClick,o.onOpenToggle)})});Yu.displayName=Qu;var hi="DialogPortal",[N2,Xu]=Wu(hi,{forceMount:void 0}),Ju=e=>{const{__scopeDialog:t,forceMount:n,children:r,container:o}=e,s=Et(hi,t);return h.jsx(N2,{scope:t,forceMount:n,children:c.Children.map(r,a=>h.jsx(Ot,{present:n||s.open,children:h.jsx(Fr,{asChild:!0,container:o,children:a})}))})};Ju.displayName=hi;var Lo="DialogOverlay",ed=c.forwardRef((e,t)=>{const n=Xu(Lo,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,s=Et(Lo,e.__scopeDialog);return s.modal?h.jsx(Ot,{present:r||s.open,children:h.jsx(I2,{...o,ref:t})}):null});ed.displayName=Lo;var O2=zn("DialogOverlay.RemoveScroll"),I2=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=Et(Lo,n);return h.jsx(Ga,{as:O2,allowPinchZoom:!0,shards:[o.contentRef],children:h.jsx(re.div,{"data-state":mi(o.open),...r,ref:t,style:{pointerEvents:"auto",...r.style}})})}),bn="DialogContent",td=c.forwardRef((e,t)=>{const n=Xu(bn,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,s=Et(bn,e.__scopeDialog);return h.jsx(Ot,{present:r||s.open,children:s.modal?h.jsx(L2,{...o,ref:t}):h.jsx(D2,{...o,ref:t})})});td.displayName=bn;var L2=c.forwardRef((e,t)=>{const n=Et(bn,e.__scopeDialog),r=c.useRef(null),o=le(t,n.contentRef,r);return c.useEffect(()=>{const s=r.current;if(s)return fi(s)},[]),h.jsx(nd,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:K(e.onCloseAutoFocus,s=>{s.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:K(e.onPointerDownOutside,s=>{const a=s.detail.originalEvent,i=a.button===0&&a.ctrlKey===!0;(a.button===2||i)&&s.preventDefault()}),onFocusOutside:K(e.onFocusOutside,s=>s.preventDefault())})}),D2=c.forwardRef((e,t)=>{const n=Et(bn,e.__scopeDialog),r=c.useRef(!1),o=c.useRef(!1);return h.jsx(nd,{...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()}})}),nd=c.forwardRef((e,t)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:s,...a}=e,i=Et(bn,n),l=c.useRef(null),u=le(t,l);return di(),h.jsxs(h.Fragment,{children:[h.jsx(os,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:s,children:h.jsx(jr,{role:"dialog",id:i.contentId,"aria-describedby":i.descriptionId,"aria-labelledby":i.titleId,"data-state":mi(i.open),...a,ref:u,onDismiss:()=>i.onOpenChange(!1)})}),h.jsxs(h.Fragment,{children:[h.jsx(F2,{titleId:i.titleId}),h.jsx($2,{contentRef:l,descriptionId:i.descriptionId})]})]})}),pi="DialogTitle",rd=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=Et(pi,n);return h.jsx(re.h2,{id:o.titleId,...r,ref:t})});rd.displayName=pi;var od="DialogDescription",sd=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=Et(od,n);return h.jsx(re.p,{id:o.descriptionId,...r,ref:t})});sd.displayName=od;var ad="DialogClose",id=c.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=Et(ad,n);return h.jsx(re.button,{type:"button",...r,ref:t,onClick:K(e.onClick,()=>o.onOpenChange(!1))})});id.displayName=ad;function mi(e){return e?"open":"closed"}var cd="DialogTitleWarning",[j2,ld]=Qg(cd,{contentName:bn,titleName:pi,docsSlug:"dialog"}),F2=({titleId:e})=>{const t=ld(cd),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},k2="DialogDescriptionWarning",$2=({contentRef:e,descriptionId:t})=>{const r=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${ld(k2).contentName}}.`;return c.useEffect(()=>{const o=e.current?.getAttribute("aria-describedby");t&&o&&(document.getElementById(t)||console.warn(r))},[r,e,t]),null},ud=Gu,H2=Yu,dd=Ju,fd=ed,hd=td,pd=rd,md=sd,gi=id,gd="AlertDialog",[B2]=Nt(gd,[Ku]),Zt=Ku(),vd=e=>{const{__scopeAlertDialog:t,...n}=e,r=Zt(t);return h.jsx(ud,{...r,...n,modal:!0})};vd.displayName=gd;var V2="AlertDialogTrigger",Z2=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,...r}=e,o=Zt(n);return h.jsx(H2,{...o,...r,ref:t})});Z2.displayName=V2;var U2="AlertDialogPortal",yd=e=>{const{__scopeAlertDialog:t,...n}=e,r=Zt(t);return h.jsx(dd,{...r,...n})};yd.displayName=U2;var z2="AlertDialogOverlay",bd=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,...r}=e,o=Zt(n);return h.jsx(fd,{...o,...r,ref:t})});bd.displayName=z2;var Hn="AlertDialogContent",[q2,W2]=B2(Hn),K2=Bu("AlertDialogContent"),xd=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,children:r,...o}=e,s=Zt(n),a=c.useRef(null),i=le(t,a),l=c.useRef(null);return h.jsx(j2,{contentName:Hn,titleName:wd,docsSlug:"alert-dialog",children:h.jsx(q2,{scope:n,cancelRef:l,children:h.jsxs(hd,{role:"alertdialog",...s,...o,ref:i,onOpenAutoFocus:K(o.onOpenAutoFocus,u=>{u.preventDefault(),l.current?.focus({preventScroll:!0})}),onPointerDownOutside:u=>u.preventDefault(),onInteractOutside:u=>u.preventDefault(),children:[h.jsx(K2,{children:r}),h.jsx(Q2,{contentRef:a})]})})})});xd.displayName=Hn;var wd="AlertDialogTitle",Ed=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,...r}=e,o=Zt(n);return h.jsx(pd,{...o,...r,ref:t})});Ed.displayName=wd;var Sd="AlertDialogDescription",Rd=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,...r}=e,o=Zt(n);return h.jsx(md,{...o,...r,ref:t})});Rd.displayName=Sd;var G2="AlertDialogAction",Cd=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,...r}=e,o=Zt(n);return h.jsx(gi,{...o,...r,ref:t})});Cd.displayName=G2;var Ad="AlertDialogCancel",Td=c.forwardRef((e,t)=>{const{__scopeAlertDialog:n,...r}=e,{cancelRef:o}=W2(Ad,n),s=Zt(n),a=le(t,o);return h.jsx(gi,{...s,...r,ref:a})});Td.displayName=Ad;var Q2=({contentRef:e})=>{const t=`\`${Hn}\` requires a description for the component to be accessible for screen reader users.
7
-
8
- You can add a description to the \`${Hn}\` by passing a \`${Sd}\` component as a child, which also benefits sighted users by adding visible context to the dialog.
9
-
10
- Alternatively, you can use your own component as a description by assigning it an \`id\` and passing the same value to the \`aria-describedby\` prop in \`${Hn}\`. If the description is confusing or duplicative for sighted users, you can use the \`@radix-ui/react-visually-hidden\` primitive as a wrapper around your description component.
11
-
12
- For more information, see https://radix-ui.com/primitives/docs/components/alert-dialog`;return c.useEffect(()=>{document.getElementById(e.current?.getAttribute("aria-describedby"))||console.warn(t)},[t,e]),null},Y2=vd,X2=yd,J2=bd,ev=xd,tv=Cd,nv=Td,rv=Ed,ov=Rd,Pd=Y2,Md=X2,_d=J2,Nd=ev,sv=nv,Od=tv,Id=rv,Ld=ov,zs={exports:{}};var qc;function av(){return qc||(qc=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(i)))}return s}function r(s){if(typeof s=="string"||typeof s=="number")return s;if(typeof s!="object")return"";if(Array.isArray(s))return n.apply(null,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,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})()})(zs)),zs.exports}var iv=av();const me=Kn(iv);var cv=Symbol.for("react.lazy"),Do=Ko[" use ".trim().toString()];function lv(e){return typeof e=="object"&&e!==null&&"then"in e}function Dd(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===cv&&"_payload"in e&&lv(e._payload)}function uv(e){const t=fv(e),n=c.forwardRef((r,o)=>{let{children:s,...a}=r;Dd(s)&&typeof Do=="function"&&(s=Do(s._payload));const i=c.Children.toArray(s),l=i.find(pv);if(l){const u=l.props.children,f=i.map(d=>d===l?c.Children.count(u)>1?c.Children.only(null):c.isValidElement(u)?u.props.children:null:d);return h.jsx(t,{...a,ref:o,children:c.isValidElement(u)?c.cloneElement(u,void 0,f):null})}return h.jsx(t,{...a,ref:o,children:s})});return n.displayName=`${e}.Slot`,n}var dv=uv("Slot");function fv(e){const t=c.forwardRef((n,r)=>{let{children:o,...s}=n;if(Dd(o)&&typeof Do=="function"&&(o=Do(o._payload)),c.isValidElement(o)){const a=gv(o),i=mv(s,o.props);return o.type!==c.Fragment&&(i.ref=r?Dr(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 hv=Symbol("radix.slottable");function pv(e){return c.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===hv}function mv(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 gv(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 vv=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"}))]]),yv=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"}))]]),bv=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"}))]]),xv=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"}))]]),wv=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"}))]]),Ev=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"}))]]),Sv=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M108,60A16,16,0,1,1,92,44,16,16,0,0,1,108,60Zm56,16a16,16,0,1,0-16-16A16,16,0,0,0,164,76ZM92,112a16,16,0,1,0,16,16A16,16,0,0,0,92,112Zm72,0a16,16,0,1,0,16,16A16,16,0,0,0,164,112ZM92,180a16,16,0,1,0,16,16A16,16,0,0,0,92,180Zm72,0a16,16,0,1,0,16,16A16,16,0,0,0,164,180Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,32V224a16,16,0,0,1-16,16H64a16,16,0,0,1-16-16V32A16,16,0,0,1,64,16H192A16,16,0,0,1,208,32Z",opacity:"0.2"}),c.createElement("path",{d:"M104,60A12,12,0,1,1,92,48,12,12,0,0,1,104,60Zm60,12a12,12,0,1,0-12-12A12,12,0,0,0,164,72ZM92,116a12,12,0,1,0,12,12A12,12,0,0,0,92,116Zm72,0a12,12,0,1,0,12,12A12,12,0,0,0,164,116ZM92,184a12,12,0,1,0,12,12A12,12,0,0,0,92,184Zm72,0a12,12,0,1,0,12,12A12,12,0,0,0,164,184Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M192,16H64A16,16,0,0,0,48,32V224a16,16,0,0,0,16,16H192a16,16,0,0,0,16-16V32A16,16,0,0,0,192,16ZM100,200a12,12,0,1,1,12-12A12,12,0,0,1,100,200Zm0-60a12,12,0,1,1,12-12A12,12,0,0,1,100,140Zm0-60a12,12,0,1,1,12-12A12,12,0,0,1,100,80Zm56,120a12,12,0,1,1,12-12A12,12,0,0,1,156,200Zm0-60a12,12,0,1,1,12-12A12,12,0,0,1,156,140Zm0-60a12,12,0,1,1,12-12A12,12,0,0,1,156,80Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M102,60A10,10,0,1,1,92,50,10,10,0,0,1,102,60Zm62,10a10,10,0,1,0-10-10A10,10,0,0,0,164,70ZM92,118a10,10,0,1,0,10,10A10,10,0,0,0,92,118Zm72,0a10,10,0,1,0,10,10A10,10,0,0,0,164,118ZM92,186a10,10,0,1,0,10,10A10,10,0,0,0,92,186Zm72,0a10,10,0,1,0,10,10A10,10,0,0,0,164,186Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M104,60A12,12,0,1,1,92,48,12,12,0,0,1,104,60Zm60,12a12,12,0,1,0-12-12A12,12,0,0,0,164,72ZM92,116a12,12,0,1,0,12,12A12,12,0,0,0,92,116Zm72,0a12,12,0,1,0,12,12A12,12,0,0,0,164,116ZM92,184a12,12,0,1,0,12,12A12,12,0,0,0,92,184Zm72,0a12,12,0,1,0,12,12A12,12,0,0,0,164,184Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M100,60a8,8,0,1,1-8-8A8,8,0,0,1,100,60Zm64,8a8,8,0,1,0-8-8A8,8,0,0,0,164,68ZM92,120a8,8,0,1,0,8,8A8,8,0,0,0,92,120Zm72,0a8,8,0,1,0,8,8A8,8,0,0,0,164,120ZM92,188a8,8,0,1,0,8,8A8,8,0,0,0,92,188Zm72,0a8,8,0,1,0,8,8A8,8,0,0,0,164,188Z"}))]]),Rv=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"}))]]),Cv=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M251,123.13c-.37-.81-9.13-20.26-28.48-39.61C196.63,57.67,164,44,128,44S59.37,57.67,33.51,83.52C14.16,102.87,5.4,122.32,5,123.13a12.08,12.08,0,0,0,0,9.75c.37.82,9.13,20.26,28.49,39.61C59.37,198.34,92,212,128,212s68.63-13.66,94.48-39.51c19.36-19.35,28.12-38.79,28.49-39.61A12.08,12.08,0,0,0,251,123.13Zm-46.06,33C183.47,177.27,157.59,188,128,188s-55.47-10.73-76.91-31.88A130.36,130.36,0,0,1,29.52,128,130.45,130.45,0,0,1,51.09,99.89C72.54,78.73,98.41,68,128,68s55.46,10.73,76.91,31.89A130.36,130.36,0,0,1,226.48,128,130.45,130.45,0,0,1,204.91,156.12ZM128,84a44,44,0,1,0,44,44A44.05,44.05,0,0,0,128,84Zm0,64a20,20,0,1,1,20-20A20,20,0,0,1,128,148Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M128,56C48,56,16,128,16,128s32,72,112,72,112-72,112-72S208,56,128,56Zm0,112a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z",opacity:"0.2"}),c.createElement("path",{d:"M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.47,133.47,0,0,1,25,128,133.33,133.33,0,0,1,48.07,97.25C70.33,75.19,97.22,64,128,64s57.67,11.19,79.93,33.25A133.46,133.46,0,0,1,231.05,128C223.84,141.46,192.43,192,128,192Zm0-112a48,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,160Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,168a40,40,0,1,1,40-40A40,40,0,0,1,128,168Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M245.48,125.57c-.34-.78-8.66-19.23-27.24-37.81C201,70.54,171.38,50,128,50S55,70.54,37.76,87.76c-18.58,18.58-26.9,37-27.24,37.81a6,6,0,0,0,0,4.88c.34.77,8.66,19.22,27.24,37.8C55,185.47,84.62,206,128,206s73-20.53,90.24-37.75c18.58-18.58,26.9-37,27.24-37.8A6,6,0,0,0,245.48,125.57ZM128,194c-31.38,0-58.78-11.42-81.45-33.93A134.77,134.77,0,0,1,22.69,128,134.56,134.56,0,0,1,46.55,95.94C69.22,73.42,96.62,62,128,62s58.78,11.42,81.45,33.94A134.56,134.56,0,0,1,233.31,128C226.94,140.21,195,194,128,194Zm0-112a46,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,162Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M247.31,124.76c-.35-.79-8.82-19.58-27.65-38.41C194.57,61.26,162.88,48,128,48S61.43,61.26,36.34,86.35C17.51,105.18,9,124,8.69,124.76a8,8,0,0,0,0,6.5c.35.79,8.82,19.57,27.65,38.4C61.43,194.74,93.12,208,128,208s66.57-13.26,91.66-38.34c18.83-18.83,27.3-37.61,27.65-38.4A8,8,0,0,0,247.31,124.76ZM128,192c-30.78,0-57.67-11.19-79.93-33.25A133.47,133.47,0,0,1,25,128,133.33,133.33,0,0,1,48.07,97.25C70.33,75.19,97.22,64,128,64s57.67,11.19,79.93,33.25A133.46,133.46,0,0,1,231.05,128C223.84,141.46,192.43,192,128,192Zm0-112a48,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,160Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M243.66,126.38c-.34-.76-8.52-18.89-26.83-37.2C199.87,72.22,170.7,52,128,52S56.13,72.22,39.17,89.18c-18.31,18.31-26.49,36.44-26.83,37.2a4.08,4.08,0,0,0,0,3.25c.34.77,8.52,18.89,26.83,37.2,17,17,46.14,37.17,88.83,37.17s71.87-20.21,88.83-37.17c18.31-18.31,26.49-36.43,26.83-37.2A4.08,4.08,0,0,0,243.66,126.38Zm-32.7,35c-23.07,23-51,34.62-83,34.62s-59.89-11.65-83-34.62A135.71,135.71,0,0,1,20.44,128,135.69,135.69,0,0,1,45,94.62C68.11,71.65,96,60,128,60s59.89,11.65,83,34.62A135.79,135.79,0,0,1,235.56,128,135.71,135.71,0,0,1,211,161.38ZM128,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,164Z"}))]]),Av=new Map([["bold",c.createElement(c.Fragment,null,c.createElement("path",{d:"M216.49,79.52l-56-56A12,12,0,0,0,152,20H56A20,20,0,0,0,36,40V216a20,20,0,0,0,20,20H200a20,20,0,0,0,20-20V88A12,12,0,0,0,216.49,79.52ZM160,57l23,23H160ZM60,212V44h76V92a12,12,0,0,0,12,12h48V212Zm112-80a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h64A12,12,0,0,1,172,132Zm0,40a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h64A12,12,0,0,1,172,172Z"}))],["duotone",c.createElement(c.Fragment,null,c.createElement("path",{d:"M208,88H152V32Z",opacity:"0.2"}),c.createElement("path",{d:"M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM200,216H56V40h88V88a8,8,0,0,0,8,8h48V216Zm-32-80a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,136Zm0,32a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,168Z"}))],["fill",c.createElement(c.Fragment,null,c.createElement("path",{d:"M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,176H96a8,8,0,0,1,0-16h64a8,8,0,0,1,0,16Zm0-32H96a8,8,0,0,1,0-16h64a8,8,0,0,1,0,16Zm-8-56V44l44,44Z"}))],["light",c.createElement(c.Fragment,null,c.createElement("path",{d:"M212.24,83.76l-56-56A6,6,0,0,0,152,26H56A14,14,0,0,0,42,40V216a14,14,0,0,0,14,14H200a14,14,0,0,0,14-14V88A6,6,0,0,0,212.24,83.76ZM158,46.48,193.52,82H158ZM200,218H56a2,2,0,0,1-2-2V40a2,2,0,0,1,2-2h90V88a6,6,0,0,0,6,6h50V216A2,2,0,0,1,200,218Zm-34-82a6,6,0,0,1-6,6H96a6,6,0,0,1,0-12h64A6,6,0,0,1,166,136Zm0,32a6,6,0,0,1-6,6H96a6,6,0,0,1,0-12h64A6,6,0,0,1,166,168Z"}))],["regular",c.createElement(c.Fragment,null,c.createElement("path",{d:"M213.66,82.34l-56-56A8,8,0,0,0,152,24H56A16,16,0,0,0,40,40V216a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V88A8,8,0,0,0,213.66,82.34ZM160,51.31,188.69,80H160ZM200,216H56V40h88V88a8,8,0,0,0,8,8h48V216Zm-32-80a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,136Zm0,32a8,8,0,0,1-8,8H96a8,8,0,0,1,0-16h64A8,8,0,0,1,168,168Z"}))],["thin",c.createElement(c.Fragment,null,c.createElement("path",{d:"M210.83,85.17l-56-56A4,4,0,0,0,152,28H56A12,12,0,0,0,44,40V216a12,12,0,0,0,12,12H200a12,12,0,0,0,12-12V88A4,4,0,0,0,210.83,85.17ZM156,41.65,198.34,84H156ZM200,220H56a4,4,0,0,1-4-4V40a4,4,0,0,1,4-4h92V88a4,4,0,0,0,4,4h52V216A4,4,0,0,1,200,220Zm-36-84a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,136Zm0,32a4,4,0,0,1-4,4H96a4,4,0,0,1,0-8h64A4,4,0,0,1,164,168Z"}))]]),Tv=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"}))]]),Pv=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"}))]]),Mv=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"}))]]),_v=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"}))]]),Nv=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"}))]]),Ov=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"}))]]),Iv=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"}))]]),Lv=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"}))]]),Dv=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"}))]]),jv=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"}))]]),Fv=c.createContext({color:"currentColor",size:"1em",weight:"regular",mirrored:!1}),Ae=c.forwardRef((e,t)=>{const{alt:n,color:r,size:o,weight:s,mirrored:a,children:i,weights:l,...u}=e,{color:f="currentColor",size:d,weight:p="regular",mirrored:m=!1,...v}=c.useContext(Fv);return c.createElement("svg",{ref:t,xmlns:"http://www.w3.org/2000/svg",width:o??d,height:o??d,fill:r??f,viewBox:"0 0 256 256",transform:a||m?"scale(-1, 1)":void 0,...v,...u},!!n&&c.createElement("title",null,n),i,l.get(s??p))});Ae.displayName="IconBase";const jd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:vv}));jd.displayName="BellIcon";const kv=jd,Fd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:yv}));Fd.displayName="CalendarIcon";const $v=Fd,kd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:bv}));kd.displayName="CaretDownIcon";const Hv=kd,$d=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:xv}));$d.displayName="CaretLeftIcon";const qs=$d,Hd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:wv}));Hd.displayName="CaretRightIcon";const br=Hd,Bd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Ev}));Bd.displayName="CheckIcon";const Bv=Bd,Vd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Sv}));Vd.displayName="DotsSixVerticalIcon";const Vv=Vd,Zd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Rv}));Zd.displayName="DotsThreeVerticalIcon";const Zv=Zd,Ud=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Cv}));Ud.displayName="EyeIcon";const Uv=Ud,zd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Av}));zd.displayName="FileTextIcon";const zv=zd,qd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Tv}));qd.displayName="GearIcon";const qv=qd,Wd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Pv}));Wd.displayName="GridFourIcon";const Kd=Wd,Gd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Mv}));Gd.displayName="ListIcon";const Wv=Gd,Qd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:_v}));Qd.displayName="MagnifyingGlassIcon";const Kv=Qd,Yd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Nv}));Yd.displayName="PencilSimpleIcon";const Gv=Yd,Xd=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Ov}));Xd.displayName="PushPinIcon";const Jd=Xd,ef=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Iv}));ef.displayName="SortAscendingIcon";const Qv=ef,tf=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Lv}));tf.displayName="SpinnerIcon";const Yv=tf,nf=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:Dv}));nf.displayName="TagIcon";const Xv=nf,rf=c.forwardRef((e,t)=>c.createElement(Ae,{ref:t,...e,weights:jv}));rf.displayName="XIcon";const of=rf;function Jv(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 Wc=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,Kc=Gp,De=(e,t)=>n=>{var r;if(t?.variants==null)return Kc(e,n?.class,n?.className);const{variants:o,defaultVariants:s}=t,a=Object.keys(o).map(u=>{const f=n?.[u],d=s?.[u];if(f===null)return null;const p=Wc(f)||Wc(d);return o[u][p]}),i=n&&Object.entries(n).reduce((u,f)=>{let[d,p]=f;return p===void 0||(u[d]=p),u},{}),l=t==null||(r=t.compoundVariants)===null||r===void 0?void 0:r.reduce((u,f)=>{let{class:d,className:p,...m}=f;return Object.entries(m).every(v=>{let[g,y]=v;return Array.isArray(y)?y.includes({...s,...i}[g]):{...s,...i}[g]===y})?[...u,d,p]:u},[]);return Kc(e,a,l,n?.class,n?.className)},ey=De(["inline-flex","items-center","justify-center","gap-2","font-medium","transition-colors","duration-200","border","focus-ring-soft","outline-none","disabled:pointer-events-none","disabled:opacity-50"],{variants:{variant:{primary:["bg-cta","border-transparent","text-fg-on-filled","hover:bg-cta-hover","active:bg-cta-hover"],signature:["bg-accent-secondary","border-transparent","text-fg-on-filled","hover:bg-accent-secondary-hover","active:bg-accent-secondary-hover"],subtle:["bg-transparent","border-border","text-fg-default","hover:bg-hover-subtle","hover:border-border-secondary","active:bg-hover"],ghost:["border-transparent","bg-transparent","text-fg-secondary","hover:bg-hover-subtle","hover:border-border-subtle","hover:text-fg-default","active:bg-hover"],danger:["bg-accent-danger","border-transparent","text-fg-on-filled","hover:bg-accent-danger-hover","active:bg-accent-danger-hover"],"soft-success":["bg-accent-soft-success","border-transparent","text-accent-success","hover:bg-accent-soft-success-hover","active:bg-accent-soft-success-hover"],"soft-danger":["bg-accent-soft-danger","border-transparent","text-fg-error","hover:bg-accent-soft-danger-hover","active:bg-accent-soft-danger-hover"]},size:{sm:"h-8 px-3 text-sm rounded-[12px]",md:"h-9 px-4 text-sm rounded-[14px]",lg:"h-11 px-5 text-body rounded-[16px]",icon:"h-9 w-9 rounded-[14px]","icon-sm":"h-8 w-8 rounded-[12px]"}},defaultVariants:{variant:"primary",size:"md"}}),bt=c.forwardRef(({className:e,variant:t,size:n,asChild:r=!1,isLoading:o,children:s,disabled:a,...i},l)=>{const u=r?dv:"button";return h.jsx(u,{ref:l,className:ey({variant:t,size:n,className:e}),disabled:a||o,...i,children:o?h.jsxs(h.Fragment,{children:[h.jsx(Yv,{className:"animate-spin h-4 w-4"}),s]}):s})});bt.displayName="Button";const vi=De(["relative","pointer-events-auto","w-full","max-h-[calc(100dvh-2rem)]","overflow-y-auto","border","border-border-subtle","overscroll-contain","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"],{variants:{variant:{default:"max-w-[640px] rounded-[20px] bg-elevated shadow-[0_24px_64px_-32px_rgba(15,18,24,0.36)]",compact:"max-w-[480px] rounded-[18px] bg-surface shadow-[0_18px_44px_-28px_rgba(15,18,24,0.28)]",form:"max-w-[560px] rounded-[20px] bg-elevated shadow-[0_22px_56px_-30px_rgba(15,18,24,0.32)]",inspect:"max-w-[640px] rounded-[20px] bg-elevated shadow-[0_24px_64px_-30px_rgba(15,18,24,0.34)]",confirm:"max-w-[336px] rounded-[18px] bg-surface shadow-[0_16px_36px_-24px_rgba(15,18,24,0.24)]"}},defaultVariants:{variant:"default"}}),ty=De(["flex","items-center","justify-between"],{variants:{variant:{default:"border-b border-border-subtle/70 px-4 py-3.5",compact:"border-b border-border-subtle/60 px-4 py-3",form:"border-b border-border-subtle/65 px-4 py-3 sm:px-5",inspect:"border-b border-border-subtle/70 px-4 py-3.5 sm:px-5",confirm:"px-4 pb-1 pt-4"}},defaultVariants:{variant:"default"}}),yi=De("",{variants:{variant:{default:"px-4 py-5 sm:px-5",compact:"px-4 py-4",form:"px-4 py-4 sm:px-5 sm:py-5",inspect:"px-4 py-4 sm:px-5 sm:py-5",confirm:"space-y-1 px-5 pb-4 pt-5"}},defaultVariants:{variant:"default"}}),bi=De(["flex","items-center","justify-end"],{variants:{variant:{default:"border-t border-border-subtle/70 px-4 py-3.5",compact:"px-4 pb-4 pt-0",form:"border-t border-border-subtle/65 px-4 py-3 sm:px-5",inspect:"border-t border-border-subtle/70 px-4 py-3.5 sm:px-5",confirm:"justify-end gap-2 px-5 pb-5 pt-0"}},defaultVariants:{variant:"default"}}),ny=De(["flex","items-center","justify-center","text-fg-secondary","transition-colors","hover:bg-hover-subtle","hover:text-fg-default","focus-ring-soft"],{variants:{variant:{default:"h-10 w-10 rounded-[14px]",compact:"h-9 w-9 rounded-[12px]",form:"h-9 w-9 rounded-[12px]",inspect:"h-10 w-10 rounded-[14px]",confirm:"h-9 w-9 rounded-[12px]"}},defaultVariants:{variant:"default"}}),xi=De("text-fg-default font-semibold",{variants:{variant:{default:"text-heading tracking-[-0.02em]",compact:"text-subheading tracking-[-0.01em]",form:"text-heading tracking-[-0.02em]",inspect:"text-heading tracking-[-0.02em]",confirm:"text-subheading tracking-[-0.01em]"}},defaultVariants:{variant:"default"}}),wi=De("text-fg-secondary",{variants:{variant:{default:"text-meta",compact:"text-meta",form:"text-meta",inspect:"text-meta",confirm:"text-meta"}},defaultVariants:{variant:"default"}}),ry=De("",{variants:{variant:{display:"text-display",heading:"text-heading",subheading:"text-subheading",body:"text-body",meta:"text-meta",label:"text-label",micro:"text-micro"},weight:{regular:"font-normal",medium:"font-medium",semibold:"font-semibold",bold:"font-bold"},tone:{default:"text-fg-default",secondary:"text-fg-secondary",tertiary:"text-fg-tertiary",muted:"text-fg-muted",placeholder:"text-fg-placeholder",error:"text-fg-error",onFilled:"text-fg-on-filled"},tracking:{normal:"",tight:"tracking-[-0.01em]",tighter:"tracking-[-0.02em]",wide:"tracking-[0.08em]",wider:"tracking-[0.12em]",widest:"tracking-[0.16em]"},transform:{none:"",uppercase:"uppercase"},truncate:{true:"truncate",false:""}},defaultVariants:{variant:"body",weight:"regular",tone:"default",tracking:"normal",transform:"none",truncate:!1}});function se({as:e="span",className:t,variant:n,weight:r,tone:o,tracking:s,transform:a,truncate:i,children:l,...u}){const f=e;return h.jsx(f,{className:ry({variant:n,weight:r,tone:o,tracking:s,transform:a,truncate:i,className:t}),...u,children:l})}const sf=me("fixed","inset-0","z-[1090]","bg-overlay","backdrop-blur-[2px]","data-[state=open]:animate-in","data-[state=closed]:animate-out","data-[state=closed]:fade-out-0","data-[state=open]:fade-in-0"),oy=({open:e,options:t,onClose:n})=>h.jsx(Pd,{open:e,onOpenChange:r=>{!r&&t.dismissible&&n()},children:h.jsxs(Md,{children:[h.jsx(_d,{className:sf}),h.jsx("div",{className:"pointer-events-none fixed inset-0 z-[1100] flex items-center justify-center p-4",children:h.jsxs(Nd,{className:vi({variant:"confirm"}),children:[h.jsxs("div",{className:yi({variant:"confirm"}),children:[h.jsx(Id,{className:xi({variant:"confirm"}),children:t.title}),t.description?h.jsx(Ld,{className:wi({variant:"confirm"}),children:t.description}):null]}),h.jsx("div",{className:bi({variant:"confirm"}),children:h.jsx(Od,{asChild:!0,children:h.jsx(bt,{size:"sm",onClick:n,children:t.confirmLabel})})})]})})]})}),sy=({open:e,options:t,onCancel:n,onConfirm:r})=>h.jsx(Pd,{open:e,onOpenChange:o=>{!o&&t.dismissible&&n()},children:h.jsxs(Md,{children:[h.jsx(_d,{className:sf}),h.jsx("div",{className:"pointer-events-none fixed inset-0 z-[1100] flex items-center justify-center p-4",children:h.jsxs(Nd,{className:vi({variant:"confirm"}),children:[h.jsxs("div",{className:yi({variant:"confirm"}),children:[h.jsx(Id,{className:xi({variant:"confirm"}),children:t.title}),t.description?h.jsx(Ld,{className:wi({variant:"confirm"}),children:h.jsx(se,{as:"span",variant:"meta",tone:"secondary",children:t.description})}):null]}),h.jsxs("div",{className:bi({variant:"confirm"}),children:[h.jsx(sv,{asChild:!0,children:h.jsx(bt,{variant:"ghost",size:"sm",onClick:n,children:t.cancelLabel})}),h.jsx(Od,{asChild:!0,children:h.jsx(bt,{variant:t.tone==="danger"?"danger":"primary",size:"sm",onClick:r,children:t.confirmLabel})})]})]})})]})});function ay({children:e}){return h.jsx(Kg,{components:{Alert:oy,Confirm:sy},children:e})}function af(){const{confirm:e}=Gg();return c.useCallback(t=>e({title:"Confirm",description:t,confirmLabel:"OK",cancelLabel:"Cancel",tone:"danger"}),[e])}function iy(e){if(typeof document>"u")return;let t=document.head||document.getElementsByTagName("head")[0],n=document.createElement("style");n.type="text/css",t.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}const cy=e=>{switch(e){case"success":return dy;case"info":return hy;case"warning":return fy;case"error":return py;default:return null}},ly=Array(12).fill(0),uy=({visible:e,className:t})=>M.createElement("div",{className:["sonner-loading-wrapper",t].filter(Boolean).join(" "),"data-visible":e},M.createElement("div",{className:"sonner-spinner"},ly.map((n,r)=>M.createElement("div",{className:"sonner-loading-bar",key:`spinner-bar-${r}`})))),dy=M.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},M.createElement("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z",clipRule:"evenodd"})),fy=M.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",height:"20",width:"20"},M.createElement("path",{fillRule:"evenodd",d:"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z",clipRule:"evenodd"})),hy=M.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},M.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z",clipRule:"evenodd"})),py=M.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},M.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z",clipRule:"evenodd"})),my=M.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},M.createElement("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),M.createElement("line",{x1:"6",y1:"6",x2:"18",y2:"18"})),gy=()=>{const[e,t]=M.useState(document.hidden);return M.useEffect(()=>{const n=()=>{t(document.hidden)};return document.addEventListener("visibilitychange",n),()=>window.removeEventListener("visibilitychange",n)},[]),e};let xa=1;class vy{constructor(){this.subscribe=t=>(this.subscribers.push(t),()=>{const n=this.subscribers.indexOf(t);this.subscribers.splice(n,1)}),this.publish=t=>{this.subscribers.forEach(n=>n(t))},this.addToast=t=>{this.publish(t),this.toasts=[...this.toasts,t]},this.create=t=>{var n;const{message:r,...o}=t,s=typeof t?.id=="number"||((n=t.id)==null?void 0:n.length)>0?t.id:xa++,a=this.toasts.find(l=>l.id===s),i=t.dismissible===void 0?!0:t.dismissible;return this.dismissedToasts.has(s)&&this.dismissedToasts.delete(s),a?this.toasts=this.toasts.map(l=>l.id===s?(this.publish({...l,...t,id:s,title:r}),{...l,...t,id:s,dismissible:i,title:r}):l):this.addToast({title:r,...o,dismissible:i,id:s}),s},this.dismiss=t=>(t?(this.dismissedToasts.add(t),requestAnimationFrame(()=>this.subscribers.forEach(n=>n({id:t,dismiss:!0})))):this.toasts.forEach(n=>{this.subscribers.forEach(r=>r({id:n.id,dismiss:!0}))}),t),this.message=(t,n)=>this.create({...n,message:t}),this.error=(t,n)=>this.create({...n,message:t,type:"error"}),this.success=(t,n)=>this.create({...n,type:"success",message:t}),this.info=(t,n)=>this.create({...n,type:"info",message:t}),this.warning=(t,n)=>this.create({...n,type:"warning",message:t}),this.loading=(t,n)=>this.create({...n,type:"loading",message:t}),this.promise=(t,n)=>{if(!n)return;let r;n.loading!==void 0&&(r=this.create({...n,promise:t,type:"loading",message:n.loading,description:typeof n.description!="function"?n.description:void 0}));const o=Promise.resolve(t instanceof Function?t():t);let s=r!==void 0,a;const i=o.then(async u=>{if(a=["resolve",u],M.isValidElement(u))s=!1,this.create({id:r,type:"default",message:u});else if(by(u)&&!u.ok){s=!1;const d=typeof n.error=="function"?await n.error(`HTTP error! status: ${u.status}`):n.error,p=typeof n.description=="function"?await n.description(`HTTP error! status: ${u.status}`):n.description,v=typeof d=="object"&&!M.isValidElement(d)?d:{message:d};this.create({id:r,type:"error",description:p,...v})}else if(u instanceof Error){s=!1;const d=typeof n.error=="function"?await n.error(u):n.error,p=typeof n.description=="function"?await n.description(u):n.description,v=typeof d=="object"&&!M.isValidElement(d)?d:{message:d};this.create({id:r,type:"error",description:p,...v})}else if(n.success!==void 0){s=!1;const d=typeof n.success=="function"?await n.success(u):n.success,p=typeof n.description=="function"?await n.description(u):n.description,v=typeof d=="object"&&!M.isValidElement(d)?d:{message:d};this.create({id:r,type:"success",description:p,...v})}}).catch(async u=>{if(a=["reject",u],n.error!==void 0){s=!1;const f=typeof n.error=="function"?await n.error(u):n.error,d=typeof n.description=="function"?await n.description(u):n.description,m=typeof f=="object"&&!M.isValidElement(f)?f:{message:f};this.create({id:r,type:"error",description:d,...m})}}).finally(()=>{s&&(this.dismiss(r),r=void 0),n.finally==null||n.finally.call(n)}),l=()=>new Promise((u,f)=>i.then(()=>a[0]==="reject"?f(a[1]):u(a[1])).catch(f));return typeof r!="string"&&typeof r!="number"?{unwrap:l}:Object.assign(r,{unwrap:l})},this.custom=(t,n)=>{const r=n?.id||xa++;return this.create({jsx:t(r),id:r,...n}),r},this.getActiveToasts=()=>this.toasts.filter(t=>!this.dismissedToasts.has(t.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}}const Je=new vy,yy=(e,t)=>{const n=t?.id||xa++;return Je.addToast({title:e,...t,id:n}),n},by=e=>e&&typeof e=="object"&&"ok"in e&&typeof e.ok=="boolean"&&"status"in e&&typeof e.status=="number",xy=yy,wy=()=>Je.toasts,Ey=()=>Je.getActiveToasts(),Sy=Object.assign(xy,{success:Je.success,info:Je.info,warning:Je.warning,error:Je.error,custom:Je.custom,message:Je.message,promise:Je.promise,dismiss:Je.dismiss,loading:Je.loading},{getHistory:wy,getToasts:Ey});iy("[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}");function ao(e){return e.label!==void 0}const Ry=3,Cy="24px",Ay="16px",Gc=4e3,Ty=356,Py=14,My=45,_y=200;function Ct(...e){return e.filter(Boolean).join(" ")}function Ny(e){const[t,n]=e.split("-"),r=[];return t&&r.push(t),n&&r.push(n),r}const Oy=e=>{var t,n,r,o,s,a,i,l,u;const{invert:f,toast:d,unstyled:p,interacting:m,setHeights:v,visibleToasts:g,heights:y,index:b,toasts:x,expanded:w,removeToast:E,defaultRichColors:C,closeButton:O,style:A,cancelButtonStyle:S,actionButtonStyle:N,className:I="",descriptionClassName:P="",duration:H,position:q,gap:D,expandByDefault:F,classNames:T,icons:L,closeButtonAriaLabel:j="Close toast"}=e,[_,V]=M.useState(null),[W,Q]=M.useState(null),[B,z]=M.useState(!1),[U,J]=M.useState(!1),[$,k]=M.useState(!1),[ee,Z]=M.useState(!1),[X,te]=M.useState(!1),[ie,ue]=M.useState(0),[Ye,Fe]=M.useState(0),Ze=M.useRef(d.duration||H||Gc),ct=M.useRef(null),Ie=M.useRef(null),Ne=b===0,Ut=b+1<=g,Te=d.type,lt=d.dismissible!==!1,Tn=d.className||"",Pn=d.descriptionClassName||"",ce=M.useMemo(()=>y.findIndex(Y=>Y.toastId===d.id)||0,[y,d.id]),ge=M.useMemo(()=>{var Y;return(Y=d.closeButton)!=null?Y:O},[d.closeButton,O]),Re=M.useMemo(()=>d.duration||H||Gc,[d.duration,H]),ut=M.useRef(0),It=M.useRef(0),vt=M.useRef(0),Lt=M.useRef(null),[Ts,Ps]=q.split("-"),Mn=M.useMemo(()=>y.reduce((Y,he,fe)=>fe>=ce?Y:Y+he.height,0),[y,ce]),sr=gy(),Ms=d.invert||f,_n=Te==="loading";It.current=M.useMemo(()=>ce*D+Mn,[ce,Mn]),M.useEffect(()=>{Ze.current=Re},[Re]),M.useEffect(()=>{z(!0)},[]),M.useEffect(()=>{const Y=Ie.current;if(Y){const he=Y.getBoundingClientRect().height;return Fe(he),v(fe=>[{toastId:d.id,height:he,position:d.position},...fe]),()=>v(fe=>fe.filter(pe=>pe.toastId!==d.id))}},[v,d.id]),M.useLayoutEffect(()=>{if(!B)return;const Y=Ie.current,he=Y.style.height;Y.style.height="auto";const fe=Y.getBoundingClientRect().height;Y.style.height=he,Fe(fe),v(pe=>pe.find(ye=>ye.toastId===d.id)?pe.map(ye=>ye.toastId===d.id?{...ye,height:fe}:ye):[{toastId:d.id,height:fe,position:d.position},...pe])},[B,d.title,d.description,v,d.id,d.jsx,d.action,d.cancel]);const Rt=M.useCallback(()=>{J(!0),ue(It.current),v(Y=>Y.filter(he=>he.toastId!==d.id)),setTimeout(()=>{E(d)},_y)},[d,E,v,It]);M.useEffect(()=>{if(d.promise&&Te==="loading"||d.duration===1/0||d.type==="loading")return;let Y;return w||m||sr?(()=>{if(vt.current<ut.current){const pe=new Date().getTime()-ut.current;Ze.current=Ze.current-pe}vt.current=new Date().getTime()})():Ze.current!==1/0&&(ut.current=new Date().getTime(),Y=setTimeout(()=>{d.onAutoClose==null||d.onAutoClose.call(d,d),Rt()},Ze.current)),()=>clearTimeout(Y)},[w,m,d,Te,sr,Rt]),M.useEffect(()=>{d.delete&&(Rt(),d.onDismiss==null||d.onDismiss.call(d,d))},[Rt,d.delete]);function _s(){var Y;if(L?.loading){var he;return M.createElement("div",{className:Ct(T?.loader,d==null||(he=d.classNames)==null?void 0:he.loader,"sonner-loader"),"data-visible":Te==="loading"},L.loading)}return M.createElement(uy,{className:Ct(T?.loader,d==null||(Y=d.classNames)==null?void 0:Y.loader),visible:Te==="loading"})}const Ns=d.icon||L?.[Te]||cy(Te);var Pe,ke;return M.createElement("li",{tabIndex:0,ref:Ie,className:Ct(I,Tn,T?.toast,d==null||(t=d.classNames)==null?void 0:t.toast,T?.default,T?.[Te],d==null||(n=d.classNames)==null?void 0:n[Te]),"data-sonner-toast":"","data-rich-colors":(Pe=d.richColors)!=null?Pe:C,"data-styled":!(d.jsx||d.unstyled||p),"data-mounted":B,"data-promise":!!d.promise,"data-swiped":X,"data-removed":U,"data-visible":Ut,"data-y-position":Ts,"data-x-position":Ps,"data-index":b,"data-front":Ne,"data-swiping":$,"data-dismissible":lt,"data-type":Te,"data-invert":Ms,"data-swipe-out":ee,"data-swipe-direction":W,"data-expanded":!!(w||F&&B),"data-testid":d.testId,style:{"--index":b,"--toasts-before":b,"--z-index":x.length-b,"--offset":`${U?ie:It.current}px`,"--initial-height":F?"auto":`${Ye}px`,...A,...d.style},onDragEnd:()=>{k(!1),V(null),Lt.current=null},onPointerDown:Y=>{Y.button!==2&&(_n||!lt||(ct.current=new Date,ue(It.current),Y.target.setPointerCapture(Y.pointerId),Y.target.tagName!=="BUTTON"&&(k(!0),Lt.current={x:Y.clientX,y:Y.clientY})))},onPointerUp:()=>{var Y,he,fe;if(ee||!lt)return;Lt.current=null;const pe=Number(((Y=Ie.current)==null?void 0:Y.style.getPropertyValue("--swipe-amount-x").replace("px",""))||0),Ue=Number(((he=Ie.current)==null?void 0:he.style.getPropertyValue("--swipe-amount-y").replace("px",""))||0),ye=new Date().getTime()-((fe=ct.current)==null?void 0:fe.getTime()),de=_==="x"?pe:Ue,rt=Math.abs(de)/ye;if(Math.abs(de)>=My||rt>.11){ue(It.current),d.onDismiss==null||d.onDismiss.call(d,d),Q(_==="x"?pe>0?"right":"left":Ue>0?"down":"up"),Rt(),Z(!0);return}else{var Se,Ce;(Se=Ie.current)==null||Se.style.setProperty("--swipe-amount-x","0px"),(Ce=Ie.current)==null||Ce.style.setProperty("--swipe-amount-y","0px")}te(!1),k(!1),V(null)},onPointerMove:Y=>{var he,fe,pe;if(!Lt.current||!lt||((he=window.getSelection())==null?void 0:he.toString().length)>0)return;const ye=Y.clientY-Lt.current.y,de=Y.clientX-Lt.current.x;var rt;const Se=(rt=e.swipeDirections)!=null?rt:Ny(q);!_&&(Math.abs(de)>1||Math.abs(ye)>1)&&V(Math.abs(de)>Math.abs(ye)?"x":"y");let Ce={x:0,y:0};const zt=ot=>1/(1.5+Math.abs(ot)/20);if(_==="y"){if(Se.includes("top")||Se.includes("bottom"))if(Se.includes("top")&&ye<0||Se.includes("bottom")&&ye>0)Ce.y=ye;else{const ot=ye*zt(ye);Ce.y=Math.abs(ot)<Math.abs(ye)?ot:ye}}else if(_==="x"&&(Se.includes("left")||Se.includes("right")))if(Se.includes("left")&&de<0||Se.includes("right")&&de>0)Ce.x=de;else{const ot=de*zt(de);Ce.x=Math.abs(ot)<Math.abs(de)?ot:de}(Math.abs(Ce.x)>0||Math.abs(Ce.y)>0)&&te(!0),(fe=Ie.current)==null||fe.style.setProperty("--swipe-amount-x",`${Ce.x}px`),(pe=Ie.current)==null||pe.style.setProperty("--swipe-amount-y",`${Ce.y}px`)}},ge&&!d.jsx&&Te!=="loading"?M.createElement("button",{"aria-label":j,"data-disabled":_n,"data-close-button":!0,onClick:_n||!lt?()=>{}:()=>{Rt(),d.onDismiss==null||d.onDismiss.call(d,d)},className:Ct(T?.closeButton,d==null||(r=d.classNames)==null?void 0:r.closeButton)},(ke=L?.close)!=null?ke:my):null,(Te||d.icon||d.promise)&&d.icon!==null&&(L?.[Te]!==null||d.icon)?M.createElement("div",{"data-icon":"",className:Ct(T?.icon,d==null||(o=d.classNames)==null?void 0:o.icon)},d.promise||d.type==="loading"&&!d.icon?d.icon||_s():null,d.type!=="loading"?Ns:null):null,M.createElement("div",{"data-content":"",className:Ct(T?.content,d==null||(s=d.classNames)==null?void 0:s.content)},M.createElement("div",{"data-title":"",className:Ct(T?.title,d==null||(a=d.classNames)==null?void 0:a.title)},d.jsx?d.jsx:typeof d.title=="function"?d.title():d.title),d.description?M.createElement("div",{"data-description":"",className:Ct(P,Pn,T?.description,d==null||(i=d.classNames)==null?void 0:i.description)},typeof d.description=="function"?d.description():d.description):null),M.isValidElement(d.cancel)?d.cancel:d.cancel&&ao(d.cancel)?M.createElement("button",{"data-button":!0,"data-cancel":!0,style:d.cancelButtonStyle||S,onClick:Y=>{ao(d.cancel)&&lt&&(d.cancel.onClick==null||d.cancel.onClick.call(d.cancel,Y),Rt())},className:Ct(T?.cancelButton,d==null||(l=d.classNames)==null?void 0:l.cancelButton)},d.cancel.label):null,M.isValidElement(d.action)?d.action:d.action&&ao(d.action)?M.createElement("button",{"data-button":!0,"data-action":!0,style:d.actionButtonStyle||N,onClick:Y=>{ao(d.action)&&(d.action.onClick==null||d.action.onClick.call(d.action,Y),!Y.defaultPrevented&&Rt())},className:Ct(T?.actionButton,d==null||(u=d.classNames)==null?void 0:u.actionButton)},d.action.label):null)};function Qc(){if(typeof window>"u"||typeof document>"u")return"ltr";const e=document.documentElement.getAttribute("dir");return e==="auto"||!e?window.getComputedStyle(document.documentElement).direction:e}function Iy(e,t){const n={};return[e,t].forEach((r,o)=>{const s=o===1,a=s?"--mobile-offset":"--offset",i=s?Ay:Cy;function l(u){["top","right","bottom","left"].forEach(f=>{n[`${a}-${f}`]=typeof u=="number"?`${u}px`:u})}typeof r=="number"||typeof r=="string"?l(r):typeof r=="object"?["top","right","bottom","left"].forEach(u=>{r[u]===void 0?n[`${a}-${u}`]=i:n[`${a}-${u}`]=typeof r[u]=="number"?`${r[u]}px`:r[u]}):l(i)}),n}const Ly=M.forwardRef(function(t,n){const{id:r,invert:o,position:s="bottom-right",hotkey:a=["altKey","KeyT"],expand:i,closeButton:l,className:u,offset:f,mobileOffset:d,theme:p="light",richColors:m,duration:v,style:g,visibleToasts:y=Ry,toastOptions:b,dir:x=Qc(),gap:w=Py,icons:E,containerAriaLabel:C="Notifications"}=t,[O,A]=M.useState([]),S=M.useMemo(()=>r?O.filter(B=>B.toasterId===r):O.filter(B=>!B.toasterId),[O,r]),N=M.useMemo(()=>Array.from(new Set([s].concat(S.filter(B=>B.position).map(B=>B.position)))),[S,s]),[I,P]=M.useState([]),[H,q]=M.useState(!1),[D,F]=M.useState(!1),[T,L]=M.useState(p!=="system"?p:typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),j=M.useRef(null),_=a.join("+").replace(/Key/g,"").replace(/Digit/g,""),V=M.useRef(null),W=M.useRef(!1),Q=M.useCallback(B=>{A(z=>{var U;return(U=z.find(J=>J.id===B.id))!=null&&U.delete||Je.dismiss(B.id),z.filter(({id:J})=>J!==B.id)})},[]);return M.useEffect(()=>Je.subscribe(B=>{if(B.dismiss){requestAnimationFrame(()=>{A(z=>z.map(U=>U.id===B.id?{...U,delete:!0}:U))});return}setTimeout(()=>{Jl.flushSync(()=>{A(z=>{const U=z.findIndex(J=>J.id===B.id);return U!==-1?[...z.slice(0,U),{...z[U],...B},...z.slice(U+1)]:[B,...z]})})})}),[O]),M.useEffect(()=>{if(p!=="system"){L(p);return}if(p==="system"&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?L("dark"):L("light")),typeof window>"u")return;const B=window.matchMedia("(prefers-color-scheme: dark)");try{B.addEventListener("change",({matches:z})=>{L(z?"dark":"light")})}catch{B.addListener(({matches:U})=>{try{L(U?"dark":"light")}catch(J){console.error(J)}})}},[p]),M.useEffect(()=>{O.length<=1&&q(!1)},[O]),M.useEffect(()=>{const B=z=>{var U;if(a.every(k=>z[k]||z.code===k)){var $;q(!0),($=j.current)==null||$.focus()}z.code==="Escape"&&(document.activeElement===j.current||(U=j.current)!=null&&U.contains(document.activeElement))&&q(!1)};return document.addEventListener("keydown",B),()=>document.removeEventListener("keydown",B)},[a]),M.useEffect(()=>{if(j.current)return()=>{V.current&&(V.current.focus({preventScroll:!0}),V.current=null,W.current=!1)}},[j.current]),M.createElement("section",{ref:n,"aria-label":`${C} ${_}`,tabIndex:-1,"aria-live":"polite","aria-relevant":"additions text","aria-atomic":"false",suppressHydrationWarning:!0},N.map((B,z)=>{var U;const[J,$]=B.split("-");return S.length?M.createElement("ol",{key:B,dir:x==="auto"?Qc():x,tabIndex:-1,ref:j,className:u,"data-sonner-toaster":!0,"data-sonner-theme":T,"data-y-position":J,"data-x-position":$,style:{"--front-toast-height":`${((U=I[0])==null?void 0:U.height)||0}px`,"--width":`${Ty}px`,"--gap":`${w}px`,...g,...Iy(f,d)},onBlur:k=>{W.current&&!k.currentTarget.contains(k.relatedTarget)&&(W.current=!1,V.current&&(V.current.focus({preventScroll:!0}),V.current=null))},onFocus:k=>{k.target instanceof HTMLElement&&k.target.dataset.dismissible==="false"||W.current||(W.current=!0,V.current=k.relatedTarget)},onMouseEnter:()=>q(!0),onMouseMove:()=>q(!0),onMouseLeave:()=>{D||q(!1)},onDragEnd:()=>q(!1),onPointerDown:k=>{k.target instanceof HTMLElement&&k.target.dataset.dismissible==="false"||F(!0)},onPointerUp:()=>F(!1)},S.filter(k=>!k.position&&z===0||k.position===B).map((k,ee)=>{var Z,X;return M.createElement(Oy,{key:k.id,icons:E,index:ee,toast:k,defaultRichColors:m,duration:(Z=b?.duration)!=null?Z:v,className:b?.className,descriptionClassName:b?.descriptionClassName,invert:o,visibleToasts:y,closeButton:(X=b?.closeButton)!=null?X:l,interacting:D,position:B,style:b?.style,unstyled:b?.unstyled,classNames:b?.classNames,cancelButtonStyle:b?.cancelButtonStyle,actionButtonStyle:b?.actionButtonStyle,closeButtonAriaLabel:b?.closeButtonAriaLabel,removeToast:Q,toasts:S.filter(te=>te.position==k.position),heights:I.filter(te=>te.position==k.position),setHeights:P,expandByDefault:i,gap:w,expanded:H,swipeDirections:t.swipeDirections})})):null}))});var In=(e,t)=>({...e,...t}),Dy=(e,t)=>Object.assign((n,r)=>e(n,In(t,r)),{success:(n,r)=>e.success(n,In(t,r)),error:(n,r)=>e.error(n,In(t,r)),info:(n,r)=>e.info(n,In(t,r)),warning:(n,r)=>e.warning(n,In(t,r)),loading:(n,r)=>e.loading(n,In(t,r)),dismiss:n=>e.dismiss(n)}),cf=(e={})=>Dy(Sy,e);cf();var jy=e=>h.jsx(Ly,{...e});const Fy=cf({duration:3e3});function ky({children:e}){return h.jsxs(h.Fragment,{children:[e,h.jsx(jy,{position:"bottom-center",expand:!1,visibleToasts:3,toastOptions:{duration:3e3,classNames:{toast:"surface-floating whitespace-nowrap px-5 py-3 text-sm font-medium text-fg-secondary shadow-sm",title:"text-sm font-medium text-fg-secondary"}}})]})}function lf(){return Fy}const $y=new _g({defaultOptions:{queries:{refetchOnWindowFocus:!1,retry:!1}}});function uf(e,t){return function(){return e.apply(t,arguments)}}const{toString:Hy}=Object.prototype,{getPrototypeOf:as}=Object,{iterator:is,toStringTag:df}=Symbol,cs=(e=>t=>{const n=Hy.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),St=e=>(e=e.toLowerCase(),t=>cs(t)===e),ls=e=>t=>typeof t===e,{isArray:Yn}=Array,qn=ls("undefined");function kr(e){return e!==null&&!qn(e)&&e.constructor!==null&&!qn(e.constructor)&&tt(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ff=St("ArrayBuffer");function By(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ff(e.buffer),t}const Vy=ls("string"),tt=ls("function"),hf=ls("number"),$r=e=>e!==null&&typeof e=="object",Zy=e=>e===!0||e===!1,vo=e=>{if(cs(e)!=="object")return!1;const t=as(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(df in e)&&!(is in e)},Uy=e=>{if(!$r(e)||kr(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},zy=St("Date"),qy=St("File"),Wy=e=>!!(e&&typeof e.uri<"u"),Ky=e=>e&&typeof e.getParts<"u",Gy=St("Blob"),Qy=St("FileList"),Yy=e=>$r(e)&&tt(e.pipe);function Xy(){return typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}}const Yc=Xy(),Xc=typeof Yc.FormData<"u"?Yc.FormData:void 0,Jy=e=>{if(!e)return!1;if(Xc&&e instanceof Xc)return!0;const t=as(e);if(!t||t===Object.prototype||!tt(e.append))return!1;const n=cs(e);return n==="formdata"||n==="object"&&tt(e.toString)&&e.toString()==="[object FormData]"},e6=St("URLSearchParams"),[t6,n6,r6,o6]=["ReadableStream","Request","Response","Headers"].map(St),s6=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Hr(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,o;if(typeof e!="object"&&(e=[e]),Yn(e))for(r=0,o=e.length;r<o;r++)t.call(null,e[r],r,e);else{if(kr(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 pf(e,t){if(kr(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 un=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,mf=e=>!qn(e)&&e!==un;function wa(...e){const{caseless:t,skipUndefined:n}=mf(this)&&this||{},r={},o=(s,a)=>{if(a==="__proto__"||a==="constructor"||a==="prototype")return;const i=t&&pf(r,a)||a,l=Ea(r,i)?r[i]:void 0;vo(l)&&vo(s)?r[i]=wa(l,s):vo(s)?r[i]=wa({},s):Yn(s)?r[i]=s.slice():(!n||!qn(s))&&(r[i]=s)};for(let s=0,a=e.length;s<a;s++)e[s]&&Hr(e[s],o);return r}const a6=(e,t,n,{allOwnKeys:r}={})=>(Hr(t,(o,s)=>{n&&tt(o)?Object.defineProperty(e,s,{__proto__:null,value:uf(o,n),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,s,{__proto__:null,value:o,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:r}),e),i6=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),c6=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),Object.defineProperty(e.prototype,"constructor",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{__proto__:null,value:t.prototype}),n&&Object.assign(e.prototype,n)},l6=(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&&as(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},u6=(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},d6=e=>{if(!e)return null;if(Yn(e))return e;let t=e.length;if(!hf(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},f6=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&as(Uint8Array)),h6=(e,t)=>{const r=(e&&e[is]).call(e);let o;for(;(o=r.next())&&!o.done;){const s=o.value;t.call(e,s[0],s[1])}},p6=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},m6=St("HTMLFormElement"),g6=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),Ea=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),v6=St("RegExp"),gf=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Hr(n,(o,s)=>{let a;(a=t(o,s,e))!==!1&&(r[s]=a||o)}),Object.defineProperties(e,r)},y6=e=>{gf(e,(t,n)=>{if(tt(e)&&["arguments","caller","callee"].includes(n))return!1;const r=e[n];if(tt(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+"'")})}})},b6=(e,t)=>{const n={},r=o=>{o.forEach(s=>{n[s]=!0})};return Yn(e)?r(e):r(String(e).split(t)),n},x6=()=>{},w6=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function E6(e){return!!(e&&tt(e.append)&&e[df]==="FormData"&&e[is])}const S6=e=>{const t=new Array(10),n=(r,o)=>{if($r(r)){if(t.indexOf(r)>=0)return;if(kr(r))return r;if(!("toJSON"in r)){t[o]=r;const s=Yn(r)?[]:{};return Hr(r,(a,i)=>{const l=n(a,o+1);!qn(l)&&(s[i]=l)}),t[o]=void 0,s}}return r};return n(e,0)},R6=St("AsyncFunction"),C6=e=>e&&($r(e)||tt(e))&&tt(e.then)&&tt(e.catch),vf=((e,t)=>e?setImmediate:t?((n,r)=>(un.addEventListener("message",({source:o,data:s})=>{o===un&&s===n&&r.length&&r.shift()()},!1),o=>{r.push(o),un.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",tt(un.postMessage)),A6=typeof queueMicrotask<"u"?queueMicrotask.bind(un):typeof process<"u"&&process.nextTick||vf,T6=e=>e!=null&&tt(e[is]),R={isArray:Yn,isArrayBuffer:ff,isBuffer:kr,isFormData:Jy,isArrayBufferView:By,isString:Vy,isNumber:hf,isBoolean:Zy,isObject:$r,isPlainObject:vo,isEmptyObject:Uy,isReadableStream:t6,isRequest:n6,isResponse:r6,isHeaders:o6,isUndefined:qn,isDate:zy,isFile:qy,isReactNativeBlob:Wy,isReactNative:Ky,isBlob:Gy,isRegExp:v6,isFunction:tt,isStream:Yy,isURLSearchParams:e6,isTypedArray:f6,isFileList:Qy,forEach:Hr,merge:wa,extend:a6,trim:s6,stripBOM:i6,inherits:c6,toFlatObject:l6,kindOf:cs,kindOfTest:St,endsWith:u6,toArray:d6,forEachEntry:h6,matchAll:p6,isHTMLForm:m6,hasOwnProperty:Ea,hasOwnProp:Ea,reduceDescriptors:gf,freezeMethods:y6,toObjectSet:b6,toCamelCase:g6,noop:x6,toFiniteNumber:w6,findKey:pf,global:un,isContextDefined:mf,isSpecCompliantForm:E6,toJSONObject:S6,isAsyncFn:R6,isThenable:C6,setImmediate:vf,asap:A6,isIterable:T6},P6=R.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"]),M6=e=>{const t={};let n,r,o;return e&&e.split(`
13
- `).forEach(function(a){o=a.indexOf(":"),n=a.substring(0,o).trim().toLowerCase(),r=a.substring(o+1).trim(),!(!n||t[n]&&P6[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Jc=Symbol("internals"),_6=/[^\x09\x20-\x7E\x80-\xFF]/g;function N6(e){let t=0,n=e.length;for(;t<n;){const r=e.charCodeAt(t);if(r!==9&&r!==32)break;t+=1}for(;n>t;){const r=e.charCodeAt(n-1);if(r!==9&&r!==32)break;n-=1}return t===0&&n===e.length?e:e.slice(t,n)}function dr(e){return e&&String(e).trim().toLowerCase()}function O6(e){return N6(e.replace(_6,""))}function yo(e){return e===!1||e==null?e:R.isArray(e)?e.map(yo):O6(String(e))}function I6(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 L6=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Ws(e,t,n,r,o){if(R.isFunction(r))return r.call(this,t,n);if(o&&(t=n),!!R.isString(t)){if(R.isString(r))return t.indexOf(r)!==-1;if(R.isRegExp(r))return r.test(t)}}function D6(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function j6(e,t){const n=R.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{__proto__:null,value:function(o,s,a){return this[r].call(this,t,o,s,a)},configurable:!0})})}let qe=class{constructor(t){t&&this.set(t)}set(t,n,r){const o=this;function s(i,l,u){const f=dr(l);if(!f)throw new Error("header name must be a non-empty string");const d=R.findKey(o,f);(!d||o[d]===void 0||u===!0||u===void 0&&o[d]!==!1)&&(o[d||l]=yo(i))}const a=(i,l)=>R.forEach(i,(u,f)=>s(u,f,l));if(R.isPlainObject(t)||t instanceof this.constructor)a(t,n);else if(R.isString(t)&&(t=t.trim())&&!L6(t))a(M6(t),n);else if(R.isObject(t)&&R.isIterable(t)){let i={},l,u;for(const f of t){if(!R.isArray(f))throw TypeError("Object iterator must return a key-value pair");i[u=f[0]]=(l=i[u])?R.isArray(l)?[...l,f[1]]:[l,f[1]]:f[1]}a(i,n)}else t!=null&&s(n,t,r);return this}get(t,n){if(t=dr(t),t){const r=R.findKey(this,t);if(r){const o=this[r];if(!n)return o;if(n===!0)return I6(o);if(R.isFunction(n))return n.call(this,o,r);if(R.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=dr(t),t){const r=R.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Ws(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let o=!1;function s(a){if(a=dr(a),a){const i=R.findKey(r,a);i&&(!n||Ws(r,r[i],i,n))&&(delete r[i],o=!0)}}return R.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||Ws(this,this[s],s,t,!0))&&(delete this[s],o=!0)}return o}normalize(t){const n=this,r={};return R.forEach(this,(o,s)=>{const a=R.findKey(r,s);if(a){n[a]=yo(o),delete n[s];return}const i=t?D6(s):String(s).trim();i!==s&&delete n[s],n[i]=yo(o),r[i]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return R.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=t&&R.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(`
14
- `)}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[Jc]=this[Jc]={accessors:{}}).accessors,o=this.prototype;function s(a){const i=dr(a);r[i]||(j6(o,a),r[i]=!0)}return R.isArray(t)?t.forEach(s):s(t),this}};qe.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);R.reduceDescriptors(qe.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});R.freezeMethods(qe);const F6="[REDACTED ****]";function k6(e){if(R.hasOwnProp(e,"toJSON"))return!0;let t=Object.getPrototypeOf(e);for(;t&&t!==Object.prototype;){if(R.hasOwnProp(t,"toJSON"))return!0;t=Object.getPrototypeOf(t)}return!1}function $6(e,t){const n=new Set(t.map(s=>String(s).toLowerCase())),r=[],o=s=>{if(s===null||typeof s!="object"||R.isBuffer(s))return s;if(r.indexOf(s)!==-1)return;s instanceof qe&&(s=s.toJSON()),r.push(s);let a;if(R.isArray(s))a=[],s.forEach((i,l)=>{const u=o(i);R.isUndefined(u)||(a[l]=u)});else{if(!R.isPlainObject(s)&&k6(s))return r.pop(),s;a=Object.create(null);for(const[i,l]of Object.entries(s)){const u=n.has(i.toLowerCase())?F6:o(l);R.isUndefined(u)||(a[i]=u)}}return r.pop(),a};return o(e)}let G=class yf extends Error{static from(t,n,r,o,s,a){const i=new yf(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",{__proto__:null,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(){const t=this.config,n=t&&R.hasOwnProp(t,"redact")?t.redact:void 0,r=R.isArray(n)&&n.length>0?$6(t,n):R.toJSONObject(t);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:r,code:this.code,status:this.status}}};G.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE";G.ERR_BAD_OPTION="ERR_BAD_OPTION";G.ECONNABORTED="ECONNABORTED";G.ETIMEDOUT="ETIMEDOUT";G.ECONNREFUSED="ECONNREFUSED";G.ERR_NETWORK="ERR_NETWORK";G.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS";G.ERR_DEPRECATED="ERR_DEPRECATED";G.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE";G.ERR_BAD_REQUEST="ERR_BAD_REQUEST";G.ERR_CANCELED="ERR_CANCELED";G.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT";G.ERR_INVALID_URL="ERR_INVALID_URL";G.ERR_FORM_DATA_DEPTH_EXCEEDED="ERR_FORM_DATA_DEPTH_EXCEEDED";const H6=null;function Sa(e){return R.isPlainObject(e)||R.isArray(e)}function bf(e){return R.endsWith(e,"[]")?e.slice(0,-2):e}function Ks(e,t,n){return e?e.concat(t).map(function(o,s){return o=bf(o),!n&&s?"["+o+"]":o}).join(n?".":""):t}function B6(e){return R.isArray(e)&&!e.some(Sa)}const V6=R.toFlatObject(R,{},null,function(t){return/^is[A-Z]/.test(t)});function us(e,t,n){if(!R.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=R.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(y,b){return!R.isUndefined(b[y])});const r=n.metaTokens,o=n.visitor||d,s=n.dots,a=n.indexes,i=n.Blob||typeof Blob<"u"&&Blob,l=n.maxDepth===void 0?100:n.maxDepth,u=i&&R.isSpecCompliantForm(t);if(!R.isFunction(o))throw new TypeError("visitor must be a function");function f(g){if(g===null)return"";if(R.isDate(g))return g.toISOString();if(R.isBoolean(g))return g.toString();if(!u&&R.isBlob(g))throw new G("Blob is not supported. Use a Buffer instead.");return R.isArrayBuffer(g)||R.isTypedArray(g)?u&&typeof Blob=="function"?new Blob([g]):Buffer.from(g):g}function d(g,y,b){let x=g;if(R.isReactNative(t)&&R.isReactNativeBlob(g))return t.append(Ks(b,y,s),f(g)),!1;if(g&&!b&&typeof g=="object"){if(R.endsWith(y,"{}"))y=r?y:y.slice(0,-2),g=JSON.stringify(g);else if(R.isArray(g)&&B6(g)||(R.isFileList(g)||R.endsWith(y,"[]"))&&(x=R.toArray(g)))return y=bf(y),x.forEach(function(E,C){!(R.isUndefined(E)||E===null)&&t.append(a===!0?Ks([y],C,s):a===null?y:y+"[]",f(E))}),!1}return Sa(g)?!0:(t.append(Ks(b,y,s),f(g)),!1)}const p=[],m=Object.assign(V6,{defaultVisitor:d,convertValue:f,isVisitable:Sa});function v(g,y,b=0){if(!R.isUndefined(g)){if(b>l)throw new G("Object is too deeply nested ("+b+" levels). Max depth: "+l,G.ERR_FORM_DATA_DEPTH_EXCEEDED);if(p.indexOf(g)!==-1)throw Error("Circular reference detected in "+y.join("."));p.push(g),R.forEach(g,function(w,E){(!(R.isUndefined(w)||w===null)&&o.call(t,w,R.isString(E)?E.trim():E,y,m))===!0&&v(w,y?y.concat(E):[E],b+1)}),p.pop()}}if(!R.isObject(e))throw new TypeError("data must be an object");return v(e),t}function el(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"};return encodeURIComponent(e).replace(/[!'()~]|%20/g,function(r){return t[r]})}function Ei(e,t){this._pairs=[],e&&us(e,this,t)}const xf=Ei.prototype;xf.append=function(t,n){this._pairs.push([t,n])};xf.toString=function(t){const n=t?function(r){return t.call(this,r,el)}:el;return this._pairs.map(function(o){return n(o[0])+"="+n(o[1])},"").join("&")};function Z6(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function wf(e,t,n){if(!t)return e;const r=n&&n.encode||Z6,o=R.isFunction(n)?{serialize:n}:n,s=o&&o.serialize;let a;if(s?a=s(t,o):a=R.isURLSearchParams(t)?t.toString():new Ei(t,o).toString(r),a){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+a}return e}class tl{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){R.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Si={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0},U6=typeof URLSearchParams<"u"?URLSearchParams:Ei,z6=typeof FormData<"u"?FormData:null,q6=typeof Blob<"u"?Blob:null,W6={isBrowser:!0,classes:{URLSearchParams:U6,FormData:z6,Blob:q6},protocols:["http","https","file","blob","url","data"]},Ri=typeof window<"u"&&typeof document<"u",Ra=typeof navigator=="object"&&navigator||void 0,K6=Ri&&(!Ra||["ReactNative","NativeScript","NS"].indexOf(Ra.product)<0),G6=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Q6=Ri&&window.location.href||"http://localhost",Y6=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ri,hasStandardBrowserEnv:K6,hasStandardBrowserWebWorkerEnv:G6,navigator:Ra,origin:Q6},Symbol.toStringTag,{value:"Module"})),He={...Y6,...W6};function X6(e,t){return us(e,new He.classes.URLSearchParams,{visitor:function(n,r,o,s){return He.isNode&&R.isBuffer(n)?(this.append(r,n.toString("base64")),!1):s.defaultVisitor.apply(this,arguments)},...t})}function J6(e){return R.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function e8(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 Ef(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&&R.isArray(o)?o.length:a,l?(R.hasOwnProp(o,a)?o[a]=R.isArray(o[a])?o[a].concat(r):[o[a],r]:o[a]=r,!i):((!o[a]||!R.isObject(o[a]))&&(o[a]=[]),t(n,r,o[a],s)&&R.isArray(o[a])&&(o[a]=e8(o[a])),!i)}if(R.isFormData(e)&&R.isFunction(e.entries)){const n={};return R.forEachEntry(e,(r,o)=>{t(J6(r),o,n,0)}),n}return null}const Ln=(e,t)=>e!=null&&R.hasOwnProp(e,t)?e[t]:void 0;function t8(e,t,n){if(R.isString(e))try{return(t||JSON.parse)(e),R.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const Br={transitional:Si,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,s=R.isObject(t);if(s&&R.isHTMLForm(t)&&(t=new FormData(t)),R.isFormData(t))return o?JSON.stringify(Ef(t)):t;if(R.isArrayBuffer(t)||R.isBuffer(t)||R.isStream(t)||R.isFile(t)||R.isBlob(t)||R.isReadableStream(t))return t;if(R.isArrayBufferView(t))return t.buffer;if(R.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let i;if(s){const l=Ln(this,"formSerializer");if(r.indexOf("application/x-www-form-urlencoded")>-1)return X6(t,l).toString();if((i=R.isFileList(t))||r.indexOf("multipart/form-data")>-1){const u=Ln(this,"env"),f=u&&u.FormData;return us(i?{"files[]":t}:t,f&&new f,l)}}return s||o?(n.setContentType("application/json",!1),t8(t)):t}],transformResponse:[function(t){const n=Ln(this,"transitional")||Br.transitional,r=n&&n.forcedJSONParsing,o=Ln(this,"responseType"),s=o==="json";if(R.isResponse(t)||R.isReadableStream(t))return t;if(t&&R.isString(t)&&(r&&!o||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t,Ln(this,"parseReviver"))}catch(l){if(i)throw l.name==="SyntaxError"?G.from(l,G.ERR_BAD_RESPONSE,this,null,Ln(this,"response")):l}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:He.classes.FormData,Blob:He.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};R.forEach(["delete","get","head","post","put","patch","query"],e=>{Br.headers[e]={}});function Gs(e,t){const n=this||Br,r=t||n,o=qe.from(r.headers);let s=r.data;return R.forEach(e,function(i){s=i.call(n,s,o.normalize(),t?t.status:void 0)}),o.normalize(),s}function Sf(e){return!!(e&&e.__CANCEL__)}let Vr=class extends G{constructor(t,n,r){super(t??"canceled",G.ERR_CANCELED,n,r),this.name="CanceledError",this.__CANCEL__=!0}};function Rf(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new G("Request failed with status code "+n.status,n.status>=400&&n.status<500?G.ERR_BAD_REQUEST:G.ERR_BAD_RESPONSE,n.config,n.request,n))}function n8(e){const t=/^([-+\w]{1,25}):(?:\/\/)?/.exec(e);return t&&t[1]||""}function r8(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(),f=r[s];a||(a=u),n[o]=l,r[o]=u;let d=s,p=0;for(;d!==o;)p+=n[d++],d=d%e;if(o=(o+1)%e,o===s&&(s=(s+1)%e),u-a<t)return;const m=f&&u-f;return m?Math.round(p*1e3/m):void 0}}function o8(e,t){let n=0,r=1e3/t,o,s;const a=(u,f=Date.now())=>{n=f,o=null,s&&(clearTimeout(s),s=null),e(...u)};return[(...u)=>{const f=Date.now(),d=f-n;d>=r?a(u,f):(o=u,s||(s=setTimeout(()=>{s=null,a(o)},r-d)))},()=>o&&a(o)]}const jo=(e,t,n=3)=>{let r=0;const o=r8(50,250);return o8(s=>{const a=s.loaded,i=s.lengthComputable?s.total:void 0,l=i!=null?Math.min(a,i):a,u=Math.max(0,l-r),f=o(u);r=Math.max(r,l);const d={loaded:l,total:i,progress:i?l/i:void 0,bytes:u,rate:f||void 0,estimated:f&&i?(i-l)/f:void 0,event:s,lengthComputable:i!=null,[t?"download":"upload"]:!0};e(d)},n)},nl=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},rl=e=>(...t)=>R.asap(()=>e(...t)),s8=He.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,He.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(He.origin),He.navigator&&/(msie|trident)/i.test(He.navigator.userAgent)):()=>!0,a8=He.hasStandardBrowserEnv?{write(e,t,n,r,o,s,a){if(typeof document>"u")return;const i=[`${e}=${encodeURIComponent(t)}`];R.isNumber(n)&&i.push(`expires=${new Date(n).toUTCString()}`),R.isString(r)&&i.push(`path=${r}`),R.isString(o)&&i.push(`domain=${o}`),s===!0&&i.push("secure"),R.isString(a)&&i.push(`SameSite=${a}`),document.cookie=i.join("; ")},read(e){if(typeof document>"u")return null;const t=document.cookie.split(";");for(let n=0;n<t.length;n++){const r=t[n].replace(/^\s+/,""),o=r.indexOf("=");if(o!==-1&&r.slice(0,o)===e)return decodeURIComponent(r.slice(o+1))}return null},remove(e){this.write(e,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function i8(e){return typeof e!="string"?!1:/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function c8(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function Cf(e,t,n){let r=!i8(t);return e&&(r||n===!1)?c8(e,t):t}const ol=e=>e instanceof qe?{...e}:e;function xn(e,t){t=t||{};const n=Object.create(null);Object.defineProperty(n,"hasOwnProperty",{__proto__:null,value:Object.prototype.hasOwnProperty,enumerable:!1,writable:!0,configurable:!0});function r(u,f,d,p){return R.isPlainObject(u)&&R.isPlainObject(f)?R.merge.call({caseless:p},u,f):R.isPlainObject(f)?R.merge({},f):R.isArray(f)?f.slice():f}function o(u,f,d,p){if(R.isUndefined(f)){if(!R.isUndefined(u))return r(void 0,u,d,p)}else return r(u,f,d,p)}function s(u,f){if(!R.isUndefined(f))return r(void 0,f)}function a(u,f){if(R.isUndefined(f)){if(!R.isUndefined(u))return r(void 0,u)}else return r(void 0,f)}function i(u,f,d){if(R.hasOwnProp(t,d))return r(u,f);if(R.hasOwnProp(e,d))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,allowedSocketPaths:a,responseEncoding:a,validateStatus:i,headers:(u,f,d)=>o(ol(u),ol(f),d,!0)};return R.forEach(Object.keys({...e,...t}),function(f){if(f==="__proto__"||f==="constructor"||f==="prototype")return;const d=R.hasOwnProp(l,f)?l[f]:o,p=R.hasOwnProp(e,f)?e[f]:void 0,m=R.hasOwnProp(t,f)?t[f]:void 0,v=d(p,m,f);R.isUndefined(v)&&d!==i||(n[f]=v)}),n}const l8=["content-type","content-length"];function u8(e,t,n){if(n!=="content-only"){e.set(t);return}Object.entries(t).forEach(([r,o])=>{l8.includes(r.toLowerCase())&&e.set(r,o)})}const d8=e=>encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(t,n)=>String.fromCharCode(parseInt(n,16))),Af=e=>{const t=xn({},e),n=p=>R.hasOwnProp(t,p)?t[p]:void 0,r=n("data");let o=n("withXSRFToken");const s=n("xsrfHeaderName"),a=n("xsrfCookieName");let i=n("headers");const l=n("auth"),u=n("baseURL"),f=n("allowAbsoluteUrls"),d=n("url");if(t.headers=i=qe.from(i),t.url=wf(Cf(u,d,f),e.params,e.paramsSerializer),l&&i.set("Authorization","Basic "+btoa((l.username||"")+":"+(l.password?d8(l.password):""))),R.isFormData(r)&&(He.hasStandardBrowserEnv||He.hasStandardBrowserWebWorkerEnv?i.setContentType(void 0):R.isFunction(r.getHeaders)&&u8(i,r.getHeaders(),n("formDataHeaderPolicy"))),He.hasStandardBrowserEnv&&(R.isFunction(o)&&(o=o(t)),o===!0||o==null&&s8(t.url))){const m=s&&a&&a8.read(a);m&&i.set(s,m)}return t},f8=typeof XMLHttpRequest<"u",h8=f8&&function(e){return new Promise(function(n,r){const o=Af(e);let s=o.data;const a=qe.from(o.headers).normalize();let{responseType:i,onUploadProgress:l,onDownloadProgress:u}=o,f,d,p,m,v;function g(){m&&m(),v&&v(),o.cancelToken&&o.cancelToken.unsubscribe(f),o.signal&&o.signal.removeEventListener("abort",f)}let y=new XMLHttpRequest;y.open(o.method.toUpperCase(),o.url,!0),y.timeout=o.timeout;function b(){if(!y)return;const w=qe.from("getAllResponseHeaders"in y&&y.getAllResponseHeaders()),C={data:!i||i==="text"||i==="json"?y.responseText:y.response,status:y.status,statusText:y.statusText,headers:w,config:e,request:y};Rf(function(A){n(A),g()},function(A){r(A),g()},C),y=null}"onloadend"in y?y.onloadend=b:y.onreadystatechange=function(){!y||y.readyState!==4||y.status===0&&!(y.responseURL&&y.responseURL.startsWith("file:"))||setTimeout(b)},y.onabort=function(){y&&(r(new G("Request aborted",G.ECONNABORTED,e,y)),g(),y=null)},y.onerror=function(E){const C=E&&E.message?E.message:"Network Error",O=new G(C,G.ERR_NETWORK,e,y);O.event=E||null,r(O),g(),y=null},y.ontimeout=function(){let E=o.timeout?"timeout of "+o.timeout+"ms exceeded":"timeout exceeded";const C=o.transitional||Si;o.timeoutErrorMessage&&(E=o.timeoutErrorMessage),r(new G(E,C.clarifyTimeoutError?G.ETIMEDOUT:G.ECONNABORTED,e,y)),g(),y=null},s===void 0&&a.setContentType(null),"setRequestHeader"in y&&R.forEach(a.toJSON(),function(E,C){y.setRequestHeader(C,E)}),R.isUndefined(o.withCredentials)||(y.withCredentials=!!o.withCredentials),i&&i!=="json"&&(y.responseType=o.responseType),u&&([p,v]=jo(u,!0),y.addEventListener("progress",p)),l&&y.upload&&([d,m]=jo(l),y.upload.addEventListener("progress",d),y.upload.addEventListener("loadend",m)),(o.cancelToken||o.signal)&&(f=w=>{y&&(r(!w||w.type?new Vr(null,e,y):w),y.abort(),g(),y=null)},o.cancelToken&&o.cancelToken.subscribe(f),o.signal&&(o.signal.aborted?f():o.signal.addEventListener("abort",f)));const x=n8(o.url);if(x&&!He.protocols.includes(x)){r(new G("Unsupported protocol "+x+":",G.ERR_BAD_REQUEST,e));return}y.send(s||null)})},p8=(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 f=u instanceof Error?u:this.reason;r.abort(f instanceof G?f:new Vr(f instanceof Error?f.message:f))}};let a=t&&setTimeout(()=>{a=null,s(new G(`timeout of ${t}ms exceeded`,G.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=()=>R.asap(i),l}},m8=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},g8=async function*(e,t){for await(const n of v8(e))yield*m8(n,t)},v8=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()}},sl=(e,t,n,r)=>{const o=g8(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:f}=await o.next();if(u){i(),l.close();return}let d=f.byteLength;if(n){let p=s+=d;n(p)}l.enqueue(new Uint8Array(f))}catch(u){throw i(u),u}},cancel(l){return i(l),o.return()}},{highWaterMark:2})};function y8(e){if(!e||typeof e!="string"||!e.startsWith("data:"))return 0;const t=e.indexOf(",");if(t<0)return 0;const n=e.slice(5,t),r=e.slice(t+1);if(/;base64/i.test(n)){let a=r.length;const i=r.length;for(let m=0;m<i;m++)if(r.charCodeAt(m)===37&&m+2<i){const v=r.charCodeAt(m+1),g=r.charCodeAt(m+2);(v>=48&&v<=57||v>=65&&v<=70||v>=97&&v<=102)&&(g>=48&&g<=57||g>=65&&g<=70||g>=97&&g<=102)&&(a-=2,m+=2)}let l=0,u=i-1;const f=m=>m>=2&&r.charCodeAt(m-2)===37&&r.charCodeAt(m-1)===51&&(r.charCodeAt(m)===68||r.charCodeAt(m)===100);u>=0&&(r.charCodeAt(u)===61?(l++,u--):f(u)&&(l++,u-=3)),l===1&&u>=0&&(r.charCodeAt(u)===61||f(u))&&l++;const p=Math.floor(a/4)*3-(l||0);return p>0?p:0}if(typeof Buffer<"u"&&typeof Buffer.byteLength=="function")return Buffer.byteLength(r,"utf8");let s=0;for(let a=0,i=r.length;a<i;a++){const l=r.charCodeAt(a);if(l<128)s+=1;else if(l<2048)s+=2;else if(l>=55296&&l<=56319&&a+1<i){const u=r.charCodeAt(a+1);u>=56320&&u<=57343?(s+=4,a++):s+=3}else s+=3}return s}const Ci="1.16.0",al=64*1024,{isFunction:io}=R,il=(e,...t)=>{try{return!!e(...t)}catch{return!1}},b8=e=>{const t=R.global??globalThis,{ReadableStream:n,TextEncoder:r}=t;e=R.merge.call({skipUndefined:!0},{Request:t.Request,Response:t.Response},e);const{fetch:o,Request:s,Response:a}=e,i=o?io(o):typeof fetch=="function",l=io(s),u=io(a);if(!i)return!1;const f=i&&io(n),d=i&&(typeof r=="function"?(b=>x=>b.encode(x))(new r):async b=>new Uint8Array(await new s(b).arrayBuffer())),p=l&&f&&il(()=>{let b=!1;const x=new s(He.origin,{body:new n,method:"POST",get duplex(){return b=!0,"half"}}),w=x.headers.has("Content-Type");return x.body!=null&&x.body.cancel(),b&&!w}),m=u&&f&&il(()=>R.isReadableStream(new a("").body)),v={stream:m&&(b=>b.body)};i&&["text","arrayBuffer","blob","formData","stream"].forEach(b=>{!v[b]&&(v[b]=(x,w)=>{let E=x&&x[b];if(E)return E.call(x);throw new G(`Response type '${b}' is not supported`,G.ERR_NOT_SUPPORT,w)})});const g=async b=>{if(b==null)return 0;if(R.isBlob(b))return b.size;if(R.isSpecCompliantForm(b))return(await new s(He.origin,{method:"POST",body:b}).arrayBuffer()).byteLength;if(R.isArrayBufferView(b)||R.isArrayBuffer(b))return b.byteLength;if(R.isURLSearchParams(b)&&(b=b+""),R.isString(b))return(await d(b)).byteLength},y=async(b,x)=>{const w=R.toFiniteNumber(b.getContentLength());return w??g(x)};return async b=>{let{url:x,method:w,data:E,signal:C,cancelToken:O,timeout:A,onDownloadProgress:S,onUploadProgress:N,responseType:I,headers:P,withCredentials:H="same-origin",fetchOptions:q,maxContentLength:D,maxBodyLength:F}=Af(b);const T=R.isNumber(D)&&D>-1,L=R.isNumber(F)&&F>-1;let j=o||fetch;I=I?(I+"").toLowerCase():"text";let _=p8([C,O&&O.toAbortSignal()],A),V=null;const W=_&&_.unsubscribe&&(()=>{_.unsubscribe()});let Q;try{if(T&&typeof x=="string"&&x.startsWith("data:")&&y8(x)>D)throw new G("maxContentLength size of "+D+" exceeded",G.ERR_BAD_RESPONSE,b,V);if(L&&w!=="get"&&w!=="head"){const k=await y(P,E);if(typeof k=="number"&&isFinite(k)&&k>F)throw new G("Request body larger than maxBodyLength limit",G.ERR_BAD_REQUEST,b,V)}if(N&&p&&w!=="get"&&w!=="head"&&(Q=await y(P,E))!==0){let k=new s(x,{method:"POST",body:E,duplex:"half"}),ee;if(R.isFormData(E)&&(ee=k.headers.get("content-type"))&&P.setContentType(ee),k.body){const[Z,X]=nl(Q,jo(rl(N)));E=sl(k.body,al,Z,X)}}R.isString(H)||(H=H?"include":"omit");const B=l&&"credentials"in s.prototype;if(R.isFormData(E)){const k=P.getContentType();k&&/^multipart\/form-data/i.test(k)&&!/boundary=/i.test(k)&&P.delete("content-type")}P.set("User-Agent","axios/"+Ci,!1);const z={...q,signal:_,method:w.toUpperCase(),headers:P.normalize().toJSON(),body:E,duplex:"half",credentials:B?H:void 0};V=l&&new s(x,z);let U=await(l?j(V,q):j(x,z));if(T){const k=R.toFiniteNumber(U.headers.get("content-length"));if(k!=null&&k>D)throw new G("maxContentLength size of "+D+" exceeded",G.ERR_BAD_RESPONSE,b,V)}const J=m&&(I==="stream"||I==="response");if(m&&U.body&&(S||T||J&&W)){const k={};["status","statusText","headers"].forEach(ue=>{k[ue]=U[ue]});const ee=R.toFiniteNumber(U.headers.get("content-length")),[Z,X]=S&&nl(ee,jo(rl(S),!0))||[];let te=0;const ie=ue=>{if(T&&(te=ue,te>D))throw new G("maxContentLength size of "+D+" exceeded",G.ERR_BAD_RESPONSE,b,V);Z&&Z(ue)};U=new a(sl(U.body,al,ie,()=>{X&&X(),W&&W()}),k)}I=I||"text";let $=await v[R.findKey(v,I)||"text"](U,b);if(T&&!m&&!J){let k;if($!=null&&(typeof $.byteLength=="number"?k=$.byteLength:typeof $.size=="number"?k=$.size:typeof $=="string"&&(k=typeof r=="function"?new r().encode($).byteLength:$.length)),typeof k=="number"&&k>D)throw new G("maxContentLength size of "+D+" exceeded",G.ERR_BAD_RESPONSE,b,V)}return!J&&W&&W(),await new Promise((k,ee)=>{Rf(k,ee,{data:$,headers:qe.from(U.headers),status:U.status,statusText:U.statusText,config:b,request:V})})}catch(B){if(W&&W(),_&&_.aborted&&_.reason instanceof G){const z=_.reason;throw z.config=b,V&&(z.request=V),B!==z&&(z.cause=B),z}throw B&&B.name==="TypeError"&&/Load failed|fetch/i.test(B.message)?Object.assign(new G("Network Error",G.ERR_NETWORK,b,V,B&&B.response),{cause:B.cause||B}):G.from(B,B&&B.code,b,V,B&&B.response)}}},x8=new Map,Tf=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,f=x8;for(;i--;)l=s[i],u=f.get(l),u===void 0&&f.set(l,u=i?new Map:b8(t)),f=u;return u};Tf();const Ai={http:H6,xhr:h8,fetch:{get:Tf}};R.forEach(Ai,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{__proto__:null,value:t})}catch{}Object.defineProperty(e,"adapterName",{__proto__:null,value:t})}});const cl=e=>`- ${e}`,w8=e=>R.isFunction(e)||e===null||e===!1;function E8(e,t){e=R.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,!w8(r)&&(o=Ai[(i=String(r)).toLowerCase()],o===void 0))throw new G(`Unknown adapter '${i}'`);if(o&&(R.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 :
15
- `+a.map(cl).join(`
16
- `):" "+cl(a[0]):"as no adapter specified";throw new G("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return o}const Pf={getAdapter:E8,adapters:Ai};function Qs(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Vr(null,e)}function ll(e){return Qs(e),e.headers=qe.from(e.headers),e.data=Gs.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Pf.getAdapter(e.adapter||Br.adapter,e)(e).then(function(r){Qs(e),e.response=r;try{r.data=Gs.call(e,e.transformResponse,r)}finally{delete e.response}return r.headers=qe.from(r.headers),r},function(r){if(!Sf(r)&&(Qs(e),r&&r.response)){e.response=r.response;try{r.response.data=Gs.call(e,e.transformResponse,r.response)}finally{delete e.response}r.response.headers=qe.from(r.response.headers)}return Promise.reject(r)})}const ds={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ds[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const ul={};ds.transitional=function(t,n,r){function o(s,a){return"[Axios v"+Ci+"] Transitional option '"+s+"'"+a+(r?". "+r:"")}return(s,a,i)=>{if(t===!1)throw new G(o(a," has been removed"+(n?" in "+n:"")),G.ERR_DEPRECATED);return n&&!ul[a]&&(ul[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}};ds.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function S8(e,t,n){if(typeof e!="object")throw new G("options must be an object",G.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let o=r.length;for(;o-- >0;){const s=r[o],a=Object.prototype.hasOwnProperty.call(t,s)?t[s]:void 0;if(a){const i=e[s],l=i===void 0||a(i,s,e);if(l!==!0)throw new G("option "+s+" must be "+l,G.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new G("Unknown option "+s,G.ERR_BAD_OPTION)}}const bo={assertOptions:S8,validators:ds},dt=bo.validators;let hn=class{constructor(t){this.defaults=t||{},this.interceptors={request:new tl,response:new tl}}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=(()=>{if(!o.stack)return"";const a=o.stack.indexOf(`
17
- `);return a===-1?"":o.stack.slice(a+1)})();try{if(!r.stack)r.stack=s;else if(s){const a=s.indexOf(`
18
- `),i=a===-1?-1:s.indexOf(`
19
- `,a+1),l=i===-1?"":s.slice(i+1);String(r.stack).endsWith(l)||(r.stack+=`
20
- `+s)}}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=xn(this.defaults,n);const{transitional:r,paramsSerializer:o,headers:s}=n;r!==void 0&&bo.assertOptions(r,{silentJSONParsing:dt.transitional(dt.boolean),forcedJSONParsing:dt.transitional(dt.boolean),clarifyTimeoutError:dt.transitional(dt.boolean),legacyInterceptorReqResOrdering:dt.transitional(dt.boolean)},!1),o!=null&&(R.isFunction(o)?n.paramsSerializer={serialize:o}:bo.assertOptions(o,{encode:dt.function,serialize:dt.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),bo.assertOptions(n,{baseUrl:dt.spelling("baseURL"),withXsrfToken:dt.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=s&&R.merge(s.common,s[n.method]);s&&R.forEach(["delete","get","head","post","put","patch","query","common"],v=>{delete s[v]}),n.headers=qe.concat(a,s);const i=[];let l=!0;this.interceptors.request.forEach(function(g){if(typeof g.runWhen=="function"&&g.runWhen(n)===!1)return;l=l&&g.synchronous;const y=n.transitional||Si;y&&y.legacyInterceptorReqResOrdering?i.unshift(g.fulfilled,g.rejected):i.push(g.fulfilled,g.rejected)});const u=[];this.interceptors.response.forEach(function(g){u.push(g.fulfilled,g.rejected)});let f,d=0,p;if(!l){const v=[ll.bind(this),void 0];for(v.unshift(...i),v.push(...u),p=v.length,f=Promise.resolve(n);d<p;)f=f.then(v[d++],v[d++]);return f}p=i.length;let m=n;for(;d<p;){const v=i[d++],g=i[d++];try{m=v(m)}catch(y){g.call(this,y);break}}try{f=ll.call(this,m)}catch(v){return Promise.reject(v)}for(d=0,p=u.length;d<p;)f=f.then(u[d++],u[d++]);return f}getUri(t){t=xn(this.defaults,t);const n=Cf(t.baseURL,t.url,t.allowAbsoluteUrls);return wf(n,t.params,t.paramsSerializer)}};R.forEach(["delete","get","head","options"],function(t){hn.prototype[t]=function(n,r){return this.request(xn(r||{},{method:t,url:n,data:(r||{}).data}))}});R.forEach(["post","put","patch","query"],function(t){function n(r){return function(s,a,i){return this.request(xn(i||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:s,data:a}))}}hn.prototype[t]=n(),t!=="query"&&(hn.prototype[t+"Form"]=n(!0))});let R8=class Mf{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 Vr(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 Mf(function(o){t=o}),cancel:t}}};function C8(e){return function(n){return e.apply(null,n)}}function A8(e){return R.isObject(e)&&e.isAxiosError===!0}const Ca={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(Ca).forEach(([e,t])=>{Ca[t]=e});function _f(e){const t=new hn(e),n=uf(hn.prototype.request,t);return R.extend(n,hn.prototype,t,{allOwnKeys:!0}),R.extend(n,t,null,{allOwnKeys:!0}),n.create=function(o){return _f(xn(e,o))},n}const ve=_f(Br);ve.Axios=hn;ve.CanceledError=Vr;ve.CancelToken=R8;ve.isCancel=Sf;ve.VERSION=Ci;ve.toFormData=us;ve.AxiosError=G;ve.Cancel=ve.CanceledError;ve.all=function(t){return Promise.all(t)};ve.spread=C8;ve.isAxiosError=A8;ve.mergeConfig=xn;ve.AxiosHeaders=qe;ve.formToJSON=e=>Ef(R.isHTMLForm(e)?new FormData(e):e);ve.getAdapter=Pf.getAdapter;ve.HttpStatusCode=Ca;ve.default=ve;const{Axios:qC,AxiosError:WC,CanceledError:KC,isCancel:GC,CancelToken:QC,VERSION:YC,all:XC,Cancel:JC,isAxiosError:e5,spread:t5,toFormData:n5,AxiosHeaders:r5,HttpStatusCode:o5,formToJSON:s5,getAdapter:a5,mergeConfig:i5,create:c5}=ve,Ti="/login",T8="/api/auth/";let dl,fl=!1;const P8=e=>{const t=`${e.pathname||"/"}${e.search}${e.hash}`;return`${Ti}?next=${encodeURIComponent(t)}`},M8=e=>{if(!ve.isAxiosError(e)||e.response?.status!==401)return!1;const t=e.config?.url??"";return!t.startsWith(T8)&&t!==Ti},_8=e=>!!(e.authRequired&&!e.authenticated),Nf=(e=window.location)=>{fl||e.pathname===Ti||(fl=!0,e.assign(P8(e)))},N8=async(e=fetch)=>{const t=await e("/api/auth/session").catch(()=>{});if(!t?.ok)return;const n=await t.json();_8(n)&&Nf()},O8=()=>{dl===void 0&&(dl=ve.interceptors.response.use(e=>e,e=>(M8(e)&&Nf(),Promise.reject(e))))},I8=e=>!e||e.length===0?null:[...new Set(e)].sort(),L8=e=>!e||e.length===0?[]:[...new Set(e.map(t=>t.trim()).filter(Boolean))].sort(),D8=e=>!e||e.length===0?null:[...new Set(e)].sort(),ae={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:I8(e.fields)}],tagListAll:()=>["notes","tag-list"],tagList:(e={})=>["notes","tag-list",{limit:e.limit??25,offset:e.offset??0,query:e.query??""}],tagNameListAll:()=>["notes","tag-name-list"],tagNameList:e=>["notes","tag-name-list",{limit:e.limit??25,offset:e.offset??0,mode:e.mode??"and",tagNames:L8(e.tagNames)}],detail:e=>["notes","detail",{id:e}],snapshots:(e,t=10)=>["notes","snapshots",{id:e,limit:t}],snapshotDetail:e=>["notes","snapshot-detail",{id:e}],trashAll:()=>["notes","trash"],trash:(e={})=>["notes","trash",{limit:e.limit??25,offset:e.offset??0}],trashDetail:e=>["notes","trash","detail",{id:e}],pinned:()=>["notes","pinned"],backReferencesAll:()=>["notes","back-references"],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:D8(e.fields)}]},calendar:{all:()=>["calendar"],notesInDateRange:(e,t)=>["calendar","notes-in-date-range",{year:e,month:t}]},views:{all:()=>["views"],workspace:()=>["views","workspace"],section:e=>["views","section",{id:e}],sectionNotesAll:()=>["views","section-notes"],sectionNotes:(e,t={})=>["views","section-notes",{id:e,limit:t.limit??25,offset:t.offset??0}]},ui:{heroBanner:()=>["ui","hero-banner"]}},j8=async(e,t)=>{switch(t.type){case"mcp.note.created":case"mcp.note.updated":case"web.note.updated":await Promise.all([e.invalidateQueries({queryKey:ae.notes.listAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.tagListAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.tagNameListAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.pinned(),exact:!0}),e.invalidateQueries({queryKey:ae.notes.backReferencesAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.graph(),exact:!0}),e.invalidateQueries({queryKey:ae.views.sectionNotesAll(),exact:!1}),e.invalidateQueries({queryKey:ae.tags.all(),exact:!1})]);return;case"mcp.note.deleted":await Promise.all([e.invalidateQueries({queryKey:ae.notes.listAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.tagListAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.tagNameListAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.trashAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.pinned(),exact:!0}),e.invalidateQueries({queryKey:ae.notes.backReferencesAll(),exact:!1}),e.invalidateQueries({queryKey:ae.notes.graph(),exact:!0}),e.invalidateQueries({queryKey:ae.views.sectionNotesAll(),exact:!1}),e.invalidateQueries({queryKey:ae.tags.all(),exact:!1}),e.invalidateQueries({queryKey:ae.reminders.all(),exact:!1}),e.invalidateQueries({queryKey:ae.images.all(),exact:!1}),e.invalidateQueries({queryKey:ae.calendar.all(),exact:!1})]);return}},F8=["mcp.note.created","mcp.note.updated","mcp.note.deleted"],k8=["web.note.updated"],$8=[...F8,...k8],Aa=new Set,H8="ocean-brain:web-note-events",Of="ocean-brain:web-note-event",fr=new Set;let hl=!1,Ta=null;const If=e=>typeof e=="object"&&e!==null,B8=e=>!If(e)||e.source!=="mcp"||typeof e.noteId!="string"||typeof e.type!="string"?!1:e.type==="mcp.note.deleted"||(e.type==="mcp.note.created"||e.type==="mcp.note.updated")&&typeof e.updatedAt=="string",V8=e=>!(!If(e)||e.source!=="web"||e.type!=="web.note.updated"||typeof e.noteId!="string"||typeof e.updatedAt!="string"||e.editSessionId!==void 0&&typeof e.editSessionId!="string"||e.eventId!==void 0&&typeof e.eventId!="string"),Z8=e=>B8(e)||V8(e),Lf=e=>Z8(e)?e:null,Df=e=>{try{const t=JSON.parse(e);return Lf(t)}catch{return null}},U8=e=>e.source!=="web"||!e.eventId?!1:fr.has(e.eventId)?!0:(fr.add(e.eventId),fr.size>200&&(fr.clear(),fr.add(e.eventId)),!1),Pi=e=>{U8(e)||Aa.forEach(t=>{t(e)})},z8=e=>{const t=Lf(e);!t||t.source!=="web"||Pi(t)},jf=()=>{hl||typeof window>"u"||(hl=!0,typeof BroadcastChannel<"u"&&(Ta=new BroadcastChannel(H8),Ta.onmessage=e=>{z8(e.data)}),window.addEventListener("storage",e=>{if(e.key!==Of||!e.newValue)return;const t=Df(e.newValue);t?.source==="web"&&Pi(t)}))},l5=({noteId:e,updatedAt:t,editSessionId:n})=>{if(typeof window>"u")return;jf();const r={type:"web.note.updated",source:"web",noteId:e,updatedAt:t,...n?{editSessionId:n}:{},eventId:`${Date.now()}:${Math.random().toString(36).slice(2)}`};Ta?.postMessage(r);try{window.localStorage.setItem(Of,JSON.stringify(r))}catch{}},q8=e=>(jf(),Aa.add(e),()=>{Aa.delete(e)}),W8=e=>t=>{if(!(t instanceof MessageEvent)||typeof t.data!="string")return;const n=Df(t.data);!n||n.type!==e||Pi(n)},K8=()=>{const e=Qn();return c.useEffect(()=>q8(t=>{j8(e,t)}),[e]),c.useEffect(()=>{if(typeof EventSource>"u")return;const t=new EventSource("/api/events"),n=()=>{N8()},r=$8.map(o=>{const s=W8(o);return t.addEventListener(o,s),()=>{t.removeEventListener(o,s)}});return t.addEventListener("error",n),()=>{r.forEach(o=>{o()}),t.removeEventListener("error",n),t.close()}},[]),null},G8=({children:e})=>h.jsx(Ng,{client:$y,children:h.jsx(ay,{children:h.jsxs(ky,{children:[h.jsx(K8,{}),e]})})}),Q8={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"},pl={sm:10,md:12,lg:14},Ff=c.forwardRef(({className:e,size:t="md",checked:n,disabled:r,...o},s)=>h.jsxs("label",{className:me("relative inline-flex items-center justify-center cursor-pointer",r&&"cursor-not-allowed opacity-50",e),children:[h.jsx("input",{ref:s,type:"checkbox",checked:n,disabled:r,className:"sr-only peer",...o}),h.jsx("span",{className:me(Q8[t],"flex items-center justify-center","border border-border-secondary","rounded-[6px]","bg-surface","transition-all duration-200","peer-checked:bg-cta","peer-checked:border-cta","focus-ring-soft"),children:n&&h.jsx(Bv,{width:pl[t],height:pl[t],className:"text-fg-on-filled",weight:"bold"})})]}));Ff.displayName="Checkbox";var Y8=ud,X8=dd,kf=fd,$f=hd,J8=gi,Hf=pd,Bf=md;const eb=Y8,tb=X8,nb=J8,Vf=c.createContext("default"),Zr=()=>c.useContext(Vf),Zf=c.forwardRef(({className:e,...t},n)=>h.jsx(kf,{ref:n,className:me("fixed","inset-0","z-[1090]","bg-overlay","backdrop-blur-[2px]","data-[state=open]:animate-in","data-[state=closed]:animate-out","data-[state=closed]:fade-out-0","data-[state=open]:fade-in-0",e),...t}));Zf.displayName=kf.displayName;const Uf=c.forwardRef(({className:e,children:t,variant:n="default",...r},o)=>h.jsxs(tb,{children:[h.jsx(Zf,{}),h.jsx("div",{className:"pointer-events-none fixed inset-0 z-[1100] flex items-center justify-center p-4",children:h.jsx($f,{ref:o,"data-dialog-variant":n,className:vi({variant:n,className:e}),...r,children:h.jsx(Vf.Provider,{value:n,children:t})})})]}));Uf.displayName=$f.displayName;const zf=({title:e,onClose:t,className:n})=>{const r=Zr();return h.jsxs("div",{className:ty({variant:r,className:n}),children:[h.jsx(Kf,{children:e}),t&&h.jsx(nb,{asChild:!0,children:h.jsx("button",{type:"button",className:ny({variant:r}),onClick:t,children:h.jsx(of,{className:r==="compact"||r==="form"||r==="confirm"?"h-[18px] w-[18px]":"h-5 w-5"})})})]})};zf.displayName="DialogHeader";const qf=c.forwardRef(({className:e,...t},n)=>{const r=Zr();return h.jsx("div",{ref:n,className:yi({variant:r,className:e}),...t})});qf.displayName="DialogBody";const Wf=c.forwardRef(({className:e,...t},n)=>{const r=Zr();return h.jsx("div",{ref:n,className:bi({variant:r,className:e}),...t})});Wf.displayName="DialogFooter";const Kf=c.forwardRef(({className:e,...t},n)=>{const r=Zr();return h.jsx(Hf,{ref:n,className:me(xi({variant:r}),e),...t})});Kf.displayName=Hf.displayName;const Gf=c.forwardRef(({className:e,...t},n)=>{const r=Zr();return h.jsx(Bf,{ref:n,className:me(wi({variant:r}),e),...t})});Gf.displayName=Bf.displayName;const $t=({isOpen:e,onClose:t,children:n,className:r,variant:o="default"})=>h.jsx(eb,{open:e,onOpenChange:s=>!s&&t(),children:h.jsx(Uf,{variant:o,className:r,children:n})});$t.Header=zf;$t.Body=qf;$t.Footer=Wf;$t.Description=Gf;function Mi(e){const t=e+"CollectionProvider",[n,r]=Nt(t),[o,s]=n(t,{collectionRef:{current:null},itemMap:new Map}),a=g=>{const{scope:y,children:b}=g,x=M.useRef(null),w=M.useRef(new Map).current;return h.jsx(o,{scope:y,itemMap:w,collectionRef:x,children:b})};a.displayName=t;const i=e+"CollectionSlot",l=zn(i),u=M.forwardRef((g,y)=>{const{scope:b,children:x}=g,w=s(i,b),E=le(y,w.collectionRef);return h.jsx(l,{ref:E,children:x})});u.displayName=i;const f=e+"CollectionItemSlot",d="data-radix-collection-item",p=zn(f),m=M.forwardRef((g,y)=>{const{scope:b,children:x,...w}=g,E=M.useRef(null),C=le(y,E),O=s(f,b);return M.useEffect(()=>(O.itemMap.set(E,{ref:E,...w}),()=>{O.itemMap.delete(E)})),h.jsx(p,{[d]:"",ref:C,children:x})});m.displayName=f;function v(g){const y=s(e+"CollectionConsumer",g);return M.useCallback(()=>{const x=y.collectionRef.current;if(!x)return[];const w=Array.from(x.querySelectorAll(`[${d}]`));return Array.from(y.itemMap.values()).sort((O,A)=>w.indexOf(O.ref.current)-w.indexOf(A.ref.current))},[y.collectionRef,y.itemMap])}return[{Provider:a,Slot:u,ItemSlot:m},v,r]}var rb=c.createContext(void 0);function fs(e){const t=c.useContext(rb);return e||t||"ltr"}var ob="Arrow",Qf=c.forwardRef((e,t)=>{const{children:n,width:r=10,height:o=5,...s}=e;return h.jsx(re.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"})})});Qf.displayName=ob;var sb=Qf;function ab(e){const[t,n]=c.useState(void 0);return Be(()=>{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 _i="Popper",[Yf,Xn]=Nt(_i),[ib,Xf]=Yf(_i),Jf=e=>{const{__scopePopper:t,children:n}=e,[r,o]=c.useState(null);return h.jsx(ib,{scope:t,anchor:r,onAnchorChange:o,children:n})};Jf.displayName=_i;var e0="PopperAnchor",t0=c.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...o}=e,s=Xf(e0,n),a=c.useRef(null),i=le(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(re.div,{...o,ref:i})});t0.displayName=e0;var Ni="PopperContent",[cb,lb]=Yf(Ni),n0=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:f=0,sticky:d="partial",hideWhenDetached:p=!1,updatePositionStrategy:m="optimized",onPlaced:v,...g}=e,y=Xf(Ni,n),[b,x]=c.useState(null),w=le(t,$=>x($)),[E,C]=c.useState(null),O=ab(E),A=O?.width??0,S=O?.height??0,N=r+(s!=="center"?"-"+s:""),I=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},P=Array.isArray(u)?u:[u],H=P.length>0,q={padding:I,boundary:P.filter(db),altBoundary:H},{refs:D,floatingStyles:F,placement:T,isPositioned:L,middlewareData:j}=Qp({strategy:"fixed",placement:N,whileElementsMounted:(...$)=>r1(...$,{animationFrame:m==="always"}),elements:{reference:y.anchor},middleware:[Yp({mainAxis:o+S,alignmentAxis:a}),l&&Xp({mainAxis:!0,crossAxis:!1,limiter:d==="partial"?o1():void 0,...q}),l&&Jp({...q}),e1({...q,apply:({elements:$,rects:k,availableWidth:ee,availableHeight:Z})=>{const{width:X,height:te}=k.reference,ie=$.floating.style;ie.setProperty("--radix-popper-available-width",`${ee}px`),ie.setProperty("--radix-popper-available-height",`${Z}px`),ie.setProperty("--radix-popper-anchor-width",`${X}px`),ie.setProperty("--radix-popper-anchor-height",`${te}px`)}}),E&&t1({element:E,padding:i}),fb({arrowWidth:A,arrowHeight:S}),p&&n1({strategy:"referenceHidden",...q})]}),[_,V]=s0(T),W=Mt(v);Be(()=>{L&&W?.()},[L,W]);const Q=j.arrow?.x,B=j.arrow?.y,z=j.arrow?.centerOffset!==0,[U,J]=c.useState();return Be(()=>{b&&J(window.getComputedStyle(b).zIndex)},[b]),h.jsx("div",{ref:D.setFloating,"data-radix-popper-content-wrapper":"",style:{...F,transform:L?F.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:U,"--radix-popper-transform-origin":[j.transformOrigin?.x,j.transformOrigin?.y].join(" "),...j.hide?.referenceHidden&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:h.jsx(cb,{scope:n,placedSide:_,onArrowChange:C,arrowX:Q,arrowY:B,shouldHideArrow:z,children:h.jsx(re.div,{"data-side":_,"data-align":V,...g,ref:w,style:{...g.style,animation:L?void 0:"none"}})})})});n0.displayName=Ni;var r0="PopperArrow",ub={top:"bottom",right:"left",bottom:"top",left:"right"},o0=c.forwardRef(function(t,n){const{__scopePopper:r,...o}=t,s=lb(r0,r),a=ub[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(sb,{...o,ref:n,style:{...o.style,display:"block"}})})});o0.displayName=r0;function db(e){return e!==null}var fb=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,f]=s0(n),d={start:"0%",center:"50%",end:"100%"}[f],p=(o.arrow?.x??0)+i/2,m=(o.arrow?.y??0)+l/2;let v="",g="";return u==="bottom"?(v=a?d:`${p}px`,g=`${-l}px`):u==="top"?(v=a?d:`${p}px`,g=`${r.floating.height+l}px`):u==="right"?(v=`${-l}px`,g=a?d:`${m}px`):u==="left"&&(v=`${r.floating.width+l}px`,g=a?d:`${m}px`),{data:{x:v,y:g}}}});function s0(e){const[t,n="center"]=e.split("-");return[t,n]}var Oi=Jf,Ii=t0,Li=n0,Di=o0,Ys="rovingFocusGroup.onEntryFocus",hb={bubbles:!1,cancelable:!0},Ur="RovingFocusGroup",[Pa,a0,pb]=Mi(Ur),[mb,hs]=Nt(Ur,[pb]),[gb,vb]=mb(Ur),i0=c.forwardRef((e,t)=>h.jsx(Pa.Provider,{scope:e.__scopeRovingFocusGroup,children:h.jsx(Pa.Slot,{scope:e.__scopeRovingFocusGroup,children:h.jsx(yb,{...e,ref:t})})}));i0.displayName=Ur;var yb=c.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:o=!1,dir:s,currentTabStopId:a,defaultCurrentTabStopId:i,onCurrentTabStopIdChange:l,onEntryFocus:u,preventScrollOnEntryFocus:f=!1,...d}=e,p=c.useRef(null),m=le(t,p),v=fs(s),[g,y]=Vt({prop:a,defaultProp:i??null,onChange:l,caller:Ur}),[b,x]=c.useState(!1),w=Mt(u),E=a0(n),C=c.useRef(!1),[O,A]=c.useState(0);return c.useEffect(()=>{const S=p.current;if(S)return S.addEventListener(Ys,w),()=>S.removeEventListener(Ys,w)},[w]),h.jsx(gb,{scope:n,orientation:r,dir:v,loop:o,currentTabStopId:g,onItemFocus:c.useCallback(S=>y(S),[y]),onItemShiftTab:c.useCallback(()=>x(!0),[]),onFocusableItemAdd:c.useCallback(()=>A(S=>S+1),[]),onFocusableItemRemove:c.useCallback(()=>A(S=>S-1),[]),children:h.jsx(re.div,{tabIndex:b||O===0?-1:0,"data-orientation":r,...d,ref:m,style:{outline:"none",...e.style},onMouseDown:K(e.onMouseDown,()=>{C.current=!0}),onFocus:K(e.onFocus,S=>{const N=!C.current;if(S.target===S.currentTarget&&N&&!b){const I=new CustomEvent(Ys,hb);if(S.currentTarget.dispatchEvent(I),!I.defaultPrevented){const P=E().filter(T=>T.focusable),H=P.find(T=>T.active),q=P.find(T=>T.id===g),F=[H,q,...P].filter(Boolean).map(T=>T.ref.current);u0(F,f)}}C.current=!1}),onBlur:K(e.onBlur,()=>x(!1))})})}),c0="RovingFocusGroupItem",l0=c.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:o=!1,tabStopId:s,children:a,...i}=e,l=Tt(),u=s||l,f=vb(c0,n),d=f.currentTabStopId===u,p=a0(n),{onFocusableItemAdd:m,onFocusableItemRemove:v,currentTabStopId:g}=f;return c.useEffect(()=>{if(r)return m(),()=>v()},[r,m,v]),h.jsx(Pa.ItemSlot,{scope:n,id:u,focusable:r,active:o,children:h.jsx(re.span,{tabIndex:d?0:-1,"data-orientation":f.orientation,...i,ref:t,onMouseDown:K(e.onMouseDown,y=>{r?f.onItemFocus(u):y.preventDefault()}),onFocus:K(e.onFocus,()=>f.onItemFocus(u)),onKeyDown:K(e.onKeyDown,y=>{if(y.key==="Tab"&&y.shiftKey){f.onItemShiftTab();return}if(y.target!==y.currentTarget)return;const b=wb(y,f.orientation,f.dir);if(b!==void 0){if(y.metaKey||y.ctrlKey||y.altKey||y.shiftKey)return;y.preventDefault();let w=p().filter(E=>E.focusable).map(E=>E.ref.current);if(b==="last")w.reverse();else if(b==="prev"||b==="next"){b==="prev"&&w.reverse();const E=w.indexOf(y.currentTarget);w=f.loop?Eb(w,E+1):w.slice(E+1)}setTimeout(()=>u0(w))}}),children:typeof a=="function"?a({isCurrentTabStop:d,hasTabStop:g!=null}):a})})});l0.displayName=c0;var bb={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function xb(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function wb(e,t,n){const r=xb(e.key,n);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return bb[r]}function u0(e,t=!1){const n=document.activeElement;for(const r of e)if(r===n||(r.focus({preventScroll:t}),document.activeElement!==n))return}function Eb(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var d0=i0,f0=l0,Ma=["Enter"," "],Sb=["ArrowDown","PageUp","Home"],h0=["ArrowUp","PageDown","End"],Rb=[...Sb,...h0],Cb={ltr:[...Ma,"ArrowRight"],rtl:[...Ma,"ArrowLeft"]},Ab={ltr:["ArrowLeft"],rtl:["ArrowRight"]},zr="Menu",[Tr,Tb,Pb]=Mi(zr),[Cn,p0]=Nt(zr,[Pb,Xn,hs]),ps=Xn(),m0=hs(),[Mb,An]=Cn(zr),[_b,qr]=Cn(zr),g0=e=>{const{__scopeMenu:t,open:n=!1,children:r,dir:o,onOpenChange:s,modal:a=!0}=e,i=ps(t),[l,u]=c.useState(null),f=c.useRef(!1),d=Mt(s),p=fs(o);return c.useEffect(()=>{const m=()=>{f.current=!0,document.addEventListener("pointerdown",v,{capture:!0,once:!0}),document.addEventListener("pointermove",v,{capture:!0,once:!0})},v=()=>f.current=!1;return document.addEventListener("keydown",m,{capture:!0}),()=>{document.removeEventListener("keydown",m,{capture:!0}),document.removeEventListener("pointerdown",v,{capture:!0}),document.removeEventListener("pointermove",v,{capture:!0})}},[]),h.jsx(Oi,{...i,children:h.jsx(Mb,{scope:t,open:n,onOpenChange:d,content:l,onContentChange:u,children:h.jsx(_b,{scope:t,onClose:c.useCallback(()=>d(!1),[d]),isUsingKeyboardRef:f,dir:p,modal:a,children:r})})})};g0.displayName=zr;var Nb="MenuAnchor",ji=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,o=ps(n);return h.jsx(Ii,{...o,...r,ref:t})});ji.displayName=Nb;var Fi="MenuPortal",[Ob,v0]=Cn(Fi,{forceMount:void 0}),y0=e=>{const{__scopeMenu:t,forceMount:n,children:r,container:o}=e,s=An(Fi,t);return h.jsx(Ob,{scope:t,forceMount:n,children:h.jsx(Ot,{present:n||s.open,children:h.jsx(Fr,{asChild:!0,container:o,children:r})})})};y0.displayName=Fi;var mt="MenuContent",[Ib,ki]=Cn(mt),b0=c.forwardRef((e,t)=>{const n=v0(mt,e.__scopeMenu),{forceMount:r=n.forceMount,...o}=e,s=An(mt,e.__scopeMenu),a=qr(mt,e.__scopeMenu);return h.jsx(Tr.Provider,{scope:e.__scopeMenu,children:h.jsx(Ot,{present:r||s.open,children:h.jsx(Tr.Slot,{scope:e.__scopeMenu,children:a.modal?h.jsx(Lb,{...o,ref:t}):h.jsx(Db,{...o,ref:t})})})})}),Lb=c.forwardRef((e,t)=>{const n=An(mt,e.__scopeMenu),r=c.useRef(null),o=le(t,r);return c.useEffect(()=>{const s=r.current;if(s)return fi(s)},[]),h.jsx($i,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:n.open,disableOutsideScroll:!0,onFocusOutside:K(e.onFocusOutside,s=>s.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>n.onOpenChange(!1)})}),Db=c.forwardRef((e,t)=>{const n=An(mt,e.__scopeMenu);return h.jsx($i,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>n.onOpenChange(!1)})}),jb=zn("MenuContent.ScrollLock"),$i=c.forwardRef((e,t)=>{const{__scopeMenu:n,loop:r=!1,trapFocus:o,onOpenAutoFocus:s,onCloseAutoFocus:a,disableOutsidePointerEvents:i,onEntryFocus:l,onEscapeKeyDown:u,onPointerDownOutside:f,onFocusOutside:d,onInteractOutside:p,onDismiss:m,disableOutsideScroll:v,...g}=e,y=An(mt,n),b=qr(mt,n),x=ps(n),w=m0(n),E=Tb(n),[C,O]=c.useState(null),A=c.useRef(null),S=le(t,A,y.onContentChange),N=c.useRef(0),I=c.useRef(""),P=c.useRef(0),H=c.useRef(null),q=c.useRef("right"),D=c.useRef(0),F=v?Ga:c.Fragment,T=v?{as:jb,allowPinchZoom:!0}:void 0,L=_=>{const V=I.current+_,W=E().filter($=>!$.disabled),Q=document.activeElement,B=W.find($=>$.ref.current===Q)?.textValue,z=W.map($=>$.textValue),U=Kb(z,V,B),J=W.find($=>$.textValue===U)?.ref.current;(function $(k){I.current=k,window.clearTimeout(N.current),k!==""&&(N.current=window.setTimeout(()=>$(""),1e3))})(V),J&&setTimeout(()=>J.focus())};c.useEffect(()=>()=>window.clearTimeout(N.current),[]),di();const j=c.useCallback(_=>q.current===H.current?.side&&Qb(_,H.current?.area),[]);return h.jsx(Ib,{scope:n,searchRef:I,onItemEnter:c.useCallback(_=>{j(_)&&_.preventDefault()},[j]),onItemLeave:c.useCallback(_=>{j(_)||(A.current?.focus(),O(null))},[j]),onTriggerLeave:c.useCallback(_=>{j(_)&&_.preventDefault()},[j]),pointerGraceTimerRef:P,onPointerGraceIntentChange:c.useCallback(_=>{H.current=_},[]),children:h.jsx(F,{...T,children:h.jsx(os,{asChild:!0,trapped:o,onMountAutoFocus:K(s,_=>{_.preventDefault(),A.current?.focus({preventScroll:!0})}),onUnmountAutoFocus:a,children:h.jsx(jr,{asChild:!0,disableOutsidePointerEvents:i,onEscapeKeyDown:u,onPointerDownOutside:f,onFocusOutside:d,onInteractOutside:p,onDismiss:m,children:h.jsx(d0,{asChild:!0,...w,dir:b.dir,orientation:"vertical",loop:r,currentTabStopId:C,onCurrentTabStopIdChange:O,onEntryFocus:K(l,_=>{b.isUsingKeyboardRef.current||_.preventDefault()}),preventScrollOnEntryFocus:!0,children:h.jsx(Li,{role:"menu","aria-orientation":"vertical","data-state":D0(y.open),"data-radix-menu-content":"",dir:b.dir,...x,...g,ref:S,style:{outline:"none",...g.style},onKeyDown:K(g.onKeyDown,_=>{const W=_.target.closest("[data-radix-menu-content]")===_.currentTarget,Q=_.ctrlKey||_.altKey||_.metaKey,B=_.key.length===1;W&&(_.key==="Tab"&&_.preventDefault(),!Q&&B&&L(_.key));const z=A.current;if(_.target!==z||!Rb.includes(_.key))return;_.preventDefault();const J=E().filter($=>!$.disabled).map($=>$.ref.current);h0.includes(_.key)&&J.reverse(),qb(J)}),onBlur:K(e.onBlur,_=>{_.currentTarget.contains(_.target)||(window.clearTimeout(N.current),I.current="")}),onPointerMove:K(e.onPointerMove,Pr(_=>{const V=_.target,W=D.current!==_.clientX;if(_.currentTarget.contains(V)&&W){const Q=_.clientX>D.current?"right":"left";q.current=Q,D.current=_.clientX}}))})})})})})})});b0.displayName=mt;var Fb="MenuGroup",Hi=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e;return h.jsx(re.div,{role:"group",...r,ref:t})});Hi.displayName=Fb;var kb="MenuLabel",x0=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e;return h.jsx(re.div,{...r,ref:t})});x0.displayName=kb;var Fo="MenuItem",ml="menu.itemSelect",ms=c.forwardRef((e,t)=>{const{disabled:n=!1,onSelect:r,...o}=e,s=c.useRef(null),a=qr(Fo,e.__scopeMenu),i=ki(Fo,e.__scopeMenu),l=le(t,s),u=c.useRef(!1),f=()=>{const d=s.current;if(!n&&d){const p=new CustomEvent(ml,{bubbles:!0,cancelable:!0});d.addEventListener(ml,m=>r?.(m),{once:!0}),Vu(d,p),p.defaultPrevented?u.current=!1:a.onClose()}};return h.jsx(w0,{...o,ref:l,disabled:n,onClick:K(e.onClick,f),onPointerDown:d=>{e.onPointerDown?.(d),u.current=!0},onPointerUp:K(e.onPointerUp,d=>{u.current||d.currentTarget?.click()}),onKeyDown:K(e.onKeyDown,d=>{const p=i.searchRef.current!=="";n||p&&d.key===" "||Ma.includes(d.key)&&(d.currentTarget.click(),d.preventDefault())})})});ms.displayName=Fo;var w0=c.forwardRef((e,t)=>{const{__scopeMenu:n,disabled:r=!1,textValue:o,...s}=e,a=ki(Fo,n),i=m0(n),l=c.useRef(null),u=le(t,l),[f,d]=c.useState(!1),[p,m]=c.useState("");return c.useEffect(()=>{const v=l.current;v&&m((v.textContent??"").trim())},[s.children]),h.jsx(Tr.ItemSlot,{scope:n,disabled:r,textValue:o??p,children:h.jsx(f0,{asChild:!0,...i,focusable:!r,children:h.jsx(re.div,{role:"menuitem","data-highlighted":f?"":void 0,"aria-disabled":r||void 0,"data-disabled":r?"":void 0,...s,ref:u,onPointerMove:K(e.onPointerMove,Pr(v=>{r?a.onItemLeave(v):(a.onItemEnter(v),v.defaultPrevented||v.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:K(e.onPointerLeave,Pr(v=>a.onItemLeave(v))),onFocus:K(e.onFocus,()=>d(!0)),onBlur:K(e.onBlur,()=>d(!1))})})})}),$b="MenuCheckboxItem",E0=c.forwardRef((e,t)=>{const{checked:n=!1,onCheckedChange:r,...o}=e;return h.jsx(T0,{scope:e.__scopeMenu,checked:n,children:h.jsx(ms,{role:"menuitemcheckbox","aria-checked":ko(n)?"mixed":n,...o,ref:t,"data-state":Vi(n),onSelect:K(o.onSelect,()=>r?.(ko(n)?!0:!n),{checkForDefaultPrevented:!1})})})});E0.displayName=$b;var S0="MenuRadioGroup",[Hb,Bb]=Cn(S0,{value:void 0,onValueChange:()=>{}}),R0=c.forwardRef((e,t)=>{const{value:n,onValueChange:r,...o}=e,s=Mt(r);return h.jsx(Hb,{scope:e.__scopeMenu,value:n,onValueChange:s,children:h.jsx(Hi,{...o,ref:t})})});R0.displayName=S0;var C0="MenuRadioItem",A0=c.forwardRef((e,t)=>{const{value:n,...r}=e,o=Bb(C0,e.__scopeMenu),s=n===o.value;return h.jsx(T0,{scope:e.__scopeMenu,checked:s,children:h.jsx(ms,{role:"menuitemradio","aria-checked":s,...r,ref:t,"data-state":Vi(s),onSelect:K(r.onSelect,()=>o.onValueChange?.(n),{checkForDefaultPrevented:!1})})})});A0.displayName=C0;var Bi="MenuItemIndicator",[T0,Vb]=Cn(Bi,{checked:!1}),P0=c.forwardRef((e,t)=>{const{__scopeMenu:n,forceMount:r,...o}=e,s=Vb(Bi,n);return h.jsx(Ot,{present:r||ko(s.checked)||s.checked===!0,children:h.jsx(re.span,{...o,ref:t,"data-state":Vi(s.checked)})})});P0.displayName=Bi;var Zb="MenuSeparator",M0=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e;return h.jsx(re.div,{role:"separator","aria-orientation":"horizontal",...r,ref:t})});M0.displayName=Zb;var Ub="MenuArrow",_0=c.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,o=ps(n);return h.jsx(Di,{...o,...r,ref:t})});_0.displayName=Ub;var zb="MenuSub",[u5,N0]=Cn(zb),mr="MenuSubTrigger",O0=c.forwardRef((e,t)=>{const n=An(mr,e.__scopeMenu),r=qr(mr,e.__scopeMenu),o=N0(mr,e.__scopeMenu),s=ki(mr,e.__scopeMenu),a=c.useRef(null),{pointerGraceTimerRef:i,onPointerGraceIntentChange:l}=s,u={__scopeMenu:e.__scopeMenu},f=c.useCallback(()=>{a.current&&window.clearTimeout(a.current),a.current=null},[]);return c.useEffect(()=>f,[f]),c.useEffect(()=>{const d=i.current;return()=>{window.clearTimeout(d),l(null)}},[i,l]),h.jsx(ji,{asChild:!0,...u,children:h.jsx(w0,{id:o.triggerId,"aria-haspopup":"menu","aria-expanded":n.open,"aria-controls":o.contentId,"data-state":D0(n.open),...e,ref:Dr(t,o.onTriggerChange),onClick:d=>{e.onClick?.(d),!(e.disabled||d.defaultPrevented)&&(d.currentTarget.focus(),n.open||n.onOpenChange(!0))},onPointerMove:K(e.onPointerMove,Pr(d=>{s.onItemEnter(d),!d.defaultPrevented&&!e.disabled&&!n.open&&!a.current&&(s.onPointerGraceIntentChange(null),a.current=window.setTimeout(()=>{n.onOpenChange(!0),f()},100))})),onPointerLeave:K(e.onPointerLeave,Pr(d=>{f();const p=n.content?.getBoundingClientRect();if(p){const m=n.content?.dataset.side,v=m==="right",g=v?-5:5,y=p[v?"left":"right"],b=p[v?"right":"left"];s.onPointerGraceIntentChange({area:[{x:d.clientX+g,y:d.clientY},{x:y,y:p.top},{x:b,y:p.top},{x:b,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(d),d.defaultPrevented)return;s.onPointerGraceIntentChange(null)}})),onKeyDown:K(e.onKeyDown,d=>{const p=s.searchRef.current!=="";e.disabled||p&&d.key===" "||Cb[r.dir].includes(d.key)&&(n.onOpenChange(!0),n.content?.focus(),d.preventDefault())})})})});O0.displayName=mr;var I0="MenuSubContent",L0=c.forwardRef((e,t)=>{const n=v0(mt,e.__scopeMenu),{forceMount:r=n.forceMount,...o}=e,s=An(mt,e.__scopeMenu),a=qr(mt,e.__scopeMenu),i=N0(I0,e.__scopeMenu),l=c.useRef(null),u=le(t,l);return h.jsx(Tr.Provider,{scope:e.__scopeMenu,children:h.jsx(Ot,{present:r||s.open,children:h.jsx(Tr.Slot,{scope:e.__scopeMenu,children:h.jsx($i,{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:f=>{a.isUsingKeyboardRef.current&&l.current?.focus(),f.preventDefault()},onCloseAutoFocus:f=>f.preventDefault(),onFocusOutside:K(e.onFocusOutside,f=>{f.target!==i.trigger&&s.onOpenChange(!1)}),onEscapeKeyDown:K(e.onEscapeKeyDown,f=>{a.onClose(),f.preventDefault()}),onKeyDown:K(e.onKeyDown,f=>{const d=f.currentTarget.contains(f.target),p=Ab[a.dir].includes(f.key);d&&p&&(s.onOpenChange(!1),i.trigger?.focus(),f.preventDefault())})})})})})});L0.displayName=I0;function D0(e){return e?"open":"closed"}function ko(e){return e==="indeterminate"}function Vi(e){return ko(e)?"indeterminate":e?"checked":"unchecked"}function qb(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function Wb(e,t){return e.map((n,r)=>e[(t+r)%e.length])}function Kb(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=Wb(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 Gb(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,f=i.y,d=l.x,p=l.y;f>r!=p>r&&n<(d-u)*(r-f)/(p-f)+u&&(o=!o)}return o}function Qb(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return Gb(n,t)}function Pr(e){return t=>t.pointerType==="mouse"?e(t):void 0}var Yb=g0,Xb=ji,Jb=y0,e4=b0,t4=Hi,n4=x0,r4=ms,o4=E0,s4=R0,a4=A0,i4=P0,c4=M0,l4=_0,u4=O0,d4=L0,gs="DropdownMenu",[f4]=Nt(gs,[p0]),Qe=p0(),[h4,j0]=f4(gs),F0=e=>{const{__scopeDropdownMenu:t,children:n,dir:r,open:o,defaultOpen:s,onOpenChange:a,modal:i=!0}=e,l=Qe(t),u=c.useRef(null),[f,d]=Vt({prop:o,defaultProp:s??!1,onChange:a,caller:gs});return h.jsx(h4,{scope:t,triggerId:Tt(),triggerRef:u,contentId:Tt(),open:f,onOpenChange:d,onOpenToggle:c.useCallback(()=>d(p=>!p),[d]),modal:i,children:h.jsx(Yb,{...l,open:f,onOpenChange:d,dir:r,modal:i,children:n})})};F0.displayName=gs;var k0="DropdownMenuTrigger",$0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,disabled:r=!1,...o}=e,s=j0(k0,n),a=Qe(n);return h.jsx(Xb,{asChild:!0,...a,children:h.jsx(re.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:Dr(t,s.triggerRef),onPointerDown:K(e.onPointerDown,i=>{!r&&i.button===0&&i.ctrlKey===!1&&(s.onOpenToggle(),s.open||i.preventDefault())}),onKeyDown:K(e.onKeyDown,i=>{r||(["Enter"," "].includes(i.key)&&s.onOpenToggle(),i.key==="ArrowDown"&&s.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(i.key)&&i.preventDefault())})})})});$0.displayName=k0;var p4="DropdownMenuPortal",H0=e=>{const{__scopeDropdownMenu:t,...n}=e,r=Qe(t);return h.jsx(Jb,{...r,...n})};H0.displayName=p4;var B0="DropdownMenuContent",V0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=j0(B0,n),s=Qe(n),a=c.useRef(!1);return h.jsx(e4,{id:o.contentId,"aria-labelledby":o.triggerId,...s,...r,ref:t,onCloseAutoFocus:K(e.onCloseAutoFocus,i=>{a.current||o.triggerRef.current?.focus(),a.current=!1,i.preventDefault()}),onInteractOutside:K(e.onInteractOutside,i=>{const l=i.detail.originalEvent,u=l.button===0&&l.ctrlKey===!0,f=l.button===2||u;(!o.modal||f)&&(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)"}})});V0.displayName=B0;var m4="DropdownMenuGroup",g4=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(t4,{...o,...r,ref:t})});g4.displayName=m4;var v4="DropdownMenuLabel",Z0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(n4,{...o,...r,ref:t})});Z0.displayName=v4;var y4="DropdownMenuItem",U0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(r4,{...o,...r,ref:t})});U0.displayName=y4;var b4="DropdownMenuCheckboxItem",z0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(o4,{...o,...r,ref:t})});z0.displayName=b4;var x4="DropdownMenuRadioGroup",w4=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(s4,{...o,...r,ref:t})});w4.displayName=x4;var E4="DropdownMenuRadioItem",q0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(a4,{...o,...r,ref:t})});q0.displayName=E4;var S4="DropdownMenuItemIndicator",W0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(i4,{...o,...r,ref:t})});W0.displayName=S4;var R4="DropdownMenuSeparator",K0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(c4,{...o,...r,ref:t})});K0.displayName=R4;var C4="DropdownMenuArrow",A4=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(l4,{...o,...r,ref:t})});A4.displayName=C4;var T4="DropdownMenuSubTrigger",G0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(u4,{...o,...r,ref:t})});G0.displayName=T4;var P4="DropdownMenuSubContent",Q0=c.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Qe(n);return h.jsx(d4,{...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)"}})});Q0.displayName=P4;var M4=F0,_4=$0,N4=H0,O4=V0,I4=Z0,L4=U0,D4=z0,j4=q0,F4=W0,k4=K0,$4=G0,H4=Q0,B4=M4,V4=_4,Z4=N4,Y0=O4,X0=L4,J0=D4,eh=j4,th=F4,nh=I4,rh=k4,oh=$4,sh=H4;const U4=B4,z4=V4,q4=c.forwardRef(({className:e,inset:t,children:n,...r},o)=>h.jsx(oh,{ref:o,className:me("flex","cursor-default","select-none","items-center","rounded-[10px]","px-3","py-2","text-sm","font-medium","text-fg-secondary","outline-none","focus-ring-soft","focus:bg-hover-subtle","focus:text-fg-default","data-[state=open]:bg-hover-subtle","data-[state=open]:text-fg-default",t&&"pl-8",e),...r,children:n}));q4.displayName=oh.displayName;const W4=c.forwardRef(({className:e,...t},n)=>h.jsx(sh,{ref:n,className:me("z-50","min-w-[8rem]","overflow-hidden","surface-floating","p-1",e),...t}));W4.displayName=sh.displayName;const ah=c.forwardRef(({className:e,sideOffset:t=4,...n},r)=>h.jsx(Z4,{children:h.jsx(Y0,{ref:r,sideOffset:t,className:me("z-[1100]","min-w-[10rem]","overflow-hidden","surface-floating","p-1","data-[state=open]:animate-fade-in","data-[state=open]:animate-zoom-in",e),...n})}));ah.displayName=Y0.displayName;const ih=c.forwardRef(({className:e,inset:t,...n},r)=>h.jsx(X0,{ref:r,className:me("relative","flex","cursor-pointer","select-none","items-center","px-3","py-2","text-sm","font-medium","text-fg-secondary","outline-none","focus-ring-soft","transition-colors","rounded-[10px]","focus:bg-hover-subtle","focus:text-fg-default","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",t&&"pl-8",e),...n}));ih.displayName=X0.displayName;const K4=c.forwardRef(({className:e,children:t,checked:n,...r},o)=>h.jsxs(J0,{ref:o,className:me("relative","flex","cursor-pointer","select-none","items-center","rounded-[10px]","py-2","pl-8","pr-3","text-sm","font-medium","text-fg-secondary","outline-none","focus-ring-soft","transition-colors","focus:bg-hover-subtle","focus:text-fg-default","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",e),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(th,{children:"✓"})}),t]}));K4.displayName=J0.displayName;const G4=c.forwardRef(({className:e,children:t,...n},r)=>h.jsxs(eh,{ref:r,className:me("relative","flex","cursor-pointer","select-none","items-center","rounded-[10px]","py-2","pl-8","pr-3","text-sm","font-medium","text-fg-secondary","outline-none","focus-ring-soft","transition-colors","focus:bg-hover-subtle","focus:text-fg-default","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",e),...n,children:[h.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:h.jsx(th,{children:"●"})}),t]}));G4.displayName=eh.displayName;const Q4=c.forwardRef(({className:e,inset:t,...n},r)=>h.jsx(nh,{ref:r,className:me("px-2","py-1.5","text-sm","font-semibold","text-fg-secondary",t&&"pl-8",e),...n}));Q4.displayName=nh.displayName;const ch=c.forwardRef(({className:e,...t},n)=>h.jsx(rh,{ref:n,className:me("-mx-1","my-1","h-px","bg-divider",e),...t}));ch.displayName=rh.displayName;const Y4=({button:e,items:t})=>h.jsxs(U4,{children:[h.jsx(z4,{asChild:!0,children:e}),h.jsx(ah,{align:"end",children:t.map((n,r)=>n.type==="separator"?h.jsx(ch,{},n.key??`separator-${r}`):h.jsx(ih,{onClick:n.onClick,children:n.name},n.name))})]}),lh=c.forwardRef(({title:e,description:t,className:n="",...r},o)=>h.jsxs("div",{ref:o,className:me("flex flex-col items-center justify-center text-center","h-[400px]","bg-muted/30","border-2 border-dashed","border-border-secondary","rounded-[20px]","p-8",n),...r,children:[e&&h.jsx(se,{as:"h3",variant:"heading",weight:"bold",tone:"muted",className:"mb-2",children:e}),t&&h.jsx(se,{as:"p",variant:"meta",weight:"medium",tone:"tertiary",className:"max-w-[400px]",children:t})]}));lh.displayName="Empty";const X4=De(["w-full","border","border-border-subtle","bg-elevated","text-fg-default","placeholder:text-fg-placeholder","transition-colors","outline-none","focus-ring-soft","disabled:cursor-not-allowed","disabled:opacity-50"],{variants:{variant:{default:[],ghost:["border-transparent","bg-subtle","hover:bg-hover-subtle"],error:["border-border-error","bg-accent-soft-danger/40","text-fg-default"]},size:{sm:"h-8 px-3 text-sm rounded-[12px]",md:"h-9 px-3 text-sm rounded-[14px]",lg:"h-11 px-4 text-base rounded-[16px]"}},defaultVariants:{variant:"default",size:"md"}}),J4=c.forwardRef(({className:e,variant:t,size:n,type:r="text",...o},s)=>h.jsx("input",{ref:s,type:r,className:X4({variant:t,size:n,className:e}),...o}));J4.displayName="Input";const ex=De(["font-bold","text-fg-muted","whitespace-nowrap"],{variants:{size:{sm:"text-xs",md:"text-sm",lg:"text-base"}},defaultVariants:{size:"sm"}}),uh=c.forwardRef(({className:e,size:t,...n},r)=>h.jsx("label",{ref:r,className:ex({size:t,className:e}),...n}));uh.displayName="Label";const tx=De(["focus-ring-soft","inline-flex","shrink-0","items-center","justify-center","bg-transparent","text-fg-default/70","outline-none","transition-colors","hover:bg-hover-subtle","hover:text-fg-default"],{variants:{size:{sm:"h-7 w-7 rounded-[8px]",md:"h-8 w-8 rounded-[10px]",lg:"h-9 w-9 rounded-[12px]"}},defaultVariants:{size:"md"}}),nx={sm:"h-4 w-4",md:"h-4 w-4",lg:"h-5 w-5"};function rx({label:e,size:t="md",iconClassName:n,className:r,type:o="button",...s}){return h.jsx("button",{type:o,"aria-label":e,className:tx({size:t,className:r}),...s,children:h.jsx(Zv,{className:n??nx[t]})})}const dh=c.forwardRef(({page:e,last:t,onChange:n,className:r="",...o},s)=>{const a=Number(e),i=Number(t),l=[];for(let d=1;d<i+1;d++)(a===d||a===1&&d<a+5||a===2&&d<a+4||d>a-3&&d<a+3||a===i-1&&d>a-4||a===i&&d>a-5)&&l.push(d);const u=a===1,f=a===i;return h.jsxs("nav",{ref:s,className:`mt-8 flex justify-center items-center gap-1 ${r}`,...o,children:[h.jsxs(kn,{disabled:u,onClick:()=>!u&&n(1),"aria-label":"First page",isSkip:!0,children:[h.jsx(qs,{width:16}),h.jsx(qs,{width:16})]}),h.jsx(kn,{disabled:u,onClick:()=>!u&&n(a-1),"aria-label":"Previous page",children:h.jsx(qs,{width:20})}),l.map(d=>h.jsx(kn,{active:a===d,onClick:()=>n(d),"aria-label":`Page ${d}`,"aria-current":a===d?"page":void 0,children:d},d)),h.jsx(kn,{disabled:f,onClick:()=>!f&&n(a+1),"aria-label":"Next page",children:h.jsx(br,{width:20})}),h.jsxs(kn,{disabled:f,onClick:()=>!f&&n(i),"aria-label":"Last page",isSkip:!0,children:[h.jsx(br,{width:16}),h.jsx(br,{width:16})]})]})});dh.displayName="Pagination";const kn=c.forwardRef(({active:e,disabled:t,isSkip:n,children:r,className:o="",...s},a)=>{const i=`
21
- flex justify-center items-center
22
- leading-normal text-base font-medium
23
- w-9 h-9 md:w-10 md:h-10
24
- border border-transparent
25
- rounded-[10px]
26
- transition-all duration-200
27
- `,l=e?"cursor-default bg-cta border-cta text-fg-on-filled":t?"cursor-default text-fg-disabled border-transparent":"cursor-pointer text-fg-default hover:bg-hover hover:border-border-subtle",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})});kn.displayName="PaginationItem";const ox=De(["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"}}),sx=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:me("w-full h-3","bg-surface","border-2 border-border","rounded-[6px]","overflow-hidden",r),role:"progressbar","aria-valuenow":e,"aria-valuemin":0,"aria-valuemax":t,...o,children:h.jsx("div",{className:`progress-fill ${ox({color:n})}`,style:{"--progress-width":`${a}%`}})})});sx.displayName="Progress";function gl(e,[t,n]){return Math.min(n,Math.max(t,e))}function ax(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 fh=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"}),ix="VisuallyHidden",hh=c.forwardRef((e,t)=>h.jsx(re.span,{...e,ref:t,style:{...fh,...e.style}}));hh.displayName=ix;var cx=hh,lx=[" ","Enter","ArrowUp","ArrowDown"],ux=[" ","Enter"],wn="Select",[vs,ys,dx]=Mi(wn),[Jn]=Nt(wn,[dx,Xn]),bs=Xn(),[fx,tn]=Jn(wn),[hx,px]=Jn(wn),ph=e=>{const{__scopeSelect:t,children:n,open:r,defaultOpen:o,onOpenChange:s,value:a,defaultValue:i,onValueChange:l,dir:u,name:f,autoComplete:d,disabled:p,required:m,form:v}=e,g=bs(t),[y,b]=c.useState(null),[x,w]=c.useState(null),[E,C]=c.useState(!1),O=fs(u),[A,S]=Vt({prop:r,defaultProp:o??!1,onChange:s,caller:wn}),[N,I]=Vt({prop:a,defaultProp:i,onChange:l,caller:wn}),P=c.useRef(null),H=y?v||!!y.closest("form"):!0,[q,D]=c.useState(new Set),F=Array.from(q).map(T=>T.props.value).join(";");return h.jsx(Oi,{...g,children:h.jsxs(fx,{required:m,scope:t,trigger:y,onTriggerChange:b,valueNode:x,onValueNodeChange:w,valueNodeHasChildren:E,onValueNodeHasChildrenChange:C,contentId:Tt(),value:N,onValueChange:I,open:A,onOpenChange:S,dir:O,triggerPointerDownPosRef:P,disabled:p,children:[h.jsx(vs.Provider,{scope:t,children:h.jsx(hx,{scope:e.__scopeSelect,onNativeOptionAdd:c.useCallback(T=>{D(L=>new Set(L).add(T))},[]),onNativeOptionRemove:c.useCallback(T=>{D(L=>{const j=new Set(L);return j.delete(T),j})},[]),children:n})}),H?h.jsxs(Ih,{"aria-hidden":!0,required:m,tabIndex:-1,name:f,autoComplete:d,value:N,onChange:T=>I(T.target.value),disabled:p,form:v,children:[N===void 0?h.jsx("option",{value:""}):null,Array.from(q)]},F):null]})})};ph.displayName=wn;var mh="SelectTrigger",gh=c.forwardRef((e,t)=>{const{__scopeSelect:n,disabled:r=!1,...o}=e,s=bs(n),a=tn(mh,n),i=a.disabled||r,l=le(t,a.onTriggerChange),u=ys(n),f=c.useRef("touch"),[d,p,m]=Dh(g=>{const y=u().filter(w=>!w.disabled),b=y.find(w=>w.value===a.value),x=jh(y,g,b);x!==void 0&&a.onValueChange(x.value)}),v=g=>{i||(a.onOpenChange(!0),m()),g&&(a.triggerPointerDownPosRef.current={x:Math.round(g.pageX),y:Math.round(g.pageY)})};return h.jsx(Ii,{asChild:!0,...s,children:h.jsx(re.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":Lh(a.value)?"":void 0,...o,ref:l,onClick:K(o.onClick,g=>{g.currentTarget.focus(),f.current!=="mouse"&&v(g)}),onPointerDown:K(o.onPointerDown,g=>{f.current=g.pointerType;const y=g.target;y.hasPointerCapture(g.pointerId)&&y.releasePointerCapture(g.pointerId),g.button===0&&g.ctrlKey===!1&&g.pointerType==="mouse"&&(v(g),g.preventDefault())}),onKeyDown:K(o.onKeyDown,g=>{const y=d.current!=="";!(g.ctrlKey||g.altKey||g.metaKey)&&g.key.length===1&&p(g.key),!(y&&g.key===" ")&&lx.includes(g.key)&&(v(),g.preventDefault())})})})});gh.displayName=mh;var vh="SelectValue",yh=c.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,children:s,placeholder:a="",...i}=e,l=tn(vh,n),{onValueNodeHasChildrenChange:u}=l,f=s!==void 0,d=le(t,l.onValueNodeChange);return Be(()=>{u(f)},[u,f]),h.jsx(re.span,{...i,ref:d,style:{pointerEvents:"none"},children:Lh(l.value)?h.jsx(h.Fragment,{children:a}):s})});yh.displayName=vh;var mx="SelectIcon",bh=c.forwardRef((e,t)=>{const{__scopeSelect:n,children:r,...o}=e;return h.jsx(re.span,{"aria-hidden":!0,...o,ref:t,children:r||"▼"})});bh.displayName=mx;var gx="SelectPortal",xh=e=>h.jsx(Fr,{asChild:!0,...e});xh.displayName=gx;var En="SelectContent",wh=c.forwardRef((e,t)=>{const n=tn(En,e.__scopeSelect),[r,o]=c.useState();if(Be(()=>{o(new DocumentFragment)},[]),!n.open){const s=r;return s?Ht.createPortal(h.jsx(Eh,{scope:e.__scopeSelect,children:h.jsx(vs.Slot,{scope:e.__scopeSelect,children:h.jsx("div",{children:e.children})})}),s):null}return h.jsx(Sh,{...e,ref:t})});wh.displayName=En;var yt=10,[Eh,nn]=Jn(En),vx="SelectContentImpl",yx=zn("SelectContent.RemoveScroll"),Sh=c.forwardRef((e,t)=>{const{__scopeSelect:n,position:r="item-aligned",onCloseAutoFocus:o,onEscapeKeyDown:s,onPointerDownOutside:a,side:i,sideOffset:l,align:u,alignOffset:f,arrowPadding:d,collisionBoundary:p,collisionPadding:m,sticky:v,hideWhenDetached:g,avoidCollisions:y,...b}=e,x=tn(En,n),[w,E]=c.useState(null),[C,O]=c.useState(null),A=le(t,$=>E($)),[S,N]=c.useState(null),[I,P]=c.useState(null),H=ys(n),[q,D]=c.useState(!1),F=c.useRef(!1);c.useEffect(()=>{if(w)return fi(w)},[w]),di();const T=c.useCallback($=>{const[k,...ee]=H().map(te=>te.ref.current),[Z]=ee.slice(-1),X=document.activeElement;for(const te of $)if(te===X||(te?.scrollIntoView({block:"nearest"}),te===k&&C&&(C.scrollTop=0),te===Z&&C&&(C.scrollTop=C.scrollHeight),te?.focus(),document.activeElement!==X))return},[H,C]),L=c.useCallback(()=>T([S,w]),[T,S,w]);c.useEffect(()=>{q&&L()},[q,L]);const{onOpenChange:j,triggerPointerDownPosRef:_}=x;c.useEffect(()=>{if(w){let $={x:0,y:0};const k=Z=>{$={x:Math.abs(Math.round(Z.pageX)-(_.current?.x??0)),y:Math.abs(Math.round(Z.pageY)-(_.current?.y??0))}},ee=Z=>{$.x<=10&&$.y<=10?Z.preventDefault():w.contains(Z.target)||j(!1),document.removeEventListener("pointermove",k),_.current=null};return _.current!==null&&(document.addEventListener("pointermove",k),document.addEventListener("pointerup",ee,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",k),document.removeEventListener("pointerup",ee,{capture:!0})}}},[w,j,_]),c.useEffect(()=>{const $=()=>j(!1);return window.addEventListener("blur",$),window.addEventListener("resize",$),()=>{window.removeEventListener("blur",$),window.removeEventListener("resize",$)}},[j]);const[V,W]=Dh($=>{const k=H().filter(X=>!X.disabled),ee=k.find(X=>X.ref.current===document.activeElement),Z=jh(k,$,ee);Z&&setTimeout(()=>Z.ref.current.focus())}),Q=c.useCallback(($,k,ee)=>{const Z=!F.current&&!ee;(x.value!==void 0&&x.value===k||Z)&&(N($),Z&&(F.current=!0))},[x.value]),B=c.useCallback(()=>w?.focus(),[w]),z=c.useCallback(($,k,ee)=>{const Z=!F.current&&!ee;(x.value!==void 0&&x.value===k||Z)&&P($)},[x.value]),U=r==="popper"?_a:Rh,J=U===_a?{side:i,sideOffset:l,align:u,alignOffset:f,arrowPadding:d,collisionBoundary:p,collisionPadding:m,sticky:v,hideWhenDetached:g,avoidCollisions:y}:{};return h.jsx(Eh,{scope:n,content:w,viewport:C,onViewportChange:O,itemRefCallback:Q,selectedItem:S,onItemLeave:B,itemTextRefCallback:z,focusSelectedItem:L,selectedItemText:I,position:r,isPositioned:q,searchRef:V,children:h.jsx(Ga,{as:yx,allowPinchZoom:!0,children:h.jsx(os,{asChild:!0,trapped:x.open,onMountAutoFocus:$=>{$.preventDefault()},onUnmountAutoFocus:K(o,$=>{x.trigger?.focus({preventScroll:!0}),$.preventDefault()}),children:h.jsx(jr,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:$=>$.preventDefault(),onDismiss:()=>x.onOpenChange(!1),children:h.jsx(U,{role:"listbox",id:x.contentId,"data-state":x.open?"open":"closed",dir:x.dir,onContextMenu:$=>$.preventDefault(),...b,...J,onPlaced:()=>D(!0),ref:A,style:{display:"flex",flexDirection:"column",outline:"none",...b.style},onKeyDown:K(b.onKeyDown,$=>{const k=$.ctrlKey||$.altKey||$.metaKey;if($.key==="Tab"&&$.preventDefault(),!k&&$.key.length===1&&W($.key),["ArrowUp","ArrowDown","Home","End"].includes($.key)){let Z=H().filter(X=>!X.disabled).map(X=>X.ref.current);if(["ArrowUp","End"].includes($.key)&&(Z=Z.slice().reverse()),["ArrowUp","ArrowDown"].includes($.key)){const X=$.target,te=Z.indexOf(X);Z=Z.slice(te+1)}setTimeout(()=>T(Z)),$.preventDefault()}})})})})})})});Sh.displayName=vx;var bx="SelectItemAlignedPosition",Rh=c.forwardRef((e,t)=>{const{__scopeSelect:n,onPlaced:r,...o}=e,s=tn(En,n),a=nn(En,n),[i,l]=c.useState(null),[u,f]=c.useState(null),d=le(t,A=>f(A)),p=ys(n),m=c.useRef(!1),v=c.useRef(!0),{viewport:g,selectedItem:y,selectedItemText:b,focusSelectedItem:x}=a,w=c.useCallback(()=>{if(s.trigger&&s.valueNode&&i&&u&&g&&y&&b){const A=s.trigger.getBoundingClientRect(),S=u.getBoundingClientRect(),N=s.valueNode.getBoundingClientRect(),I=b.getBoundingClientRect();if(s.dir!=="rtl"){const X=I.left-S.left,te=N.left-X,ie=A.left-te,ue=A.width+ie,Ye=Math.max(ue,S.width),Fe=window.innerWidth-yt,Ze=gl(te,[yt,Math.max(yt,Fe-Ye)]);i.style.minWidth=ue+"px",i.style.left=Ze+"px"}else{const X=S.right-I.right,te=window.innerWidth-N.right-X,ie=window.innerWidth-A.right-te,ue=A.width+ie,Ye=Math.max(ue,S.width),Fe=window.innerWidth-yt,Ze=gl(te,[yt,Math.max(yt,Fe-Ye)]);i.style.minWidth=ue+"px",i.style.right=Ze+"px"}const P=p(),H=window.innerHeight-yt*2,q=g.scrollHeight,D=window.getComputedStyle(u),F=parseInt(D.borderTopWidth,10),T=parseInt(D.paddingTop,10),L=parseInt(D.borderBottomWidth,10),j=parseInt(D.paddingBottom,10),_=F+T+q+j+L,V=Math.min(y.offsetHeight*5,_),W=window.getComputedStyle(g),Q=parseInt(W.paddingTop,10),B=parseInt(W.paddingBottom,10),z=A.top+A.height/2-yt,U=H-z,J=y.offsetHeight/2,$=y.offsetTop+J,k=F+T+$,ee=_-k;if(k<=z){const X=P.length>0&&y===P[P.length-1].ref.current;i.style.bottom="0px";const te=u.clientHeight-g.offsetTop-g.offsetHeight,ie=Math.max(U,J+(X?B:0)+te+L),ue=k+ie;i.style.height=ue+"px"}else{const X=P.length>0&&y===P[0].ref.current;i.style.top="0px";const ie=Math.max(z,F+g.offsetTop+(X?Q:0)+J)+ee;i.style.height=ie+"px",g.scrollTop=k-z+g.offsetTop}i.style.margin=`${yt}px 0`,i.style.minHeight=V+"px",i.style.maxHeight=H+"px",r?.(),requestAnimationFrame(()=>m.current=!0)}},[p,s.trigger,s.valueNode,i,u,g,y,b,s.dir,r]);Be(()=>w(),[w]);const[E,C]=c.useState();Be(()=>{u&&C(window.getComputedStyle(u).zIndex)},[u]);const O=c.useCallback(A=>{A&&v.current===!0&&(w(),x?.(),v.current=!1)},[w,x]);return h.jsx(wx,{scope:n,contentWrapper:i,shouldExpandOnScrollRef:m,onScrollButtonChange:O,children:h.jsx("div",{ref:l,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:E},children:h.jsx(re.div,{...o,ref:d,style:{boxSizing:"border-box",maxHeight:"100%",...o.style}})})})});Rh.displayName=bx;var xx="SelectPopperPosition",_a=c.forwardRef((e,t)=>{const{__scopeSelect:n,align:r="start",collisionPadding:o=yt,...s}=e,a=bs(n);return h.jsx(Li,{...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)"}})});_a.displayName=xx;var[wx,Zi]=Jn(En,{}),Na="SelectViewport",Ch=c.forwardRef((e,t)=>{const{__scopeSelect:n,nonce:r,...o}=e,s=nn(Na,n),a=Zi(Na,n),i=le(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(vs.Slot,{scope:n,children:h.jsx(re.div,{"data-radix-select-viewport":"",role:"presentation",...o,ref:i,style:{position:"relative",flex:1,overflow:"hidden auto",...o.style},onScroll:K(o.onScroll,u=>{const f=u.currentTarget,{contentWrapper:d,shouldExpandOnScrollRef:p}=a;if(p?.current&&d){const m=Math.abs(l.current-f.scrollTop);if(m>0){const v=window.innerHeight-yt*2,g=parseFloat(d.style.minHeight),y=parseFloat(d.style.height),b=Math.max(g,y);if(b<v){const x=b+m,w=Math.min(v,x),E=x-w;d.style.height=w+"px",d.style.bottom==="0px"&&(f.scrollTop=E>0?E:0,d.style.justifyContent="flex-end")}}}l.current=f.scrollTop})})})]})});Ch.displayName=Na;var Ah="SelectGroup",[Ex,Sx]=Jn(Ah),Rx=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Tt();return h.jsx(Ex,{scope:n,id:o,children:h.jsx(re.div,{role:"group","aria-labelledby":o,...r,ref:t})})});Rx.displayName=Ah;var Th="SelectLabel",Cx=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=Sx(Th,n);return h.jsx(re.div,{id:o.id,...r,ref:t})});Cx.displayName=Th;var $o="SelectItem",[Ax,Ph]=Jn($o),Mh=c.forwardRef((e,t)=>{const{__scopeSelect:n,value:r,disabled:o=!1,textValue:s,...a}=e,i=tn($o,n),l=nn($o,n),u=i.value===r,[f,d]=c.useState(s??""),[p,m]=c.useState(!1),v=le(t,x=>l.itemRefCallback?.(x,r,o)),g=Tt(),y=c.useRef("touch"),b=()=>{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(Ax,{scope:n,value:r,disabled:o,textId:g,isSelected:u,onItemTextChange:c.useCallback(x=>{d(w=>w||(x?.textContent??"").trim())},[]),children:h.jsx(vs.ItemSlot,{scope:n,value:r,disabled:o,textValue:f,children:h.jsx(re.div,{role:"option","aria-labelledby":g,"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:v,onFocus:K(a.onFocus,()=>m(!0)),onBlur:K(a.onBlur,()=>m(!1)),onClick:K(a.onClick,()=>{y.current!=="mouse"&&b()}),onPointerUp:K(a.onPointerUp,()=>{y.current==="mouse"&&b()}),onPointerDown:K(a.onPointerDown,x=>{y.current=x.pointerType}),onPointerMove:K(a.onPointerMove,x=>{y.current=x.pointerType,o?l.onItemLeave?.():y.current==="mouse"&&x.currentTarget.focus({preventScroll:!0})}),onPointerLeave:K(a.onPointerLeave,x=>{x.currentTarget===document.activeElement&&l.onItemLeave?.()}),onKeyDown:K(a.onKeyDown,x=>{l.searchRef?.current!==""&&x.key===" "||(ux.includes(x.key)&&b(),x.key===" "&&x.preventDefault())})})})})});Mh.displayName=$o;var gr="SelectItemText",_h=c.forwardRef((e,t)=>{const{__scopeSelect:n,className:r,style:o,...s}=e,a=tn(gr,n),i=nn(gr,n),l=Ph(gr,n),u=px(gr,n),[f,d]=c.useState(null),p=le(t,b=>d(b),l.onItemTextChange,b=>i.itemTextRefCallback?.(b,l.value,l.disabled)),m=f?.textContent,v=c.useMemo(()=>h.jsx("option",{value:l.value,disabled:l.disabled,children:m},l.value),[l.disabled,l.value,m]),{onNativeOptionAdd:g,onNativeOptionRemove:y}=u;return Be(()=>(g(v),()=>y(v)),[g,y,v]),h.jsxs(h.Fragment,{children:[h.jsx(re.span,{id:l.textId,...s,ref:p}),l.isSelected&&a.valueNode&&!a.valueNodeHasChildren?Ht.createPortal(s.children,a.valueNode):null]})});_h.displayName=gr;var Nh="SelectItemIndicator",Tx=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return Ph(Nh,n).isSelected?h.jsx(re.span,{"aria-hidden":!0,...r,ref:t}):null});Tx.displayName=Nh;var Oa="SelectScrollUpButton",Px=c.forwardRef((e,t)=>{const n=nn(Oa,e.__scopeSelect),r=Zi(Oa,e.__scopeSelect),[o,s]=c.useState(!1),a=le(t,r.onScrollButtonChange);return Be(()=>{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(Oh,{...e,ref:a,onAutoScroll:()=>{const{viewport:i,selectedItem:l}=n;i&&l&&(i.scrollTop=i.scrollTop-l.offsetHeight)}}):null});Px.displayName=Oa;var Ia="SelectScrollDownButton",Mx=c.forwardRef((e,t)=>{const n=nn(Ia,e.__scopeSelect),r=Zi(Ia,e.__scopeSelect),[o,s]=c.useState(!1),a=le(t,r.onScrollButtonChange);return Be(()=>{if(n.viewport&&n.isPositioned){let i=function(){const u=l.scrollHeight-l.clientHeight,f=Math.ceil(l.scrollTop)<u;s(f)};const l=n.viewport;return i(),l.addEventListener("scroll",i),()=>l.removeEventListener("scroll",i)}},[n.viewport,n.isPositioned]),o?h.jsx(Oh,{...e,ref:a,onAutoScroll:()=>{const{viewport:i,selectedItem:l}=n;i&&l&&(i.scrollTop=i.scrollTop+l.offsetHeight)}}):null});Mx.displayName=Ia;var Oh=c.forwardRef((e,t)=>{const{__scopeSelect:n,onAutoScroll:r,...o}=e,s=nn("SelectScrollButton",n),a=c.useRef(null),i=ys(n),l=c.useCallback(()=>{a.current!==null&&(window.clearInterval(a.current),a.current=null)},[]);return c.useEffect(()=>()=>l(),[l]),Be(()=>{i().find(f=>f.ref.current===document.activeElement)?.ref.current?.scrollIntoView({block:"nearest"})},[i]),h.jsx(re.div,{"aria-hidden":!0,...o,ref:t,style:{flexShrink:0,...o.style},onPointerDown:K(o.onPointerDown,()=>{a.current===null&&(a.current=window.setInterval(r,50))}),onPointerMove:K(o.onPointerMove,()=>{s.onItemLeave?.(),a.current===null&&(a.current=window.setInterval(r,50))}),onPointerLeave:K(o.onPointerLeave,()=>{l()})})}),_x="SelectSeparator",Nx=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e;return h.jsx(re.div,{"aria-hidden":!0,...r,ref:t})});Nx.displayName=_x;var La="SelectArrow",Ox=c.forwardRef((e,t)=>{const{__scopeSelect:n,...r}=e,o=bs(n),s=tn(La,n),a=nn(La,n);return s.open&&a.position==="popper"?h.jsx(Di,{...o,...r,ref:t}):null});Ox.displayName=La;var Ix="SelectBubbleInput",Ih=c.forwardRef(({__scopeSelect:e,value:t,...n},r)=>{const o=c.useRef(null),s=le(r,o),a=ax(t);return c.useEffect(()=>{const i=o.current;if(!i)return;const l=window.HTMLSelectElement.prototype,f=Object.getOwnPropertyDescriptor(l,"value").set;if(a!==t&&f){const d=new Event("change",{bubbles:!0});f.call(i,t),i.dispatchEvent(d)}},[a,t]),h.jsx(re.select,{...n,style:{...fh,...n.style},ref:s,defaultValue:t})});Ih.displayName=Ix;function Lh(e){return e===""||e===void 0}function Dh(e){const t=Mt(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 jh(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=Lx(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 Lx(e,t){return e.map((n,r)=>e[(t+r)%e.length])}var Dx=ph,jx=gh,Fx=yh,kx=bh,$x=xh,Hx=wh,Bx=Ch,Vx=Mh,Zx=_h,Ux=Dx,zx=Fx,qx=jx,Wx=kx,Kx=$x,Gx=Hx,Qx=Bx,Yx=Vx,Xx=Zx;const Jx=De(["inline-flex","items-center","justify-between","gap-2","border","border-border-subtle","bg-elevated","text-fg-default","font-medium","transition-colors","outline-none","focus-ring-soft","disabled:cursor-not-allowed","disabled:opacity-50","cursor-pointer","whitespace-nowrap"],{variants:{variant:{default:["border-border-subtle"],ghost:["border-transparent","bg-subtle","hover:bg-hover-subtle"]},size:{sm:"h-8 px-3 text-sm rounded-[12px]",md:"h-9 px-3 text-sm rounded-[14px]",lg:"h-11 px-4 text-base rounded-[16px]"}},defaultVariants:{variant:"default",size:"md"}}),xo=({value:e,defaultValue:t,onValueChange:n,placeholder:r,variant:o,size:s,className:a,children:i,disabled:l})=>h.jsxs(Ux,{value:e,defaultValue:t,onValueChange:n,disabled:l,children:[h.jsxs(qx,{className:Jx({variant:o,size:s,className:a}),children:[h.jsx(zx,{placeholder:r}),h.jsx(Wx,{children:h.jsx(Hv,{className:"w-3.5 h-3.5 opacity-60"})})]}),h.jsx(Kx,{children:h.jsx(Fh,{children:h.jsx(Qx,{className:"p-1",children:i})})})]}),Fh=c.forwardRef(({className:e,children:t,...n},r)=>h.jsx(Gx,{ref:r,position:"popper",sideOffset:4,className:me("z-[1100]","min-w-[var(--radix-select-trigger-width)]","overflow-hidden","surface-floating","data-[state=open]:animate-fade-in","data-[state=open]:animate-zoom-in",e),...n,children:t}));Fh.displayName="SelectContent";const Ft=c.forwardRef(({className:e,children:t,...n},r)=>h.jsx(Yx,{ref:r,className:me("relative","flex","items-center","cursor-pointer","select-none","px-3","py-2","text-sm","font-medium","text-fg-secondary","outline-none","focus-ring-soft","transition-colors","rounded-[10px]","data-[highlighted]:bg-hover-subtle","data-[highlighted]:text-fg-default","data-[disabled]:pointer-events-none","data-[disabled]:opacity-50",e),...n,children:h.jsx(Xx,{children:t})}));Ft.displayName="SelectItem";xo.displayName="Select";const vl=e=>typeof e=="number"?`${e}px`:e,Bt=c.forwardRef(({width:e,height:t=30,opacity:n,className:r="",style:o,...s},a)=>h.jsx("div",{ref:a,className:me("rounded-[14px]","skeleton-sized","bg-[length:200%_100%]","bg-gradient-to-r","from-pastel-lavender-200/30","via-pastel-yellow-200/20","to-pastel-lavender-200/30","animate-shimmer","animate-fade-in",r),style:{"--skeleton-width":vl(e),"--skeleton-height":vl(t),"--skeleton-opacity":n,...o},...s}));Bt.displayName="Skeleton";const ew=c.forwardRef(({checked:e,onCheckedChange:t,onClick:n,className:r,disabled:o,...s},a)=>h.jsx("button",{ref:a,type:"button",role:"switch","aria-checked":e,disabled:o,className:me("focus-ring-soft relative inline-flex h-7 w-12 items-center rounded-full border p-1 transition-colors duration-200 outline-none",e?"border-transparent bg-cta hover:bg-cta-hover active:bg-cta-hover":"border-border bg-subtle hover:bg-hover active:bg-active",o&&"cursor-not-allowed opacity-80",r),onClick:i=>{n?.(i),!(i.defaultPrevented||o)&&t?.(!e)},...s,children:h.jsx("span",{"aria-hidden":"true",className:me("pointer-events-none inline-block h-5 w-5 rounded-full shadow-sm transition-transform duration-200",e?"translate-x-5 bg-white":"translate-x-0 bg-fg-secondary")})}));ew.displayName="Switch";const tw=De(["w-full","border","border-border-subtle","bg-elevated","text-fg-default","placeholder:text-fg-placeholder","transition-colors","outline-none","focus-ring-soft","disabled:cursor-not-allowed","disabled:opacity-50","resize-none"],{variants:{variant:{default:[],ghost:["border-transparent","bg-subtle","hover:bg-hover-subtle"],error:["border-border-error","bg-accent-soft-danger/40","text-fg-default"]},size:{sm:"min-h-[60px] p-3 text-sm rounded-[12px]",md:"min-h-[80px] p-3 text-sm rounded-[14px]",lg:"min-h-[100px] p-4 text-base rounded-[16px]"}},defaultVariants:{variant:"default",size:"md"}}),nw=c.forwardRef(({className:e,variant:t,size:n,...r},o)=>h.jsx("textarea",{ref:o,className:tw({variant:t,size:n,className:e}),...r}));nw.displayName="Textarea";var kh="Toggle",$h=c.forwardRef((e,t)=>{const{pressed:n,defaultPressed:r,onPressedChange:o,...s}=e,[a,i]=Vt({prop:n,onChange:o,defaultProp:r??!1,caller:kh});return h.jsx(re.button,{type:"button","aria-pressed":a,"data-state":a?"on":"off","data-disabled":e.disabled?"":void 0,...s,ref:t,onClick:K(e.onClick,()=>{e.disabled||i(!a)})})});$h.displayName=kh;var rn="ToggleGroup",[Hh]=Nt(rn,[hs]),Bh=hs(),Ui=M.forwardRef((e,t)=>{const{type:n,...r}=e;if(n==="single"){const o=r;return h.jsx(rw,{...o,ref:t})}if(n==="multiple"){const o=r;return h.jsx(ow,{...o,ref:t})}throw new Error(`Missing prop \`type\` expected on \`${rn}\``)});Ui.displayName=rn;var[Vh,Zh]=Hh(rn),rw=M.forwardRef((e,t)=>{const{value:n,defaultValue:r,onValueChange:o=()=>{},...s}=e,[a,i]=Vt({prop:n,defaultProp:r??"",onChange:o,caller:rn});return h.jsx(Vh,{scope:e.__scopeToggleGroup,type:"single",value:M.useMemo(()=>a?[a]:[],[a]),onItemActivate:i,onItemDeactivate:M.useCallback(()=>i(""),[i]),children:h.jsx(Uh,{...s,ref:t})})}),ow=M.forwardRef((e,t)=>{const{value:n,defaultValue:r,onValueChange:o=()=>{},...s}=e,[a,i]=Vt({prop:n,defaultProp:r??[],onChange:o,caller:rn}),l=M.useCallback(f=>i((d=[])=>[...d,f]),[i]),u=M.useCallback(f=>i((d=[])=>d.filter(p=>p!==f)),[i]);return h.jsx(Vh,{scope:e.__scopeToggleGroup,type:"multiple",value:a,onItemActivate:l,onItemDeactivate:u,children:h.jsx(Uh,{...s,ref:t})})});Ui.displayName=rn;var[sw,aw]=Hh(rn),Uh=M.forwardRef((e,t)=>{const{__scopeToggleGroup:n,disabled:r=!1,rovingFocus:o=!0,orientation:s,dir:a,loop:i=!0,...l}=e,u=Bh(n),f=fs(a),d={role:"group",dir:f,...l};return h.jsx(sw,{scope:n,rovingFocus:o,disabled:r,children:o?h.jsx(d0,{asChild:!0,...u,orientation:s,dir:f,loop:i,children:h.jsx(re.div,{...d,ref:t})}):h.jsx(re.div,{...d,ref:t})})}),Ho="ToggleGroupItem",zh=M.forwardRef((e,t)=>{const n=Zh(Ho,e.__scopeToggleGroup),r=aw(Ho,e.__scopeToggleGroup),o=Bh(e.__scopeToggleGroup),s=n.value.includes(e.value),a=r.disabled||e.disabled,i={...e,pressed:s,disabled:a},l=M.useRef(null);return r.rovingFocus?h.jsx(f0,{asChild:!0,...o,focusable:!a,active:s,ref:l,children:h.jsx(yl,{...i,ref:t})}):h.jsx(yl,{...i,ref:t})});zh.displayName=Ho;var yl=M.forwardRef((e,t)=>{const{__scopeToggleGroup:n,value:r,...o}=e,s=Zh(Ho,n),a={role:"radio","aria-checked":e.pressed,"aria-pressed":void 0},i=s.type==="single"?a:void 0;return h.jsx($h,{...i,...o,ref:t,onPressedChange:l=>{l?s.onItemActivate(r):s.onItemDeactivate(r)}})}),iw=Ui,cw=zh,lw=iw,uw=cw;const dw=De(["inline-flex","gap-0.5","overflow-hidden"],{variants:{variant:{default:["border-2","border-border","rounded-[10px]","bg-surface"],outline:["border-2","border-border","rounded-[10px]","bg-transparent"],pills:["surface-base","p-1"],quiet:["rounded-[12px]","border","border-border-subtle/80","bg-hover-subtle/55","p-0.5"]}},defaultVariants:{variant:"default"}}),fw=De(["flex","items-center","justify-center","font-bold","border","border-transparent","transition-colors","duration-200","disabled:pointer-events-none","disabled:opacity-50"],{variants:{variant:{default:["text-fg-muted","hover:bg-hover","data-[state=on]:bg-cta","data-[state=on]:text-fg-on-filled"],outline:["text-fg-muted","hover:bg-hover-subtle","data-[state=on]:bg-cta","data-[state=on]:text-fg-on-filled"],pills:["text-fg-secondary","rounded-[10px]","hover:bg-hover-subtle","data-[state=on]:bg-cta","data-[state=on]:text-fg-on-filled","data-[state=on]:border-border-secondary"],quiet:["rounded-[10px]","font-medium","text-fg-secondary","hover:bg-hover-subtle/80","data-[state=on]:border-border-secondary/70","data-[state=on]:bg-elevated","data-[state=on]:text-fg-default","data-[state=on]:shadow-[0_8px_18px_-16px_rgba(15,18,24,0.28)]"]},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"}}),qh=c.createContext({}),hw=c.forwardRef(({className:e,variant:t,size:n,children:r,...o},s)=>h.jsx(qh.Provider,{value:{variant:t??"default",size:n??"md"},children:h.jsx(lw,{ref:s,className:dw({variant:t,className:e}),...o,children:r})}));hw.displayName="ToggleGroup";const pw=c.forwardRef(({className:e,activeClassName:t,children:n,...r},o)=>{const s=c.useContext(qh);return h.jsx(uw,{ref:o,className:fw({variant:s.variant,size:s.size,className:me(e,t)}),...r,children:n})});pw.displayName="ToggleGroupItem";var[xs]=Nt("Tooltip",[Xn]),ws=Xn(),Wh="TooltipProvider",mw=700,Da="tooltip.open",[gw,zi]=xs(Wh),Kh=e=>{const{__scopeTooltip:t,delayDuration:n=mw,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(gw,{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})};Kh.displayName=Wh;var Mr="Tooltip",[vw,Wr]=xs(Mr),Gh=e=>{const{__scopeTooltip:t,children:n,open:r,defaultOpen:o,onOpenChange:s,disableHoverableContent:a,delayDuration:i}=e,l=zi(Mr,e.__scopeTooltip),u=ws(t),[f,d]=c.useState(null),p=Tt(),m=c.useRef(0),v=a??l.disableHoverableContent,g=i??l.delayDuration,y=c.useRef(!1),[b,x]=Vt({prop:r,defaultProp:o??!1,onChange:A=>{A?(l.onOpen(),document.dispatchEvent(new CustomEvent(Da))):l.onClose(),s?.(A)},caller:Mr}),w=c.useMemo(()=>b?y.current?"delayed-open":"instant-open":"closed",[b]),E=c.useCallback(()=>{window.clearTimeout(m.current),m.current=0,y.current=!1,x(!0)},[x]),C=c.useCallback(()=>{window.clearTimeout(m.current),m.current=0,x(!1)},[x]),O=c.useCallback(()=>{window.clearTimeout(m.current),m.current=window.setTimeout(()=>{y.current=!0,x(!0),m.current=0},g)},[g,x]);return c.useEffect(()=>()=>{m.current&&(window.clearTimeout(m.current),m.current=0)},[]),h.jsx(Oi,{...u,children:h.jsx(vw,{scope:t,contentId:p,open:b,stateAttribute:w,trigger:f,onTriggerChange:d,onTriggerEnter:c.useCallback(()=>{l.isOpenDelayedRef.current?O():E()},[l.isOpenDelayedRef,O,E]),onTriggerLeave:c.useCallback(()=>{v?C():(window.clearTimeout(m.current),m.current=0)},[C,v]),onOpen:E,onClose:C,disableHoverableContent:v,children:n})})};Gh.displayName=Mr;var ja="TooltipTrigger",Qh=c.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=Wr(ja,n),s=zi(ja,n),a=ws(n),i=c.useRef(null),l=le(t,i,o.onTriggerChange),u=c.useRef(!1),f=c.useRef(!1),d=c.useCallback(()=>u.current=!1,[]);return c.useEffect(()=>()=>document.removeEventListener("pointerup",d),[d]),h.jsx(Ii,{asChild:!0,...a,children:h.jsx(re.button,{"aria-describedby":o.open?o.contentId:void 0,"data-state":o.stateAttribute,...r,ref:l,onPointerMove:K(e.onPointerMove,p=>{p.pointerType!=="touch"&&!f.current&&!s.isPointerInTransitRef.current&&(o.onTriggerEnter(),f.current=!0)}),onPointerLeave:K(e.onPointerLeave,()=>{o.onTriggerLeave(),f.current=!1}),onPointerDown:K(e.onPointerDown,()=>{o.open&&o.onClose(),u.current=!0,document.addEventListener("pointerup",d,{once:!0})}),onFocus:K(e.onFocus,()=>{u.current||o.onOpen()}),onBlur:K(e.onBlur,o.onClose),onClick:K(e.onClick,o.onClose)})})});Qh.displayName=ja;var qi="TooltipPortal",[yw,bw]=xs(qi,{forceMount:void 0}),Yh=e=>{const{__scopeTooltip:t,forceMount:n,children:r,container:o}=e,s=Wr(qi,t);return h.jsx(yw,{scope:t,forceMount:n,children:h.jsx(Ot,{present:n||s.open,children:h.jsx(Fr,{asChild:!0,container:o,children:r})})})};Yh.displayName=qi;var Wn="TooltipContent",Xh=c.forwardRef((e,t)=>{const n=bw(Wn,e.__scopeTooltip),{forceMount:r=n.forceMount,side:o="top",...s}=e,a=Wr(Wn,e.__scopeTooltip);return h.jsx(Ot,{present:r||a.open,children:a.disableHoverableContent?h.jsx(Jh,{side:o,...s,ref:t}):h.jsx(xw,{side:o,...s,ref:t})})}),xw=c.forwardRef((e,t)=>{const n=Wr(Wn,e.__scopeTooltip),r=zi(Wn,e.__scopeTooltip),o=c.useRef(null),s=le(t,o),[a,i]=c.useState(null),{trigger:l,onClose:u}=n,f=o.current,{onPointerInTransitChange:d}=r,p=c.useCallback(()=>{i(null),d(!1)},[d]),m=c.useCallback((v,g)=>{const y=v.currentTarget,b={x:v.clientX,y:v.clientY},x=Cw(b,y.getBoundingClientRect()),w=Aw(b,x),E=Tw(g.getBoundingClientRect()),C=Mw([...w,...E]);i(C),d(!0)},[d]);return c.useEffect(()=>()=>p(),[p]),c.useEffect(()=>{if(l&&f){const v=y=>m(y,f),g=y=>m(y,l);return l.addEventListener("pointerleave",v),f.addEventListener("pointerleave",g),()=>{l.removeEventListener("pointerleave",v),f.removeEventListener("pointerleave",g)}}},[l,f,m,p]),c.useEffect(()=>{if(a){const v=g=>{const y=g.target,b={x:g.clientX,y:g.clientY},x=l?.contains(y)||f?.contains(y),w=!Pw(b,a);x?p():w&&(p(),u())};return document.addEventListener("pointermove",v),()=>document.removeEventListener("pointermove",v)}},[l,f,a,u,p]),h.jsx(Jh,{...e,ref:s})}),[ww,Ew]=xs(Mr,{isInside:!1}),Sw=Bu("TooltipContent"),Jh=c.forwardRef((e,t)=>{const{__scopeTooltip:n,children:r,"aria-label":o,onEscapeKeyDown:s,onPointerDownOutside:a,...i}=e,l=Wr(Wn,n),u=ws(n),{onClose:f}=l;return c.useEffect(()=>(document.addEventListener(Da,f),()=>document.removeEventListener(Da,f)),[f]),c.useEffect(()=>{if(l.trigger){const d=p=>{p.target?.contains(l.trigger)&&f()};return window.addEventListener("scroll",d,{capture:!0}),()=>window.removeEventListener("scroll",d,{capture:!0})}},[l.trigger,f]),h.jsx(jr,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:d=>d.preventDefault(),onDismiss:f,children:h.jsxs(Li,{"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(Sw,{children:r}),h.jsx(ww,{scope:n,isInside:!0,children:h.jsx(cx,{id:l.contentId,role:"tooltip",children:o||r})})]})})});Xh.displayName=Wn;var ep="TooltipArrow",Rw=c.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=ws(n);return Ew(ep,n).isInside?null:h.jsx(Di,{...o,...r,ref:t})});Rw.displayName=ep;function Cw(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 Aw(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 Tw(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 Pw(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,f=i.y,d=l.x,p=l.y;f>r!=p>r&&n<(d-u)*(r-f)/(p-f)+u&&(o=!o)}return o}function Mw(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),_w(t)}function _w(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 Nw=Kh,Ow=Gh,Iw=Qh,Lw=Yh,Dw=Xh,jw=Nw,Fw=Ow,kw=Iw,$w=Lw,tp=Dw;const Hw=jw,Bw=Fw,Vw=kw,np=c.forwardRef(({className:e,sideOffset:t=4,...n},r)=>h.jsx(tp,{ref:r,sideOffset:t,className:me("z-50","overflow-hidden","px-3","py-1.5","text-xs","font-bold","bg-elevated","text-fg-secondary","border","border-border-subtle","shadow-sm","rounded-[8px]","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),...n}));np.displayName=tp.displayName;const d5=({content:e,children:t,side:n="top",delayDuration:r=200})=>h.jsx(Hw,{children:h.jsxs(Bw,{delayDuration:r,children:[h.jsx(Vw,{asChild:!0,children:t}),h.jsx($w,{children:h.jsx(np,{side:n,children:e})})]})}),bl=({children:e,fallback:t})=>e||t;function Zw({children:e}){return h.jsx("div",{className:"flex w-full flex-col-reverse gap-2 sm:flex-row sm:justify-end",children:e})}function Uw({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",children:h.jsxs("div",{className:"surface-base inline-flex flex-wrap items-center gap-3 rounded-[16px] px-3.5 py-2.5",children:[h.jsxs("div",{className:"flex items-center gap-2",children:[h.jsx(Kd,{className:"h-4 w-4 shrink-0 text-fg-tertiary"}),h.jsx(se,{as:"span",variant:"label",weight:"medium",tone:"tertiary",children:"Items"}),h.jsxs(xo,{value:n?"auto":String(e),onValueChange:u=>{u!=="auto"&&t(Number(u))},variant:"ghost",size:"sm",children:[n&&h.jsxs(Ft,{value:"auto",children:["Auto (",e,")"]}),h.jsx(Ft,{value:"25",children:"25"}),h.jsx(Ft,{value:"50",children:"50"}),h.jsx(Ft,{value:"100",children:"100"})]})]}),h.jsx("div",{className:"h-5 w-px bg-divider"}),h.jsxs("div",{className:"flex items-center gap-2",children:[h.jsx(Qv,{className:"h-4 w-4 shrink-0 text-fg-tertiary"}),h.jsx(se,{as:"span",variant:"label",weight:"medium",tone:"tertiary",children:"Sort"}),h.jsxs(xo,{value:r,onValueChange:u=>o(u),variant:"ghost",size:"sm",children:[h.jsx(Ft,{value:"updatedAt",children:"Updated"}),h.jsx(Ft,{value:"createdAt",children:"Created"})]}),h.jsxs(xo,{value:s,onValueChange:u=>a(u),variant:"ghost",size:"sm",children:[h.jsx(Ft,{value:"desc",children:"Newest"}),h.jsx(Ft,{value:"asc",children:"Oldest"})]})]}),h.jsx("div",{className:"h-5 w-px bg-divider"}),h.jsxs(uh,{htmlFor:"pinnedFirst",size:"sm",className:"flex cursor-pointer items-center gap-1.5",children:[h.jsx(Ff,{id:"pinnedFirst",size:"sm",checked:i,onChange:u=>l(u.target.checked)}),h.jsx(se,{as:"span",variant:"label",weight:"medium",tone:"secondary",children:"Pinned First"})]})]})})}var Xs,xl;function zw(){if(xl)return Xs;xl=1;function e(i){return i&&typeof i=="object"&&"default"in i?i.default:i}var t=a1(),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 f(d){return d.displayName||d.name||"Component"}return function(p){if(typeof p!="function")throw new Error("Expected WrappedComponent to be a React component.");var m=[],v;function g(){v=i(m.map(function(b){return b.props})),y.canUseDOM?l(v):u&&(v=u(v))}var y=(function(b){o(x,b);function x(){return b.apply(this,arguments)||this}x.peek=function(){return v},x.rewind=function(){if(x.canUseDOM)throw new Error("You may only call rewind() on the server. Call peek() to read the current state.");var C=v;return v=void 0,m=[],C};var w=x.prototype;return w.UNSAFE_componentWillMount=function(){m.push(this),g()},w.componentDidUpdate=function(){g()},w.componentWillUnmount=function(){var C=m.indexOf(this);m.splice(C,1),g()},w.render=function(){return n.createElement(p,this.props)},x})(t.PureComponent);return r(y,"displayName","SideEffect("+f(p)+")"),r(y,"canUseDOM",s),y}}return Xs=a,Xs}var qw=zw();const Ww=Kn(qw);var Js,wl;function Kw(){if(wl)return Js;wl=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 f;if(t&&s instanceof Map&&a instanceof Map){if(s.size!==a.size)return!1;for(f=s.entries();!(l=f.next()).done;)if(!a.has(l.value[0]))return!1;for(f=s.entries();!(l=f.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(f=s.entries();!(l=f.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 Js=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}},Js}var Gw=Kw();const Qw=Kn(Gw);var ea,El;function Yw(){if(El)return ea;El=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(f){return a[f]});if(l.join("")!=="0123456789")return!1;var u={};return"abcdefghijklmnopqrst".split("").forEach(function(f){u[f]=f}),Object.keys(Object.assign({},u)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}return ea=o()?Object.assign:function(s,a){for(var i,l=r(s),u,f=1;f<arguments.length;f++){i=Object(arguments[f]);for(var d in i)t.call(i,d)&&(l[d]=i[d]);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},ea}var Xw=Yw();const Jw=Kn(Xw);var pn={BODY:"bodyAttributes",HTML:"htmlAttributes",TITLE:"titleAttributes"},ne={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title"};Object.keys(ne).map(function(e){return ne[e]});var xe={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"},Bo={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},_r={DEFAULT_TITLE:"defaultTitle",DEFER:"defer",ENCODE_SPECIAL_CHARACTERS:"encodeSpecialCharacters",ON_CHANGE_CLIENT_STATE:"onChangeClientState",TITLE_TEMPLATE:"titleTemplate"},eE=Object.keys(Bo).reduce(function(e,t){return e[Bo[t]]=t,e},{}),tE=[ne.NOSCRIPT,ne.SCRIPT,ne.STYLE],xt="data-react-helmet",nE=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},rE=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},oE=(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}})(),Xe=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},sE=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)},Sl=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},aE=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},Fa=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return n===!1?String(t):String(t).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")},iE=function(t){var n=Bn(t,ne.TITLE),r=Bn(t,_r.TITLE_TEMPLATE);if(r&&n)return r.replace(/%s/g,function(){return Array.isArray(n)?n.join(""):n});var o=Bn(t,_r.DEFAULT_TITLE);return n||o||void 0},cE=function(t){return Bn(t,_r.ON_CHANGE_CLIENT_STATE)||function(){}},ta=function(t,n){return n.filter(function(r){return typeof r[t]<"u"}).map(function(r){return r[t]}).reduce(function(r,o){return Xe({},r,o)},{})},lE=function(t,n){return n.filter(function(r){return typeof r[ne.BASE]<"u"}).map(function(r){return r[ne.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},[])},hr=function(t,n,r){var o={};return r.filter(function(s){return Array.isArray(s[t])?!0:(typeof s[t]<"u"&&hE("Helmet: "+t+' should be of type "Array". Instead found type "'+nE(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,v=Object.keys(p),g=0;g<v.length;g++){var y=v[g],b=y.toLowerCase();n.indexOf(b)!==-1&&!(m===xe.REL&&p[m].toLowerCase()==="canonical")&&!(b===xe.REL&&p[b].toLowerCase()==="stylesheet")&&(m=b),n.indexOf(y)!==-1&&(y===xe.INNER_HTML||y===xe.CSS_TEXT||y===xe.ITEM_PROP)&&(m=y)}if(!m||!p[m])return!1;var x=p[m].toLowerCase();return o[m]||(o[m]={}),i[m]||(i[m]={}),o[m][x]?!1:(i[m][x]=!0,!0)}).reverse().forEach(function(p){return s.push(p)});for(var l=Object.keys(i),u=0;u<l.length;u++){var f=l[u],d=Jw({},o[f],i[f]);o[f]=d}return s},[]).reverse()},Bn=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},uE=function(t){return{baseTag:lE([xe.HREF,xe.TARGET],t),bodyAttributes:ta(pn.BODY,t),defer:Bn(t,_r.DEFER),encode:Bn(t,_r.ENCODE_SPECIAL_CHARACTERS),htmlAttributes:ta(pn.HTML,t),linkTags:hr(ne.LINK,[xe.REL,xe.HREF],t),metaTags:hr(ne.META,[xe.NAME,xe.CHARSET,xe.HTTPEQUIV,xe.PROPERTY,xe.ITEM_PROP],t),noscriptTags:hr(ne.NOSCRIPT,[xe.INNER_HTML],t),onChangeClientState:cE(t),scriptTags:hr(ne.SCRIPT,[xe.SRC,xe.INNER_HTML],t),styleTags:hr(ne.STYLE,[xe.CSS_TEXT],t),title:iE(t),titleAttributes:ta(pn.TITLE,t)}},ka=(function(){var e=Date.now();return function(t){var n=Date.now();n-e>16?(e=n,t(n)):setTimeout(function(){ka(t)},0)}})(),Rl=function(t){return clearTimeout(t)},dE=typeof window<"u"?window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||ka:global.requestAnimationFrame||ka,fE=typeof window<"u"?window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||Rl:global.cancelAnimationFrame||Rl,hE=function(t){return console&&typeof console.warn=="function"&&console.warn(t)},pr=null,pE=function(t){pr&&fE(pr),t.defer?pr=dE(function(){Cl(t,function(){pr=null})}):(Cl(t),pr=null)},Cl=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,f=t.scriptTags,d=t.styleTags,p=t.title,m=t.titleAttributes;$a(ne.BODY,o),$a(ne.HTML,s),mE(p,m);var v={baseTag:Dn(ne.BASE,r),linkTags:Dn(ne.LINK,a),metaTags:Dn(ne.META,i),noscriptTags:Dn(ne.NOSCRIPT,l),scriptTags:Dn(ne.SCRIPT,f),styleTags:Dn(ne.STYLE,d)},g={},y={};Object.keys(v).forEach(function(b){var x=v[b],w=x.newTags,E=x.oldTags;w.length&&(g[b]=w),E.length&&(y[b]=v[b].oldTags)}),n&&n(),u(t,g,y)},rp=function(t){return Array.isArray(t)?t.join(""):t},mE=function(t,n){typeof t<"u"&&document.title!==t&&(document.title=rp(t)),$a(ne.TITLE,n)},$a=function(t,n){var r=document.getElementsByTagName(t)[0];if(r){for(var o=r.getAttribute(xt),s=o?o.split(","):[],a=[].concat(s),i=Object.keys(n),l=0;l<i.length;l++){var u=i[l],f=n[u]||"";r.getAttribute(u)!==f&&r.setAttribute(u,f),s.indexOf(u)===-1&&s.push(u);var d=a.indexOf(u);d!==-1&&a.splice(d,1)}for(var p=a.length-1;p>=0;p--)r.removeAttribute(a[p]);s.length===a.length?r.removeAttribute(xt):r.getAttribute(xt)!==i.join(",")&&r.setAttribute(xt,i.join(","))}},Dn=function(t,n){var r=document.head||document.querySelector(ne.HEAD),o=r.querySelectorAll(t+"["+xt+"]"),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 f in l)if(l.hasOwnProperty(f))if(f===xe.INNER_HTML)u.innerHTML=l.innerHTML;else if(f===xe.CSS_TEXT)u.styleSheet?u.styleSheet.cssText=l.cssText:u.appendChild(document.createTextNode(l.cssText));else{var d=typeof l[f]>"u"?"":l[f];u.setAttribute(f,d)}u.setAttribute(xt,"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}},op=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},"")},gE=function(t,n,r,o){var s=op(r),a=rp(n);return s?"<"+t+" "+xt+'="true" '+s+">"+Fa(a,o)+"</"+t+">":"<"+t+" "+xt+'="true">'+Fa(a,o)+"</"+t+">"},vE=function(t,n,r){return n.reduce(function(o,s){var a=Object.keys(s).filter(function(u){return!(u===xe.INNER_HTML||u===xe.CSS_TEXT)}).reduce(function(u,f){var d=typeof s[f]>"u"?f:f+'="'+Fa(s[f],r)+'"';return u?u+" "+d:d},""),i=s.innerHTML||s.cssText||"",l=tE.indexOf(t)===-1;return o+"<"+t+" "+xt+'="true" '+a+(l?"/>":">"+i+"</"+t+">")},"")},sp=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return Object.keys(t).reduce(function(r,o){return r[Bo[o]||o]=t[o],r},n)},yE=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return Object.keys(t).reduce(function(r,o){return r[eE[o]||o]=t[o],r},n)},bE=function(t,n,r){var o,s=(o={key:n},o[xt]=!0,o),a=sp(r,s);return[M.createElement(ne.TITLE,a,n)]},xE=function(t,n){return n.map(function(r,o){var s,a=(s={key:o},s[xt]=!0,s);return Object.keys(r).forEach(function(i){var l=Bo[i]||i;if(l===xe.INNER_HTML||l===xe.CSS_TEXT){var u=r.innerHTML||r.cssText;a.dangerouslySetInnerHTML={__html:u}}else a[l]=r[i]}),M.createElement(t,a)})},jt=function(t,n,r){switch(t){case ne.TITLE:return{toComponent:function(){return bE(t,n.title,n.titleAttributes)},toString:function(){return gE(t,n.title,n.titleAttributes,r)}};case pn.BODY:case pn.HTML:return{toComponent:function(){return sp(n)},toString:function(){return op(n)}};default:return{toComponent:function(){return xE(t,n)},toString:function(){return vE(t,n,r)}}}},ap=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,f=t.styleTags,d=t.title,p=d===void 0?"":d,m=t.titleAttributes;return{base:jt(ne.BASE,n,o),bodyAttributes:jt(pn.BODY,r,o),htmlAttributes:jt(pn.HTML,s,o),link:jt(ne.LINK,a,o),meta:jt(ne.META,i,o),noscript:jt(ne.NOSCRIPT,l,o),script:jt(ne.SCRIPT,u,o),style:jt(ne.STYLE,f,o),title:jt(ne.TITLE,{title:p,titleAttributes:m},o)}},wE=function(t){var n,r;return r=n=(function(o){sE(s,o);function s(){return rE(this,s),aE(this,o.apply(this,arguments))}return s.prototype.shouldComponentUpdate=function(i){return!Qw(this.props,i)},s.prototype.mapNestedChildrenToProps=function(i,l){if(!l)return null;switch(i.type){case ne.SCRIPT:case ne.NOSCRIPT:return{innerHTML:l};case ne.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,f=i.arrayTypeChildren,d=i.newChildProps,p=i.nestedChildren;return Xe({},f,(l={},l[u.type]=[].concat(f[u.type]||[],[Xe({},d,this.mapNestedChildrenToProps(u,p))]),l))},s.prototype.mapObjectTypeChildren=function(i){var l,u,f=i.child,d=i.newProps,p=i.newChildProps,m=i.nestedChildren;switch(f.type){case ne.TITLE:return Xe({},d,(l={},l[f.type]=m,l.titleAttributes=Xe({},p),l));case ne.BODY:return Xe({},d,{bodyAttributes:Xe({},p)});case ne.HTML:return Xe({},d,{htmlAttributes:Xe({},p)})}return Xe({},d,(u={},u[f.type]=Xe({},p),u))},s.prototype.mapArrayTypeChildrenToProps=function(i,l){var u=Xe({},l);return Object.keys(i).forEach(function(f){var d;u=Xe({},u,(d={},d[f]=i[f],d))}),u},s.prototype.warnOnInvalidChildren=function(i,l){return!0},s.prototype.mapChildrenToProps=function(i,l){var u=this,f={};return M.Children.forEach(i,function(d){if(!(!d||!d.props)){var p=d.props,m=p.children,v=Sl(p,["children"]),g=yE(v);switch(u.warnOnInvalidChildren(d,m),d.type){case ne.LINK:case ne.META:case ne.NOSCRIPT:case ne.SCRIPT:case ne.STYLE:f=u.flattenArrayTypeChildren({child:d,arrayTypeChildren:f,newChildProps:g,nestedChildren:m});break;default:l=u.mapObjectTypeChildren({child:d,newProps:l,newChildProps:g,nestedChildren:m});break}}}),l=this.mapArrayTypeChildrenToProps(f,l),l},s.prototype.render=function(){var i=this.props,l=i.children,u=Sl(i,["children"]),f=Xe({},u);return l&&(f=this.mapChildrenToProps(l,f)),M.createElement(t,f)},oE(s,null,[{key:"canUseDOM",set:function(i){t.canUseDOM=i}}]),s})(M.Component),n.propTypes={base:be.object,bodyAttributes:be.object,children:be.oneOfType([be.arrayOf(be.node),be.node]),defaultTitle:be.string,defer:be.bool,encodeSpecialCharacters:be.bool,htmlAttributes:be.object,link:be.arrayOf(be.object),meta:be.arrayOf(be.object),noscript:be.arrayOf(be.object),onChangeClientState:be.func,script:be.arrayOf(be.object),style:be.arrayOf(be.object),title:be.string,titleAttributes:be.object,titleTemplate:be.string},n.defaultProps={defer:!0,encodeSpecialCharacters:!0},n.peek=t.peek,n.rewind=function(){var o=t.rewind();return o||(o=ap({baseTag:[],bodyAttributes:{},htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}})),o},r},EE=function(){return null},SE=Ww(uE,pE,ap)(EE),Ha=wE(SE);Ha.renderStatic=Ha.rewind;function Al(e,t){return t==null?h.jsx(se,{as:"h1",variant:"heading",weight:"bold",tracking:"tighter",children:e}):typeof t=="string"||typeof t=="number"?h.jsx(se,{as:"h1",variant:"heading",weight:"bold",tracking:"tighter",children:t}):h.jsx("div",{role:"heading","aria-level":1,children:t})}function Tl(e){return e==null?null:typeof e=="string"||typeof e=="number"?h.jsx(se,{as:"p",variant:"meta",weight:"medium",tone:"tertiary",className:"mt-1",children:e}):h.jsx("div",{className:"mt-1",children:e})}function Es({title:e,heading:t,variant:n="default",description:r,headerRight:o,children:s}){return h.jsxs(h.Fragment,{children:[h.jsx(Ha,{children:h.jsx("title",{children:e?`${e} | Ocean Brain`:"Ocean Brain"})}),n==="default"&&h.jsx("div",{className:"mb-5 border-b border-border-subtle/80 pb-4",children:h.jsxs("div",{className:o?"flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between":void 0,children:[h.jsxs("div",{children:[Al(e,t),Tl(r)]}),o]})}),n==="subtle"&&h.jsx("div",{className:"mb-6",children:h.jsxs("div",{className:o?"flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between":void 0,children:[h.jsxs("div",{children:[Al(e,t),Tl(r)]}),o]})}),s]})}const RE=e=>{let t=!1;return()=>{t||(window.requestAnimationFrame(()=>{e(),t=!1}),t=!0)}},na=new Map;function CE(){const e=rs({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){na.set(e,a);return}na.delete(e)},o=RE(()=>{if(t.current){const{scrollTop:a}=n;r(a)}}),s=na.get(e);return s&&(n.scrollTop=s),n.addEventListener("scroll",o),()=>{n.removeEventListener("scroll",o)}}},[e]),h.jsx("div",{ref:t,className:"hidden"})}const Kr="/",ip="/views",AE="/views/notes",cp="/calendar",lp="/reminders",up="/graph",dp="/search",fp="/tag",er="/$id",Wi="/tag/$id",hp="/setting",TE="/setting/mcp",PE="/setting/trash",ME="/setting/manage-image",_E="/setting/manage-image/$id",NE="/setting/placeholder",Ba="An unexpected routing error occurred.",pp=e=>typeof e=="object"&&e!==null&&"errors"in e&&Array.isArray(e.errors),OE=e=>e instanceof Error?e.message:pp(e)?e.errors?.[0]?.message??Ba:Ba,IE=e=>{if(pp(e))return e.errors?.[0]?.code};function Ki({title:e,error:t,description:n,onRetry:r,showBackAction:o=!0,showHomeAction:s=!0}){const a=Rn(),i=We(),[l,u]=c.useState("idle"),f=OE(t),d=IE(t),p=async()=>{try{const m=[d,f].filter(Boolean).join(" :: ");await navigator.clipboard.writeText(m||Ba),u("copied")}catch{u("failed")}};return h.jsxs("div",{className:"rounded-[18px] border-2 border-border bg-surface p-6",children:[h.jsx(se,{as:"p",variant:"heading",weight:"bold",tracking:"tighter",children:e}),n&&h.jsx(se,{as:"p",variant:"meta",tone:"tertiary",className:"mt-2",children:n}),h.jsxs(se,{as:"div",variant:"body",tone:"secondary",className:"mt-4 rounded-[14px] border border-border-subtle bg-subtle px-3 py-2",children:[f,d&&h.jsxs(se,{as:"span",variant:"body",weight:"bold",tone:"tertiary",className:"ml-2",children:["[",d,"]"]})]}),h.jsxs("div",{className:"mt-4 flex flex-wrap gap-2",children:[r&&h.jsx(bt,{size:"sm",onClick:r,children:"Try again"}),o&&h.jsx(bt,{size:"sm",variant:"ghost",onClick:()=>i.history.back(),children:"Go back"}),s&&h.jsx(bt,{size:"sm",variant:"ghost",onClick:()=>a({to:Kr,search:{page:1,sortBy:"updatedAt",sortOrder:"desc",pinnedFirst:!1}}),children:"Go home"}),h.jsx(bt,{size:"sm",variant:"ghost",onClick:p,children:l==="copied"?"Copied details":l==="failed"?"Copy failed":"Copy details"})]})]})}function Ve({title:e="Loading page",description:t="Preparing route resources."}){return h.jsx(Es,{title:e,description:t,variant:"none",children:h.jsxs("div",{className:"flex flex-col gap-4",children:[h.jsx(Bt,{height:"56px"}),h.jsx(Bt,{height:"220px"}),h.jsx(Bt,{height:"160px"})]})})}function LE({error:e,reset:t}){return h.jsx(Es,{title:"Something went wrong",variant:"none",children:h.jsx(Ki,{title:"Route failed to render",description:"Retry the route or navigate somewhere safe.",error:e,onRetry:t})})}function DE(){return h.jsx(Es,{title:"Not found",variant:"none",children:h.jsxs("div",{className:"rounded-[18px] border-2 border-border bg-surface p-6",children:[h.jsx(se,{as:"p",variant:"heading",weight:"bold",tracking:"tighter",children:"This page does not exist."}),h.jsx(se,{as:"p",variant:"meta",tone:"tertiary",className:"mt-2",children:"Check the URL or navigate from the sidebar."})]})})}const jE=(e=[],t=[])=>e.length!==t.length||e.some((n,r)=>!Object.is(n,t[r]));class FE extends c.Component{state={error:null};static getDerivedStateFromError(t){return{error:t}}componentDidUpdate(t){this.state.error!==null&&jE(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 mp({children:e,fallback:t,errorTitle:n,errorDescription:r,resetKeys:o,renderError:s}){return h.jsx(Lg,{children:({reset:a})=>h.jsx(FE,{onReset:a,resetKeys:o,fallbackRender:({error:i,resetErrorBoundary:l})=>s?s({error:i,retry:l}):h.jsx(Ki,{title:n,description:r,error:i,onRetry:l}),children:h.jsx(c.Suspense,{fallback:t,children:e})})})}const Pl=e=>{let t;const n=new Set,r=(u,f)=>{const d=typeof u=="function"?u(t):u;if(!Object.is(d,t)){const p=t;t=f??(typeof d!="object"||d===null)?d:Object.assign({},t,d),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},kE=(e=>e?Pl(e):Pl),$E=e=>e;function HE(e,t=$E){const n=M.useSyncExternalStore(e.subscribe,M.useCallback(()=>t(e.getState()),[e,t]),M.useCallback(()=>t(e.getInitialState()),[e,t]));return M.useDebugValue(n),n}const Ml=e=>{const t=kE(e),n=r=>HE(t,r);return Object.assign(n,t),n},BE=(e=>e?Ml(e):Ml),gp="theme",_l="(prefers-color-scheme: dark)";function VE(e){return e==="light"||e==="dark"}function ZE(){return typeof document>"u"?null:document.documentElement}function vp(){return typeof window>"u"?null:window.localStorage}function yp(e){const t=ZE();t&&(t.classList.remove("light","dark"),t.classList.add(e))}function Vo(){const e=vp()?.getItem(gp)??null;return VE(e)?e:null}function UE({storedTheme:e,systemPrefersDark:t}){return e||(t?"dark":"light")}function zE(e,t={}){yp(e),t.persist!==!1&&vp()?.setItem(gp,e)}function qE(e={}){const t=e.matchMedia?e.matchMedia(_l).matches:typeof window<"u"&&typeof window.matchMedia=="function"?window.matchMedia(_l).matches:!1,n=UE({storedTheme:Vo(),systemPrefersDark:t});return yp(n),n}const Nl=Vo(),Zo=BE(e=>({explicitTheme:Nl,theme:Nl??"light",setTheme:t=>{e({explicitTheme:t,theme:t})},setSystemTheme:t=>{e(n=>n.explicitTheme?n:{theme:t})},toggleTheme:()=>{e(t=>{const n=t.theme==="light"?"dark":"light";return{explicitTheme:n,theme:n}})}}));Zo.subscribe(e=>{zE(e.theme,{persist:e.explicitTheme===e.theme})});var ra={exports:{}};var Ol;function WE(){return Ol||(Ol=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})()})(ra)),ra.exports}var KE=WE();const GE=Kn(KE),QE="_SiteLayout_lbflf_1",YE="_side_lbflf_7",XE="_open_lbflf_24",JE="_menu_lbflf_29",e3="_top_lbflf_57",t3="_center_lbflf_86",n3="_content_lbflf_96",r3={SiteLayout:QE,side:YE,open:XE,menu:JE,top:e3,"top-content":"_top-content_lbflf_76",center:t3,content:n3},sn=GE.bind(r3),o3=({sidebar:e,topNavigation:t,children:n})=>{const r=rs({select:i=>i.pathname}),[o,s]=c.useState(!1),a="site-layout-sidebar";return c.useEffect(()=>{s(!1)},[r]),h.jsxs("div",{className:sn("SiteLayout"),children:[h.jsx("div",{className:"md:hidden",children:h.jsx("button",{type:"button",className:sn("menu"),"aria-label":"Toggle sidebar","aria-controls":a,"aria-expanded":o,onClick:()=>s(i=>!i),children:h.jsx(Wv,{className:"h-6 w-6"})})}),h.jsx("aside",{id:a,className:sn("side",{open:o}),children:e}),h.jsxs("main",{className:sn("center"),children:[h.jsx("div",{className:sn("top"),children:h.jsx("div",{className:sn("top-content"),children:t})}),h.jsx("div",{className:sn("content"),children:n}),h.jsx(CE,{})]})]})},s3=e=>({type:"error",category:"graphql",errors:e.map(t=>({code:t.extensions?.code??"GRAPHQL_ERROR",message:t.message??"GraphQL request failed",details:t}))}),a3=e=>{const t=ve.isAxiosError(e)?e.response?.data?.message??e.message??"Network request failed":"Network request failed",n=ve.isAxiosError(e)?e.code??(e.response?.status?`HTTP_${e.response.status}`:"NETWORK_ERROR"):"NETWORK_ERROR",r=ve.isAxiosError(e)?e.response?.data:void 0;return{type:"error",category:"network",errors:[{code:n,message:t,details:r}]}};async function Ee(e,t,n){const r=typeof e=="string"?{query:e,variables:t,operationName:n}:e;try{const{data:o}=await ve.post("/graphql",r);return o.errors&&o.errors.length>0?s3(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 a3(o)}}const bp=e=>typeof e=="object"&&e!==null&&"value"in e&&typeof e.value=="string",xp=(e,t)=>({type:"error",category:"graphql",errors:[{code:"INVALID_RESPONSE_SHAPE",message:`GraphQL response field "${e}" is missing or invalid`,details:t}]}),i3=async e=>{try{const t=await Ee(`
28
- query GetServerCache($key: String!) {
29
- cache(key: $key) {
30
- value
31
- }
32
- }
33
- `,{key:e});if(t.type==="error")throw t;if(!bp(t.cache))throw xp("cache",t);return t.cache.value}catch{return""}},c3=async(e,t)=>{const n=await Ee(`
34
- mutation SetServerCache($key: String!, $value: String!) {
35
- setCache(key: $key, value: $value) {
36
- value
37
- }
38
- }
39
- `,{key:e,value:encodeURIComponent(t)});return n.type==="error"?n:bp(n.setCache)?{...n,setCache:n.setCache}:xp("setCache",n)},l3=()=>{const e=af(),t=lf(),n=Qn(),{data:r}=Vg({queryKey:ae.ui.heroBanner(),async queryFn(){return i3("heroBanner")}});return r?h.jsx("div",{className:"p-3 pb-0",children:h.jsxs("button",{type:"button","aria-label":"Remove hero banner",className:"surface-base focus-ring-soft group relative block w-full overflow-hidden text-left outline-none",onClick:async()=>{if(await e("Remove this hero banner from the sidebar?")){const o=await c3("heroBanner","");if(o.type==="error"){t(o.errors[0]?.message??"Failed to remove hero banner");return}await n.invalidateQueries({queryKey:ae.ui.heroBanner(),exact:!0})}},children:[h.jsx("img",{alt:"Studio atmosphere banner",className:"w-full object-cover transition duration-500 group-hover:scale-[1.01] group-hover:opacity-90 dark:brightness-[0.85] dark:saturate-[0.9]",src:r}),h.jsx("div",{className:"pointer-events-none absolute inset-0 bg-[linear-gradient(180deg,rgba(18,24,34,0.1),rgba(18,24,34,0.38))] opacity-0 transition-opacity duration-300 group-hover:opacity-100"}),h.jsx("div",{className:"pointer-events-none absolute inset-x-0 bottom-0 flex items-end justify-between gap-3 p-3",children:h.jsx(se,{as:"span",variant:"micro",weight:"semibold",tracking:"wider",transform:"uppercase",className:"rounded-[12px] border border-white/14 bg-black/16 px-2.5 py-2 text-white/80 opacity-0 backdrop-blur-sm transition-opacity duration-300 group-hover:opacity-100",children:"Remove"})})]})}):null},u3=new Set(["content","order","layout"]),d3=`query FetchNotes(
40
- $searchFilter: SearchFilterInput,
41
- $pagination: PaginationInput
42
- ) {
43
- allNotes(
44
- searchFilter: $searchFilter,
45
- pagination: $pagination
46
- ) {
47
- totalCount
48
- notes {
49
- __NOTE_ADDITIONAL_FIELDS__ id
50
- title
51
- pinned
52
- createdAt
53
- updatedAt
54
- tags {
55
- id
56
- name
57
- }
58
- }
59
- }
60
- }`,f3=e=>{if(!e||e.length===0)return"";const t=Array.from(new Set(e.filter(n=>u3.has(n))));return t.length===0?"":t.map(n=>" "+n).join(`
61
- `)+`
62
- `};function wp({limit:e=25,offset:t=0,query:n="",sortBy:r,sortOrder:o,pinnedFirst:s,fields:a}={}){const i=f3(a),l=d3.replace("__NOTE_ADDITIONAL_FIELDS__",i);return Ee(l,{searchFilter:{query:n,sortBy:r,sortOrder:o,pinnedFirst:s},pagination:{limit:e,offset:t}})}function f5({query:e="",limit:t=25,offset:n=0}={}){return Ee(`query FetchTagNotes(
63
- $searchFilter: SearchFilterInput,
64
- $pagination: PaginationInput
65
- ) {
66
- tagNotes(
67
- searchFilter: $searchFilter,
68
- pagination: $pagination
69
- ) {
70
- totalCount
71
- notes {
72
- id
73
- title
74
- pinned
75
- tags {
76
- id
77
- name
78
- }
79
- createdAt
80
- updatedAt
81
- }
82
- }
83
- }`,{searchFilter:{query:e},pagination:{limit:t,offset:n}})}function h5(e){return Ee(`query FetchNote($id: ID!) {
84
- note(id: $id) {
85
- title
86
- pinned
87
- layout
88
- content
89
- createdAt
90
- updatedAt
91
- }
92
- }`,{id:e})}function h3(e){return Ee(`query FetchBackReferences($id: ID!) {
93
- backReferences(id: $id) {
94
- id
95
- title
96
- }
97
- }`,{id:e})}function p5(e){return Ee(`query FetchImageNotes($src: String!) {
98
- imageNotes(src: $src) {
99
- id
100
- title
101
- createdAt
102
- updatedAt
103
- }
104
- }`,{src:e})}function p3(e){return Ee(`mutation CreateNote($note: NoteInput!) {
105
- createNote(note: $note) {
106
- id
107
- }
108
- }`,{note:e})}const m5=({id:e,editSessionId:t,expectedUpdatedAt:n,force:r,...o})=>Ee(`mutation UpdateNote($id: ID!, $note: NoteInput!, $editSessionId: String, $expectedUpdatedAt: String, $force: Boolean) {
109
- updateNote(id: $id, note: $note, editSessionId: $editSessionId, expectedUpdatedAt: $expectedUpdatedAt, force: $force) {
110
- id
111
- title
112
- updatedAt
113
- }
114
- }`,{id:e,note:o,...t?{editSessionId:t}:{},...n?{expectedUpdatedAt:n}:{},...r?{force:!0}:{}});function g5(e,t=10){return Ee(`query FetchNoteSnapshots($id: ID!, $limit: Int) {
115
- noteSnapshots(id: $id, limit: $limit) {
116
- id
117
- title
118
- contentPreview
119
- createdAt
120
- meta {
121
- entrypoint
122
- label
123
- }
124
- }
125
- }`,{id:e,limit:t})}function v5(e){return Ee(`query FetchNoteSnapshot($id: ID!) {
126
- noteSnapshot(id: $id) {
127
- id
128
- title
129
- contentPreview
130
- contentAsMarkdown
131
- createdAt
132
- meta {
133
- entrypoint
134
- label
135
- }
136
- }
137
- }`,{id:e})}function y5(e){return Ee(`mutation RestoreNoteSnapshot($id: ID!) {
138
- restoreNoteSnapshot(id: $id) {
139
- id
140
- title
141
- pinned
142
- layout
143
- content
144
- updatedAt
145
- }
146
- }`,{id:e})}function b5({limit:e=25,offset:t=0}={}){return Ee(`query FetchTrashedNotes($pagination: PaginationInput) {
147
- trashedNotes(pagination: $pagination) {
148
- totalCount
149
- notes {
150
- id
151
- title
152
- createdAt
153
- updatedAt
154
- deletedAt
155
- contentPreview
156
- pinned
157
- order
158
- layout
159
- tagNames
160
- }
161
- }
162
- }`,{pagination:{limit:e,offset:t}})}function x5(e){return Ee(`query FetchTrashedNote($id: ID!) {
163
- trashedNote(id: $id) {
164
- id
165
- title
166
- createdAt
167
- updatedAt
168
- deletedAt
169
- contentPreview
170
- contentAsMarkdown
171
- pinned
172
- order
173
- layout
174
- tagNames
175
- }
176
- }`,{id:e})}function w5(e){return Ee(`mutation RestoreTrashedNote($id: ID!) {
177
- restoreTrashedNote(id: $id) {
178
- id
179
- title
180
- pinned
181
- layout
182
- content
183
- updatedAt
184
- }
185
- }`,{id:e})}function E5(e){return Ee(`mutation PurgeTrashedNote($id: ID!) {
186
- purgeTrashedNote(id: $id)
187
- }`,{id:e})}function m3(e,t){return Ee(`mutation PinNote($id: ID!, $pinned: Boolean!) {
188
- pinNote(id: $id, pinned: $pinned) {
189
- id
190
- title
191
- pinned
192
- createdAt
193
- updatedAt
194
- }
195
- }`,{id:e,pinned:t})}function g3(e){return Ee(`mutation DeleteNote($id: ID!) {
196
- deleteNote(id: $id)
197
- }`,{id:e})}function v3(e){return Ee(`mutation ReorderNotes($notes: [NoteOrderInput!]!) {
198
- reorderNotes(notes: $notes) {
199
- id
200
- order
201
- }
202
- }`,{notes:e})}function S5(){return Ee(`query FetchNoteGraph {
203
- noteGraph {
204
- nodes {
205
- id
206
- title
207
- connections
208
- }
209
- links {
210
- source
211
- target
212
- }
213
- }
214
- }`)}const Va=6e4,co=6e4,jn=(e,t)=>`${e} ${t}${e===1?"":"s"} ago`;function Ep(e,t=Date.now()){const n=new Date(e),r=Math.max(0,Math.floor((t-n.getTime())/1e3));let o=Math.floor(r/31536e3);return o>=1?jn(o,"year"):(o=Math.floor(r/2592e3),o>=1?jn(o,"month"):(o=Math.floor(r/86400),o>=1?jn(o,"day"):(o=Math.floor(r/3600),o>=1?jn(o,"hour"):(o=Math.floor(r/60),o>=1?jn(o,"minute"):jn(Math.floor(r),"second")))))}function R5(e,t=Date.now()){return e===null||t-e<Va?"just now":Ep(e,t)}function C5(e,t=Date.now()){if(e===null)return co;const n=Math.max(0,t-e);if(n<Va)return Va-n;const r=n%co;return r===0?co:co-r}function y3({id:e,title:t,tags:n,pinned:r,updatedAt:o,onPinned:s,onDelete:a}){const i=Ep(Number(o));return h.jsxs("div",{className:me("surface-base group relative flex h-full flex-col px-4 py-3.5 transition-colors"),children:[r&&h.jsx("div",{className:"absolute left-1/2 top-0 z-[1] -translate-x-1/2 -translate-y-[38%]",children:h.jsxs("div",{className:"inline-flex h-7 w-7 items-center justify-center rounded-full border border-border-secondary/70 bg-elevated text-fg-tertiary shadow-[0_8px_18px_-14px_rgba(23,29,38,0.32)]",children:[h.jsx(Jd,{className:"h-3.5 w-3.5",weight:"fill"}),h.jsx("span",{className:"sr-only",children:"Pinned note"})]})}),h.jsxs("div",{className:"flex h-full flex-col gap-2.5",children:[h.jsxs("div",{className:"flex items-center justify-between gap-2.5",children:[h.jsx("div",{className:"flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1",children:h.jsxs(se,{as:"span",variant:"label",weight:"medium",tone:"secondary",children:["Updated ",i]})}),h.jsx(Y4,{button:h.jsx(rx,{label:"Note actions",size:"sm"}),items:[{name:r?"Unpin":"Pin",onClick:()=>s?.()},{name:"Delete",onClick:()=>a?.()}]})]}),h.jsxs("div",{className:"flex flex-1 flex-col justify-between gap-2.5",children:[h.jsx(se,{as:"div",variant:"body",weight:"semibold",tracking:"tight",className:"leading-[1.45]",children:h.jsx(Pt,{className:"line-clamp-2 transition-colors hover:text-fg-default/85",to:er,params:{id:e},children:t||"Untitled"})}),n.length>0&&h.jsx("div",{className:"flex flex-wrap gap-1.5 pt-0.5",children:n.map(l=>h.jsx(Pt,{to:Wi,params:{id:l.id},search:{page:1},children:h.jsx(se,{as:"span",variant:"label",weight:"medium",tone:"secondary",className:"inline-flex items-center rounded-full border border-border-subtle bg-transparent px-2 py-0.5 transition-colors hover:bg-hover-subtle hover:text-fg-default",children:l.name})},l.id))})]})]})]},e)}function b3({isOpen:e,title:t,description:n,references:r,confirmLabel:o,onClose:s,onConfirm:a,confirmVariant:i="primary",isConfirming:l=!1}){return h.jsxs($t,{isOpen:e,onClose:s,variant:"inspect",children:[h.jsx($t.Header,{title:t,onClose:s}),h.jsx($t.Body,{children:h.jsxs("div",{className:"flex flex-col gap-3",children:[h.jsx($t.Description,{className:"text-meta font-normal text-fg-secondary",children:n}),h.jsxs("div",{className:"overflow-hidden rounded-[16px] border border-border-subtle bg-hover-subtle/40",children:[h.jsxs("div",{className:"flex items-center justify-between gap-2 border-b border-border-subtle px-4 py-3",children:[h.jsx(se,{as:"p",variant:"micro",weight:"semibold",tracking:"wider",transform:"uppercase",tone:"tertiary",children:"Referenced notes"}),h.jsxs(se,{as:"p",variant:"label",tone:"tertiary",children:[r.length," ",r.length===1?"note":"notes"]})]}),h.jsx("ul",{className:"flex flex-col",children:r.map((u,f)=>h.jsx("li",{className:f>0?"border-t border-border-subtle":void 0,children:h.jsxs("div",{className:"flex flex-col gap-3 px-4 py-3 sm:flex-row sm:items-center sm:justify-between",children:[h.jsx(se,{as:"p",variant:"body",weight:"medium",className:"min-w-0 flex-1 break-words",children:u.title||"Untitled note"}),h.jsx(bt,{asChild:!0,variant:"ghost",size:"sm",className:"self-start sm:self-auto",children:h.jsx(Pt,{to:er,params:{id:u.id},children:"Open note"})})]})},u.id))})]})]})}),h.jsx($t.Footer,{children:h.jsxs(Zw,{children:[h.jsx(bt,{variant:"ghost",size:"sm",onClick:s,disabled:l,children:"Cancel"}),h.jsx(bt,{variant:i,size:"sm",onClick:a,isLoading:l,children:o})]})})]})}var wo={exports:{}},x3=wo.exports,Il;function w3(){return Il||(Il=1,(function(e,t){(function(n,r){e.exports=r()})(x3,(function(){var n=1e3,r=6e4,o=36e5,s="millisecond",a="second",i="minute",l="hour",u="day",f="week",d="month",p="quarter",m="year",v="date",g="Invalid Date",y=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,b=/\[([^\]]+)]|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,x={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(D){var F=["th","st","nd","rd"],T=D%100;return"["+D+(F[(T-20)%10]||F[T]||F[0])+"]"}},w=function(D,F,T){var L=String(D);return!L||L.length>=F?D:""+Array(F+1-L.length).join(T)+D},E={s:w,z:function(D){var F=-D.utcOffset(),T=Math.abs(F),L=Math.floor(T/60),j=T%60;return(F<=0?"+":"-")+w(L,2,"0")+":"+w(j,2,"0")},m:function D(F,T){if(F.date()<T.date())return-D(T,F);var L=12*(T.year()-F.year())+(T.month()-F.month()),j=F.clone().add(L,d),_=T-j<0,V=F.clone().add(L+(_?-1:1),d);return+(-(L+(T-j)/(_?j-V:V-j))||0)},a:function(D){return D<0?Math.ceil(D)||0:Math.floor(D)},p:function(D){return{M:d,y:m,w:f,d:u,D:v,h:l,m:i,s:a,ms:s,Q:p}[D]||String(D||"").toLowerCase().replace(/s$/,"")},u:function(D){return D===void 0}},C="en",O={};O[C]=x;var A="$isDayjsObject",S=function(D){return D instanceof H||!(!D||!D[A])},N=function D(F,T,L){var j;if(!F)return C;if(typeof F=="string"){var _=F.toLowerCase();O[_]&&(j=_),T&&(O[_]=T,j=_);var V=F.split("-");if(!j&&V.length>1)return D(V[0])}else{var W=F.name;O[W]=F,j=W}return!L&&j&&(C=j),j||!L&&C},I=function(D,F){if(S(D))return D.clone();var T=typeof F=="object"?F:{};return T.date=D,T.args=arguments,new H(T)},P=E;P.l=N,P.i=S,P.w=function(D,F){return I(D,{locale:F.$L,utc:F.$u,x:F.$x,$offset:F.$offset})};var H=(function(){function D(T){this.$L=N(T.locale,null,!0),this.parse(T),this.$x=this.$x||T.x||{},this[A]=!0}var F=D.prototype;return F.parse=function(T){this.$d=(function(L){var j=L.date,_=L.utc;if(j===null)return new Date(NaN);if(P.u(j))return new Date;if(j instanceof Date)return new Date(j);if(typeof j=="string"&&!/Z$/i.test(j)){var V=j.match(y);if(V){var W=V[2]-1||0,Q=(V[7]||"0").substring(0,3);return _?new Date(Date.UTC(V[1],W,V[3]||1,V[4]||0,V[5]||0,V[6]||0,Q)):new Date(V[1],W,V[3]||1,V[4]||0,V[5]||0,V[6]||0,Q)}}return new Date(j)})(T),this.init()},F.init=function(){var T=this.$d;this.$y=T.getFullYear(),this.$M=T.getMonth(),this.$D=T.getDate(),this.$W=T.getDay(),this.$H=T.getHours(),this.$m=T.getMinutes(),this.$s=T.getSeconds(),this.$ms=T.getMilliseconds()},F.$utils=function(){return P},F.isValid=function(){return this.$d.toString()!==g},F.isSame=function(T,L){var j=I(T);return this.startOf(L)<=j&&j<=this.endOf(L)},F.isAfter=function(T,L){return I(T)<this.startOf(L)},F.isBefore=function(T,L){return this.endOf(L)<I(T)},F.$g=function(T,L,j){return P.u(T)?this[L]:this.set(j,T)},F.unix=function(){return Math.floor(this.valueOf()/1e3)},F.valueOf=function(){return this.$d.getTime()},F.startOf=function(T,L){var j=this,_=!!P.u(L)||L,V=P.p(T),W=function(ee,Z){var X=P.w(j.$u?Date.UTC(j.$y,Z,ee):new Date(j.$y,Z,ee),j);return _?X:X.endOf(u)},Q=function(ee,Z){return P.w(j.toDate()[ee].apply(j.toDate("s"),(_?[0,0,0,0]:[23,59,59,999]).slice(Z)),j)},B=this.$W,z=this.$M,U=this.$D,J="set"+(this.$u?"UTC":"");switch(V){case m:return _?W(1,0):W(31,11);case d:return _?W(1,z):W(0,z+1);case f:var $=this.$locale().weekStart||0,k=(B<$?B+7:B)-$;return W(_?U-k:U+(6-k),z);case u:case v:return Q(J+"Hours",0);case l:return Q(J+"Minutes",1);case i:return Q(J+"Seconds",2);case a:return Q(J+"Milliseconds",3);default:return this.clone()}},F.endOf=function(T){return this.startOf(T,!1)},F.$set=function(T,L){var j,_=P.p(T),V="set"+(this.$u?"UTC":""),W=(j={},j[u]=V+"Date",j[v]=V+"Date",j[d]=V+"Month",j[m]=V+"FullYear",j[l]=V+"Hours",j[i]=V+"Minutes",j[a]=V+"Seconds",j[s]=V+"Milliseconds",j)[_],Q=_===u?this.$D+(L-this.$W):L;if(_===d||_===m){var B=this.clone().set(v,1);B.$d[W](Q),B.init(),this.$d=B.set(v,Math.min(this.$D,B.daysInMonth())).$d}else W&&this.$d[W](Q);return this.init(),this},F.set=function(T,L){return this.clone().$set(T,L)},F.get=function(T){return this[P.p(T)]()},F.add=function(T,L){var j,_=this;T=Number(T);var V=P.p(L),W=function(z){var U=I(_);return P.w(U.date(U.date()+Math.round(z*T)),_)};if(V===d)return this.set(d,this.$M+T);if(V===m)return this.set(m,this.$y+T);if(V===u)return W(1);if(V===f)return W(7);var Q=(j={},j[i]=r,j[l]=o,j[a]=n,j)[V]||1,B=this.$d.getTime()+T*Q;return P.w(B,this)},F.subtract=function(T,L){return this.add(-1*T,L)},F.format=function(T){var L=this,j=this.$locale();if(!this.isValid())return j.invalidDate||g;var _=T||"YYYY-MM-DDTHH:mm:ssZ",V=P.z(this),W=this.$H,Q=this.$m,B=this.$M,z=j.weekdays,U=j.months,J=j.meridiem,$=function(Z,X,te,ie){return Z&&(Z[X]||Z(L,_))||te[X].slice(0,ie)},k=function(Z){return P.s(W%12||12,Z,"0")},ee=J||function(Z,X,te){var ie=Z<12?"AM":"PM";return te?ie.toLowerCase():ie};return _.replace(b,(function(Z,X){return X||(function(te){switch(te){case"YY":return String(L.$y).slice(-2);case"YYYY":return P.s(L.$y,4,"0");case"M":return B+1;case"MM":return P.s(B+1,2,"0");case"MMM":return $(j.monthsShort,B,U,3);case"MMMM":return $(U,B);case"D":return L.$D;case"DD":return P.s(L.$D,2,"0");case"d":return String(L.$W);case"dd":return $(j.weekdaysMin,L.$W,z,2);case"ddd":return $(j.weekdaysShort,L.$W,z,3);case"dddd":return z[L.$W];case"H":return String(W);case"HH":return P.s(W,2,"0");case"h":return k(1);case"hh":return k(2);case"a":return ee(W,Q,!0);case"A":return ee(W,Q,!1);case"m":return String(Q);case"mm":return P.s(Q,2,"0");case"s":return String(L.$s);case"ss":return P.s(L.$s,2,"0");case"SSS":return P.s(L.$ms,3,"0");case"Z":return V}return null})(Z)||V.replace(":","")}))},F.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},F.diff=function(T,L,j){var _,V=this,W=P.p(L),Q=I(T),B=(Q.utcOffset()-this.utcOffset())*r,z=this-Q,U=function(){return P.m(V,Q)};switch(W){case m:_=U()/12;break;case d:_=U();break;case p:_=U()/3;break;case f:_=(z-B)/6048e5;break;case u:_=(z-B)/864e5;break;case l:_=z/o;break;case i:_=z/r;break;case a:_=z/n;break;default:_=z}return j?_:P.a(_)},F.daysInMonth=function(){return this.endOf(d).$D},F.$locale=function(){return O[this.$L]},F.locale=function(T,L){if(!T)return this.$L;var j=this.clone(),_=N(T,L,!0);return _&&(j.$L=_),j},F.clone=function(){return P.w(this.$d,this)},F.toDate=function(){return new Date(this.valueOf())},F.toJSON=function(){return this.isValid()?this.toISOString():null},F.toISOString=function(){return this.$d.toISOString()},F.toString=function(){return this.$d.toUTCString()},D})(),q=H.prototype;return I.prototype=q,[["$ms",s],["$s",a],["$m",i],["$H",l],["$W",u],["$M",d],["$y",m],["$D",v]].forEach((function(D){q[D[1]]=function(F){return this.$g(F,D[0],D[1])}})),I.extend=function(D,F){return D.$i||(D(F,H,I),D.$i=!0),I},I.locale=N,I.isDayjs=S,I.unix=function(D){return I(1e3*D)},I.en=O[C],I.Ls=O,I.p={},I}))})(wo)),wo.exports}var E3=w3();const $e=Kn(E3),S3=()=>{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)},R3=()=>[{name:"Year",template:"year",replacement:$e().format("YYYY")},{name:"Month",template:"month",replacement:$e().format("MM")},{name:"Short Month",template:"mon",replacement:$e().format("M")},{name:"Day",template:"day",replacement:$e().format("DD")},{name:"Short Day",template:"d",replacement:$e().format("D")},{name:"Week of Month",template:"week_of_month",replacement:S3().toString()},{name:"Hour 24",template:"hour",replacement:$e().format("HH")},{name:"Hour 12",template:"hour_12",replacement:$e().format("hh")},{name:"Short Hour 24",template:"h",replacement:$e().format("H")},{name:"Short Hour 12",template:"h_12",replacement:$e().format("h")},{name:"AM/PM",template:"ampm",replacement:$e().format("A")},{name:"Minute",template:"minute",replacement:$e().format("mm")},{name:"Short Minute",template:"m",replacement:$e().format("m")},{name:"Second",template:"second",replacement:$e().format("ss")},{name:"Short Second",template:"s",replacement:$e().format("s")}],C3="{%",A3="%}",Ll=e=>e.replace(new RegExp(`${C3}([^}]+)${A3}`,"g"),(t,n)=>R3().find(o=>o.template===n)?.replacement||t),lo={title:"Move note to Trash?",description:"This note is referenced by the notes below. Those links may stop opening while this note stays in Trash. If you restore this note later, the links will work again.",confirmLabel:"Move to Trash",confirmVariant:"soft-danger"},Sp=()=>{const e=af(),t=lf(),n=Qn(),r=Rn(),[o,s]=c.useState(null),a=async(d="",p="",m)=>{const v=Ll(d),g=Ll(p),y=await p3({title:v,content:g,...m&&{layout:m}});return y.type==="error"?(t(y.errors[0].message),null):(r({to:er,params:{id:y.createNote.id}}),y.createNote.id)},i=async(d,p,m)=>{try{const v=await m3(d,!p);if(v.type==="error"){t(v.errors[0].message);return}await Promise.all([n.invalidateQueries({queryKey:ae.notes.listAll(),exact:!1}),n.invalidateQueries({queryKey:ae.notes.tagListAll(),exact:!1}),n.invalidateQueries({queryKey:ae.notes.pinned(),exact:!0})]),m?.()}catch{t("Failed to update note pin status")}},l=async(d,p)=>{const m=await g3(d);if(m.type==="error"){t(m.errors[0].message);return}await Promise.all([n.invalidateQueries({queryKey:ae.notes.all(),exact:!1}),n.invalidateQueries({queryKey:ae.tags.all(),exact:!1}),n.invalidateQueries({queryKey:ae.reminders.all(),exact:!1}),n.invalidateQueries({queryKey:ae.images.all(),exact:!1}),n.invalidateQueries({queryKey:["calendar"],exact:!1})]),t("The note has been moved to trash."),p?.()},u=async()=>{if(!o)return;const{id:d,callback:p}=o;s(null),await l(d,p)};return{onCreate:a,onPinned:i,onDelete:async(d,p)=>{const m=await h3(d);if(m.type==="error"){t("Failed to check linked notes before moving this note to Trash.");return}if(n.setQueryData(ae.notes.backReferences(d),m.backReferences),m.backReferences.length>0){s({id:d,callback:p,backReferences:m.backReferences});return}await e("Move this note to trash?")&&await l(d,p)},deleteWarningDialog:h.jsx(b3,{isOpen:!!o,title:lo.title,description:lo.description,references:o?.backReferences??[],confirmLabel:lo.confirmLabel,confirmVariant:lo.confirmVariant,onClose:()=>s(null),onConfirm:()=>{u()}})}};function T3(){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 Ss=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u";function tr(e){const t=Object.prototype.toString.call(e);return t==="[object Window]"||t==="[object global]"}function Gi(e){return"nodeType"in e}function nt(e){var t,n;return e?tr(e)?e:Gi(e)&&(t=(n=e.ownerDocument)==null?void 0:n.defaultView)!=null?t:window:window}function Qi(e){const{Document:t}=nt(e);return e instanceof t}function Gr(e){return tr(e)?!1:e instanceof nt(e).HTMLElement}function Rp(e){return e instanceof nt(e).SVGElement}function nr(e){return e?tr(e)?e.document:Gi(e)?Qi(e)?e:Gr(e)||Rp(e)?e.ownerDocument:document:document:document}const _t=Ss?c.useLayoutEffect:c.useEffect;function Yi(e){const t=c.useRef(e);return _t(()=>{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 P3(){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 Nr(e,t){t===void 0&&(t=[e]);const n=c.useRef(e);return _t(()=>{n.current!==e&&(n.current=e)},t),n}function Qr(e,t){const n=c.useRef();return c.useMemo(()=>{const r=e(n.current);return n.current=r,r},[...t])}function Uo(e){const t=Yi(e),n=c.useRef(null),r=c.useCallback(o=>{o!==n.current&&t?.(o,n.current),n.current=o},[]);return[n,r]}function Za(e){const t=c.useRef();return c.useEffect(()=>{t.current=e},[e]),t.current}let oa={};function Yr(e,t){return c.useMemo(()=>{if(t)return t;const n=oa[e]==null?0:oa[e]+1;return oa[e]=n,e+"-"+n},[e,t])}function Cp(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 f=s[l];f!=null&&(s[l]=f+e*u)}return s},{...t})}}const Vn=Cp(1),Or=Cp(-1);function M3(e){return"clientX"in e&&"clientY"in e}function Xi(e){if(!e)return!1;const{KeyboardEvent:t}=nt(e.target);return t&&e instanceof t}function _3(e){if(!e)return!1;const{TouchEvent:t}=nt(e.target);return t&&e instanceof t}function Ua(e){if(_3(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 M3(e)?{x:e.clientX,y:e.clientY}:null}const Ir=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[Ir.Translate.toString(e),Ir.Scale.toString(e)].join(" ")}},Transition:{toString(e){let{property:t,duration:n,easing:r}=e;return t+" "+n+"ms "+r}}}),Dl="a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";function N3(e){return e.matches(Dl)?e:e.querySelector(Dl)}const O3={display:"none"};function I3(e){let{id:t,value:n}=e;return M.createElement("div",{id:t,style:O3},n)}function L3(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 M.createElement("div",{id:t,style:o,role:"status","aria-live":r,"aria-atomic":!0},n)}function D3(){const[e,t]=c.useState("");return{announce:c.useCallback(r=>{r!=null&&t(r)},[]),announcement:e}}const Ap=c.createContext(null);function j3(e){const t=c.useContext(Ap);c.useEffect(()=>{if(!t)throw new Error("useDndMonitor must be used within a children of <DndContext>");return t(e)},[e,t])}function F3(){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 k3={draggable:`
215
- To pick up a draggable item, press the space bar.
216
- While dragging, use the arrow keys to move the item.
217
- Press space again to drop the item in its new position, or press escape to cancel.
218
- `},$3={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 H3(e){let{announcements:t=$3,container:n,hiddenTextDescribedById:r,screenReaderInstructions:o=k3}=e;const{announce:s,announcement:a}=D3(),i=Yr("DndLiveRegion"),[l,u]=c.useState(!1);if(c.useEffect(()=>{u(!0)},[]),j3(c.useMemo(()=>({onDragStart(d){let{active:p}=d;s(t.onDragStart({active:p}))},onDragMove(d){let{active:p,over:m}=d;t.onDragMove&&s(t.onDragMove({active:p,over:m}))},onDragOver(d){let{active:p,over:m}=d;s(t.onDragOver({active:p,over:m}))},onDragEnd(d){let{active:p,over:m}=d;s(t.onDragEnd({active:p,over:m}))},onDragCancel(d){let{active:p,over:m}=d;s(t.onDragCancel({active:p,over:m}))}}),[s,t])),!l)return null;const f=M.createElement(M.Fragment,null,M.createElement(I3,{id:r,value:o.draggable}),M.createElement(L3,{id:i,announcement:a}));return n?Ht.createPortal(f,n):f}var Me;(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"})(Me||(Me={}));function zo(){}function jl(e,t){return c.useMemo(()=>({sensor:e,options:t??{}}),[e,t])}function B3(){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 wt=Object.freeze({x:0,y:0});function Tp(e,t){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function Pp(e,t){let{data:{value:n}}=e,{data:{value:r}}=t;return n-r}function V3(e,t){let{data:{value:n}}=e,{data:{value:r}}=t;return r-n}function Fl(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 Mp(e,t){if(!e||e.length===0)return null;const[n]=e;return n[t]}function kl(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 Z3=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=kl(t,t.left,t.top),s=[];for(const a of r){const{id:i}=a,l=n.get(i);if(l){const u=Tp(kl(l),o);s.push({id:i,data:{droppableContainer:a,value:u}})}}return s.sort(Pp)},U3=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=Fl(t),s=[];for(const a of r){const{id:i}=a,l=n.get(i);if(l){const u=Fl(l),f=o.reduce((p,m,v)=>p+Tp(u[v],m),0),d=Number((f/4).toFixed(4));s.push({id:i,data:{droppableContainer:a,value:d}})}}return s.sort(Pp)};function z3(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,f=a*i,d=f/(l+u-f);return Number(d.toFixed(4))}return 0}const q3=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=z3(i,t);l>0&&o.push({id:a,data:{droppableContainer:s,value:l}})}}return o.sort(V3)};function W3(e,t,n){return{...e,scaleX:t&&n?t.width/n.width:1,scaleY:t&&n?t.height/n.height:1}}function _p(e,t){return e&&t?{x:e.left-t.left,y:e.top-t.top}:wt}function K3(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 G3=K3(1);function Q3(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 Y3(e,t,n){const r=Q3(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)),f=o?e.width/o:e.width,d=s?e.height/s:e.height;return{width:f,height:d,top:u,right:l+f,bottom:u+d,left:l}}const X3={ignoreTransform:!1};function rr(e,t){t===void 0&&(t=X3);let n=e.getBoundingClientRect();if(t.ignoreTransform){const{transform:u,transformOrigin:f}=nt(e).getComputedStyle(e);u&&(n=Y3(n,u,f))}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 $l(e){return rr(e,{ignoreTransform:!0})}function J3(e){const t=e.innerWidth,n=e.innerHeight;return{top:0,left:0,right:t,bottom:n,width:t,height:n}}function eS(e,t){return t===void 0&&(t=nt(e).getComputedStyle(e)),t.position==="fixed"}function tS(e,t){t===void 0&&(t=nt(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 Rs(e,t){const n=[];function r(o){if(t!=null&&n.length>=t||!o)return n;if(Qi(o)&&o.scrollingElement!=null&&!n.includes(o.scrollingElement))return n.push(o.scrollingElement),n;if(!Gr(o)||Rp(o)||n.includes(o))return n;const s=nt(e).getComputedStyle(o);return o!==e&&tS(o,s)&&n.push(o),eS(o,s)?n:r(o.parentNode)}return e?r(e):n}function Np(e){const[t]=Rs(e,1);return t??null}function sa(e){return!Ss||!e?null:tr(e)?e:Gi(e)?Qi(e)||e===nr(e).scrollingElement?window:Gr(e)?e:null:null}function Op(e){return tr(e)?e.scrollX:e.scrollLeft}function Ip(e){return tr(e)?e.scrollY:e.scrollTop}function za(e){return{x:Op(e),y:Ip(e)}}var Oe;(function(e){e[e.Forward=1]="Forward",e[e.Backward=-1]="Backward"})(Oe||(Oe={}));function Lp(e){return!Ss||!e?!1:e===document.scrollingElement}function Dp(e){const t={x:0,y:0},n=Lp(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 nS={x:.2,y:.2};function rS(e,t,n,r,o){let{top:s,left:a,right:i,bottom:l}=n;r===void 0&&(r=10),o===void 0&&(o=nS);const{isTop:u,isBottom:f,isLeft:d,isRight:p}=Dp(e),m={x:0,y:0},v={x:0,y:0},g={height:t.height*o.y,width:t.width*o.x};return!u&&s<=t.top+g.height?(m.y=Oe.Backward,v.y=r*Math.abs((t.top+g.height-s)/g.height)):!f&&l>=t.bottom-g.height&&(m.y=Oe.Forward,v.y=r*Math.abs((t.bottom-g.height-l)/g.height)),!p&&i>=t.right-g.width?(m.x=Oe.Forward,v.x=r*Math.abs((t.right-g.width-i)/g.width)):!d&&a<=t.left+g.width&&(m.x=Oe.Backward,v.x=r*Math.abs((t.left+g.width-a)/g.width)),{direction:m,speed:v}}function oS(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 jp(e){return e.reduce((t,n)=>Vn(t,za(n)),wt)}function sS(e){return e.reduce((t,n)=>t+Op(n),0)}function aS(e){return e.reduce((t,n)=>t+Ip(n),0)}function iS(e,t){if(t===void 0&&(t=rr),!e)return;const{top:n,left:r,bottom:o,right:s}=t(e);Np(e)&&(o<=0||s<=0||n>=window.innerHeight||r>=window.innerWidth)&&e.scrollIntoView({block:"center",inline:"center"})}const cS=[["x",["left","right"],sS],["y",["top","bottom"],aS]];class Ji{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=Rs(n),o=jp(r);this.rect={...t},this.width=t.width,this.height=t.height;for(const[s,a,i]of cS)for(const l of a)Object.defineProperty(this,l,{get:()=>{const u=i(r),f=o[s]-u;return this.rect[l]+f},enumerable:!0});Object.defineProperty(this,"rect",{enumerable:!1})}}class xr{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 lS(e){const{EventTarget:t}=nt(e);return e instanceof t?e:nr(e)}function aa(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 pt;(function(e){e.Click="click",e.DragStart="dragstart",e.Keydown="keydown",e.ContextMenu="contextmenu",e.Resize="resize",e.SelectionChange="selectionchange",e.VisibilityChange="visibilitychange"})(pt||(pt={}));function Hl(e){e.preventDefault()}function uS(e){e.stopPropagation()}var oe;(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"})(oe||(oe={}));const Fp={start:[oe.Space,oe.Enter],cancel:[oe.Esc],end:[oe.Space,oe.Enter,oe.Tab]},dS=(e,t)=>{let{currentCoordinates:n}=t;switch(e.code){case oe.Right:return{...n,x:n.x+25};case oe.Left:return{...n,x:n.x-25};case oe.Down:return{...n,y:n.y+25};case oe.Up:return{...n,y:n.y-25}}};class ec{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 xr(nr(n)),this.windowListeners=new xr(nt(n)),this.handleKeyDown=this.handleKeyDown.bind(this),this.handleCancel=this.handleCancel.bind(this),this.attach()}attach(){this.handleStart(),this.windowListeners.add(pt.Resize,this.handleCancel),this.windowListeners.add(pt.VisibilityChange,this.handleCancel),setTimeout(()=>this.listeners.add(pt.Keydown,this.handleKeyDown))}handleStart(){const{activeNode:t,onStart:n}=this.props,r=t.node.current;r&&iS(r),n(wt)}handleKeyDown(t){if(Xi(t)){const{active:n,context:r,options:o}=this.props,{keyboardCodes:s=Fp,coordinateGetter:a=dS,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,f=u?{x:u.left,y:u.top}:wt;this.referenceCoordinates||(this.referenceCoordinates=f);const d=a(t,{active:n,context:r.current,currentCoordinates:f});if(d){const p=Or(d,f),m={x:0,y:0},{scrollableAncestors:v}=r.current;for(const g of v){const y=t.code,{isTop:b,isRight:x,isLeft:w,isBottom:E,maxScroll:C,minScroll:O}=Dp(g),A=oS(g),S={x:Math.min(y===oe.Right?A.right-A.width/2:A.right,Math.max(y===oe.Right?A.left:A.left+A.width/2,d.x)),y:Math.min(y===oe.Down?A.bottom-A.height/2:A.bottom,Math.max(y===oe.Down?A.top:A.top+A.height/2,d.y))},N=y===oe.Right&&!x||y===oe.Left&&!w,I=y===oe.Down&&!E||y===oe.Up&&!b;if(N&&S.x!==d.x){const P=g.scrollLeft+p.x,H=y===oe.Right&&P<=C.x||y===oe.Left&&P>=O.x;if(H&&!p.y){g.scrollTo({left:P,behavior:i});return}H?m.x=g.scrollLeft-P:m.x=y===oe.Right?g.scrollLeft-C.x:g.scrollLeft-O.x,m.x&&g.scrollBy({left:-m.x,behavior:i});break}else if(I&&S.y!==d.y){const P=g.scrollTop+p.y,H=y===oe.Down&&P<=C.y||y===oe.Up&&P>=O.y;if(H&&!p.x){g.scrollTo({top:P,behavior:i});return}H?m.y=g.scrollTop-P:m.y=y===oe.Down?g.scrollTop-C.y:g.scrollTop-O.y,m.y&&g.scrollBy({top:-m.y,behavior:i});break}}this.handleMove(t,Vn(Or(d,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()}}ec.activators=[{eventName:"onKeyDown",handler:(e,t,n)=>{let{keyboardCodes:r=Fp,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 Bl(e){return!!(e&&"distance"in e)}function Vl(e){return!!(e&&"delay"in e)}class tc{constructor(t,n,r){var o;r===void 0&&(r=lS(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=nr(a),this.documentListeners=new xr(this.document),this.listeners=new xr(r),this.windowListeners=new xr(nt(a)),this.initialCoordinates=(o=Ua(s))!=null?o:wt,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(pt.Resize,this.handleCancel),this.windowListeners.add(pt.DragStart,Hl),this.windowListeners.add(pt.VisibilityChange,this.handleCancel),this.windowListeners.add(pt.ContextMenu,Hl),this.documentListeners.add(pt.Keydown,this.handleKeydown),n){if(r!=null&&r({event:this.props.event,activeNode:this.props.activeNode,options:this.props.options}))return this.handleStart();if(Vl(n)){this.timeoutId=setTimeout(this.handleStart,n.delay),this.handlePending(n);return}if(Bl(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(pt.Click,uS,{capture:!0}),this.removeTextSelection(),this.documentListeners.add(pt.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=Ua(t))!=null?n:wt,u=Or(o,l);if(!r&&i){if(Bl(i)){if(i.tolerance!=null&&aa(u,i.tolerance))return this.handleCancel();if(aa(u,i.distance))return this.handleStart()}if(Vl(i)&&aa(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===oe.Esc&&this.handleCancel()}removeTextSelection(){var t;(t=this.document.getSelection())==null||t.removeAllRanges()}}const fS={cancel:{name:"pointercancel"},move:{name:"pointermove"},end:{name:"pointerup"}};class nc extends tc{constructor(t){const{event:n}=t,r=nr(n.target);super(t,fS,r)}}nc.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 hS={move:{name:"mousemove"},end:{name:"mouseup"}};var qa;(function(e){e[e.RightClick=2]="RightClick"})(qa||(qa={}));class pS extends tc{constructor(t){super(t,hS,nr(t.event.target))}}pS.activators=[{eventName:"onMouseDown",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;return n.button===qa.RightClick?!1:(r?.({event:n}),!0)}}];const ia={cancel:{name:"touchcancel"},move:{name:"touchmove"},end:{name:"touchend"}};class mS extends tc{constructor(t){super(t,ia)}static setup(){return window.addEventListener(ia.move.name,t,{capture:!1,passive:!1}),function(){window.removeEventListener(ia.move.name,t)};function t(){}}}mS.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 wr;(function(e){e[e.Pointer=0]="Pointer",e[e.DraggableRect=1]="DraggableRect"})(wr||(wr={}));var qo;(function(e){e[e.TreeOrder=0]="TreeOrder",e[e.ReversedTreeOrder=1]="ReversedTreeOrder"})(qo||(qo={}));function gS(e){let{acceleration:t,activator:n=wr.Pointer,canScroll:r,draggingRect:o,enabled:s,interval:a=5,order:i=qo.TreeOrder,pointerCoordinates:l,scrollableAncestors:u,scrollableAncestorRects:f,delta:d,threshold:p}=e;const m=yS({delta:d,disabled:!s}),[v,g]=P3(),y=c.useRef({x:0,y:0}),b=c.useRef({x:0,y:0}),x=c.useMemo(()=>{switch(n){case wr.Pointer:return l?{top:l.y,bottom:l.y,left:l.x,right:l.x}:null;case wr.DraggableRect:return o}},[n,o,l]),w=c.useRef(null),E=c.useCallback(()=>{const O=w.current;if(!O)return;const A=y.current.x*b.current.x,S=y.current.y*b.current.y;O.scrollBy(A,S)},[]),C=c.useMemo(()=>i===qo.TreeOrder?[...u].reverse():u,[i,u]);c.useEffect(()=>{if(!s||!u.length||!x){g();return}for(const O of C){if(r?.(O)===!1)continue;const A=u.indexOf(O),S=f[A];if(!S)continue;const{direction:N,speed:I}=rS(O,S,x,t,p);for(const P of["x","y"])m[P][N[P]]||(I[P]=0,N[P]=0);if(I.x>0||I.y>0){g(),w.current=O,v(E,a),y.current=I,b.current=N;return}}y.current={x:0,y:0},b.current={x:0,y:0},g()},[t,E,r,g,s,a,JSON.stringify(x),JSON.stringify(m),v,u,C,f,JSON.stringify(p)])}const vS={x:{[Oe.Backward]:!1,[Oe.Forward]:!1},y:{[Oe.Backward]:!1,[Oe.Forward]:!1}};function yS(e){let{delta:t,disabled:n}=e;const r=Za(t);return Qr(o=>{if(n||!r||!o)return vS;const s={x:Math.sign(t.x-r.x),y:Math.sign(t.y-r.y)};return{x:{[Oe.Backward]:o.x[Oe.Backward]||s.x===-1,[Oe.Forward]:o.x[Oe.Forward]||s.x===1},y:{[Oe.Backward]:o.y[Oe.Backward]||s.y===-1,[Oe.Forward]:o.y[Oe.Forward]||s.y===1}}},[n,t,r])}function bS(e,t){const n=t!=null?e.get(t):void 0,r=n?n.node.current:null;return Qr(o=>{var s;return t==null?null:(s=r??o)!=null?s:null},[r,t])}function xS(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 Lr;(function(e){e[e.Always=0]="Always",e[e.BeforeDragging=1]="BeforeDragging",e[e.WhileDragging=2]="WhileDragging"})(Lr||(Lr={}));var Wa;(function(e){e.Optimized="optimized"})(Wa||(Wa={}));const Zl=new Map;function wS(e,t){let{dragging:n,dependencies:r,config:o}=t;const[s,a]=c.useState(null),{frequency:i,measure:l,strategy:u}=o,f=c.useRef(e),d=y(),p=Nr(d),m=c.useCallback(function(b){b===void 0&&(b=[]),!p.current&&a(x=>x===null?b:x.concat(b.filter(w=>!x.includes(w))))},[p]),v=c.useRef(null),g=Qr(b=>{if(d&&!n)return Zl;if(!b||b===Zl||f.current!==e||s!=null){const x=new Map;for(let w of e){if(!w)continue;if(s&&s.length>0&&!s.includes(w.id)&&w.rect.current){x.set(w.id,w.rect.current);continue}const E=w.node.current,C=E?new Ji(l(E),E):null;w.rect.current=C,C&&x.set(w.id,C)}return x}return b},[e,s,n,d,l]);return c.useEffect(()=>{f.current=e},[e]),c.useEffect(()=>{d||m()},[n,d]),c.useEffect(()=>{s&&s.length>0&&a(null)},[JSON.stringify(s)]),c.useEffect(()=>{d||typeof i!="number"||v.current!==null||(v.current=setTimeout(()=>{m(),v.current=null},i))},[i,d,m,...r]),{droppableRects:g,measureDroppableContainers:m,measuringScheduled:s!=null};function y(){switch(u){case Lr.Always:return!1;case Lr.BeforeDragging:return n;default:return!n}}}function kp(e,t){return Qr(n=>e?n||(typeof t=="function"?t(e):e):null,[t,e])}function ES(e,t){return kp(e,t)}function SS(e){let{callback:t,disabled:n}=e;const r=Yi(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 Cs(e){let{callback:t,disabled:n}=e;const r=Yi(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 RS(e){return new Ji(rr(e),e)}function Ul(e,t,n){t===void 0&&(t=RS);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 f=t(e);return JSON.stringify(l)===JSON.stringify(f)?l:f})}const a=SS({callback(l){if(e)for(const u of l){const{type:f,target:d}=u;if(f==="childList"&&d instanceof HTMLElement&&d.contains(e)){s();break}}}}),i=Cs({callback:s});return _t(()=>{s(),e?(i?.observe(e),a?.observe(document.body,{childList:!0,subtree:!0})):(i?.disconnect(),a?.disconnect())},[e]),r}function CS(e){const t=kp(e);return _p(e,t)}const zl=[];function AS(e){const t=c.useRef(e),n=Qr(r=>e?r&&r!==zl&&e&&t.current&&e.parentNode===t.current.parentNode?r:Rs(e):zl,[e]);return c.useEffect(()=>{t.current=e},[e]),n}function TS(e){const[t,n]=c.useState(null),r=c.useRef(e),o=c.useCallback(s=>{const a=sa(s.target);a&&n(i=>i?(i.set(a,za(a)),new Map(i)):null)},[]);return c.useEffect(()=>{const s=r.current;if(e!==s){a(s);const i=e.map(l=>{const u=sa(l);return u?(u.addEventListener("scroll",o,{passive:!0}),[u,za(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=sa(l);u?.removeEventListener("scroll",o)})}},[o,e]),c.useMemo(()=>e.length?t?Array.from(t.values()).reduce((s,a)=>Vn(s,a),wt):jp(e):wt,[e,t])}function ql(e,t){t===void 0&&(t=[]);const n=c.useRef(null);return c.useEffect(()=>{n.current=null},t),c.useEffect(()=>{const r=e!==wt;r&&!n.current&&(n.current=e),!r&&n.current&&(n.current=null)},[e]),n.current?Or(e,n.current):wt}function PS(e){c.useEffect(()=>{if(!Ss)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 MS(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 $p(e){return c.useMemo(()=>e?J3(e):null,[e])}const Wl=[];function _S(e,t){t===void 0&&(t=rr);const[n]=e,r=$p(n?nt(n):null),[o,s]=c.useState(Wl);function a(){s(()=>e.length?e.map(l=>Lp(l)?r:new Ji(t(l),l)):Wl)}const i=Cs({callback:a});return _t(()=>{i?.disconnect(),a(),e.forEach(l=>i?.observe(l))},[e]),o}function NS(e){if(!e)return null;if(e.children.length>1)return e;const t=e.children[0];return Gr(t)?t:e}function OS(e){let{measure:t}=e;const[n,r]=c.useState(null),o=c.useCallback(u=>{for(const{target:f}of u)if(Gr(f)){r(d=>{const p=t(f);return d?{...d,width:p.width,height:p.height}:p});break}},[t]),s=Cs({callback:o}),a=c.useCallback(u=>{const f=NS(u);s?.disconnect(),f&&s?.observe(f),r(f?t(f):null)},[t,s]),[i,l]=Uo(a);return c.useMemo(()=>({nodeRef:i,rect:n,setRef:l}),[n,i,l])}const IS=[{sensor:nc,options:{}},{sensor:ec,options:{}}],LS={current:{}},Eo={draggable:{measure:$l},droppable:{measure:$l,strategy:Lr.WhileDragging,frequency:Wa.Optimized},dragOverlay:{measure:rr}};class Er 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 DS={activatorEvent:null,active:null,activeNode:null,activeNodeRect:null,collisions:null,containerNodeRect:null,draggableNodes:new Map,droppableRects:new Map,droppableContainers:new Er,over:null,dragOverlay:{nodeRef:{current:null},rect:null,setRef:zo},scrollableAncestors:[],scrollableAncestorRects:[],measuringConfiguration:Eo,measureDroppableContainers:zo,windowRect:null,measuringScheduled:!1},jS={activatorEvent:null,activators:[],active:null,activeNodeRect:null,ariaDescribedById:{draggable:""},dispatch:zo,draggableNodes:new Map,over:null,measureDroppableContainers:zo},As=c.createContext(jS),Hp=c.createContext(DS);function FS(){return{draggable:{active:null,initialCoordinates:{x:0,y:0},nodes:new Map,translate:{x:0,y:0}},droppable:{containers:new Er}}}function kS(e,t){switch(t.type){case Me.DragStart:return{...e,draggable:{...e.draggable,initialCoordinates:t.initialCoordinates,active:t.active}};case Me.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 Me.DragEnd:case Me.DragCancel:return{...e,draggable:{...e.draggable,active:null,initialCoordinates:{x:0,y:0},translate:{x:0,y:0}}};case Me.RegisterDroppable:{const{element:n}=t,{id:r}=n,o=new Er(e.droppable.containers);return o.set(r,n),{...e,droppable:{...e.droppable,containers:o}}}case Me.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 Er(e.droppable.containers);return a.set(n,{...s,disabled:o}),{...e,droppable:{...e.droppable,containers:a}}}case Me.UnregisterDroppable:{const{id:n,key:r}=t,o=e.droppable.containers.get(n);if(!o||r!==o.key)return e;const s=new Er(e.droppable.containers);return s.delete(n),{...e,droppable:{...e.droppable,containers:s}}}default:return e}}function $S(e){let{disabled:t}=e;const{active:n,activatorEvent:r,draggableNodes:o}=c.useContext(As),s=Za(r),a=Za(n?.id);return c.useEffect(()=>{if(!t&&!r&&s&&a!=null){if(!Xi(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 f of[l.current,u.current]){if(!f)continue;const d=N3(f);if(d){d.focus();break}}})}},[r,t,o,a,s]),null}function HS(e,t){let{transform:n,...r}=t;return e!=null&&e.length?e.reduce((o,s)=>s({transform:o,...r}),n):n}function BS(e){return c.useMemo(()=>({draggable:{...Eo.draggable,...e?.draggable},droppable:{...Eo.droppable,...e?.droppable},dragOverlay:{...Eo.dragOverlay,...e?.dragOverlay}}),[e?.draggable,e?.droppable,e?.dragOverlay])}function VS(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;_t(()=>{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 f=n(u),d=_p(f,r);if(a||(d.x=0),i||(d.y=0),s.current=!0,Math.abs(d.x)>0||Math.abs(d.y)>0){const p=Np(u);p&&p.scrollBy({top:d.y,left:d.x})}},[t,a,i,r,n])}const Bp=c.createContext({...wt,scaleX:1,scaleY:1});var Kt;(function(e){e[e.Uninitialized=0]="Uninitialized",e[e.Initializing=1]="Initializing",e[e.Initialized=2]="Initialized"})(Kt||(Kt={}));const ZS=c.memo(function(t){var n,r,o,s;let{id:a,accessibility:i,autoScroll:l=!0,children:u,sensors:f=IS,collisionDetection:d=q3,measuring:p,modifiers:m,...v}=t;const g=c.useReducer(kS,void 0,FS),[y,b]=g,[x,w]=F3(),[E,C]=c.useState(Kt.Uninitialized),O=E===Kt.Initialized,{draggable:{active:A,nodes:S,translate:N},droppable:{containers:I}}=y,P=A!=null?S.get(A):null,H=c.useRef({initial:null,translated:null}),q=c.useMemo(()=>{var Pe;return A!=null?{id:A,data:(Pe=P?.data)!=null?Pe:LS,rect:H}:null},[A,P]),D=c.useRef(null),[F,T]=c.useState(null),[L,j]=c.useState(null),_=Nr(v,Object.values(v)),V=Yr("DndDescribedBy",a),W=c.useMemo(()=>I.getEnabled(),[I]),Q=BS(p),{droppableRects:B,measureDroppableContainers:z,measuringScheduled:U}=wS(W,{dragging:O,dependencies:[N.x,N.y],config:Q.droppable}),J=bS(S,A),$=c.useMemo(()=>L?Ua(L):null,[L]),k=Ns(),ee=ES(J,Q.draggable.measure);VS({activeNode:A!=null?S.get(A):null,config:k.layoutShiftCompensation,initialRect:ee,measure:Q.draggable.measure});const Z=Ul(J,Q.draggable.measure,ee),X=Ul(J?J.parentElement:null),te=c.useRef({activatorEvent:null,active:null,activeNode:J,collisionRect:null,collisions:null,droppableRects:B,draggableNodes:S,draggingNode:null,draggingNodeRect:null,droppableContainers:I,over:null,scrollableAncestors:[],scrollAdjustedTranslate:null}),ie=I.getNodeFor((n=te.current.over)==null?void 0:n.id),ue=OS({measure:Q.dragOverlay.measure}),Ye=(r=ue.nodeRef.current)!=null?r:J,Fe=O?(o=ue.rect)!=null?o:Z:null,Ze=!!(ue.nodeRef.current&&ue.rect),ct=CS(Ze?null:Z),Ie=$p(Ye?nt(Ye):null),Ne=AS(O?ie??J:null),Ut=_S(Ne),Te=HS(m,{transform:{x:N.x-ct.x,y:N.y-ct.y,scaleX:1,scaleY:1},activatorEvent:L,active:q,activeNodeRect:Z,containerNodeRect:X,draggingNodeRect:Fe,over:te.current.over,overlayNodeRect:ue.rect,scrollableAncestors:Ne,scrollableAncestorRects:Ut,windowRect:Ie}),lt=$?Vn($,N):null,Tn=TS(Ne),Pn=ql(Tn),ce=ql(Tn,[Z]),ge=Vn(Te,Pn),Re=Fe?G3(Fe,Te):null,ut=q&&Re?d({active:q,collisionRect:Re,droppableRects:B,droppableContainers:W,pointerCoordinates:lt}):null,It=Mp(ut,"id"),[vt,Lt]=c.useState(null),Ts=Ze?Te:Vn(Te,ce),Ps=W3(Ts,(s=vt?.rect)!=null?s:null,Z),Mn=c.useRef(null),sr=c.useCallback((Pe,ke)=>{let{sensor:Y,options:he}=ke;if(D.current==null)return;const fe=S.get(D.current);if(!fe)return;const pe=Pe.nativeEvent,Ue=new Y({active:D.current,activeNode:fe,event:pe,options:he,context:te,onAbort(de){if(!S.get(de))return;const{onDragAbort:Se}=_.current,Ce={id:de};Se?.(Ce),x({type:"onDragAbort",event:Ce})},onPending(de,rt,Se,Ce){if(!S.get(de))return;const{onDragPending:ot}=_.current,Dt={id:de,constraint:rt,initialCoordinates:Se,offset:Ce};ot?.(Dt),x({type:"onDragPending",event:Dt})},onStart(de){const rt=D.current;if(rt==null)return;const Se=S.get(rt);if(!Se)return;const{onDragStart:Ce}=_.current,zt={activatorEvent:pe,active:{id:rt,data:Se.data,rect:H}};Ht.unstable_batchedUpdates(()=>{Ce?.(zt),C(Kt.Initializing),b({type:Me.DragStart,initialCoordinates:de,active:rt}),x({type:"onDragStart",event:zt}),T(Mn.current),j(pe)})},onMove(de){b({type:Me.DragMove,coordinates:de})},onEnd:ye(Me.DragEnd),onCancel:ye(Me.DragCancel)});Mn.current=Ue;function ye(de){return async function(){const{active:Se,collisions:Ce,over:zt,scrollAdjustedTranslate:ot}=te.current;let Dt=null;if(Se&&ot){const{cancelDrop:ar}=_.current;Dt={activatorEvent:pe,active:Se,collisions:Ce,delta:ot,over:zt},de===Me.DragEnd&&typeof ar=="function"&&await Promise.resolve(ar(Dt))&&(de=Me.DragCancel)}D.current=null,Ht.unstable_batchedUpdates(()=>{b({type:de}),C(Kt.Uninitialized),Lt(null),T(null),j(null),Mn.current=null;const ar=de===Me.DragEnd?"onDragEnd":"onDragCancel";if(Dt){const Os=_.current[ar];Os?.(Dt),x({type:ar,event:Dt})}})}}},[S]),Ms=c.useCallback((Pe,ke)=>(Y,he)=>{const fe=Y.nativeEvent,pe=S.get(he);if(D.current!==null||!pe||fe.dndKit||fe.defaultPrevented)return;const Ue={active:pe};Pe(Y,ke.options,Ue)===!0&&(fe.dndKit={capturedBy:ke.sensor},D.current=he,sr(Y,ke))},[S,sr]),_n=xS(f,Ms);PS(f),_t(()=>{Z&&E===Kt.Initializing&&C(Kt.Initialized)},[Z,E]),c.useEffect(()=>{const{onDragMove:Pe}=_.current,{active:ke,activatorEvent:Y,collisions:he,over:fe}=te.current;if(!ke||!Y)return;const pe={active:ke,activatorEvent:Y,collisions:he,delta:{x:ge.x,y:ge.y},over:fe};Ht.unstable_batchedUpdates(()=>{Pe?.(pe),x({type:"onDragMove",event:pe})})},[ge.x,ge.y]),c.useEffect(()=>{const{active:Pe,activatorEvent:ke,collisions:Y,droppableContainers:he,scrollAdjustedTranslate:fe}=te.current;if(!Pe||D.current==null||!ke||!fe)return;const{onDragOver:pe}=_.current,Ue=he.get(It),ye=Ue&&Ue.rect.current?{id:Ue.id,rect:Ue.rect.current,data:Ue.data,disabled:Ue.disabled}:null,de={active:Pe,activatorEvent:ke,collisions:Y,delta:{x:fe.x,y:fe.y},over:ye};Ht.unstable_batchedUpdates(()=>{Lt(ye),pe?.(de),x({type:"onDragOver",event:de})})},[It]),_t(()=>{te.current={activatorEvent:L,active:q,activeNode:J,collisionRect:Re,collisions:ut,droppableRects:B,draggableNodes:S,draggingNode:Ye,draggingNodeRect:Fe,droppableContainers:I,over:vt,scrollableAncestors:Ne,scrollAdjustedTranslate:ge},H.current={initial:Fe,translated:Re}},[q,J,ut,Re,S,Ye,Fe,B,I,vt,Ne,ge]),gS({...k,delta:N,draggingRect:Re,pointerCoordinates:lt,scrollableAncestors:Ne,scrollableAncestorRects:Ut});const Rt=c.useMemo(()=>({active:q,activeNode:J,activeNodeRect:Z,activatorEvent:L,collisions:ut,containerNodeRect:X,dragOverlay:ue,draggableNodes:S,droppableContainers:I,droppableRects:B,over:vt,measureDroppableContainers:z,scrollableAncestors:Ne,scrollableAncestorRects:Ut,measuringConfiguration:Q,measuringScheduled:U,windowRect:Ie}),[q,J,Z,L,ut,X,ue,S,I,B,vt,z,Ne,Ut,Q,U,Ie]),_s=c.useMemo(()=>({activatorEvent:L,activators:_n,active:q,activeNodeRect:Z,ariaDescribedById:{draggable:V},dispatch:b,draggableNodes:S,over:vt,measureDroppableContainers:z}),[L,_n,q,Z,b,V,S,vt,z]);return M.createElement(Ap.Provider,{value:w},M.createElement(As.Provider,{value:_s},M.createElement(Hp.Provider,{value:Rt},M.createElement(Bp.Provider,{value:Ps},u)),M.createElement($S,{disabled:i?.restoreFocus===!1})),M.createElement(H3,{...i,hiddenTextDescribedById:V}));function Ns(){const Pe=F?.autoScrollEnabled===!1,ke=typeof l=="object"?l.enabled===!1:l===!1,Y=O&&!Pe&&!ke;return typeof l=="object"?{...l,enabled:Y}:{enabled:Y}}}),US=c.createContext(null),Kl="button",zS="Draggable";function qS(e){let{id:t,data:n,disabled:r=!1,attributes:o}=e;const s=Yr(zS),{activators:a,activatorEvent:i,active:l,activeNodeRect:u,ariaDescribedById:f,draggableNodes:d,over:p}=c.useContext(As),{role:m=Kl,roleDescription:v="draggable",tabIndex:g=0}=o??{},y=l?.id===t,b=c.useContext(y?Bp:US),[x,w]=Uo(),[E,C]=Uo(),O=MS(a,t),A=Nr(n);_t(()=>(d.set(t,{id:t,key:s,node:x,activatorNode:E,data:A}),()=>{const N=d.get(t);N&&N.key===s&&d.delete(t)}),[d,t]);const S=c.useMemo(()=>({role:m,tabIndex:g,"aria-disabled":r,"aria-pressed":y&&m===Kl?!0:void 0,"aria-roledescription":v,"aria-describedby":f.draggable}),[r,m,g,y,v,f.draggable]);return{active:l,activatorEvent:i,activeNodeRect:u,attributes:S,isDragging:y,listeners:r?void 0:O,node:x,over:p,setNodeRef:w,setActivatorNodeRef:C,transform:b}}function WS(){return c.useContext(Hp)}const KS="Droppable",GS={timeout:25};function QS(e){let{data:t,disabled:n=!1,id:r,resizeObserverConfig:o}=e;const s=Yr(KS),{active:a,dispatch:i,over:l,measureDroppableContainers:u}=c.useContext(As),f=c.useRef({disabled:n}),d=c.useRef(!1),p=c.useRef(null),m=c.useRef(null),{disabled:v,updateMeasurementsFor:g,timeout:y}={...GS,...o},b=Nr(g??r),x=c.useCallback(()=>{if(!d.current){d.current=!0;return}m.current!=null&&clearTimeout(m.current),m.current=setTimeout(()=>{u(Array.isArray(b.current)?b.current:[b.current]),m.current=null},y)},[y]),w=Cs({callback:x,disabled:v||!a}),E=c.useCallback((S,N)=>{w&&(N&&(w.unobserve(N),d.current=!1),S&&w.observe(S))},[w]),[C,O]=Uo(E),A=Nr(t);return c.useEffect(()=>{!w||!C.current||(w.disconnect(),d.current=!1,w.observe(C.current))},[C,w]),c.useEffect(()=>(i({type:Me.RegisterDroppable,element:{id:r,key:s,disabled:n,node:C,rect:p,data:A}}),()=>i({type:Me.UnregisterDroppable,key:s,id:r})),[r]),c.useEffect(()=>{n!==f.current.disabled&&(i({type:Me.SetDroppableDisabled,id:r,key:s,disabled:n}),f.current.disabled=n)},[r,s,n,i]),{active:a,rect:p,isOver:l?.id===r,node:C,over:l,setNodeRef:O}}const A5=e=>{let{transform:t}=e;return{...t,y:0}},YS=e=>{let{transform:t}=e;return{...t,x:0}};function rc(e,t,n){const r=e.slice();return r.splice(n<0?r.length+n:n,0,r.splice(t,1)[0]),r}function XS(e,t){return e.reduce((n,r,o)=>{const s=t.get(r);return s&&(n[o]=s),n},Array(e.length))}function uo(e){return e!==null&&e>=0}function JS(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 eR(e){return typeof e=="boolean"?{draggable:e,droppable:e}:e}const fo={scaleX:1,scaleY:1},T5=e=>{var t;let{rects:n,activeNodeRect:r,activeIndex:o,overIndex:s,index:a}=e;const i=(t=n[o])!=null?t:r;if(!i)return null;const l=tR(n,a,o);if(a===o){const u=n[s];return u?{x:o<s?u.left+u.width-(i.left+i.width):u.left-i.left,y:0,...fo}:null}return a>o&&a<=s?{x:-i.width-l,y:0,...fo}:a<o&&a>=s?{x:i.width+l,y:0,...fo}:{x:0,y:0,...fo}};function tR(e,t,n){const r=e[t],o=e[t-1],s=e[t+1];return!r||!o&&!s?0:n<t?o?r.left-(o.left+o.width):s.left-(r.left+r.width):s?s.left-(r.left+r.width):r.left-(o.left+o.width)}const Vp=e=>{let{rects:t,activeIndex:n,overIndex:r,index:o}=e;const s=rc(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}},ho={scaleX:1,scaleY:1},nR=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,...ho}:null}const l=rR(s,o,n);return o>n&&o<=a?{x:0,y:-i.height-l,...ho}:o<n&&o>=a?{x:0,y:i.height+l,...ho}:{x:0,y:0,...ho}};function rR(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 Zp="Sortable",Up=M.createContext({activeIndex:-1,containerId:Zp,disableTransforms:!1,items:[],overIndex:-1,useDragOverlay:!1,sortedRects:[],strategy:Vp,disabled:{draggable:!1,droppable:!1}});function oR(e){let{children:t,id:n,items:r,strategy:o=Vp,disabled:s=!1}=e;const{active:a,dragOverlay:i,droppableRects:l,over:u,measureDroppableContainers:f}=WS(),d=Yr(Zp,n),p=i.rect!==null,m=c.useMemo(()=>r.map(O=>typeof O=="object"&&"id"in O?O.id:O),[r]),v=a!=null,g=a?m.indexOf(a.id):-1,y=u?m.indexOf(u.id):-1,b=c.useRef(m),x=!JS(m,b.current),w=y!==-1&&g===-1||x,E=eR(s);_t(()=>{x&&v&&f(m)},[x,m,v,f]),c.useEffect(()=>{b.current=m},[m]);const C=c.useMemo(()=>({activeIndex:g,containerId:d,disabled:E,disableTransforms:w,items:m,overIndex:y,useDragOverlay:p,sortedRects:XS(m,l),strategy:o}),[g,d,E.draggable,E.droppable,w,m,y,l,p,o]);return M.createElement(Up.Provider,{value:C},t)}const sR=e=>{let{id:t,items:n,activeIndex:r,overIndex:o}=e;return rc(n,r,o).indexOf(t)},aR=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},iR={duration:200,easing:"ease"},zp="transform",cR=Ir.Transition.toString({property:zp,duration:0,easing:"linear"}),lR={roleDescription:"sortable"};function uR(e){let{disabled:t,index:n,node:r,rect:o}=e;const[s,a]=c.useState(null),i=c.useRef(n);return _t(()=>{if(!t&&n!==i.current&&r.current){const l=o.current;if(l){const u=rr(r.current,{ignoreTransform:!0}),f={x:l.left-u.left,y:l.top-u.top,scaleX:l.width/u.width,scaleY:l.height/u.height};(f.x||f.y)&&a(f)}}n!==i.current&&(i.current=n)},[t,n,r,o]),c.useEffect(()=>{s&&a(null)},[s]),s}function dR(e){let{animateLayoutChanges:t=aR,attributes:n,disabled:r,data:o,getNewIndex:s=sR,id:a,strategy:i,resizeObserverConfig:l,transition:u=iR}=e;const{items:f,containerId:d,activeIndex:p,disabled:m,disableTransforms:v,sortedRects:g,overIndex:y,useDragOverlay:b,strategy:x}=c.useContext(Up),w=fR(r,m),E=f.indexOf(a),C=c.useMemo(()=>({sortable:{containerId:d,index:E,items:f},...o}),[d,o,E,f]),O=c.useMemo(()=>f.slice(f.indexOf(a)),[f,a]),{rect:A,node:S,isOver:N,setNodeRef:I}=QS({id:a,data:C,disabled:w.droppable,resizeObserverConfig:{updateMeasurementsFor:O,...l}}),{active:P,activatorEvent:H,activeNodeRect:q,attributes:D,setNodeRef:F,listeners:T,isDragging:L,over:j,setActivatorNodeRef:_,transform:V}=qS({id:a,data:C,attributes:{...lR,...n},disabled:w.draggable}),W=T3(I,F),Q=!!P,B=Q&&!v&&uo(p)&&uo(y),z=!b&&L,U=z&&B?V:null,$=B?U??(i??x)({rects:g,activeNodeRect:q,activeIndex:p,overIndex:y,index:E}):null,k=uo(p)&&uo(y)?s({id:a,items:f,activeIndex:p,overIndex:y}):E,ee=P?.id,Z=c.useRef({activeId:ee,items:f,newIndex:k,containerId:d}),X=f!==Z.current.items,te=t({active:P,containerId:d,isDragging:L,isSorting:Q,id:a,index:E,items:f,newIndex:Z.current.newIndex,previousItems:Z.current.items,previousContainerId:Z.current.containerId,transition:u,wasDragging:Z.current.activeId!=null}),ie=uR({disabled:!te,index:E,node:S,rect:A});return c.useEffect(()=>{Q&&Z.current.newIndex!==k&&(Z.current.newIndex=k),d!==Z.current.containerId&&(Z.current.containerId=d),f!==Z.current.items&&(Z.current.items=f)},[Q,k,d,f]),c.useEffect(()=>{if(ee===Z.current.activeId)return;if(ee!=null&&Z.current.activeId==null){Z.current.activeId=ee;return}const Ye=setTimeout(()=>{Z.current.activeId=ee},50);return()=>clearTimeout(Ye)},[ee]),{active:P,activeIndex:p,attributes:D,data:C,rect:A,index:E,newIndex:k,items:f,isOver:N,isSorting:Q,isDragging:L,listeners:T,node:S,overIndex:y,over:j,setNodeRef:W,setActivatorNodeRef:_,setDroppableNodeRef:I,setDraggableNodeRef:F,transform:ie??$,transition:ue()};function ue(){if(ie||X&&Z.current.newIndex===E)return cR;if(!(z&&!Xi(H)||!u)&&(Q||te))return Ir.Transition.toString({...u,property:zp})}}function fR(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 Wo(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 hR=[oe.Down,oe.Right,oe.Up,oe.Left],pR=(e,t)=>{let{context:{active:n,collisionRect:r,droppableRects:o,droppableContainers:s,over:a,scrollableAncestors:i}}=t;if(hR.includes(e.code)){if(e.preventDefault(),!n||!r)return;const l=[];s.getEnabled().forEach(d=>{if(!d||d!=null&&d.disabled)return;const p=o.get(d.id);if(p)switch(e.code){case oe.Down:r.top<p.top&&l.push(d);break;case oe.Up:r.top>p.top&&l.push(d);break;case oe.Left:r.left>p.left&&l.push(d);break;case oe.Right:r.left<p.left&&l.push(d);break}});const u=U3({collisionRect:r,droppableRects:o,droppableContainers:l});let f=Mp(u,"id");if(f===a?.id&&u.length>1&&(f=u[1].id),f!=null){const d=s.get(n.id),p=s.get(f),m=p?o.get(p.id):null,v=p?.node.current;if(v&&m&&d&&p){const y=Rs(v).some((O,A)=>i[A]!==O),b=qp(d,p),x=mR(d,p),w=y||!b?{x:0,y:0}:{x:x?r.width-m.width:0,y:x?r.height-m.height:0},E={x:m.left,y:m.top};return w.x&&w.y?E:Or(E,w)}}}};function qp(e,t){return!Wo(e)||!Wo(t)?!1:e.data.current.sortable.containerId===t.data.current.sortable.containerId}function mR(e,t){return!Wo(e)||!Wo(t)||!qp(e,t)?!1:e.data.current.sortable.index<t.data.current.sortable.index}const gR=e=>{const{data:t}=ku({queryKey:ae.notes.list(e.searchParams),async queryFn(){const n=await wp(e.searchParams);if(n.type==="error")throw n;return n.allNotes}});return e.render(t)},vR=e=>{const{data:t}=ku({queryKey:ae.notes.pinned(),async queryFn(){const n=await Ee(`
219
- query {
220
- pinnedNotes {
221
- id
222
- title
223
- order
224
- }
225
- }
226
- `);if(n.type==="error")throw n;return n.pinnedNotes}});return h.jsx(h.Fragment,{children:e.render(t)})};function yR({query:e="",limit:t=50,offset:n=0}={}){return Ee(`query FetchTags(
227
- $searchFilter: SearchFilterInput,
228
- $pagination: PaginationInput
229
- ) {
230
- allTags(
231
- searchFilter: $searchFilter,
232
- pagination: $pagination
233
- ) {
234
- totalCount
235
- tags {
236
- id
237
- name
238
- referenceCount
239
- }
240
- }
241
- }`,{searchFilter:{query:e},pagination:{limit:t,offset:n}})}function P5({name:e=""}){return Ee(`mutation CreateTag($name: String!) {
242
- createTag(name: $name) {
243
- id
244
- name
245
- }
246
- }`,{name:e})}const bR="focus-ring-soft flex h-8 w-8 items-center justify-center rounded-[10px] text-fg-default/70 outline-none transition-colors hover:text-fg-default active:cursor-grabbing touch-none",xR="focus-ring-soft block truncate rounded-[10px] px-1.5 py-1 outline-none transition-colors";function wR({id:e,title:t,isActive:n=!1,children:r}){const{attributes:o,listeners:s,setNodeRef:a,setActivatorNodeRef:i,transform:l,transition:u,isDragging:f}=dR({id:e}),d={transform:Ir.Transform.toString(l),transition:u,opacity:f?.5:1};return h.jsxs("div",{ref:a,style:d,className:me("group flex min-h-[40px] items-center gap-1.5 rounded-[12px] px-1.5 py-1 transition-colors",n&&"bg-hover-subtle"),children:[h.jsx("button",{type:"button",ref:i,"aria-label":`Reorder note ${t??"Untitled"}`,...o,...s,className:me(bR,f?"cursor-grabbing":"cursor-grab"),children:h.jsx(Vv,{className:"size-4"})}),h.jsx(se,{as:"div",truncate:!0,variant:"body",weight:"medium",className:"min-w-0 flex-1",children:r})]})}function ER({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(ZS,{sensors:s,collisionDetection:Z3,onDragEnd:o,modifiers:[YS],children:h.jsx(oR,{items:a.map(i=>i.id),strategy:nR,children:a.map(i=>h.jsx(wR,{id:i.id,title:i.title||"Untitled",isActive:t===`/${i.id}`,children:h.jsx(Pt,{"aria-current":t===`/${i.id}`?"page":void 0,className:me(xR,t===`/${i.id}`?"text-fg-default":"text-fg-secondary hover:bg-hover-subtle hover:text-fg-default"),to:er,params:{id:i.id},children:i.title||"Untitled"})},i.id))})})}const SR=()=>{const e=rs({select:i=>i.pathname}),t=Qn(),[n,r]=c.useState([]),o=Zg({mutationFn:v3,onSuccess:()=>{t.invalidateQueries({queryKey:ae.notes.pinned(),exact:!0})}}),s=B3(jl(nc,{activationConstraint:{distance:8}}),jl(ec,{coordinateGetter:pR})),a=i=>{const{active:l,over:u}=i;u&&l.id!==u.id&&r(f=>{const d=f.findIndex(v=>v.id===l.id),p=f.findIndex(v=>v.id===u.id),m=rc(f,d,p);return o.mutate(m.map((v,g)=>({id:v.id,order:g}))),m})};return h.jsx("div",{className:"flex flex-col gap-1",children:h.jsx(mp,{fallback:h.jsxs("div",{className:"space-y-1",children:[h.jsx(Bt,{height:"40px",opacity:.4}),h.jsx(Bt,{height:"40px",opacity:.4})]}),errorTitle:"Failed to load pinned notes",errorDescription:"Retry loading the pinned note list.",renderError:({error:i,retry:l})=>h.jsx(Ki,{title:"Failed to load pinned notes",description:"Retry loading the pinned note list.",error:i,onRetry:l,showBackAction:!1,showHomeAction:!1}),children:h.jsx(vR,{render:i=>i.length>0?h.jsx(ER,{notes:i,pathname:e,pinnedItems:n,setPinnedItems:r,handleDragEnd:a,sensors:s}):h.jsx(se,{as:"div",variant:"meta",tone:"secondary",className:"px-2 py-2.5 leading-6",children:"Pin a note to keep it in view while the rest of the workspace changes."})})})})},RR="mb-2.5 flex items-center justify-between gap-3 px-1",CR="flex min-w-0 items-center gap-2",AR="inline-flex h-4 w-4 shrink-0 items-center justify-center text-fg-tertiary",TR=({title:e,icon:t,detail:n})=>h.jsxs("div",{className:RR,children:[h.jsxs("div",{className:CR,children:[t?h.jsx("span",{className:AR,children:t}):null,h.jsx(se,{variant:"label",weight:"medium",tone:"tertiary",children:e})]}),n?h.jsx(se,{as:"div",variant:"meta",weight:"medium",tone:"tertiary",children:n}):null]}),PR="flex flex-col gap-3.5 p-3 pt-2",MR="focus-ring-soft surface-base group flex w-full items-center justify-between gap-2.5 px-3 py-2.5 text-left text-fg-default outline-none transition-colors hover:bg-hover-subtle",_R="flex items-center gap-2.5",NR="inline-flex h-10 w-10 shrink-0 items-center justify-center rounded-[13px] bg-cta text-fg-on-filled",OR="flex flex-col",IR="h-4 w-4 text-fg-tertiary transition-colors group-hover:text-fg-default",LR=()=>{const{onCreate:e}=Sp();return h.jsxs("div",{className:PR,children:[h.jsxs("button",{type:"button",className:MR,onClick:()=>e(),children:[h.jsxs("span",{className:_R,children:[h.jsx("span",{className:NR,children:h.jsx(Gv,{className:"h-4.5 w-4.5",weight:"bold"})}),h.jsxs("span",{className:OR,children:[h.jsx(se,{variant:"meta",weight:"semibold",tracking:"tight",children:"Capture"}),h.jsx(se,{variant:"label",tone:"secondary",children:"Open a new note"})]})]}),h.jsx(br,{className:IR,weight:"bold"})]}),h.jsxs("section",{className:"pt-1",children:[h.jsx(TR,{title:"Pinned",icon:h.jsx(Jd,{className:"h-4 w-4",weight:"fill"})}),h.jsx(SR,{})]})]})},DR=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]},jR="flex flex-col gap-2.5",FR="surface-base overflow-hidden",kR="grid-search-bar grid items-center border-b border-transparent px-2.5 py-1.5 transition-colors",$R="border-border-subtle/70 bg-muted/25",HR="hover:bg-hover-subtle/60",Gl="flex h-10 items-center justify-center text-fg-tertiary transition-colors hover:text-fg-default sm:h-8",BR="h-10 w-full bg-transparent py-2 text-meta text-fg-default outline-none placeholder:text-fg-placeholder sm:h-8 sm:py-1.5",VR="px-1 py-1.5",ZR="px-2 pb-0.5 pt-1",UR="px-2 pb-0.5 pt-1.5",zR="flex min-h-10 items-center gap-2 rounded-[10px] px-2.5 py-2 transition-colors hover:bg-hover-subtle sm:min-h-0 sm:px-2 sm:py-1.5",qR="min-w-0 flex-1",WR="flex flex-wrap gap-1.5 px-1.5 py-1",KR="inline-flex items-center rounded-full border border-border-subtle bg-hover-subtle px-2 py-0.75 sm:py-0.5",GR="mt-1 border-t border-border-subtle/50 px-2 pb-0.5 pt-1.5",QR="flex min-h-9 items-center gap-1.5 text-fg-secondary transition-colors hover:text-fg-default",YR=()=>{const e=Rn(),[t,n]=c.useState(""),[r,o]=c.useState([]),[s,a]=c.useState([]),[,i]=DR(500);c.useEffect(()=>{if(t.length<=0){i(()=>{}),o([]),a([]);return}i(()=>{wp({query:t,limit:5}).then(d=>{d.type==="success"&&o(d.allNotes.notes)}),yR({query:t,limit:5}).then(d=>{d.type==="success"&&a(d.allTags.tags)})})},[t,i]);const l=d=>{d?.preventDefault(),e({to:dp,search:{query:t,page:1}})},u=()=>{n("")},f=r.length>0||s.length>0;return h.jsx("div",{className:"p-3",children:h.jsx("form",{className:jR,onSubmit:l,children:h.jsxs("div",{className:FR,children:[h.jsxs("div",{className:`${kR} ${f?$R:HR}`,children:[h.jsx("button",{type:"submit",className:Gl,children:h.jsx(Kv,{className:"h-4.5 w-4.5",weight:"bold"})}),h.jsx("input",{type:"text",placeholder:"Search notes or tags",value:t,onChange:d=>n(d.target.value),className:BR}),t&&h.jsx("button",{type:"button",className:Gl,onClick:u,children:h.jsx(of,{className:"h-4 w-4",weight:"bold"})})]}),f&&h.jsxs("div",{className:VR,children:[r.length>0&&h.jsxs("div",{children:[s.length>0&&h.jsx(se,{as:"div",variant:"label",weight:"medium",tone:"tertiary",className:ZR,children:"Notes"}),r.map(({id:d,title:p})=>h.jsxs(Pt,{to:er,params:{id:d},className:zR,children:[h.jsx(zv,{className:"h-3.5 w-3.5 shrink-0 text-fg-tertiary"}),h.jsx(se,{as:"span",truncate:!0,variant:"meta",weight:"medium",className:qR,children:p||"Untitled"})]},d))]}),s.length>0&&h.jsxs("div",{children:[r.length>0&&h.jsx(se,{as:"div",variant:"label",weight:"medium",tone:"tertiary",className:UR,children:"Tags"}),h.jsx("div",{className:WR,children:s.map(({id:d,name:p})=>h.jsx(Pt,{to:Wi,params:{id:d},search:{page:1},children:h.jsx(se,{as:"span",variant:"label",weight:"medium",tone:"secondary",className:KR,children:p})},d))})]}),h.jsx("div",{className:GR,children:h.jsxs("button",{type:"submit",className:QR,children:[h.jsx(se,{as:"span",variant:"meta",weight:"medium",className:"text-current",children:"View all results"}),h.jsx(br,{className:"h-3.5 w-3.5",weight:"bold"})]})})]})]})})})},XR=[{name:"Notes",path:Kr,icon:Kd},{name:"Views",path:ip,icon:Uv},{name:"Graph",path:up,icon:Jv},{name:"Calendar",path:cp,icon:$v},{name:"Reminders",path:lp,icon:kv},{name:"Tags",path:fp,icon:Xv},{name:"Setting",path:hp,icon:qv}],JR=()=>{const e=rs({select:t=>t.pathname});return h.jsx("nav",{"aria-label":"Primary navigation",className:"flex items-center gap-1 px-4 py-2.5",children:XR.map((t,n)=>{const r=e===t.path||t.path!==Kr&&e.startsWith(`${t.path}/`);return h.jsxs(c.Fragment,{children:[n>0&&h.jsx("span",{className:"h-3.5 w-px shrink-0 bg-border-subtle"}),h.jsx(Pt,{to:t.path,children:h.jsxs("div",{className:`flex min-w-26 items-center justify-center gap-2 border-b px-2 py-2 transition-colors ${r?"border-fg-muted text-fg-default":"border-transparent text-fg-secondary hover:border-border-subtle hover:text-fg-default"}`,children:[h.jsx(t.icon,{className:"size-5",weight:r?"fill":"regular"}),h.jsx(se,{as:"span",variant:"meta",weight:"medium",className:"text-current",children:t.name})]})})]},t.path)})})},eC=({children:e})=>h.jsx(o3,{sidebar:h.jsxs(h.Fragment,{children:[h.jsx(l3,{}),h.jsx(YR,{}),h.jsx(LR,{})]}),topNavigation:h.jsx(JR,{}),children:e}),tC=["updatedAt","createdAt"],nC=["asc","desc"],rC=["create","update"],Xr=e=>Array.isArray(e)?e[0]:e,Sn=(e,t,{min:n=1,max:r=Number.MAX_SAFE_INTEGER}={})=>{const o=Xr(e),s=typeof o=="number"?o:typeof o=="string"?Number(o):Number.NaN;return!Number.isInteger(s)||s<n||s>r?t:s},oC=e=>{const t=Xr(e);if(t==null||t==="")return;const n=Sn(t,Number.NaN);return Number.isNaN(n)?void 0:n},sC=(e,t=!1)=>{const n=Xr(e);return n===!0||n==="true"?!0:n===!1||n==="false"?!1:t},Wp=(e,t="")=>{const n=Xr(e);return typeof n=="string"?n:t},Ka=(e,t,n)=>{const r=Xr(e);return typeof r!="string"?n:t.includes(r)?r:n},aC=e=>({page:Sn(e.page,1),limit:oC(e.limit),sortBy:Ka(e.sortBy,tC,"updatedAt"),sortOrder:Ka(e.sortOrder,nC,"desc"),pinnedFirst:sC(e.pinnedFirst,!1)}),or=e=>({page:Sn(e.page,1)}),iC=e=>({page:Sn(e.page,1),query:Wp(e.query,"")}),cC=e=>({year:Sn(e.year,$e().year(),{min:1970,max:9999}),month:Sn(e.month,$e().month()+1,{min:1,max:12}),type:Ka(e.type,rC,"create")}),lC=e=>({page:Sn(e.page,1),sectionId:Wp(e.sectionId,"")}),Ql=16;function uC(e,t,n){return Math.max(Math.floor((Math.max(e,0)+n)/(t+n)),1)}function Yl(e,t,n){return e*t+(e-1)*n}function dC({minItemWidth:e,gap:t,rows:n,fallback:r,override:o}){const[s,a]=c.useState(null),[i,l]=c.useState(r??n),u=c.useRef(null),f=c.useCallback(m=>{a(m)},[]),d=o==null,p=d?i:o;return c.useLayoutEffect(()=>{if(!d){u.current=null;return}if(!s){u.current=null,l(y=>y===(r??n)?y:r??n);return}let m=null;const v=()=>{const y=s.offsetWidth,b=uC(y,e,t),x=u.current;let w=b;if(x!==null&&x!==b)if(b>x){const C=Yl(x+1,e,t);y<C+Ql&&(w=x)}else{const C=Yl(x,e,t);y>C-Ql&&(w=x)}u.current=w;const E=Math.max(w*n,n);l(C=>C===E?C:E)},g=()=>{m===null&&(m=window.requestAnimationFrame(()=>{m=null,v()}))};if(g(),typeof ResizeObserver<"u"){const y=new ResizeObserver(()=>{g()});return y.observe(s),()=>{y.disconnect(),m!==null&&window.cancelAnimationFrame(m)}}return window.addEventListener("resize",g),window.addEventListener("orientationchange",g),()=>{window.removeEventListener("resize",g),window.removeEventListener("orientationchange",g),m!==null&&window.cancelAnimationFrame(m)}},[s,r,t,d,e,n]),{containerRef:f,limit:p,isAutoLimit:d}}const fC=240,hC=20,pC=6,Xl=qm(Kr);function mC(){const e=Xl.useNavigate(),{limit:t,page:n,sortBy:r,sortOrder:o,pinnedFirst:s}=Xl.useSearch(),{containerRef:a,limit:i,isAutoLimit:l}=dC({minItemWidth:fC,gap:hC,rows:pC,override:t??null}),{onDelete:u,onPinned:f,deleteWarningDialog:d}=Sp(),p=m=>{e({search:v=>({...v,...m})})};return h.jsxs(Es,{title:"",variant:"none",children:[h.jsxs("div",{ref:a,className:"flex flex-col gap-5",children:[h.jsx(Uw,{itemsPerPage:i,onItemsPerPageChange:m=>p({limit:m,page:1}),isAutoLimit:l,sortBy:r,onSortByChange:m=>p({sortBy:m,page:1}),sortOrder:o,onSortOrderChange:m=>p({sortOrder:m,page:1}),pinnedFirst:s,onPinnedFirstChange:m=>p({pinnedFirst:m,page:1})}),h.jsx(mp,{fallback:h.jsxs("div",{className:"grid-auto-cards grid gap-5",children:[h.jsx(Bt,{height:"112px"}),h.jsx(Bt,{height:"112px"}),h.jsx(Bt,{height:"112px"})]}),errorTitle:"Failed to load notes",errorDescription:"Retry loading the current note list.",resetKeys:[n,i,r,o,s],children:h.jsx(gR,{searchParams:{offset:(n-1)*i,limit:i,sortBy:r,sortOrder:o,pinnedFirst:s},render:({notes:m,totalCount:v})=>h.jsx(bl,{fallback:h.jsx(lh,{title:"Ocean is calm",description:"Capture anything and make waves in the ocean!"}),children:m.length>0&&h.jsxs(h.Fragment,{children:[h.jsx("div",{className:"grid-auto-cards grid gap-5",children:m.map(g=>h.jsx(y3,{...g,onPinned:()=>f(g.id,g.pinned),onDelete:()=>u(g.id)},g.id))}),h.jsx(bl,{fallback:null,children:v&&i<v&&h.jsx(dh,{page:n,last:Math.ceil(v/i),onChange:g=>{p({page:g})}})})]})})})})]}),d]})}const je=Qm({component:()=>h.jsx(eC,{children:h.jsx(Su,{})}),errorComponent:LE,notFoundComponent:DE}),gC=Le({getParentRoute:()=>je,path:Kr,component:mC,validateSearch:aC}),vC=Le({getParentRoute:()=>je,path:cp,component:Ge(()=>Ke(()=>import("./Calendar-BU9XgX2N.js"),__vite__mapDeps([0,1,2,3,4]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading calendar",description:"Preparing note and reminder snapshots."}),validateSearch:cC}),yC=Le({getParentRoute:()=>je,path:ip,component:Ge(()=>Ke(()=>import("./Views-Ccc_Ml5U.js"),__vite__mapDeps([5,1,2,3,6,7,8]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading views",description:"Preparing your saved dashboards."})}),bC=Le({getParentRoute:()=>je,path:lp,component:Ge(()=>Ke(()=>import("./Reminders-BlLLT_x0.js"),__vite__mapDeps([9,1,2,3,10]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading reminders",description:"Collecting upcoming reminder cards."}),validateSearch:or}),xC=Le({getParentRoute:()=>je,path:up,component:Ge(()=>Ke(()=>import("./Graph-Dond2hGK.js"),__vite__mapDeps([11,1,2,3]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading graph",description:"Preparing the linked note constellation."})}),wC=Le({getParentRoute:()=>je,path:dp,component:Ge(()=>Ke(()=>import("./Search-CrZ0ap8x.js"),__vite__mapDeps([12,1,2,3]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading search",description:"Preparing indexed note results."}),validateSearch:iC}),EC=Le({getParentRoute:()=>je,path:fp,component:Ge(()=>Ke(()=>import("./Tag-vws5AfNW.js"),__vite__mapDeps([13,1,2,3]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading tags",description:"Preparing the tag catalog."}),validateSearch:or}),SC=Le({getParentRoute:()=>je,path:er,component:Ge(()=>Ke(()=>import("./Note-Cr6GtXUM.js"),__vite__mapDeps([14,1,2,3,4,7,10,8,15,16]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading note",description:"Preparing the editor and note content."})}),RC=Le({getParentRoute:()=>je,path:Wi,component:Ge(()=>Ke(()=>import("./TagNotes-Fmf1Kgim.js"),__vite__mapDeps([17,1,2,3]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading tagged notes",description:"Preparing notes for the selected tag."}),validateSearch:or}),CC=Le({getParentRoute:()=>je,path:AE,component:Ge(()=>Ke(()=>import("./ViewNotes-BALN7IfH.js"),__vite__mapDeps([18,1,2,3,6]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading view notes",description:"Preparing notes for this saved view section."}),validateSearch:lC}),AC=Le({getParentRoute:()=>je,path:hp,component:Ge(()=>Ke(()=>import("./index-BSVE2cGd.js"),__vite__mapDeps([19,1,2,3,20,21]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading settings",description:"Preparing workspace preferences."})}),TC=Le({getParentRoute:()=>je,path:TE,component:Ge(()=>Ke(()=>import("./mcp-Bh743HBz.js"),__vite__mapDeps([22,1,2,3,7]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading MCP settings",description:"Preparing MCP access controls."})}),PC=Le({getParentRoute:()=>je,path:PE,component:Ge(()=>Ke(()=>import("./trash-hiJIg6-c.js"),__vite__mapDeps([23,1,2,3,7]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading trash",description:"Preparing deleted notes for restore."}),validateSearch:or}),MC=Le({getParentRoute:()=>je,path:ME,component:Ge(()=>Ke(()=>import("./manage-image-IoTXaMBP.js"),__vite__mapDeps([24,1,2,3,15,25,7,20]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading image manager",description:"Preparing uploaded image metadata."}),validateSearch:or}),_C=Le({getParentRoute:()=>je,path:_E,component:Ge(()=>Ke(()=>import("./manage-image-detail-BRTXwOsh.js"),__vite__mapDeps([26,1,2,3,15,25,7,20,21]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading image detail",description:"Preparing references for the selected image."})}),NC=Le({getParentRoute:()=>je,path:NE,component:Ge(()=>Ke(()=>import("./placeholder-XQqo1Fvr.js"),__vite__mapDeps([27,1,2,3,7,8]))),pendingComponent:()=>h.jsx(Ve,{title:"Loading placeholders",description:"Preparing template replacement rules."}),validateSearch:or}),OC=je.addChildren([gC,yC,vC,bC,xC,wC,EC,SC,RC,CC,AC,TC,PC,MC,_C,NC]),IC=og({routeTree:OC,defaultPendingComponent:()=>h.jsx(Ve,{title:"Loading page",description:"Preparing the next route."})});function LC(){const e=Zo(n=>n.setSystemTheme),t=Zo(n=>n.setTheme);return c.useEffect(()=>{const n=Vo();return n&&t(n),l1.listenThemeChange(r=>{Vo()||e(r?"dark":"light")},n==null)},[e,t]),h.jsx(G8,{children:h.jsx(ig,{router:IC})})}Zo.setState({theme:qE()});O8();s1.createRoot(document.getElementById("root")).render(h.jsx(M.StrictMode,{children:h.jsx(LC,{})}));export{mp as $,pR as A,bt as B,cp as C,Y4 as D,nc as E,lh as F,ZS as G,A5 as H,J4 as I,Z3 as J,ec as K,Pt as L,$t as M,er as N,oR as O,Es as P,T5 as Q,YS as R,xo as S,se as T,nR as U,AE as V,lf as W,dR as X,Vv as Y,Ir as Z,Ff as _,kv as a,dh as a0,lp as a1,Ki as a2,Rn as a3,Zo as a4,ku as a5,S5 as a6,of as a7,gR as a8,dp as a9,f5 as aA,y3 as aB,TE as aC,ME as aD,NE as aE,Gv as aF,ve as aG,ew as aH,b5 as aI,w5 as aJ,E5 as aK,b3 as aL,x5 as aM,_E as aN,Ha as aO,p5 as aP,c3 as aQ,d5 as aR,R3 as aS,C3 as aT,A3 as aU,De as aV,dC as aa,bl as ab,Wi as ac,fp as ad,We as ae,g5 as af,Zg as ag,y5 as ah,v5 as ai,h3 as aj,Hv as ak,Wv as al,wp as am,GE as an,P5 as ao,m5 as ap,l5 as aq,h5 as ar,C5 as as,q8 as at,Sp as au,PE as av,Jd as aw,R5 as ax,p3 as ay,Ll as az,$v as b,me as c,$e as d,Ft as e,qs as f,br as g,Ee as h,Bt as i,qm as j,rx as k,uh as l,nw as m,hw as n,pw as o,Ae as p,ae as q,Zw as r,zv as s,Ep as t,Vg as u,af as v,Qn as w,yR as x,B3 as y,jl as z};