@nickmeriano/task 0.7.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -25
- package/dist/asks.test.d.ts +17 -0
- package/dist/asks.test.d.ts.map +1 -0
- package/dist/asks.test.js +278 -0
- package/dist/asks.test.js.map +1 -0
- package/dist/check.d.ts +43 -0
- package/dist/check.d.ts.map +1 -0
- package/dist/check.js +403 -0
- package/dist/check.js.map +1 -0
- package/dist/check.test.d.ts +9 -0
- package/dist/check.test.d.ts.map +1 -0
- package/dist/check.test.js +248 -0
- package/dist/check.test.js.map +1 -0
- package/dist/claim-io.d.ts +73 -0
- package/dist/claim-io.d.ts.map +1 -0
- package/dist/claim-io.js +344 -0
- package/dist/claim-io.js.map +1 -0
- package/dist/claim.d.ts +61 -9
- package/dist/claim.d.ts.map +1 -1
- package/dist/claim.js +197 -67
- package/dist/claim.js.map +1 -1
- package/dist/claim.test.d.ts +2 -2
- package/dist/claim.test.js +235 -64
- package/dist/claim.test.js.map +1 -1
- package/dist/cli.js +724 -136
- package/dist/cli.js.map +1 -1
- package/dist/file-store.d.ts +110 -38
- package/dist/file-store.d.ts.map +1 -1
- package/dist/file-store.js +514 -238
- package/dist/file-store.js.map +1 -1
- package/dist/git-serve.d.ts +183 -0
- package/dist/git-serve.d.ts.map +1 -0
- package/dist/git-serve.js +503 -0
- package/dist/git-serve.js.map +1 -0
- package/dist/git-serve.test.d.ts +16 -0
- package/dist/git-serve.test.d.ts.map +1 -0
- package/dist/git-serve.test.js +183 -0
- package/dist/git-serve.test.js.map +1 -0
- package/dist/git.d.ts +65 -0
- package/dist/git.d.ts.map +1 -0
- package/dist/git.js +114 -0
- package/dist/git.js.map +1 -0
- package/dist/id.d.ts +39 -0
- package/dist/id.d.ts.map +1 -0
- package/dist/id.js +67 -0
- package/dist/id.js.map +1 -0
- package/dist/inbox.d.ts +41 -0
- package/dist/inbox.d.ts.map +1 -0
- package/dist/inbox.js +56 -0
- package/dist/inbox.js.map +1 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/overview.d.ts +52 -0
- package/dist/overview.d.ts.map +1 -0
- package/dist/overview.js +61 -0
- package/dist/overview.js.map +1 -0
- package/dist/overview.test.d.ts +8 -0
- package/dist/overview.test.d.ts.map +1 -0
- package/dist/overview.test.js +48 -0
- package/dist/overview.test.js.map +1 -0
- package/dist/promote.test.d.ts +15 -0
- package/dist/promote.test.d.ts.map +1 -0
- package/dist/promote.test.js +104 -0
- package/dist/promote.test.js.map +1 -0
- package/dist/publish.d.ts +2 -17
- package/dist/publish.d.ts.map +1 -1
- package/dist/publish.js +4 -49
- package/dist/publish.js.map +1 -1
- package/dist/search.d.ts +34 -0
- package/dist/search.d.ts.map +1 -0
- package/dist/search.js +79 -0
- package/dist/search.js.map +1 -0
- package/dist/search.test.d.ts +2 -0
- package/dist/search.test.d.ts.map +1 -0
- package/dist/search.test.js +53 -0
- package/dist/search.test.js.map +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +228 -23
- package/dist/server.js.map +1 -1
- package/dist/store.d.ts +43 -63
- package/dist/store.d.ts.map +1 -1
- package/dist/store.js +0 -368
- package/dist/store.js.map +1 -1
- package/dist/store.test.d.ts +1 -2
- package/dist/store.test.d.ts.map +1 -1
- package/dist/store.test.js +148 -106
- package/dist/store.test.js.map +1 -1
- package/dist/ticket-doc.d.ts +74 -5
- package/dist/ticket-doc.d.ts.map +1 -1
- package/dist/ticket-doc.js +229 -15
- package/dist/ticket-doc.js.map +1 -1
- package/dist/types.d.ts +115 -28
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +153 -40
- package/src/asks.test.ts +355 -0
- package/src/check.test.ts +328 -0
- package/src/check.ts +497 -0
- package/src/claim-io.ts +401 -0
- package/src/claim.test.ts +301 -71
- package/src/claim.ts +238 -81
- package/src/cli.ts +740 -131
- package/src/file-store.ts +572 -254
- package/src/git-serve.test.ts +240 -0
- package/src/git-serve.ts +595 -0
- package/src/git.ts +141 -0
- package/src/id.ts +68 -0
- package/src/inbox.ts +77 -0
- package/src/index.ts +4 -2
- package/src/overview.test.ts +52 -0
- package/src/overview.ts +105 -0
- package/src/promote.test.ts +143 -0
- package/src/publish.ts +6 -53
- package/src/search.test.ts +64 -0
- package/src/search.ts +105 -0
- package/src/server.ts +232 -21
- package/src/store.test.ts +166 -116
- package/src/store.ts +46 -444
- package/src/ticket-doc.ts +284 -21
- package/src/types.ts +120 -28
- package/ui/dist/assets/index-BjsorZOU.js +229 -0
- package/ui/dist/assets/index-CoKCUYic.css +1 -0
- package/ui/dist/index.html +2 -2
- package/ui/dist/assets/index-COunM-QN.css +0 -1
- package/ui/dist/assets/index-D4homvrQ.js +0 -229
|
@@ -1,229 +0,0 @@
|
|
|
1
|
-
(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const s of i)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(i){const s={};return i.integrity&&(s.integrity=i.integrity),i.referrerPolicy&&(s.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?s.credentials="include":i.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function r(i){if(i.ep)return;i.ep=!0;const s=n(i);fetch(i.href,s)}})();function QD(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Jb={exports:{}},Nu={};var QE;function hP(){if(QE)return Nu;QE=1;var t=Symbol.for("react.transitional.element"),e=Symbol.for("react.fragment");function n(r,i,s){var a=null;if(s!==void 0&&(a=""+s),i.key!==void 0&&(a=""+i.key),"key"in i){s={};for(var u in i)u!=="key"&&(s[u]=i[u])}else s=i;return i=s.ref,{$$typeof:t,type:r,key:a,ref:i!==void 0?i:null,props:s}}return Nu.Fragment=e,Nu.jsx=n,Nu.jsxs=n,Nu}var YE;function pP(){return YE||(YE=1,Jb.exports=hP()),Jb.exports}var S=pP(),Zb={exports:{}},Te={};var XE;function mP(){if(XE)return Te;XE=1;var t=Symbol.for("react.transitional.element"),e=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.consumer"),a=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),c=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),m=Symbol.for("react.activity"),g=Symbol.iterator;function b(L){return L===null||typeof L!="object"?null:(L=g&&L[g]||L["@@iterator"],typeof L=="function"?L:null)}var v={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},C=Object.assign,E={};function k(L,U,ne){this.props=L,this.context=U,this.refs=E,this.updater=ne||v}k.prototype.isReactComponent={},k.prototype.setState=function(L,U){if(typeof L!="object"&&typeof L!="function"&&L!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,L,U,"setState")},k.prototype.forceUpdate=function(L){this.updater.enqueueForceUpdate(this,L,"forceUpdate")};function T(){}T.prototype=k.prototype;function $(L,U,ne){this.props=L,this.context=U,this.refs=E,this.updater=ne||v}var A=$.prototype=new T;A.constructor=$,C(A,k.prototype),A.isPureReactComponent=!0;var B=Array.isArray;function P(){}var M={H:null,A:null,T:null,S:null},N=Object.prototype.hasOwnProperty;function I(L,U,ne){var le=ne.ref;return{$$typeof:t,type:L,key:U,ref:le!==void 0?le:null,props:ne}}function F(L,U){return I(L.type,U,L.props)}function J(L){return typeof L=="object"&&L!==null&&L.$$typeof===t}function q(L){var U={"=":"=0",":":"=2"};return"$"+L.replace(/[=:]/g,function(ne){return U[ne]})}var ie=/\/+/g;function K(L,U){return typeof L=="object"&&L!==null&&L.key!=null?q(""+L.key):U.toString(36)}function te(L){switch(L.status){case"fulfilled":return L.value;case"rejected":throw L.reason;default:switch(typeof L.status=="string"?L.then(P,P):(L.status="pending",L.then(function(U){L.status==="pending"&&(L.status="fulfilled",L.value=U)},function(U){L.status==="pending"&&(L.status="rejected",L.reason=U)})),L.status){case"fulfilled":return L.value;case"rejected":throw L.reason}}throw L}function O(L,U,ne,le,ue){var fe=typeof L;(fe==="undefined"||fe==="boolean")&&(L=null);var Ee=!1;if(L===null)Ee=!0;else switch(fe){case"bigint":case"string":case"number":Ee=!0;break;case"object":switch(L.$$typeof){case t:case e:Ee=!0;break;case h:return Ee=L._init,O(Ee(L._payload),U,ne,le,ue)}}if(Ee)return ue=ue(L),Ee=le===""?"."+K(L,0):le,B(ue)?(ne="",Ee!=null&&(ne=Ee.replace(ie,"$&/")+"/"),O(ue,U,ne,"",function(kn){return kn})):ue!=null&&(J(ue)&&(ue=F(ue,ne+(ue.key==null||L&&L.key===ue.key?"":(""+ue.key).replace(ie,"$&/")+"/")+Ee)),U.push(ue)),1;Ee=0;var Ve=le===""?".":le+":";if(B(L))for(var Se=0;Se<L.length;Se++)le=L[Se],fe=Ve+K(le,Se),Ee+=O(le,U,ne,fe,ue);else if(Se=b(L),typeof Se=="function")for(L=Se.call(L),Se=0;!(le=L.next()).done;)le=le.value,fe=Ve+K(le,Se++),Ee+=O(le,U,ne,fe,ue);else if(fe==="object"){if(typeof L.then=="function")return O(te(L),U,ne,le,ue);throw U=String(L),Error("Objects are not valid as a React child (found: "+(U==="[object Object]"?"object with keys {"+Object.keys(L).join(", ")+"}":U)+"). If you meant to render a collection of children, use an array instead.")}return Ee}function j(L,U,ne){if(L==null)return L;var le=[],ue=0;return O(L,le,"","",function(fe){return U.call(ne,fe,ue++)}),le}function Y(L){if(L._status===-1){var U=L._result;U=U(),U.then(function(ne){(L._status===0||L._status===-1)&&(L._status=1,L._result=ne)},function(ne){(L._status===0||L._status===-1)&&(L._status=2,L._result=ne)}),L._status===-1&&(L._status=0,L._result=U)}if(L._status===1)return L._result.default;throw L._result}var Z=typeof reportError=="function"?reportError:function(L){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var U=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof L=="object"&&L!==null&&typeof L.message=="string"?String(L.message):String(L),error:L});if(!window.dispatchEvent(U))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",L);return}console.error(L)},H={map:j,forEach:function(L,U,ne){j(L,function(){U.apply(this,arguments)},ne)},count:function(L){var U=0;return j(L,function(){U++}),U},toArray:function(L){return j(L,function(U){return U})||[]},only:function(L){if(!J(L))throw Error("React.Children.only expected to receive a single React element child.");return L}};return Te.Activity=m,Te.Children=H,Te.Component=k,Te.Fragment=n,Te.Profiler=i,Te.PureComponent=$,Te.StrictMode=r,Te.Suspense=c,Te.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=M,Te.__COMPILER_RUNTIME={__proto__:null,c:function(L){return M.H.useMemoCache(L)}},Te.cache=function(L){return function(){return L.apply(null,arguments)}},Te.cacheSignal=function(){return null},Te.cloneElement=function(L,U,ne){if(L==null)throw Error("The argument must be a React element, but you passed "+L+".");var le=C({},L.props),ue=L.key;if(U!=null)for(fe in U.key!==void 0&&(ue=""+U.key),U)!N.call(U,fe)||fe==="key"||fe==="__self"||fe==="__source"||fe==="ref"&&U.ref===void 0||(le[fe]=U[fe]);var fe=arguments.length-2;if(fe===1)le.children=ne;else if(1<fe){for(var Ee=Array(fe),Ve=0;Ve<fe;Ve++)Ee[Ve]=arguments[Ve+2];le.children=Ee}return I(L.type,ue,le)},Te.createContext=function(L){return L={$$typeof:a,_currentValue:L,_currentValue2:L,_threadCount:0,Provider:null,Consumer:null},L.Provider=L,L.Consumer={$$typeof:s,_context:L},L},Te.createElement=function(L,U,ne){var le,ue={},fe=null;if(U!=null)for(le in U.key!==void 0&&(fe=""+U.key),U)N.call(U,le)&&le!=="key"&&le!=="__self"&&le!=="__source"&&(ue[le]=U[le]);var Ee=arguments.length-2;if(Ee===1)ue.children=ne;else if(1<Ee){for(var Ve=Array(Ee),Se=0;Se<Ee;Se++)Ve[Se]=arguments[Se+2];ue.children=Ve}if(L&&L.defaultProps)for(le in Ee=L.defaultProps,Ee)ue[le]===void 0&&(ue[le]=Ee[le]);return I(L,fe,ue)},Te.createRef=function(){return{current:null}},Te.forwardRef=function(L){return{$$typeof:u,render:L}},Te.isValidElement=J,Te.lazy=function(L){return{$$typeof:h,_payload:{_status:-1,_result:L},_init:Y}},Te.memo=function(L,U){return{$$typeof:f,type:L,compare:U===void 0?null:U}},Te.startTransition=function(L){var U=M.T,ne={};M.T=ne;try{var le=L(),ue=M.S;ue!==null&&ue(ne,le),typeof le=="object"&&le!==null&&typeof le.then=="function"&&le.then(P,Z)}catch(fe){Z(fe)}finally{U!==null&&ne.types!==null&&(U.types=ne.types),M.T=U}},Te.unstable_useCacheRefresh=function(){return M.H.useCacheRefresh()},Te.use=function(L){return M.H.use(L)},Te.useActionState=function(L,U,ne){return M.H.useActionState(L,U,ne)},Te.useCallback=function(L,U){return M.H.useCallback(L,U)},Te.useContext=function(L){return M.H.useContext(L)},Te.useDebugValue=function(){},Te.useDeferredValue=function(L,U){return M.H.useDeferredValue(L,U)},Te.useEffect=function(L,U){return M.H.useEffect(L,U)},Te.useEffectEvent=function(L){return M.H.useEffectEvent(L)},Te.useId=function(){return M.H.useId()},Te.useImperativeHandle=function(L,U,ne){return M.H.useImperativeHandle(L,U,ne)},Te.useInsertionEffect=function(L,U){return M.H.useInsertionEffect(L,U)},Te.useLayoutEffect=function(L,U){return M.H.useLayoutEffect(L,U)},Te.useMemo=function(L,U){return M.H.useMemo(L,U)},Te.useOptimistic=function(L,U){return M.H.useOptimistic(L,U)},Te.useReducer=function(L,U,ne){return M.H.useReducer(L,U,ne)},Te.useRef=function(L){return M.H.useRef(L)},Te.useState=function(L){return M.H.useState(L)},Te.useSyncExternalStore=function(L,U,ne){return M.H.useSyncExternalStore(L,U,ne)},Te.useTransition=function(){return M.H.useTransition()},Te.version="19.2.4",Te}var JE;function Wc(){return JE||(JE=1,Zb.exports=mP()),Zb.exports}var D=Wc();const V=QD(D);var e0={exports:{}},Pu={},t0={exports:{}},n0={};var ZE;function gP(){return ZE||(ZE=1,(function(t){function e(O,j){var Y=O.length;O.push(j);e:for(;0<Y;){var Z=Y-1>>>1,H=O[Z];if(0<i(H,j))O[Z]=j,O[Y]=H,Y=Z;else break e}}function n(O){return O.length===0?null:O[0]}function r(O){if(O.length===0)return null;var j=O[0],Y=O.pop();if(Y!==j){O[0]=Y;e:for(var Z=0,H=O.length,L=H>>>1;Z<L;){var U=2*(Z+1)-1,ne=O[U],le=U+1,ue=O[le];if(0>i(ne,Y))le<H&&0>i(ue,ne)?(O[Z]=ue,O[le]=Y,Z=le):(O[Z]=ne,O[U]=Y,Z=U);else if(le<H&&0>i(ue,Y))O[Z]=ue,O[le]=Y,Z=le;else break e}}return j}function i(O,j){var Y=O.sortIndex-j.sortIndex;return Y!==0?Y:O.id-j.id}if(t.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var s=performance;t.unstable_now=function(){return s.now()}}else{var a=Date,u=a.now();t.unstable_now=function(){return a.now()-u}}var c=[],f=[],h=1,m=null,g=3,b=!1,v=!1,C=!1,E=!1,k=typeof setTimeout=="function"?setTimeout:null,T=typeof clearTimeout=="function"?clearTimeout:null,$=typeof setImmediate<"u"?setImmediate:null;function A(O){for(var j=n(f);j!==null;){if(j.callback===null)r(f);else if(j.startTime<=O)r(f),j.sortIndex=j.expirationTime,e(c,j);else break;j=n(f)}}function B(O){if(C=!1,A(O),!v)if(n(c)!==null)v=!0,P||(P=!0,q());else{var j=n(f);j!==null&&te(B,j.startTime-O)}}var P=!1,M=-1,N=5,I=-1;function F(){return E?!0:!(t.unstable_now()-I<N)}function J(){if(E=!1,P){var O=t.unstable_now();I=O;var j=!0;try{e:{v=!1,C&&(C=!1,T(M),M=-1),b=!0;var Y=g;try{t:{for(A(O),m=n(c);m!==null&&!(m.expirationTime>O&&F());){var Z=m.callback;if(typeof Z=="function"){m.callback=null,g=m.priorityLevel;var H=Z(m.expirationTime<=O);if(O=t.unstable_now(),typeof H=="function"){m.callback=H,A(O),j=!0;break t}m===n(c)&&r(c),A(O)}else r(c);m=n(c)}if(m!==null)j=!0;else{var L=n(f);L!==null&&te(B,L.startTime-O),j=!1}}break e}finally{m=null,g=Y,b=!1}j=void 0}}finally{j?q():P=!1}}}var q;if(typeof $=="function")q=function(){$(J)};else if(typeof MessageChannel<"u"){var ie=new MessageChannel,K=ie.port2;ie.port1.onmessage=J,q=function(){K.postMessage(null)}}else q=function(){k(J,0)};function te(O,j){M=k(function(){O(t.unstable_now())},j)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(O){O.callback=null},t.unstable_forceFrameRate=function(O){0>O||125<O?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):N=0<O?Math.floor(1e3/O):5},t.unstable_getCurrentPriorityLevel=function(){return g},t.unstable_next=function(O){switch(g){case 1:case 2:case 3:var j=3;break;default:j=g}var Y=g;g=j;try{return O()}finally{g=Y}},t.unstable_requestPaint=function(){E=!0},t.unstable_runWithPriority=function(O,j){switch(O){case 1:case 2:case 3:case 4:case 5:break;default:O=3}var Y=g;g=O;try{return j()}finally{g=Y}},t.unstable_scheduleCallback=function(O,j,Y){var Z=t.unstable_now();switch(typeof Y=="object"&&Y!==null?(Y=Y.delay,Y=typeof Y=="number"&&0<Y?Z+Y:Z):Y=Z,O){case 1:var H=-1;break;case 2:H=250;break;case 5:H=1073741823;break;case 4:H=1e4;break;default:H=5e3}return H=Y+H,O={id:h++,callback:j,priorityLevel:O,startTime:Y,expirationTime:H,sortIndex:-1},Y>Z?(O.sortIndex=Y,e(f,O),n(c)===null&&O===n(f)&&(C?(T(M),M=-1):C=!0,te(B,Y-Z))):(O.sortIndex=H,e(c,O),v||b||(v=!0,P||(P=!0,q()))),O},t.unstable_shouldYield=F,t.unstable_wrapCallback=function(O){var j=g;return function(){var Y=g;g=j;try{return O.apply(this,arguments)}finally{g=Y}}}})(n0)),n0}var e2;function bP(){return e2||(e2=1,t0.exports=gP()),t0.exports}var r0={exports:{}},an={};var t2;function yP(){if(t2)return an;t2=1;var t=Wc();function e(c){var f="https://react.dev/errors/"+c;if(1<arguments.length){f+="?args[]="+encodeURIComponent(arguments[1]);for(var h=2;h<arguments.length;h++)f+="&args[]="+encodeURIComponent(arguments[h])}return"Minified React error #"+c+"; visit "+f+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function n(){}var r={d:{f:n,r:function(){throw Error(e(522))},D:n,C:n,L:n,m:n,X:n,S:n,M:n},p:0,findDOMNode:null},i=Symbol.for("react.portal");function s(c,f,h){var m=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:i,key:m==null?null:""+m,children:c,containerInfo:f,implementation:h}}var a=t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function u(c,f){if(c==="font")return"";if(typeof f=="string")return f==="use-credentials"?f:""}return an.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=r,an.createPortal=function(c,f){var h=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!f||f.nodeType!==1&&f.nodeType!==9&&f.nodeType!==11)throw Error(e(299));return s(c,f,null,h)},an.flushSync=function(c){var f=a.T,h=r.p;try{if(a.T=null,r.p=2,c)return c()}finally{a.T=f,r.p=h,r.d.f()}},an.preconnect=function(c,f){typeof c=="string"&&(f?(f=f.crossOrigin,f=typeof f=="string"?f==="use-credentials"?f:"":void 0):f=null,r.d.C(c,f))},an.prefetchDNS=function(c){typeof c=="string"&&r.d.D(c)},an.preinit=function(c,f){if(typeof c=="string"&&f&&typeof f.as=="string"){var h=f.as,m=u(h,f.crossOrigin),g=typeof f.integrity=="string"?f.integrity:void 0,b=typeof f.fetchPriority=="string"?f.fetchPriority:void 0;h==="style"?r.d.S(c,typeof f.precedence=="string"?f.precedence:void 0,{crossOrigin:m,integrity:g,fetchPriority:b}):h==="script"&&r.d.X(c,{crossOrigin:m,integrity:g,fetchPriority:b,nonce:typeof f.nonce=="string"?f.nonce:void 0})}},an.preinitModule=function(c,f){if(typeof c=="string")if(typeof f=="object"&&f!==null){if(f.as==null||f.as==="script"){var h=u(f.as,f.crossOrigin);r.d.M(c,{crossOrigin:h,integrity:typeof f.integrity=="string"?f.integrity:void 0,nonce:typeof f.nonce=="string"?f.nonce:void 0})}}else f==null&&r.d.M(c)},an.preload=function(c,f){if(typeof c=="string"&&typeof f=="object"&&f!==null&&typeof f.as=="string"){var h=f.as,m=u(h,f.crossOrigin);r.d.L(c,h,{crossOrigin:m,integrity:typeof f.integrity=="string"?f.integrity:void 0,nonce:typeof f.nonce=="string"?f.nonce:void 0,type:typeof f.type=="string"?f.type:void 0,fetchPriority:typeof f.fetchPriority=="string"?f.fetchPriority:void 0,referrerPolicy:typeof f.referrerPolicy=="string"?f.referrerPolicy:void 0,imageSrcSet:typeof f.imageSrcSet=="string"?f.imageSrcSet:void 0,imageSizes:typeof f.imageSizes=="string"?f.imageSizes:void 0,media:typeof f.media=="string"?f.media:void 0})}},an.preloadModule=function(c,f){if(typeof c=="string")if(f){var h=u(f.as,f.crossOrigin);r.d.m(c,{as:typeof f.as=="string"&&f.as!=="script"?f.as:void 0,crossOrigin:h,integrity:typeof f.integrity=="string"?f.integrity:void 0})}else r.d.m(c)},an.requestFormReset=function(c){r.d.r(c)},an.unstable_batchedUpdates=function(c,f){return c(f)},an.useFormState=function(c,f,h){return a.H.useFormState(c,f,h)},an.useFormStatus=function(){return a.H.useHostTransitionStatus()},an.version="19.2.4",an}var n2;function YD(){if(n2)return r0.exports;n2=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),r0.exports=yP(),r0.exports}var r2;function vP(){if(r2)return Pu;r2=1;var t=bP(),e=Wc(),n=YD();function r(o){var l="https://react.dev/errors/"+o;if(1<arguments.length){l+="?args[]="+encodeURIComponent(arguments[1]);for(var d=2;d<arguments.length;d++)l+="&args[]="+encodeURIComponent(arguments[d])}return"Minified React error #"+o+"; visit "+l+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function i(o){return!(!o||o.nodeType!==1&&o.nodeType!==9&&o.nodeType!==11)}function s(o){var l=o,d=o;if(o.alternate)for(;l.return;)l=l.return;else{o=l;do l=o,(l.flags&4098)!==0&&(d=l.return),o=l.return;while(o)}return l.tag===3?d:null}function a(o){if(o.tag===13){var l=o.memoizedState;if(l===null&&(o=o.alternate,o!==null&&(l=o.memoizedState)),l!==null)return l.dehydrated}return null}function u(o){if(o.tag===31){var l=o.memoizedState;if(l===null&&(o=o.alternate,o!==null&&(l=o.memoizedState)),l!==null)return l.dehydrated}return null}function c(o){if(s(o)!==o)throw Error(r(188))}function f(o){var l=o.alternate;if(!l){if(l=s(o),l===null)throw Error(r(188));return l!==o?null:o}for(var d=o,p=l;;){var y=d.return;if(y===null)break;var x=y.alternate;if(x===null){if(p=y.return,p!==null){d=p;continue}break}if(y.child===x.child){for(x=y.child;x;){if(x===d)return c(y),o;if(x===p)return c(y),l;x=x.sibling}throw Error(r(188))}if(d.return!==p.return)d=y,p=x;else{for(var w=!1,R=y.child;R;){if(R===d){w=!0,d=y,p=x;break}if(R===p){w=!0,p=y,d=x;break}R=R.sibling}if(!w){for(R=x.child;R;){if(R===d){w=!0,d=x,p=y;break}if(R===p){w=!0,p=x,d=y;break}R=R.sibling}if(!w)throw Error(r(189))}}if(d.alternate!==p)throw Error(r(190))}if(d.tag!==3)throw Error(r(188));return d.stateNode.current===d?o:l}function h(o){var l=o.tag;if(l===5||l===26||l===27||l===6)return o;for(o=o.child;o!==null;){if(l=h(o),l!==null)return l;o=o.sibling}return null}var m=Object.assign,g=Symbol.for("react.element"),b=Symbol.for("react.transitional.element"),v=Symbol.for("react.portal"),C=Symbol.for("react.fragment"),E=Symbol.for("react.strict_mode"),k=Symbol.for("react.profiler"),T=Symbol.for("react.consumer"),$=Symbol.for("react.context"),A=Symbol.for("react.forward_ref"),B=Symbol.for("react.suspense"),P=Symbol.for("react.suspense_list"),M=Symbol.for("react.memo"),N=Symbol.for("react.lazy"),I=Symbol.for("react.activity"),F=Symbol.for("react.memo_cache_sentinel"),J=Symbol.iterator;function q(o){return o===null||typeof o!="object"?null:(o=J&&o[J]||o["@@iterator"],typeof o=="function"?o:null)}var ie=Symbol.for("react.client.reference");function K(o){if(o==null)return null;if(typeof o=="function")return o.$$typeof===ie?null:o.displayName||o.name||null;if(typeof o=="string")return o;switch(o){case C:return"Fragment";case k:return"Profiler";case E:return"StrictMode";case B:return"Suspense";case P:return"SuspenseList";case I:return"Activity"}if(typeof o=="object")switch(o.$$typeof){case v:return"Portal";case $:return o.displayName||"Context";case T:return(o._context.displayName||"Context")+".Consumer";case A:var l=o.render;return o=o.displayName,o||(o=l.displayName||l.name||"",o=o!==""?"ForwardRef("+o+")":"ForwardRef"),o;case M:return l=o.displayName||null,l!==null?l:K(o.type)||"Memo";case N:l=o._payload,o=o._init;try{return K(o(l))}catch{}}return null}var te=Array.isArray,O=e.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,j=n.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Y={pending:!1,data:null,method:null,action:null},Z=[],H=-1;function L(o){return{current:o}}function U(o){0>H||(o.current=Z[H],Z[H]=null,H--)}function ne(o,l){H++,Z[H]=o.current,o.current=l}var le=L(null),ue=L(null),fe=L(null),Ee=L(null);function Ve(o,l){switch(ne(fe,l),ne(ue,o),ne(le,null),l.nodeType){case 9:case 11:o=(o=l.documentElement)&&(o=o.namespaceURI)?yE(o):0;break;default:if(o=l.tagName,l=l.namespaceURI)l=yE(l),o=vE(l,o);else switch(o){case"svg":o=1;break;case"math":o=2;break;default:o=0}}U(le),ne(le,o)}function Se(){U(le),U(ue),U(fe)}function kn(o){o.memoizedState!==null&&ne(Ee,o);var l=le.current,d=vE(l,o.type);l!==d&&(ne(ue,o),ne(le,d))}function sn(o){ue.current===o&&(U(le),U(ue)),Ee.current===o&&(U(Ee),Au._currentValue=Y)}var mn,gr;function jt(o){if(mn===void 0)try{throw Error()}catch(d){var l=d.stack.trim().match(/\n( *(at )?)/);mn=l&&l[1]||"",gr=-1<d.stack.indexOf(`
|
|
2
|
-
at`)?" (<anonymous>)":-1<d.stack.indexOf("@")?"@unknown:0:0":""}return`
|
|
3
|
-
`+mn+o+gr}var to=!1;function Ie(o,l){if(!o||to)return"";to=!0;var d=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var p={DetermineComponentFrameRoot:function(){try{if(l){var oe=function(){throw Error()};if(Object.defineProperty(oe.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(oe,[])}catch(ee){var X=ee}Reflect.construct(o,[],oe)}else{try{oe.call()}catch(ee){X=ee}o.call(oe.prototype)}}else{try{throw Error()}catch(ee){X=ee}(oe=o())&&typeof oe.catch=="function"&&oe.catch(function(){})}}catch(ee){if(ee&&X&&typeof ee.stack=="string")return[ee.stack,X.stack]}return[null,null]}};p.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var y=Object.getOwnPropertyDescriptor(p.DetermineComponentFrameRoot,"name");y&&y.configurable&&Object.defineProperty(p.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var x=p.DetermineComponentFrameRoot(),w=x[0],R=x[1];if(w&&R){var z=w.split(`
|
|
4
|
-
`),Q=R.split(`
|
|
5
|
-
`);for(y=p=0;p<z.length&&!z[p].includes("DetermineComponentFrameRoot");)p++;for(;y<Q.length&&!Q[y].includes("DetermineComponentFrameRoot");)y++;if(p===z.length||y===Q.length)for(p=z.length-1,y=Q.length-1;1<=p&&0<=y&&z[p]!==Q[y];)y--;for(;1<=p&&0<=y;p--,y--)if(z[p]!==Q[y]){if(p!==1||y!==1)do if(p--,y--,0>y||z[p]!==Q[y]){var re=`
|
|
6
|
-
`+z[p].replace(" at new "," at ");return o.displayName&&re.includes("<anonymous>")&&(re=re.replace("<anonymous>",o.displayName)),re}while(1<=p&&0<=y);break}}}finally{to=!1,Error.prepareStackTrace=d}return(d=o?o.displayName||o.name:"")?jt(d):""}function ji(o,l){switch(o.tag){case 26:case 27:case 5:return jt(o.type);case 16:return jt("Lazy");case 13:return o.child!==l&&l!==null?jt("Suspense Fallback"):jt("Suspense");case 19:return jt("SuspenseList");case 0:case 15:return Ie(o.type,!1);case 11:return Ie(o.type.render,!1);case 1:return Ie(o.type,!0);case 31:return jt("Activity");default:return""}}function Jr(o){try{var l="",d=null;do l+=ji(o,d),d=o,o=o.return;while(o);return l}catch(p){return`
|
|
7
|
-
Error generating stack: `+p.message+`
|
|
8
|
-
`+p.stack}}var no=Object.prototype.hasOwnProperty,br=t.unstable_scheduleCallback,Kl=t.unstable_cancelCallback,yd=t.unstable_shouldYield,Fm=t.unstable_requestPaint,on=t.unstable_now,ot=t.unstable_getCurrentPriorityLevel,qt=t.unstable_ImmediatePriority,Rr=t.unstable_UserBlockingPriority,ya=t.unstable_NormalPriority,W8=t.unstable_LowPriority,J1=t.unstable_IdlePriority,Q8=t.log,Y8=t.unstable_setDisableYieldValue,jl=null,In=null;function _i(o){if(typeof Q8=="function"&&Y8(o),In&&typeof In.setStrictMode=="function")try{In.setStrictMode(jl,o)}catch{}}var Fn=Math.clz32?Math.clz32:Z8,X8=Math.log,J8=Math.LN2;function Z8(o){return o>>>=0,o===0?32:31-(X8(o)/J8|0)|0}var vd=256,xd=262144,Cd=4194304;function ro(o){var l=o&42;if(l!==0)return l;switch(o&-o){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return o&261888;case 262144:case 524288:case 1048576:case 2097152:return o&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return o&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return o}}function Ed(o,l,d){var p=o.pendingLanes;if(p===0)return 0;var y=0,x=o.suspendedLanes,w=o.pingedLanes;o=o.warmLanes;var R=p&134217727;return R!==0?(p=R&~x,p!==0?y=ro(p):(w&=R,w!==0?y=ro(w):d||(d=R&~o,d!==0&&(y=ro(d))))):(R=p&~x,R!==0?y=ro(R):w!==0?y=ro(w):d||(d=p&~o,d!==0&&(y=ro(d)))),y===0?0:l!==0&&l!==y&&(l&x)===0&&(x=y&-y,d=l&-l,x>=d||x===32&&(d&4194048)!==0)?l:y}function _l(o,l){return(o.pendingLanes&~(o.suspendedLanes&~o.pingedLanes)&l)===0}function eR(o,l){switch(o){case 1:case 2:case 4:case 8:case 64:return l+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return l+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Z1(){var o=Cd;return Cd<<=1,(Cd&62914560)===0&&(Cd=4194304),o}function Km(o){for(var l=[],d=0;31>d;d++)l.push(o);return l}function Hl(o,l){o.pendingLanes|=l,l!==268435456&&(o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0)}function tR(o,l,d,p,y,x){var w=o.pendingLanes;o.pendingLanes=d,o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0,o.expiredLanes&=d,o.entangledLanes&=d,o.errorRecoveryDisabledLanes&=d,o.shellSuspendCounter=0;var R=o.entanglements,z=o.expirationTimes,Q=o.hiddenUpdates;for(d=w&~d;0<d;){var re=31-Fn(d),oe=1<<re;R[re]=0,z[re]=-1;var X=Q[re];if(X!==null)for(Q[re]=null,re=0;re<X.length;re++){var ee=X[re];ee!==null&&(ee.lane&=-536870913)}d&=~oe}p!==0&&ev(o,p,0),x!==0&&y===0&&o.tag!==0&&(o.suspendedLanes|=x&~(w&~l))}function ev(o,l,d){o.pendingLanes|=l,o.suspendedLanes&=~l;var p=31-Fn(l);o.entangledLanes|=l,o.entanglements[p]=o.entanglements[p]|1073741824|d&261930}function tv(o,l){var d=o.entangledLanes|=l;for(o=o.entanglements;d;){var p=31-Fn(d),y=1<<p;y&l|o[p]&l&&(o[p]|=l),d&=~y}}function nv(o,l){var d=l&-l;return d=(d&42)!==0?1:jm(d),(d&(o.suspendedLanes|l))!==0?0:d}function jm(o){switch(o){case 2:o=1;break;case 8:o=4;break;case 32:o=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:o=128;break;case 268435456:o=134217728;break;default:o=0}return o}function _m(o){return o&=-o,2<o?8<o?(o&134217727)!==0?32:268435456:8:2}function rv(){var o=j.p;return o!==0?o:(o=window.event,o===void 0?32:_E(o.type))}function iv(o,l){var d=j.p;try{return j.p=o,l()}finally{j.p=d}}var Hi=Math.random().toString(36).slice(2),Gt="__reactFiber$"+Hi,Dn="__reactProps$"+Hi,va="__reactContainer$"+Hi,Hm="__reactEvents$"+Hi,nR="__reactListeners$"+Hi,rR="__reactHandles$"+Hi,sv="__reactResources$"+Hi,Vl="__reactMarker$"+Hi;function Vm(o){delete o[Gt],delete o[Dn],delete o[Hm],delete o[nR],delete o[rR]}function xa(o){var l=o[Gt];if(l)return l;for(var d=o.parentNode;d;){if(l=d[va]||d[Gt]){if(d=l.alternate,l.child!==null||d!==null&&d.child!==null)for(o=wE(o);o!==null;){if(d=o[Gt])return d;o=wE(o)}return l}o=d,d=o.parentNode}return null}function Ca(o){if(o=o[Gt]||o[va]){var l=o.tag;if(l===5||l===6||l===13||l===31||l===26||l===27||l===3)return o}return null}function Ul(o){var l=o.tag;if(l===5||l===26||l===27||l===6)return o.stateNode;throw Error(r(33))}function Ea(o){var l=o[sv];return l||(l=o[sv]={hoistableStyles:new Map,hoistableScripts:new Map}),l}function _t(o){o[Vl]=!0}var ov=new Set,av={};function io(o,l){ka(o,l),ka(o+"Capture",l)}function ka(o,l){for(av[o]=l,o=0;o<l.length;o++)ov.add(l[o])}var iR=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),lv={},uv={};function sR(o){return no.call(uv,o)?!0:no.call(lv,o)?!1:iR.test(o)?uv[o]=!0:(lv[o]=!0,!1)}function kd(o,l,d){if(sR(l))if(d===null)o.removeAttribute(l);else{switch(typeof d){case"undefined":case"function":case"symbol":o.removeAttribute(l);return;case"boolean":var p=l.toLowerCase().slice(0,5);if(p!=="data-"&&p!=="aria-"){o.removeAttribute(l);return}}o.setAttribute(l,""+d)}}function Dd(o,l,d){if(d===null)o.removeAttribute(l);else{switch(typeof d){case"undefined":case"function":case"symbol":case"boolean":o.removeAttribute(l);return}o.setAttribute(l,""+d)}}function Zr(o,l,d,p){if(p===null)o.removeAttribute(d);else{switch(typeof p){case"undefined":case"function":case"symbol":case"boolean":o.removeAttribute(d);return}o.setAttributeNS(l,d,""+p)}}function Xn(o){switch(typeof o){case"bigint":case"boolean":case"number":case"string":case"undefined":return o;case"object":return o;default:return""}}function cv(o){var l=o.type;return(o=o.nodeName)&&o.toLowerCase()==="input"&&(l==="checkbox"||l==="radio")}function oR(o,l,d){var p=Object.getOwnPropertyDescriptor(o.constructor.prototype,l);if(!o.hasOwnProperty(l)&&typeof p<"u"&&typeof p.get=="function"&&typeof p.set=="function"){var y=p.get,x=p.set;return Object.defineProperty(o,l,{configurable:!0,get:function(){return y.call(this)},set:function(w){d=""+w,x.call(this,w)}}),Object.defineProperty(o,l,{enumerable:p.enumerable}),{getValue:function(){return d},setValue:function(w){d=""+w},stopTracking:function(){o._valueTracker=null,delete o[l]}}}}function Um(o){if(!o._valueTracker){var l=cv(o)?"checked":"value";o._valueTracker=oR(o,l,""+o[l])}}function dv(o){if(!o)return!1;var l=o._valueTracker;if(!l)return!0;var d=l.getValue(),p="";return o&&(p=cv(o)?o.checked?"true":"false":o.value),o=p,o!==d?(l.setValue(o),!0):!1}function Sd(o){if(o=o||(typeof document<"u"?document:void 0),typeof o>"u")return null;try{return o.activeElement||o.body}catch{return o.body}}var aR=/[\n"\\]/g;function Jn(o){return o.replace(aR,function(l){return"\\"+l.charCodeAt(0).toString(16)+" "})}function qm(o,l,d,p,y,x,w,R){o.name="",w!=null&&typeof w!="function"&&typeof w!="symbol"&&typeof w!="boolean"?o.type=w:o.removeAttribute("type"),l!=null?w==="number"?(l===0&&o.value===""||o.value!=l)&&(o.value=""+Xn(l)):o.value!==""+Xn(l)&&(o.value=""+Xn(l)):w!=="submit"&&w!=="reset"||o.removeAttribute("value"),l!=null?Gm(o,w,Xn(l)):d!=null?Gm(o,w,Xn(d)):p!=null&&o.removeAttribute("value"),y==null&&x!=null&&(o.defaultChecked=!!x),y!=null&&(o.checked=y&&typeof y!="function"&&typeof y!="symbol"),R!=null&&typeof R!="function"&&typeof R!="symbol"&&typeof R!="boolean"?o.name=""+Xn(R):o.removeAttribute("name")}function fv(o,l,d,p,y,x,w,R){if(x!=null&&typeof x!="function"&&typeof x!="symbol"&&typeof x!="boolean"&&(o.type=x),l!=null||d!=null){if(!(x!=="submit"&&x!=="reset"||l!=null)){Um(o);return}d=d!=null?""+Xn(d):"",l=l!=null?""+Xn(l):d,R||l===o.value||(o.value=l),o.defaultValue=l}p=p??y,p=typeof p!="function"&&typeof p!="symbol"&&!!p,o.checked=R?o.checked:!!p,o.defaultChecked=!!p,w!=null&&typeof w!="function"&&typeof w!="symbol"&&typeof w!="boolean"&&(o.name=w),Um(o)}function Gm(o,l,d){l==="number"&&Sd(o.ownerDocument)===o||o.defaultValue===""+d||(o.defaultValue=""+d)}function Da(o,l,d,p){if(o=o.options,l){l={};for(var y=0;y<d.length;y++)l["$"+d[y]]=!0;for(d=0;d<o.length;d++)y=l.hasOwnProperty("$"+o[d].value),o[d].selected!==y&&(o[d].selected=y),y&&p&&(o[d].defaultSelected=!0)}else{for(d=""+Xn(d),l=null,y=0;y<o.length;y++){if(o[y].value===d){o[y].selected=!0,p&&(o[y].defaultSelected=!0);return}l!==null||o[y].disabled||(l=o[y])}l!==null&&(l.selected=!0)}}function hv(o,l,d){if(l!=null&&(l=""+Xn(l),l!==o.value&&(o.value=l),d==null)){o.defaultValue!==l&&(o.defaultValue=l);return}o.defaultValue=d!=null?""+Xn(d):""}function pv(o,l,d,p){if(l==null){if(p!=null){if(d!=null)throw Error(r(92));if(te(p)){if(1<p.length)throw Error(r(93));p=p[0]}d=p}d==null&&(d=""),l=d}d=Xn(l),o.defaultValue=d,p=o.textContent,p===d&&p!==""&&p!==null&&(o.value=p),Um(o)}function Sa(o,l){if(l){var d=o.firstChild;if(d&&d===o.lastChild&&d.nodeType===3){d.nodeValue=l;return}}o.textContent=l}var lR=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function mv(o,l,d){var p=l.indexOf("--")===0;d==null||typeof d=="boolean"||d===""?p?o.setProperty(l,""):l==="float"?o.cssFloat="":o[l]="":p?o.setProperty(l,d):typeof d!="number"||d===0||lR.has(l)?l==="float"?o.cssFloat=d:o[l]=(""+d).trim():o[l]=d+"px"}function gv(o,l,d){if(l!=null&&typeof l!="object")throw Error(r(62));if(o=o.style,d!=null){for(var p in d)!d.hasOwnProperty(p)||l!=null&&l.hasOwnProperty(p)||(p.indexOf("--")===0?o.setProperty(p,""):p==="float"?o.cssFloat="":o[p]="");for(var y in l)p=l[y],l.hasOwnProperty(y)&&d[y]!==p&&mv(o,y,p)}else for(var x in l)l.hasOwnProperty(x)&&mv(o,x,l[x])}function Wm(o){if(o.indexOf("-")===-1)return!1;switch(o){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var uR=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),cR=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function wd(o){return cR.test(""+o)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":o}function ei(){}var Qm=null;function Ym(o){return o=o.target||o.srcElement||window,o.correspondingUseElement&&(o=o.correspondingUseElement),o.nodeType===3?o.parentNode:o}var wa=null,$a=null;function bv(o){var l=Ca(o);if(l&&(o=l.stateNode)){var d=o[Dn]||null;e:switch(o=l.stateNode,l.type){case"input":if(qm(o,d.value,d.defaultValue,d.defaultValue,d.checked,d.defaultChecked,d.type,d.name),l=d.name,d.type==="radio"&&l!=null){for(d=o;d.parentNode;)d=d.parentNode;for(d=d.querySelectorAll('input[name="'+Jn(""+l)+'"][type="radio"]'),l=0;l<d.length;l++){var p=d[l];if(p!==o&&p.form===o.form){var y=p[Dn]||null;if(!y)throw Error(r(90));qm(p,y.value,y.defaultValue,y.defaultValue,y.checked,y.defaultChecked,y.type,y.name)}}for(l=0;l<d.length;l++)p=d[l],p.form===o.form&&dv(p)}break e;case"textarea":hv(o,d.value,d.defaultValue);break e;case"select":l=d.value,l!=null&&Da(o,!!d.multiple,l,!1)}}}var Xm=!1;function yv(o,l,d){if(Xm)return o(l,d);Xm=!0;try{var p=o(l);return p}finally{if(Xm=!1,(wa!==null||$a!==null)&&(pf(),wa&&(l=wa,o=$a,$a=wa=null,bv(l),o)))for(l=0;l<o.length;l++)bv(o[l])}}function ql(o,l){var d=o.stateNode;if(d===null)return null;var p=d[Dn]||null;if(p===null)return null;d=p[l];e:switch(l){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(p=!p.disabled)||(o=o.type,p=!(o==="button"||o==="input"||o==="select"||o==="textarea")),o=!p;break e;default:o=!1}if(o)return null;if(d&&typeof d!="function")throw Error(r(231,l,typeof d));return d}var ti=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Jm=!1;if(ti)try{var Gl={};Object.defineProperty(Gl,"passive",{get:function(){Jm=!0}}),window.addEventListener("test",Gl,Gl),window.removeEventListener("test",Gl,Gl)}catch{Jm=!1}var Vi=null,Zm=null,$d=null;function vv(){if($d)return $d;var o,l=Zm,d=l.length,p,y="value"in Vi?Vi.value:Vi.textContent,x=y.length;for(o=0;o<d&&l[o]===y[o];o++);var w=d-o;for(p=1;p<=w&&l[d-p]===y[x-p];p++);return $d=y.slice(o,1<p?1-p:void 0)}function Td(o){var l=o.keyCode;return"charCode"in o?(o=o.charCode,o===0&&l===13&&(o=13)):o=l,o===10&&(o=13),32<=o||o===13?o:0}function Ad(){return!0}function xv(){return!1}function Sn(o){function l(d,p,y,x,w){this._reactName=d,this._targetInst=y,this.type=p,this.nativeEvent=x,this.target=w,this.currentTarget=null;for(var R in o)o.hasOwnProperty(R)&&(d=o[R],this[R]=d?d(x):x[R]);return this.isDefaultPrevented=(x.defaultPrevented!=null?x.defaultPrevented:x.returnValue===!1)?Ad:xv,this.isPropagationStopped=xv,this}return m(l.prototype,{preventDefault:function(){this.defaultPrevented=!0;var d=this.nativeEvent;d&&(d.preventDefault?d.preventDefault():typeof d.returnValue!="unknown"&&(d.returnValue=!1),this.isDefaultPrevented=Ad)},stopPropagation:function(){var d=this.nativeEvent;d&&(d.stopPropagation?d.stopPropagation():typeof d.cancelBubble!="unknown"&&(d.cancelBubble=!0),this.isPropagationStopped=Ad)},persist:function(){},isPersistent:Ad}),l}var so={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(o){return o.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Bd=Sn(so),Wl=m({},so,{view:0,detail:0}),dR=Sn(Wl),eg,tg,Ql,Md=m({},Wl,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:rg,button:0,buttons:0,relatedTarget:function(o){return o.relatedTarget===void 0?o.fromElement===o.srcElement?o.toElement:o.fromElement:o.relatedTarget},movementX:function(o){return"movementX"in o?o.movementX:(o!==Ql&&(Ql&&o.type==="mousemove"?(eg=o.screenX-Ql.screenX,tg=o.screenY-Ql.screenY):tg=eg=0,Ql=o),eg)},movementY:function(o){return"movementY"in o?o.movementY:tg}}),Cv=Sn(Md),fR=m({},Md,{dataTransfer:0}),hR=Sn(fR),pR=m({},Wl,{relatedTarget:0}),ng=Sn(pR),mR=m({},so,{animationName:0,elapsedTime:0,pseudoElement:0}),gR=Sn(mR),bR=m({},so,{clipboardData:function(o){return"clipboardData"in o?o.clipboardData:window.clipboardData}}),yR=Sn(bR),vR=m({},so,{data:0}),Ev=Sn(vR),xR={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},CR={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},ER={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function kR(o){var l=this.nativeEvent;return l.getModifierState?l.getModifierState(o):(o=ER[o])?!!l[o]:!1}function rg(){return kR}var DR=m({},Wl,{key:function(o){if(o.key){var l=xR[o.key]||o.key;if(l!=="Unidentified")return l}return o.type==="keypress"?(o=Td(o),o===13?"Enter":String.fromCharCode(o)):o.type==="keydown"||o.type==="keyup"?CR[o.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:rg,charCode:function(o){return o.type==="keypress"?Td(o):0},keyCode:function(o){return o.type==="keydown"||o.type==="keyup"?o.keyCode:0},which:function(o){return o.type==="keypress"?Td(o):o.type==="keydown"||o.type==="keyup"?o.keyCode:0}}),SR=Sn(DR),wR=m({},Md,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),kv=Sn(wR),$R=m({},Wl,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:rg}),TR=Sn($R),AR=m({},so,{propertyName:0,elapsedTime:0,pseudoElement:0}),BR=Sn(AR),MR=m({},Md,{deltaX:function(o){return"deltaX"in o?o.deltaX:"wheelDeltaX"in o?-o.wheelDeltaX:0},deltaY:function(o){return"deltaY"in o?o.deltaY:"wheelDeltaY"in o?-o.wheelDeltaY:"wheelDelta"in o?-o.wheelDelta:0},deltaZ:0,deltaMode:0}),RR=Sn(MR),NR=m({},so,{newState:0,oldState:0}),PR=Sn(NR),OR=[9,13,27,32],ig=ti&&"CompositionEvent"in window,Yl=null;ti&&"documentMode"in document&&(Yl=document.documentMode);var LR=ti&&"TextEvent"in window&&!Yl,Dv=ti&&(!ig||Yl&&8<Yl&&11>=Yl),Sv=" ",wv=!1;function $v(o,l){switch(o){case"keyup":return OR.indexOf(l.keyCode)!==-1;case"keydown":return l.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Tv(o){return o=o.detail,typeof o=="object"&&"data"in o?o.data:null}var Ta=!1;function zR(o,l){switch(o){case"compositionend":return Tv(l);case"keypress":return l.which!==32?null:(wv=!0,Sv);case"textInput":return o=l.data,o===Sv&&wv?null:o;default:return null}}function IR(o,l){if(Ta)return o==="compositionend"||!ig&&$v(o,l)?(o=vv(),$d=Zm=Vi=null,Ta=!1,o):null;switch(o){case"paste":return null;case"keypress":if(!(l.ctrlKey||l.altKey||l.metaKey)||l.ctrlKey&&l.altKey){if(l.char&&1<l.char.length)return l.char;if(l.which)return String.fromCharCode(l.which)}return null;case"compositionend":return Dv&&l.locale!=="ko"?null:l.data;default:return null}}var FR={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Av(o){var l=o&&o.nodeName&&o.nodeName.toLowerCase();return l==="input"?!!FR[o.type]:l==="textarea"}function Bv(o,l,d,p){wa?$a?$a.push(p):$a=[p]:wa=p,l=Cf(l,"onChange"),0<l.length&&(d=new Bd("onChange","change",null,d,p),o.push({event:d,listeners:l}))}var Xl=null,Jl=null;function KR(o){fE(o,0)}function Rd(o){var l=Ul(o);if(dv(l))return o}function Mv(o,l){if(o==="change")return l}var Rv=!1;if(ti){var sg;if(ti){var og="oninput"in document;if(!og){var Nv=document.createElement("div");Nv.setAttribute("oninput","return;"),og=typeof Nv.oninput=="function"}sg=og}else sg=!1;Rv=sg&&(!document.documentMode||9<document.documentMode)}function Pv(){Xl&&(Xl.detachEvent("onpropertychange",Ov),Jl=Xl=null)}function Ov(o){if(o.propertyName==="value"&&Rd(Jl)){var l=[];Bv(l,Jl,o,Ym(o)),yv(KR,l)}}function jR(o,l,d){o==="focusin"?(Pv(),Xl=l,Jl=d,Xl.attachEvent("onpropertychange",Ov)):o==="focusout"&&Pv()}function _R(o){if(o==="selectionchange"||o==="keyup"||o==="keydown")return Rd(Jl)}function HR(o,l){if(o==="click")return Rd(l)}function VR(o,l){if(o==="input"||o==="change")return Rd(l)}function UR(o,l){return o===l&&(o!==0||1/o===1/l)||o!==o&&l!==l}var Kn=typeof Object.is=="function"?Object.is:UR;function Zl(o,l){if(Kn(o,l))return!0;if(typeof o!="object"||o===null||typeof l!="object"||l===null)return!1;var d=Object.keys(o),p=Object.keys(l);if(d.length!==p.length)return!1;for(p=0;p<d.length;p++){var y=d[p];if(!no.call(l,y)||!Kn(o[y],l[y]))return!1}return!0}function Lv(o){for(;o&&o.firstChild;)o=o.firstChild;return o}function zv(o,l){var d=Lv(o);o=0;for(var p;d;){if(d.nodeType===3){if(p=o+d.textContent.length,o<=l&&p>=l)return{node:d,offset:l-o};o=p}e:{for(;d;){if(d.nextSibling){d=d.nextSibling;break e}d=d.parentNode}d=void 0}d=Lv(d)}}function Iv(o,l){return o&&l?o===l?!0:o&&o.nodeType===3?!1:l&&l.nodeType===3?Iv(o,l.parentNode):"contains"in o?o.contains(l):o.compareDocumentPosition?!!(o.compareDocumentPosition(l)&16):!1:!1}function Fv(o){o=o!=null&&o.ownerDocument!=null&&o.ownerDocument.defaultView!=null?o.ownerDocument.defaultView:window;for(var l=Sd(o.document);l instanceof o.HTMLIFrameElement;){try{var d=typeof l.contentWindow.location.href=="string"}catch{d=!1}if(d)o=l.contentWindow;else break;l=Sd(o.document)}return l}function ag(o){var l=o&&o.nodeName&&o.nodeName.toLowerCase();return l&&(l==="input"&&(o.type==="text"||o.type==="search"||o.type==="tel"||o.type==="url"||o.type==="password")||l==="textarea"||o.contentEditable==="true")}var qR=ti&&"documentMode"in document&&11>=document.documentMode,Aa=null,lg=null,eu=null,ug=!1;function Kv(o,l,d){var p=d.window===d?d.document:d.nodeType===9?d:d.ownerDocument;ug||Aa==null||Aa!==Sd(p)||(p=Aa,"selectionStart"in p&&ag(p)?p={start:p.selectionStart,end:p.selectionEnd}:(p=(p.ownerDocument&&p.ownerDocument.defaultView||window).getSelection(),p={anchorNode:p.anchorNode,anchorOffset:p.anchorOffset,focusNode:p.focusNode,focusOffset:p.focusOffset}),eu&&Zl(eu,p)||(eu=p,p=Cf(lg,"onSelect"),0<p.length&&(l=new Bd("onSelect","select",null,l,d),o.push({event:l,listeners:p}),l.target=Aa)))}function oo(o,l){var d={};return d[o.toLowerCase()]=l.toLowerCase(),d["Webkit"+o]="webkit"+l,d["Moz"+o]="moz"+l,d}var Ba={animationend:oo("Animation","AnimationEnd"),animationiteration:oo("Animation","AnimationIteration"),animationstart:oo("Animation","AnimationStart"),transitionrun:oo("Transition","TransitionRun"),transitionstart:oo("Transition","TransitionStart"),transitioncancel:oo("Transition","TransitionCancel"),transitionend:oo("Transition","TransitionEnd")},cg={},jv={};ti&&(jv=document.createElement("div").style,"AnimationEvent"in window||(delete Ba.animationend.animation,delete Ba.animationiteration.animation,delete Ba.animationstart.animation),"TransitionEvent"in window||delete Ba.transitionend.transition);function ao(o){if(cg[o])return cg[o];if(!Ba[o])return o;var l=Ba[o],d;for(d in l)if(l.hasOwnProperty(d)&&d in jv)return cg[o]=l[d];return o}var _v=ao("animationend"),Hv=ao("animationiteration"),Vv=ao("animationstart"),GR=ao("transitionrun"),WR=ao("transitionstart"),QR=ao("transitioncancel"),Uv=ao("transitionend"),qv=new Map,dg="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");dg.push("scrollEnd");function yr(o,l){qv.set(o,l),io(l,[o])}var Nd=typeof reportError=="function"?reportError:function(o){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var l=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof o=="object"&&o!==null&&typeof o.message=="string"?String(o.message):String(o),error:o});if(!window.dispatchEvent(l))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",o);return}console.error(o)},Zn=[],Ma=0,fg=0;function Pd(){for(var o=Ma,l=fg=Ma=0;l<o;){var d=Zn[l];Zn[l++]=null;var p=Zn[l];Zn[l++]=null;var y=Zn[l];Zn[l++]=null;var x=Zn[l];if(Zn[l++]=null,p!==null&&y!==null){var w=p.pending;w===null?y.next=y:(y.next=w.next,w.next=y),p.pending=y}x!==0&&Gv(d,y,x)}}function Od(o,l,d,p){Zn[Ma++]=o,Zn[Ma++]=l,Zn[Ma++]=d,Zn[Ma++]=p,fg|=p,o.lanes|=p,o=o.alternate,o!==null&&(o.lanes|=p)}function hg(o,l,d,p){return Od(o,l,d,p),Ld(o)}function lo(o,l){return Od(o,null,null,l),Ld(o)}function Gv(o,l,d){o.lanes|=d;var p=o.alternate;p!==null&&(p.lanes|=d);for(var y=!1,x=o.return;x!==null;)x.childLanes|=d,p=x.alternate,p!==null&&(p.childLanes|=d),x.tag===22&&(o=x.stateNode,o===null||o._visibility&1||(y=!0)),o=x,x=x.return;return o.tag===3?(x=o.stateNode,y&&l!==null&&(y=31-Fn(d),o=x.hiddenUpdates,p=o[y],p===null?o[y]=[l]:p.push(l),l.lane=d|536870912),x):null}function Ld(o){if(50<Eu)throw Eu=0,Eb=null,Error(r(185));for(var l=o.return;l!==null;)o=l,l=o.return;return o.tag===3?o.stateNode:null}var Ra={};function YR(o,l,d,p){this.tag=o,this.key=d,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=l,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=p,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function jn(o,l,d,p){return new YR(o,l,d,p)}function pg(o){return o=o.prototype,!(!o||!o.isReactComponent)}function ni(o,l){var d=o.alternate;return d===null?(d=jn(o.tag,l,o.key,o.mode),d.elementType=o.elementType,d.type=o.type,d.stateNode=o.stateNode,d.alternate=o,o.alternate=d):(d.pendingProps=l,d.type=o.type,d.flags=0,d.subtreeFlags=0,d.deletions=null),d.flags=o.flags&65011712,d.childLanes=o.childLanes,d.lanes=o.lanes,d.child=o.child,d.memoizedProps=o.memoizedProps,d.memoizedState=o.memoizedState,d.updateQueue=o.updateQueue,l=o.dependencies,d.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext},d.sibling=o.sibling,d.index=o.index,d.ref=o.ref,d.refCleanup=o.refCleanup,d}function Wv(o,l){o.flags&=65011714;var d=o.alternate;return d===null?(o.childLanes=0,o.lanes=l,o.child=null,o.subtreeFlags=0,o.memoizedProps=null,o.memoizedState=null,o.updateQueue=null,o.dependencies=null,o.stateNode=null):(o.childLanes=d.childLanes,o.lanes=d.lanes,o.child=d.child,o.subtreeFlags=0,o.deletions=null,o.memoizedProps=d.memoizedProps,o.memoizedState=d.memoizedState,o.updateQueue=d.updateQueue,o.type=d.type,l=d.dependencies,o.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext}),o}function zd(o,l,d,p,y,x){var w=0;if(p=o,typeof o=="function")pg(o)&&(w=1);else if(typeof o=="string")w=tP(o,d,le.current)?26:o==="html"||o==="head"||o==="body"?27:5;else e:switch(o){case I:return o=jn(31,d,l,y),o.elementType=I,o.lanes=x,o;case C:return uo(d.children,y,x,l);case E:w=8,y|=24;break;case k:return o=jn(12,d,l,y|2),o.elementType=k,o.lanes=x,o;case B:return o=jn(13,d,l,y),o.elementType=B,o.lanes=x,o;case P:return o=jn(19,d,l,y),o.elementType=P,o.lanes=x,o;default:if(typeof o=="object"&&o!==null)switch(o.$$typeof){case $:w=10;break e;case T:w=9;break e;case A:w=11;break e;case M:w=14;break e;case N:w=16,p=null;break e}w=29,d=Error(r(130,o===null?"null":typeof o,"")),p=null}return l=jn(w,d,l,y),l.elementType=o,l.type=p,l.lanes=x,l}function uo(o,l,d,p){return o=jn(7,o,p,l),o.lanes=d,o}function mg(o,l,d){return o=jn(6,o,null,l),o.lanes=d,o}function Qv(o){var l=jn(18,null,null,0);return l.stateNode=o,l}function gg(o,l,d){return l=jn(4,o.children!==null?o.children:[],o.key,l),l.lanes=d,l.stateNode={containerInfo:o.containerInfo,pendingChildren:null,implementation:o.implementation},l}var Yv=new WeakMap;function er(o,l){if(typeof o=="object"&&o!==null){var d=Yv.get(o);return d!==void 0?d:(l={value:o,source:l,stack:Jr(l)},Yv.set(o,l),l)}return{value:o,source:l,stack:Jr(l)}}var Na=[],Pa=0,Id=null,tu=0,tr=[],nr=0,Ui=null,Nr=1,Pr="";function ri(o,l){Na[Pa++]=tu,Na[Pa++]=Id,Id=o,tu=l}function Xv(o,l,d){tr[nr++]=Nr,tr[nr++]=Pr,tr[nr++]=Ui,Ui=o;var p=Nr;o=Pr;var y=32-Fn(p)-1;p&=~(1<<y),d+=1;var x=32-Fn(l)+y;if(30<x){var w=y-y%5;x=(p&(1<<w)-1).toString(32),p>>=w,y-=w,Nr=1<<32-Fn(l)+y|d<<y|p,Pr=x+o}else Nr=1<<x|d<<y|p,Pr=o}function bg(o){o.return!==null&&(ri(o,1),Xv(o,1,0))}function yg(o){for(;o===Id;)Id=Na[--Pa],Na[Pa]=null,tu=Na[--Pa],Na[Pa]=null;for(;o===Ui;)Ui=tr[--nr],tr[nr]=null,Pr=tr[--nr],tr[nr]=null,Nr=tr[--nr],tr[nr]=null}function Jv(o,l){tr[nr++]=Nr,tr[nr++]=Pr,tr[nr++]=Ui,Nr=l.id,Pr=l.overflow,Ui=o}var Wt=null,ut=null,_e=!1,qi=null,rr=!1,vg=Error(r(519));function Gi(o){var l=Error(r(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw nu(er(l,o)),vg}function Zv(o){var l=o.stateNode,d=o.type,p=o.memoizedProps;switch(l[Gt]=o,l[Dn]=p,d){case"dialog":Oe("cancel",l),Oe("close",l);break;case"iframe":case"object":case"embed":Oe("load",l);break;case"video":case"audio":for(d=0;d<Du.length;d++)Oe(Du[d],l);break;case"source":Oe("error",l);break;case"img":case"image":case"link":Oe("error",l),Oe("load",l);break;case"details":Oe("toggle",l);break;case"input":Oe("invalid",l),fv(l,p.value,p.defaultValue,p.checked,p.defaultChecked,p.type,p.name,!0);break;case"select":Oe("invalid",l);break;case"textarea":Oe("invalid",l),pv(l,p.value,p.defaultValue,p.children)}d=p.children,typeof d!="string"&&typeof d!="number"&&typeof d!="bigint"||l.textContent===""+d||p.suppressHydrationWarning===!0||gE(l.textContent,d)?(p.popover!=null&&(Oe("beforetoggle",l),Oe("toggle",l)),p.onScroll!=null&&Oe("scroll",l),p.onScrollEnd!=null&&Oe("scrollend",l),p.onClick!=null&&(l.onclick=ei),l=!0):l=!1,l||Gi(o,!0)}function ex(o){for(Wt=o.return;Wt;)switch(Wt.tag){case 5:case 31:case 13:rr=!1;return;case 27:case 3:rr=!0;return;default:Wt=Wt.return}}function Oa(o){if(o!==Wt)return!1;if(!_e)return ex(o),_e=!0,!1;var l=o.tag,d;if((d=l!==3&&l!==27)&&((d=l===5)&&(d=o.type,d=!(d!=="form"&&d!=="button")||zb(o.type,o.memoizedProps)),d=!d),d&&ut&&Gi(o),ex(o),l===13){if(o=o.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(r(317));ut=SE(o)}else if(l===31){if(o=o.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(r(317));ut=SE(o)}else l===27?(l=ut,ls(o.type)?(o=_b,_b=null,ut=o):ut=l):ut=Wt?sr(o.stateNode.nextSibling):null;return!0}function co(){ut=Wt=null,_e=!1}function xg(){var o=qi;return o!==null&&(An===null?An=o:An.push.apply(An,o),qi=null),o}function nu(o){qi===null?qi=[o]:qi.push(o)}var Cg=L(null),fo=null,ii=null;function Wi(o,l,d){ne(Cg,l._currentValue),l._currentValue=d}function si(o){o._currentValue=Cg.current,U(Cg)}function Eg(o,l,d){for(;o!==null;){var p=o.alternate;if((o.childLanes&l)!==l?(o.childLanes|=l,p!==null&&(p.childLanes|=l)):p!==null&&(p.childLanes&l)!==l&&(p.childLanes|=l),o===d)break;o=o.return}}function kg(o,l,d,p){var y=o.child;for(y!==null&&(y.return=o);y!==null;){var x=y.dependencies;if(x!==null){var w=y.child;x=x.firstContext;e:for(;x!==null;){var R=x;x=y;for(var z=0;z<l.length;z++)if(R.context===l[z]){x.lanes|=d,R=x.alternate,R!==null&&(R.lanes|=d),Eg(x.return,d,o),p||(w=null);break e}x=R.next}}else if(y.tag===18){if(w=y.return,w===null)throw Error(r(341));w.lanes|=d,x=w.alternate,x!==null&&(x.lanes|=d),Eg(w,d,o),w=null}else w=y.child;if(w!==null)w.return=y;else for(w=y;w!==null;){if(w===o){w=null;break}if(y=w.sibling,y!==null){y.return=w.return,w=y;break}w=w.return}y=w}}function La(o,l,d,p){o=null;for(var y=l,x=!1;y!==null;){if(!x){if((y.flags&524288)!==0)x=!0;else if((y.flags&262144)!==0)break}if(y.tag===10){var w=y.alternate;if(w===null)throw Error(r(387));if(w=w.memoizedProps,w!==null){var R=y.type;Kn(y.pendingProps.value,w.value)||(o!==null?o.push(R):o=[R])}}else if(y===Ee.current){if(w=y.alternate,w===null)throw Error(r(387));w.memoizedState.memoizedState!==y.memoizedState.memoizedState&&(o!==null?o.push(Au):o=[Au])}y=y.return}o!==null&&kg(l,o,d,p),l.flags|=262144}function Fd(o){for(o=o.firstContext;o!==null;){if(!Kn(o.context._currentValue,o.memoizedValue))return!0;o=o.next}return!1}function ho(o){fo=o,ii=null,o=o.dependencies,o!==null&&(o.firstContext=null)}function Qt(o){return tx(fo,o)}function Kd(o,l){return fo===null&&ho(o),tx(o,l)}function tx(o,l){var d=l._currentValue;if(l={context:l,memoizedValue:d,next:null},ii===null){if(o===null)throw Error(r(308));ii=l,o.dependencies={lanes:0,firstContext:l},o.flags|=524288}else ii=ii.next=l;return d}var XR=typeof AbortController<"u"?AbortController:function(){var o=[],l=this.signal={aborted:!1,addEventListener:function(d,p){o.push(p)}};this.abort=function(){l.aborted=!0,o.forEach(function(d){return d()})}},JR=t.unstable_scheduleCallback,ZR=t.unstable_NormalPriority,wt={$$typeof:$,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function Dg(){return{controller:new XR,data:new Map,refCount:0}}function ru(o){o.refCount--,o.refCount===0&&JR(ZR,function(){o.controller.abort()})}var iu=null,Sg=0,za=0,Ia=null;function eN(o,l){if(iu===null){var d=iu=[];Sg=0,za=Tb(),Ia={status:"pending",value:void 0,then:function(p){d.push(p)}}}return Sg++,l.then(nx,nx),l}function nx(){if(--Sg===0&&iu!==null){Ia!==null&&(Ia.status="fulfilled");var o=iu;iu=null,za=0,Ia=null;for(var l=0;l<o.length;l++)(0,o[l])()}}function tN(o,l){var d=[],p={status:"pending",value:null,reason:null,then:function(y){d.push(y)}};return o.then(function(){p.status="fulfilled",p.value=l;for(var y=0;y<d.length;y++)(0,d[y])(l)},function(y){for(p.status="rejected",p.reason=y,y=0;y<d.length;y++)(0,d[y])(void 0)}),p}var rx=O.S;O.S=function(o,l){KC=on(),typeof l=="object"&&l!==null&&typeof l.then=="function"&&eN(o,l),rx!==null&&rx(o,l)};var po=L(null);function wg(){var o=po.current;return o!==null?o:rt.pooledCache}function jd(o,l){l===null?ne(po,po.current):ne(po,l.pool)}function ix(){var o=wg();return o===null?null:{parent:wt._currentValue,pool:o}}var Fa=Error(r(460)),$g=Error(r(474)),_d=Error(r(542)),Hd={then:function(){}};function sx(o){return o=o.status,o==="fulfilled"||o==="rejected"}function ox(o,l,d){switch(d=o[d],d===void 0?o.push(l):d!==l&&(l.then(ei,ei),l=d),l.status){case"fulfilled":return l.value;case"rejected":throw o=l.reason,lx(o),o;default:if(typeof l.status=="string")l.then(ei,ei);else{if(o=rt,o!==null&&100<o.shellSuspendCounter)throw Error(r(482));o=l,o.status="pending",o.then(function(p){if(l.status==="pending"){var y=l;y.status="fulfilled",y.value=p}},function(p){if(l.status==="pending"){var y=l;y.status="rejected",y.reason=p}})}switch(l.status){case"fulfilled":return l.value;case"rejected":throw o=l.reason,lx(o),o}throw go=l,Fa}}function mo(o){try{var l=o._init;return l(o._payload)}catch(d){throw d!==null&&typeof d=="object"&&typeof d.then=="function"?(go=d,Fa):d}}var go=null;function ax(){if(go===null)throw Error(r(459));var o=go;return go=null,o}function lx(o){if(o===Fa||o===_d)throw Error(r(483))}var Ka=null,su=0;function Vd(o){var l=su;return su+=1,Ka===null&&(Ka=[]),ox(Ka,o,l)}function ou(o,l){l=l.props.ref,o.ref=l!==void 0?l:null}function Ud(o,l){throw l.$$typeof===g?Error(r(525)):(o=Object.prototype.toString.call(l),Error(r(31,o==="[object Object]"?"object with keys {"+Object.keys(l).join(", ")+"}":o)))}function ux(o){function l(G,_){if(o){var W=G.deletions;W===null?(G.deletions=[_],G.flags|=16):W.push(_)}}function d(G,_){if(!o)return null;for(;_!==null;)l(G,_),_=_.sibling;return null}function p(G){for(var _=new Map;G!==null;)G.key!==null?_.set(G.key,G):_.set(G.index,G),G=G.sibling;return _}function y(G,_){return G=ni(G,_),G.index=0,G.sibling=null,G}function x(G,_,W){return G.index=W,o?(W=G.alternate,W!==null?(W=W.index,W<_?(G.flags|=67108866,_):W):(G.flags|=67108866,_)):(G.flags|=1048576,_)}function w(G){return o&&G.alternate===null&&(G.flags|=67108866),G}function R(G,_,W,se){return _===null||_.tag!==6?(_=mg(W,G.mode,se),_.return=G,_):(_=y(_,W),_.return=G,_)}function z(G,_,W,se){var xe=W.type;return xe===C?re(G,_,W.props.children,se,W.key):_!==null&&(_.elementType===xe||typeof xe=="object"&&xe!==null&&xe.$$typeof===N&&mo(xe)===_.type)?(_=y(_,W.props),ou(_,W),_.return=G,_):(_=zd(W.type,W.key,W.props,null,G.mode,se),ou(_,W),_.return=G,_)}function Q(G,_,W,se){return _===null||_.tag!==4||_.stateNode.containerInfo!==W.containerInfo||_.stateNode.implementation!==W.implementation?(_=gg(W,G.mode,se),_.return=G,_):(_=y(_,W.children||[]),_.return=G,_)}function re(G,_,W,se,xe){return _===null||_.tag!==7?(_=uo(W,G.mode,se,xe),_.return=G,_):(_=y(_,W),_.return=G,_)}function oe(G,_,W){if(typeof _=="string"&&_!==""||typeof _=="number"||typeof _=="bigint")return _=mg(""+_,G.mode,W),_.return=G,_;if(typeof _=="object"&&_!==null){switch(_.$$typeof){case b:return W=zd(_.type,_.key,_.props,null,G.mode,W),ou(W,_),W.return=G,W;case v:return _=gg(_,G.mode,W),_.return=G,_;case N:return _=mo(_),oe(G,_,W)}if(te(_)||q(_))return _=uo(_,G.mode,W,null),_.return=G,_;if(typeof _.then=="function")return oe(G,Vd(_),W);if(_.$$typeof===$)return oe(G,Kd(G,_),W);Ud(G,_)}return null}function X(G,_,W,se){var xe=_!==null?_.key:null;if(typeof W=="string"&&W!==""||typeof W=="number"||typeof W=="bigint")return xe!==null?null:R(G,_,""+W,se);if(typeof W=="object"&&W!==null){switch(W.$$typeof){case b:return W.key===xe?z(G,_,W,se):null;case v:return W.key===xe?Q(G,_,W,se):null;case N:return W=mo(W),X(G,_,W,se)}if(te(W)||q(W))return xe!==null?null:re(G,_,W,se,null);if(typeof W.then=="function")return X(G,_,Vd(W),se);if(W.$$typeof===$)return X(G,_,Kd(G,W),se);Ud(G,W)}return null}function ee(G,_,W,se,xe){if(typeof se=="string"&&se!==""||typeof se=="number"||typeof se=="bigint")return G=G.get(W)||null,R(_,G,""+se,xe);if(typeof se=="object"&&se!==null){switch(se.$$typeof){case b:return G=G.get(se.key===null?W:se.key)||null,z(_,G,se,xe);case v:return G=G.get(se.key===null?W:se.key)||null,Q(_,G,se,xe);case N:return se=mo(se),ee(G,_,W,se,xe)}if(te(se)||q(se))return G=G.get(W)||null,re(_,G,se,xe,null);if(typeof se.then=="function")return ee(G,_,W,Vd(se),xe);if(se.$$typeof===$)return ee(G,_,W,Kd(_,se),xe);Ud(_,se)}return null}function be(G,_,W,se){for(var xe=null,Ue=null,ve=_,Be=_=0,Ke=null;ve!==null&&Be<W.length;Be++){ve.index>Be?(Ke=ve,ve=null):Ke=ve.sibling;var qe=X(G,ve,W[Be],se);if(qe===null){ve===null&&(ve=Ke);break}o&&ve&&qe.alternate===null&&l(G,ve),_=x(qe,_,Be),Ue===null?xe=qe:Ue.sibling=qe,Ue=qe,ve=Ke}if(Be===W.length)return d(G,ve),_e&&ri(G,Be),xe;if(ve===null){for(;Be<W.length;Be++)ve=oe(G,W[Be],se),ve!==null&&(_=x(ve,_,Be),Ue===null?xe=ve:Ue.sibling=ve,Ue=ve);return _e&&ri(G,Be),xe}for(ve=p(ve);Be<W.length;Be++)Ke=ee(ve,G,Be,W[Be],se),Ke!==null&&(o&&Ke.alternate!==null&&ve.delete(Ke.key===null?Be:Ke.key),_=x(Ke,_,Be),Ue===null?xe=Ke:Ue.sibling=Ke,Ue=Ke);return o&&ve.forEach(function(hs){return l(G,hs)}),_e&&ri(G,Be),xe}function ke(G,_,W,se){if(W==null)throw Error(r(151));for(var xe=null,Ue=null,ve=_,Be=_=0,Ke=null,qe=W.next();ve!==null&&!qe.done;Be++,qe=W.next()){ve.index>Be?(Ke=ve,ve=null):Ke=ve.sibling;var hs=X(G,ve,qe.value,se);if(hs===null){ve===null&&(ve=Ke);break}o&&ve&&hs.alternate===null&&l(G,ve),_=x(hs,_,Be),Ue===null?xe=hs:Ue.sibling=hs,Ue=hs,ve=Ke}if(qe.done)return d(G,ve),_e&&ri(G,Be),xe;if(ve===null){for(;!qe.done;Be++,qe=W.next())qe=oe(G,qe.value,se),qe!==null&&(_=x(qe,_,Be),Ue===null?xe=qe:Ue.sibling=qe,Ue=qe);return _e&&ri(G,Be),xe}for(ve=p(ve);!qe.done;Be++,qe=W.next())qe=ee(ve,G,Be,qe.value,se),qe!==null&&(o&&qe.alternate!==null&&ve.delete(qe.key===null?Be:qe.key),_=x(qe,_,Be),Ue===null?xe=qe:Ue.sibling=qe,Ue=qe);return o&&ve.forEach(function(fP){return l(G,fP)}),_e&&ri(G,Be),xe}function nt(G,_,W,se){if(typeof W=="object"&&W!==null&&W.type===C&&W.key===null&&(W=W.props.children),typeof W=="object"&&W!==null){switch(W.$$typeof){case b:e:{for(var xe=W.key;_!==null;){if(_.key===xe){if(xe=W.type,xe===C){if(_.tag===7){d(G,_.sibling),se=y(_,W.props.children),se.return=G,G=se;break e}}else if(_.elementType===xe||typeof xe=="object"&&xe!==null&&xe.$$typeof===N&&mo(xe)===_.type){d(G,_.sibling),se=y(_,W.props),ou(se,W),se.return=G,G=se;break e}d(G,_);break}else l(G,_);_=_.sibling}W.type===C?(se=uo(W.props.children,G.mode,se,W.key),se.return=G,G=se):(se=zd(W.type,W.key,W.props,null,G.mode,se),ou(se,W),se.return=G,G=se)}return w(G);case v:e:{for(xe=W.key;_!==null;){if(_.key===xe)if(_.tag===4&&_.stateNode.containerInfo===W.containerInfo&&_.stateNode.implementation===W.implementation){d(G,_.sibling),se=y(_,W.children||[]),se.return=G,G=se;break e}else{d(G,_);break}else l(G,_);_=_.sibling}se=gg(W,G.mode,se),se.return=G,G=se}return w(G);case N:return W=mo(W),nt(G,_,W,se)}if(te(W))return be(G,_,W,se);if(q(W)){if(xe=q(W),typeof xe!="function")throw Error(r(150));return W=xe.call(W),ke(G,_,W,se)}if(typeof W.then=="function")return nt(G,_,Vd(W),se);if(W.$$typeof===$)return nt(G,_,Kd(G,W),se);Ud(G,W)}return typeof W=="string"&&W!==""||typeof W=="number"||typeof W=="bigint"?(W=""+W,_!==null&&_.tag===6?(d(G,_.sibling),se=y(_,W),se.return=G,G=se):(d(G,_),se=mg(W,G.mode,se),se.return=G,G=se),w(G)):d(G,_)}return function(G,_,W,se){try{su=0;var xe=nt(G,_,W,se);return Ka=null,xe}catch(ve){if(ve===Fa||ve===_d)throw ve;var Ue=jn(29,ve,null,G.mode);return Ue.lanes=se,Ue.return=G,Ue}}}var bo=ux(!0),cx=ux(!1),Qi=!1;function Tg(o){o.updateQueue={baseState:o.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ag(o,l){o=o.updateQueue,l.updateQueue===o&&(l.updateQueue={baseState:o.baseState,firstBaseUpdate:o.firstBaseUpdate,lastBaseUpdate:o.lastBaseUpdate,shared:o.shared,callbacks:null})}function Yi(o){return{lane:o,tag:0,payload:null,callback:null,next:null}}function Xi(o,l,d){var p=o.updateQueue;if(p===null)return null;if(p=p.shared,(Ge&2)!==0){var y=p.pending;return y===null?l.next=l:(l.next=y.next,y.next=l),p.pending=l,l=Ld(o),Gv(o,null,d),l}return Od(o,p,l,d),Ld(o)}function au(o,l,d){if(l=l.updateQueue,l!==null&&(l=l.shared,(d&4194048)!==0)){var p=l.lanes;p&=o.pendingLanes,d|=p,l.lanes=d,tv(o,d)}}function Bg(o,l){var d=o.updateQueue,p=o.alternate;if(p!==null&&(p=p.updateQueue,d===p)){var y=null,x=null;if(d=d.firstBaseUpdate,d!==null){do{var w={lane:d.lane,tag:d.tag,payload:d.payload,callback:null,next:null};x===null?y=x=w:x=x.next=w,d=d.next}while(d!==null);x===null?y=x=l:x=x.next=l}else y=x=l;d={baseState:p.baseState,firstBaseUpdate:y,lastBaseUpdate:x,shared:p.shared,callbacks:p.callbacks},o.updateQueue=d;return}o=d.lastBaseUpdate,o===null?d.firstBaseUpdate=l:o.next=l,d.lastBaseUpdate=l}var Mg=!1;function lu(){if(Mg){var o=Ia;if(o!==null)throw o}}function uu(o,l,d,p){Mg=!1;var y=o.updateQueue;Qi=!1;var x=y.firstBaseUpdate,w=y.lastBaseUpdate,R=y.shared.pending;if(R!==null){y.shared.pending=null;var z=R,Q=z.next;z.next=null,w===null?x=Q:w.next=Q,w=z;var re=o.alternate;re!==null&&(re=re.updateQueue,R=re.lastBaseUpdate,R!==w&&(R===null?re.firstBaseUpdate=Q:R.next=Q,re.lastBaseUpdate=z))}if(x!==null){var oe=y.baseState;w=0,re=Q=z=null,R=x;do{var X=R.lane&-536870913,ee=X!==R.lane;if(ee?(Fe&X)===X:(p&X)===X){X!==0&&X===za&&(Mg=!0),re!==null&&(re=re.next={lane:0,tag:R.tag,payload:R.payload,callback:null,next:null});e:{var be=o,ke=R;X=l;var nt=d;switch(ke.tag){case 1:if(be=ke.payload,typeof be=="function"){oe=be.call(nt,oe,X);break e}oe=be;break e;case 3:be.flags=be.flags&-65537|128;case 0:if(be=ke.payload,X=typeof be=="function"?be.call(nt,oe,X):be,X==null)break e;oe=m({},oe,X);break e;case 2:Qi=!0}}X=R.callback,X!==null&&(o.flags|=64,ee&&(o.flags|=8192),ee=y.callbacks,ee===null?y.callbacks=[X]:ee.push(X))}else ee={lane:X,tag:R.tag,payload:R.payload,callback:R.callback,next:null},re===null?(Q=re=ee,z=oe):re=re.next=ee,w|=X;if(R=R.next,R===null){if(R=y.shared.pending,R===null)break;ee=R,R=ee.next,ee.next=null,y.lastBaseUpdate=ee,y.shared.pending=null}}while(!0);re===null&&(z=oe),y.baseState=z,y.firstBaseUpdate=Q,y.lastBaseUpdate=re,x===null&&(y.shared.lanes=0),ns|=w,o.lanes=w,o.memoizedState=oe}}function dx(o,l){if(typeof o!="function")throw Error(r(191,o));o.call(l)}function fx(o,l){var d=o.callbacks;if(d!==null)for(o.callbacks=null,o=0;o<d.length;o++)dx(d[o],l)}var ja=L(null),qd=L(0);function hx(o,l){o=pi,ne(qd,o),ne(ja,l),pi=o|l.baseLanes}function Rg(){ne(qd,pi),ne(ja,ja.current)}function Ng(){pi=qd.current,U(ja),U(qd)}var _n=L(null),ir=null;function Ji(o){var l=o.alternate;ne(Et,Et.current&1),ne(_n,o),ir===null&&(l===null||ja.current!==null||l.memoizedState!==null)&&(ir=o)}function Pg(o){ne(Et,Et.current),ne(_n,o),ir===null&&(ir=o)}function px(o){o.tag===22?(ne(Et,Et.current),ne(_n,o),ir===null&&(ir=o)):Zi()}function Zi(){ne(Et,Et.current),ne(_n,_n.current)}function Hn(o){U(_n),ir===o&&(ir=null),U(Et)}var Et=L(0);function Gd(o){for(var l=o;l!==null;){if(l.tag===13){var d=l.memoizedState;if(d!==null&&(d=d.dehydrated,d===null||Kb(d)||jb(d)))return l}else if(l.tag===19&&(l.memoizedProps.revealOrder==="forwards"||l.memoizedProps.revealOrder==="backwards"||l.memoizedProps.revealOrder==="unstable_legacy-backwards"||l.memoizedProps.revealOrder==="together")){if((l.flags&128)!==0)return l}else if(l.child!==null){l.child.return=l,l=l.child;continue}if(l===o)break;for(;l.sibling===null;){if(l.return===null||l.return===o)return null;l=l.return}l.sibling.return=l.return,l=l.sibling}return null}var oi=0,Ae=null,et=null,$t=null,Wd=!1,_a=!1,yo=!1,Qd=0,cu=0,Ha=null,nN=0;function bt(){throw Error(r(321))}function Og(o,l){if(l===null)return!1;for(var d=0;d<l.length&&d<o.length;d++)if(!Kn(o[d],l[d]))return!1;return!0}function Lg(o,l,d,p,y,x){return oi=x,Ae=l,l.memoizedState=null,l.updateQueue=null,l.lanes=0,O.H=o===null||o.memoizedState===null?Xx:Xg,yo=!1,x=d(p,y),yo=!1,_a&&(x=gx(l,d,p,y)),mx(o),x}function mx(o){O.H=hu;var l=et!==null&&et.next!==null;if(oi=0,$t=et=Ae=null,Wd=!1,cu=0,Ha=null,l)throw Error(r(300));o===null||Tt||(o=o.dependencies,o!==null&&Fd(o)&&(Tt=!0))}function gx(o,l,d,p){Ae=o;var y=0;do{if(_a&&(Ha=null),cu=0,_a=!1,25<=y)throw Error(r(301));if(y+=1,$t=et=null,o.updateQueue!=null){var x=o.updateQueue;x.lastEffect=null,x.events=null,x.stores=null,x.memoCache!=null&&(x.memoCache.index=0)}O.H=Jx,x=l(d,p)}while(_a);return x}function rN(){var o=O.H,l=o.useState()[0];return l=typeof l.then=="function"?du(l):l,o=o.useState()[0],(et!==null?et.memoizedState:null)!==o&&(Ae.flags|=1024),l}function zg(){var o=Qd!==0;return Qd=0,o}function Ig(o,l,d){l.updateQueue=o.updateQueue,l.flags&=-2053,o.lanes&=~d}function Fg(o){if(Wd){for(o=o.memoizedState;o!==null;){var l=o.queue;l!==null&&(l.pending=null),o=o.next}Wd=!1}oi=0,$t=et=Ae=null,_a=!1,cu=Qd=0,Ha=null}function gn(){var o={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return $t===null?Ae.memoizedState=$t=o:$t=$t.next=o,$t}function kt(){if(et===null){var o=Ae.alternate;o=o!==null?o.memoizedState:null}else o=et.next;var l=$t===null?Ae.memoizedState:$t.next;if(l!==null)$t=l,et=o;else{if(o===null)throw Ae.alternate===null?Error(r(467)):Error(r(310));et=o,o={memoizedState:et.memoizedState,baseState:et.baseState,baseQueue:et.baseQueue,queue:et.queue,next:null},$t===null?Ae.memoizedState=$t=o:$t=$t.next=o}return $t}function Yd(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function du(o){var l=cu;return cu+=1,Ha===null&&(Ha=[]),o=ox(Ha,o,l),l=Ae,($t===null?l.memoizedState:$t.next)===null&&(l=l.alternate,O.H=l===null||l.memoizedState===null?Xx:Xg),o}function Xd(o){if(o!==null&&typeof o=="object"){if(typeof o.then=="function")return du(o);if(o.$$typeof===$)return Qt(o)}throw Error(r(438,String(o)))}function Kg(o){var l=null,d=Ae.updateQueue;if(d!==null&&(l=d.memoCache),l==null){var p=Ae.alternate;p!==null&&(p=p.updateQueue,p!==null&&(p=p.memoCache,p!=null&&(l={data:p.data.map(function(y){return y.slice()}),index:0})))}if(l==null&&(l={data:[],index:0}),d===null&&(d=Yd(),Ae.updateQueue=d),d.memoCache=l,d=l.data[l.index],d===void 0)for(d=l.data[l.index]=Array(o),p=0;p<o;p++)d[p]=F;return l.index++,d}function ai(o,l){return typeof l=="function"?l(o):l}function Jd(o){var l=kt();return jg(l,et,o)}function jg(o,l,d){var p=o.queue;if(p===null)throw Error(r(311));p.lastRenderedReducer=d;var y=o.baseQueue,x=p.pending;if(x!==null){if(y!==null){var w=y.next;y.next=x.next,x.next=w}l.baseQueue=y=x,p.pending=null}if(x=o.baseState,y===null)o.memoizedState=x;else{l=y.next;var R=w=null,z=null,Q=l,re=!1;do{var oe=Q.lane&-536870913;if(oe!==Q.lane?(Fe&oe)===oe:(oi&oe)===oe){var X=Q.revertLane;if(X===0)z!==null&&(z=z.next={lane:0,revertLane:0,gesture:null,action:Q.action,hasEagerState:Q.hasEagerState,eagerState:Q.eagerState,next:null}),oe===za&&(re=!0);else if((oi&X)===X){Q=Q.next,X===za&&(re=!0);continue}else oe={lane:0,revertLane:Q.revertLane,gesture:null,action:Q.action,hasEagerState:Q.hasEagerState,eagerState:Q.eagerState,next:null},z===null?(R=z=oe,w=x):z=z.next=oe,Ae.lanes|=X,ns|=X;oe=Q.action,yo&&d(x,oe),x=Q.hasEagerState?Q.eagerState:d(x,oe)}else X={lane:oe,revertLane:Q.revertLane,gesture:Q.gesture,action:Q.action,hasEagerState:Q.hasEagerState,eagerState:Q.eagerState,next:null},z===null?(R=z=X,w=x):z=z.next=X,Ae.lanes|=oe,ns|=oe;Q=Q.next}while(Q!==null&&Q!==l);if(z===null?w=x:z.next=R,!Kn(x,o.memoizedState)&&(Tt=!0,re&&(d=Ia,d!==null)))throw d;o.memoizedState=x,o.baseState=w,o.baseQueue=z,p.lastRenderedState=x}return y===null&&(p.lanes=0),[o.memoizedState,p.dispatch]}function _g(o){var l=kt(),d=l.queue;if(d===null)throw Error(r(311));d.lastRenderedReducer=o;var p=d.dispatch,y=d.pending,x=l.memoizedState;if(y!==null){d.pending=null;var w=y=y.next;do x=o(x,w.action),w=w.next;while(w!==y);Kn(x,l.memoizedState)||(Tt=!0),l.memoizedState=x,l.baseQueue===null&&(l.baseState=x),d.lastRenderedState=x}return[x,p]}function bx(o,l,d){var p=Ae,y=kt(),x=_e;if(x){if(d===void 0)throw Error(r(407));d=d()}else d=l();var w=!Kn((et||y).memoizedState,d);if(w&&(y.memoizedState=d,Tt=!0),y=y.queue,Ug(xx.bind(null,p,y,o),[o]),y.getSnapshot!==l||w||$t!==null&&$t.memoizedState.tag&1){if(p.flags|=2048,Va(9,{destroy:void 0},vx.bind(null,p,y,d,l),null),rt===null)throw Error(r(349));x||(oi&127)!==0||yx(p,l,d)}return d}function yx(o,l,d){o.flags|=16384,o={getSnapshot:l,value:d},l=Ae.updateQueue,l===null?(l=Yd(),Ae.updateQueue=l,l.stores=[o]):(d=l.stores,d===null?l.stores=[o]:d.push(o))}function vx(o,l,d,p){l.value=d,l.getSnapshot=p,Cx(l)&&Ex(o)}function xx(o,l,d){return d(function(){Cx(l)&&Ex(o)})}function Cx(o){var l=o.getSnapshot;o=o.value;try{var d=l();return!Kn(o,d)}catch{return!0}}function Ex(o){var l=lo(o,2);l!==null&&Bn(l,o,2)}function Hg(o){var l=gn();if(typeof o=="function"){var d=o;if(o=d(),yo){_i(!0);try{d()}finally{_i(!1)}}}return l.memoizedState=l.baseState=o,l.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:ai,lastRenderedState:o},l}function kx(o,l,d,p){return o.baseState=d,jg(o,et,typeof p=="function"?p:ai)}function iN(o,l,d,p,y){if(tf(o))throw Error(r(485));if(o=l.action,o!==null){var x={payload:y,action:o,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(w){x.listeners.push(w)}};O.T!==null?d(!0):x.isTransition=!1,p(x),d=l.pending,d===null?(x.next=l.pending=x,Dx(l,x)):(x.next=d.next,l.pending=d.next=x)}}function Dx(o,l){var d=l.action,p=l.payload,y=o.state;if(l.isTransition){var x=O.T,w={};O.T=w;try{var R=d(y,p),z=O.S;z!==null&&z(w,R),Sx(o,l,R)}catch(Q){Vg(o,l,Q)}finally{x!==null&&w.types!==null&&(x.types=w.types),O.T=x}}else try{x=d(y,p),Sx(o,l,x)}catch(Q){Vg(o,l,Q)}}function Sx(o,l,d){d!==null&&typeof d=="object"&&typeof d.then=="function"?d.then(function(p){wx(o,l,p)},function(p){return Vg(o,l,p)}):wx(o,l,d)}function wx(o,l,d){l.status="fulfilled",l.value=d,$x(l),o.state=d,l=o.pending,l!==null&&(d=l.next,d===l?o.pending=null:(d=d.next,l.next=d,Dx(o,d)))}function Vg(o,l,d){var p=o.pending;if(o.pending=null,p!==null){p=p.next;do l.status="rejected",l.reason=d,$x(l),l=l.next;while(l!==p)}o.action=null}function $x(o){o=o.listeners;for(var l=0;l<o.length;l++)(0,o[l])()}function Tx(o,l){return l}function Ax(o,l){if(_e){var d=rt.formState;if(d!==null){e:{var p=Ae;if(_e){if(ut){t:{for(var y=ut,x=rr;y.nodeType!==8;){if(!x){y=null;break t}if(y=sr(y.nextSibling),y===null){y=null;break t}}x=y.data,y=x==="F!"||x==="F"?y:null}if(y){ut=sr(y.nextSibling),p=y.data==="F!";break e}}Gi(p)}p=!1}p&&(l=d[0])}}return d=gn(),d.memoizedState=d.baseState=l,p={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Tx,lastRenderedState:l},d.queue=p,d=Wx.bind(null,Ae,p),p.dispatch=d,p=Hg(!1),x=Yg.bind(null,Ae,!1,p.queue),p=gn(),y={state:l,dispatch:null,action:o,pending:null},p.queue=y,d=iN.bind(null,Ae,y,x,d),y.dispatch=d,p.memoizedState=o,[l,d,!1]}function Bx(o){var l=kt();return Mx(l,et,o)}function Mx(o,l,d){if(l=jg(o,l,Tx)[0],o=Jd(ai)[0],typeof l=="object"&&l!==null&&typeof l.then=="function")try{var p=du(l)}catch(w){throw w===Fa?_d:w}else p=l;l=kt();var y=l.queue,x=y.dispatch;return d!==l.memoizedState&&(Ae.flags|=2048,Va(9,{destroy:void 0},sN.bind(null,y,d),null)),[p,x,o]}function sN(o,l){o.action=l}function Rx(o){var l=kt(),d=et;if(d!==null)return Mx(l,d,o);kt(),l=l.memoizedState,d=kt();var p=d.queue.dispatch;return d.memoizedState=o,[l,p,!1]}function Va(o,l,d,p){return o={tag:o,create:d,deps:p,inst:l,next:null},l=Ae.updateQueue,l===null&&(l=Yd(),Ae.updateQueue=l),d=l.lastEffect,d===null?l.lastEffect=o.next=o:(p=d.next,d.next=o,o.next=p,l.lastEffect=o),o}function Nx(){return kt().memoizedState}function Zd(o,l,d,p){var y=gn();Ae.flags|=o,y.memoizedState=Va(1|l,{destroy:void 0},d,p===void 0?null:p)}function ef(o,l,d,p){var y=kt();p=p===void 0?null:p;var x=y.memoizedState.inst;et!==null&&p!==null&&Og(p,et.memoizedState.deps)?y.memoizedState=Va(l,x,d,p):(Ae.flags|=o,y.memoizedState=Va(1|l,x,d,p))}function Px(o,l){Zd(8390656,8,o,l)}function Ug(o,l){ef(2048,8,o,l)}function oN(o){Ae.flags|=4;var l=Ae.updateQueue;if(l===null)l=Yd(),Ae.updateQueue=l,l.events=[o];else{var d=l.events;d===null?l.events=[o]:d.push(o)}}function Ox(o){var l=kt().memoizedState;return oN({ref:l,nextImpl:o}),function(){if((Ge&2)!==0)throw Error(r(440));return l.impl.apply(void 0,arguments)}}function Lx(o,l){return ef(4,2,o,l)}function zx(o,l){return ef(4,4,o,l)}function Ix(o,l){if(typeof l=="function"){o=o();var d=l(o);return function(){typeof d=="function"?d():l(null)}}if(l!=null)return o=o(),l.current=o,function(){l.current=null}}function Fx(o,l,d){d=d!=null?d.concat([o]):null,ef(4,4,Ix.bind(null,l,o),d)}function qg(){}function Kx(o,l){var d=kt();l=l===void 0?null:l;var p=d.memoizedState;return l!==null&&Og(l,p[1])?p[0]:(d.memoizedState=[o,l],o)}function jx(o,l){var d=kt();l=l===void 0?null:l;var p=d.memoizedState;if(l!==null&&Og(l,p[1]))return p[0];if(p=o(),yo){_i(!0);try{o()}finally{_i(!1)}}return d.memoizedState=[p,l],p}function Gg(o,l,d){return d===void 0||(oi&1073741824)!==0&&(Fe&261930)===0?o.memoizedState=l:(o.memoizedState=d,o=_C(),Ae.lanes|=o,ns|=o,d)}function _x(o,l,d,p){return Kn(d,l)?d:ja.current!==null?(o=Gg(o,d,p),Kn(o,l)||(Tt=!0),o):(oi&42)===0||(oi&1073741824)!==0&&(Fe&261930)===0?(Tt=!0,o.memoizedState=d):(o=_C(),Ae.lanes|=o,ns|=o,l)}function Hx(o,l,d,p,y){var x=j.p;j.p=x!==0&&8>x?x:8;var w=O.T,R={};O.T=R,Yg(o,!1,l,d);try{var z=y(),Q=O.S;if(Q!==null&&Q(R,z),z!==null&&typeof z=="object"&&typeof z.then=="function"){var re=tN(z,p);fu(o,l,re,qn(o))}else fu(o,l,p,qn(o))}catch(oe){fu(o,l,{then:function(){},status:"rejected",reason:oe},qn())}finally{j.p=x,w!==null&&R.types!==null&&(w.types=R.types),O.T=w}}function aN(){}function Wg(o,l,d,p){if(o.tag!==5)throw Error(r(476));var y=Vx(o).queue;Hx(o,y,l,Y,d===null?aN:function(){return Ux(o),d(p)})}function Vx(o){var l=o.memoizedState;if(l!==null)return l;l={memoizedState:Y,baseState:Y,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ai,lastRenderedState:Y},next:null};var d={};return l.next={memoizedState:d,baseState:d,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ai,lastRenderedState:d},next:null},o.memoizedState=l,o=o.alternate,o!==null&&(o.memoizedState=l),l}function Ux(o){var l=Vx(o);l.next===null&&(l=o.alternate.memoizedState),fu(o,l.next.queue,{},qn())}function Qg(){return Qt(Au)}function qx(){return kt().memoizedState}function Gx(){return kt().memoizedState}function lN(o){for(var l=o.return;l!==null;){switch(l.tag){case 24:case 3:var d=qn();o=Yi(d);var p=Xi(l,o,d);p!==null&&(Bn(p,l,d),au(p,l,d)),l={cache:Dg()},o.payload=l;return}l=l.return}}function uN(o,l,d){var p=qn();d={lane:p,revertLane:0,gesture:null,action:d,hasEagerState:!1,eagerState:null,next:null},tf(o)?Qx(l,d):(d=hg(o,l,d,p),d!==null&&(Bn(d,o,p),Yx(d,l,p)))}function Wx(o,l,d){var p=qn();fu(o,l,d,p)}function fu(o,l,d,p){var y={lane:p,revertLane:0,gesture:null,action:d,hasEagerState:!1,eagerState:null,next:null};if(tf(o))Qx(l,y);else{var x=o.alternate;if(o.lanes===0&&(x===null||x.lanes===0)&&(x=l.lastRenderedReducer,x!==null))try{var w=l.lastRenderedState,R=x(w,d);if(y.hasEagerState=!0,y.eagerState=R,Kn(R,w))return Od(o,l,y,0),rt===null&&Pd(),!1}catch{}if(d=hg(o,l,y,p),d!==null)return Bn(d,o,p),Yx(d,l,p),!0}return!1}function Yg(o,l,d,p){if(p={lane:2,revertLane:Tb(),gesture:null,action:p,hasEagerState:!1,eagerState:null,next:null},tf(o)){if(l)throw Error(r(479))}else l=hg(o,d,p,2),l!==null&&Bn(l,o,2)}function tf(o){var l=o.alternate;return o===Ae||l!==null&&l===Ae}function Qx(o,l){_a=Wd=!0;var d=o.pending;d===null?l.next=l:(l.next=d.next,d.next=l),o.pending=l}function Yx(o,l,d){if((d&4194048)!==0){var p=l.lanes;p&=o.pendingLanes,d|=p,l.lanes=d,tv(o,d)}}var hu={readContext:Qt,use:Xd,useCallback:bt,useContext:bt,useEffect:bt,useImperativeHandle:bt,useLayoutEffect:bt,useInsertionEffect:bt,useMemo:bt,useReducer:bt,useRef:bt,useState:bt,useDebugValue:bt,useDeferredValue:bt,useTransition:bt,useSyncExternalStore:bt,useId:bt,useHostTransitionStatus:bt,useFormState:bt,useActionState:bt,useOptimistic:bt,useMemoCache:bt,useCacheRefresh:bt};hu.useEffectEvent=bt;var Xx={readContext:Qt,use:Xd,useCallback:function(o,l){return gn().memoizedState=[o,l===void 0?null:l],o},useContext:Qt,useEffect:Px,useImperativeHandle:function(o,l,d){d=d!=null?d.concat([o]):null,Zd(4194308,4,Ix.bind(null,l,o),d)},useLayoutEffect:function(o,l){return Zd(4194308,4,o,l)},useInsertionEffect:function(o,l){Zd(4,2,o,l)},useMemo:function(o,l){var d=gn();l=l===void 0?null:l;var p=o();if(yo){_i(!0);try{o()}finally{_i(!1)}}return d.memoizedState=[p,l],p},useReducer:function(o,l,d){var p=gn();if(d!==void 0){var y=d(l);if(yo){_i(!0);try{d(l)}finally{_i(!1)}}}else y=l;return p.memoizedState=p.baseState=y,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:o,lastRenderedState:y},p.queue=o,o=o.dispatch=uN.bind(null,Ae,o),[p.memoizedState,o]},useRef:function(o){var l=gn();return o={current:o},l.memoizedState=o},useState:function(o){o=Hg(o);var l=o.queue,d=Wx.bind(null,Ae,l);return l.dispatch=d,[o.memoizedState,d]},useDebugValue:qg,useDeferredValue:function(o,l){var d=gn();return Gg(d,o,l)},useTransition:function(){var o=Hg(!1);return o=Hx.bind(null,Ae,o.queue,!0,!1),gn().memoizedState=o,[!1,o]},useSyncExternalStore:function(o,l,d){var p=Ae,y=gn();if(_e){if(d===void 0)throw Error(r(407));d=d()}else{if(d=l(),rt===null)throw Error(r(349));(Fe&127)!==0||yx(p,l,d)}y.memoizedState=d;var x={value:d,getSnapshot:l};return y.queue=x,Px(xx.bind(null,p,x,o),[o]),p.flags|=2048,Va(9,{destroy:void 0},vx.bind(null,p,x,d,l),null),d},useId:function(){var o=gn(),l=rt.identifierPrefix;if(_e){var d=Pr,p=Nr;d=(p&~(1<<32-Fn(p)-1)).toString(32)+d,l="_"+l+"R_"+d,d=Qd++,0<d&&(l+="H"+d.toString(32)),l+="_"}else d=nN++,l="_"+l+"r_"+d.toString(32)+"_";return o.memoizedState=l},useHostTransitionStatus:Qg,useFormState:Ax,useActionState:Ax,useOptimistic:function(o){var l=gn();l.memoizedState=l.baseState=o;var d={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return l.queue=d,l=Yg.bind(null,Ae,!0,d),d.dispatch=l,[o,l]},useMemoCache:Kg,useCacheRefresh:function(){return gn().memoizedState=lN.bind(null,Ae)},useEffectEvent:function(o){var l=gn(),d={impl:o};return l.memoizedState=d,function(){if((Ge&2)!==0)throw Error(r(440));return d.impl.apply(void 0,arguments)}}},Xg={readContext:Qt,use:Xd,useCallback:Kx,useContext:Qt,useEffect:Ug,useImperativeHandle:Fx,useInsertionEffect:Lx,useLayoutEffect:zx,useMemo:jx,useReducer:Jd,useRef:Nx,useState:function(){return Jd(ai)},useDebugValue:qg,useDeferredValue:function(o,l){var d=kt();return _x(d,et.memoizedState,o,l)},useTransition:function(){var o=Jd(ai)[0],l=kt().memoizedState;return[typeof o=="boolean"?o:du(o),l]},useSyncExternalStore:bx,useId:qx,useHostTransitionStatus:Qg,useFormState:Bx,useActionState:Bx,useOptimistic:function(o,l){var d=kt();return kx(d,et,o,l)},useMemoCache:Kg,useCacheRefresh:Gx};Xg.useEffectEvent=Ox;var Jx={readContext:Qt,use:Xd,useCallback:Kx,useContext:Qt,useEffect:Ug,useImperativeHandle:Fx,useInsertionEffect:Lx,useLayoutEffect:zx,useMemo:jx,useReducer:_g,useRef:Nx,useState:function(){return _g(ai)},useDebugValue:qg,useDeferredValue:function(o,l){var d=kt();return et===null?Gg(d,o,l):_x(d,et.memoizedState,o,l)},useTransition:function(){var o=_g(ai)[0],l=kt().memoizedState;return[typeof o=="boolean"?o:du(o),l]},useSyncExternalStore:bx,useId:qx,useHostTransitionStatus:Qg,useFormState:Rx,useActionState:Rx,useOptimistic:function(o,l){var d=kt();return et!==null?kx(d,et,o,l):(d.baseState=o,[o,d.queue.dispatch])},useMemoCache:Kg,useCacheRefresh:Gx};Jx.useEffectEvent=Ox;function Jg(o,l,d,p){l=o.memoizedState,d=d(p,l),d=d==null?l:m({},l,d),o.memoizedState=d,o.lanes===0&&(o.updateQueue.baseState=d)}var Zg={enqueueSetState:function(o,l,d){o=o._reactInternals;var p=qn(),y=Yi(p);y.payload=l,d!=null&&(y.callback=d),l=Xi(o,y,p),l!==null&&(Bn(l,o,p),au(l,o,p))},enqueueReplaceState:function(o,l,d){o=o._reactInternals;var p=qn(),y=Yi(p);y.tag=1,y.payload=l,d!=null&&(y.callback=d),l=Xi(o,y,p),l!==null&&(Bn(l,o,p),au(l,o,p))},enqueueForceUpdate:function(o,l){o=o._reactInternals;var d=qn(),p=Yi(d);p.tag=2,l!=null&&(p.callback=l),l=Xi(o,p,d),l!==null&&(Bn(l,o,d),au(l,o,d))}};function Zx(o,l,d,p,y,x,w){return o=o.stateNode,typeof o.shouldComponentUpdate=="function"?o.shouldComponentUpdate(p,x,w):l.prototype&&l.prototype.isPureReactComponent?!Zl(d,p)||!Zl(y,x):!0}function eC(o,l,d,p){o=l.state,typeof l.componentWillReceiveProps=="function"&&l.componentWillReceiveProps(d,p),typeof l.UNSAFE_componentWillReceiveProps=="function"&&l.UNSAFE_componentWillReceiveProps(d,p),l.state!==o&&Zg.enqueueReplaceState(l,l.state,null)}function vo(o,l){var d=l;if("ref"in l){d={};for(var p in l)p!=="ref"&&(d[p]=l[p])}if(o=o.defaultProps){d===l&&(d=m({},d));for(var y in o)d[y]===void 0&&(d[y]=o[y])}return d}function tC(o){Nd(o)}function nC(o){console.error(o)}function rC(o){Nd(o)}function nf(o,l){try{var d=o.onUncaughtError;d(l.value,{componentStack:l.stack})}catch(p){setTimeout(function(){throw p})}}function iC(o,l,d){try{var p=o.onCaughtError;p(d.value,{componentStack:d.stack,errorBoundary:l.tag===1?l.stateNode:null})}catch(y){setTimeout(function(){throw y})}}function eb(o,l,d){return d=Yi(d),d.tag=3,d.payload={element:null},d.callback=function(){nf(o,l)},d}function sC(o){return o=Yi(o),o.tag=3,o}function oC(o,l,d,p){var y=d.type.getDerivedStateFromError;if(typeof y=="function"){var x=p.value;o.payload=function(){return y(x)},o.callback=function(){iC(l,d,p)}}var w=d.stateNode;w!==null&&typeof w.componentDidCatch=="function"&&(o.callback=function(){iC(l,d,p),typeof y!="function"&&(rs===null?rs=new Set([this]):rs.add(this));var R=p.stack;this.componentDidCatch(p.value,{componentStack:R!==null?R:""})})}function cN(o,l,d,p,y){if(d.flags|=32768,p!==null&&typeof p=="object"&&typeof p.then=="function"){if(l=d.alternate,l!==null&&La(l,d,y,!0),d=_n.current,d!==null){switch(d.tag){case 31:case 13:return ir===null?mf():d.alternate===null&&yt===0&&(yt=3),d.flags&=-257,d.flags|=65536,d.lanes=y,p===Hd?d.flags|=16384:(l=d.updateQueue,l===null?d.updateQueue=new Set([p]):l.add(p),Sb(o,p,y)),!1;case 22:return d.flags|=65536,p===Hd?d.flags|=16384:(l=d.updateQueue,l===null?(l={transitions:null,markerInstances:null,retryQueue:new Set([p])},d.updateQueue=l):(d=l.retryQueue,d===null?l.retryQueue=new Set([p]):d.add(p)),Sb(o,p,y)),!1}throw Error(r(435,d.tag))}return Sb(o,p,y),mf(),!1}if(_e)return l=_n.current,l!==null?((l.flags&65536)===0&&(l.flags|=256),l.flags|=65536,l.lanes=y,p!==vg&&(o=Error(r(422),{cause:p}),nu(er(o,d)))):(p!==vg&&(l=Error(r(423),{cause:p}),nu(er(l,d))),o=o.current.alternate,o.flags|=65536,y&=-y,o.lanes|=y,p=er(p,d),y=eb(o.stateNode,p,y),Bg(o,y),yt!==4&&(yt=2)),!1;var x=Error(r(520),{cause:p});if(x=er(x,d),Cu===null?Cu=[x]:Cu.push(x),yt!==4&&(yt=2),l===null)return!0;p=er(p,d),d=l;do{switch(d.tag){case 3:return d.flags|=65536,o=y&-y,d.lanes|=o,o=eb(d.stateNode,p,o),Bg(d,o),!1;case 1:if(l=d.type,x=d.stateNode,(d.flags&128)===0&&(typeof l.getDerivedStateFromError=="function"||x!==null&&typeof x.componentDidCatch=="function"&&(rs===null||!rs.has(x))))return d.flags|=65536,y&=-y,d.lanes|=y,y=sC(y),oC(y,o,d,p),Bg(d,y),!1}d=d.return}while(d!==null);return!1}var tb=Error(r(461)),Tt=!1;function Yt(o,l,d,p){l.child=o===null?cx(l,null,d,p):bo(l,o.child,d,p)}function aC(o,l,d,p,y){d=d.render;var x=l.ref;if("ref"in p){var w={};for(var R in p)R!=="ref"&&(w[R]=p[R])}else w=p;return ho(l),p=Lg(o,l,d,w,x,y),R=zg(),o!==null&&!Tt?(Ig(o,l,y),li(o,l,y)):(_e&&R&&bg(l),l.flags|=1,Yt(o,l,p,y),l.child)}function lC(o,l,d,p,y){if(o===null){var x=d.type;return typeof x=="function"&&!pg(x)&&x.defaultProps===void 0&&d.compare===null?(l.tag=15,l.type=x,uC(o,l,x,p,y)):(o=zd(d.type,null,p,l,l.mode,y),o.ref=l.ref,o.return=l,l.child=o)}if(x=o.child,!ub(o,y)){var w=x.memoizedProps;if(d=d.compare,d=d!==null?d:Zl,d(w,p)&&o.ref===l.ref)return li(o,l,y)}return l.flags|=1,o=ni(x,p),o.ref=l.ref,o.return=l,l.child=o}function uC(o,l,d,p,y){if(o!==null){var x=o.memoizedProps;if(Zl(x,p)&&o.ref===l.ref)if(Tt=!1,l.pendingProps=p=x,ub(o,y))(o.flags&131072)!==0&&(Tt=!0);else return l.lanes=o.lanes,li(o,l,y)}return nb(o,l,d,p,y)}function cC(o,l,d,p){var y=p.children,x=o!==null?o.memoizedState:null;if(o===null&&l.stateNode===null&&(l.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),p.mode==="hidden"){if((l.flags&128)!==0){if(x=x!==null?x.baseLanes|d:d,o!==null){for(p=l.child=o.child,y=0;p!==null;)y=y|p.lanes|p.childLanes,p=p.sibling;p=y&~x}else p=0,l.child=null;return dC(o,l,x,d,p)}if((d&536870912)!==0)l.memoizedState={baseLanes:0,cachePool:null},o!==null&&jd(l,x!==null?x.cachePool:null),x!==null?hx(l,x):Rg(),px(l);else return p=l.lanes=536870912,dC(o,l,x!==null?x.baseLanes|d:d,d,p)}else x!==null?(jd(l,x.cachePool),hx(l,x),Zi(),l.memoizedState=null):(o!==null&&jd(l,null),Rg(),Zi());return Yt(o,l,y,d),l.child}function pu(o,l){return o!==null&&o.tag===22||l.stateNode!==null||(l.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),l.sibling}function dC(o,l,d,p,y){var x=wg();return x=x===null?null:{parent:wt._currentValue,pool:x},l.memoizedState={baseLanes:d,cachePool:x},o!==null&&jd(l,null),Rg(),px(l),o!==null&&La(o,l,p,!0),l.childLanes=y,null}function rf(o,l){return l=of({mode:l.mode,children:l.children},o.mode),l.ref=o.ref,o.child=l,l.return=o,l}function fC(o,l,d){return bo(l,o.child,null,d),o=rf(l,l.pendingProps),o.flags|=2,Hn(l),l.memoizedState=null,o}function dN(o,l,d){var p=l.pendingProps,y=(l.flags&128)!==0;if(l.flags&=-129,o===null){if(_e){if(p.mode==="hidden")return o=rf(l,p),l.lanes=536870912,pu(null,o);if(Pg(l),(o=ut)?(o=DE(o,rr),o=o!==null&&o.data==="&"?o:null,o!==null&&(l.memoizedState={dehydrated:o,treeContext:Ui!==null?{id:Nr,overflow:Pr}:null,retryLane:536870912,hydrationErrors:null},d=Qv(o),d.return=l,l.child=d,Wt=l,ut=null)):o=null,o===null)throw Gi(l);return l.lanes=536870912,null}return rf(l,p)}var x=o.memoizedState;if(x!==null){var w=x.dehydrated;if(Pg(l),y)if(l.flags&256)l.flags&=-257,l=fC(o,l,d);else if(l.memoizedState!==null)l.child=o.child,l.flags|=128,l=null;else throw Error(r(558));else if(Tt||La(o,l,d,!1),y=(d&o.childLanes)!==0,Tt||y){if(p=rt,p!==null&&(w=nv(p,d),w!==0&&w!==x.retryLane))throw x.retryLane=w,lo(o,w),Bn(p,o,w),tb;mf(),l=fC(o,l,d)}else o=x.treeContext,ut=sr(w.nextSibling),Wt=l,_e=!0,qi=null,rr=!1,o!==null&&Jv(l,o),l=rf(l,p),l.flags|=4096;return l}return o=ni(o.child,{mode:p.mode,children:p.children}),o.ref=l.ref,l.child=o,o.return=l,o}function sf(o,l){var d=l.ref;if(d===null)o!==null&&o.ref!==null&&(l.flags|=4194816);else{if(typeof d!="function"&&typeof d!="object")throw Error(r(284));(o===null||o.ref!==d)&&(l.flags|=4194816)}}function nb(o,l,d,p,y){return ho(l),d=Lg(o,l,d,p,void 0,y),p=zg(),o!==null&&!Tt?(Ig(o,l,y),li(o,l,y)):(_e&&p&&bg(l),l.flags|=1,Yt(o,l,d,y),l.child)}function hC(o,l,d,p,y,x){return ho(l),l.updateQueue=null,d=gx(l,p,d,y),mx(o),p=zg(),o!==null&&!Tt?(Ig(o,l,x),li(o,l,x)):(_e&&p&&bg(l),l.flags|=1,Yt(o,l,d,x),l.child)}function pC(o,l,d,p,y){if(ho(l),l.stateNode===null){var x=Ra,w=d.contextType;typeof w=="object"&&w!==null&&(x=Qt(w)),x=new d(p,x),l.memoizedState=x.state!==null&&x.state!==void 0?x.state:null,x.updater=Zg,l.stateNode=x,x._reactInternals=l,x=l.stateNode,x.props=p,x.state=l.memoizedState,x.refs={},Tg(l),w=d.contextType,x.context=typeof w=="object"&&w!==null?Qt(w):Ra,x.state=l.memoizedState,w=d.getDerivedStateFromProps,typeof w=="function"&&(Jg(l,d,w,p),x.state=l.memoizedState),typeof d.getDerivedStateFromProps=="function"||typeof x.getSnapshotBeforeUpdate=="function"||typeof x.UNSAFE_componentWillMount!="function"&&typeof x.componentWillMount!="function"||(w=x.state,typeof x.componentWillMount=="function"&&x.componentWillMount(),typeof x.UNSAFE_componentWillMount=="function"&&x.UNSAFE_componentWillMount(),w!==x.state&&Zg.enqueueReplaceState(x,x.state,null),uu(l,p,x,y),lu(),x.state=l.memoizedState),typeof x.componentDidMount=="function"&&(l.flags|=4194308),p=!0}else if(o===null){x=l.stateNode;var R=l.memoizedProps,z=vo(d,R);x.props=z;var Q=x.context,re=d.contextType;w=Ra,typeof re=="object"&&re!==null&&(w=Qt(re));var oe=d.getDerivedStateFromProps;re=typeof oe=="function"||typeof x.getSnapshotBeforeUpdate=="function",R=l.pendingProps!==R,re||typeof x.UNSAFE_componentWillReceiveProps!="function"&&typeof x.componentWillReceiveProps!="function"||(R||Q!==w)&&eC(l,x,p,w),Qi=!1;var X=l.memoizedState;x.state=X,uu(l,p,x,y),lu(),Q=l.memoizedState,R||X!==Q||Qi?(typeof oe=="function"&&(Jg(l,d,oe,p),Q=l.memoizedState),(z=Qi||Zx(l,d,z,p,X,Q,w))?(re||typeof x.UNSAFE_componentWillMount!="function"&&typeof x.componentWillMount!="function"||(typeof x.componentWillMount=="function"&&x.componentWillMount(),typeof x.UNSAFE_componentWillMount=="function"&&x.UNSAFE_componentWillMount()),typeof x.componentDidMount=="function"&&(l.flags|=4194308)):(typeof x.componentDidMount=="function"&&(l.flags|=4194308),l.memoizedProps=p,l.memoizedState=Q),x.props=p,x.state=Q,x.context=w,p=z):(typeof x.componentDidMount=="function"&&(l.flags|=4194308),p=!1)}else{x=l.stateNode,Ag(o,l),w=l.memoizedProps,re=vo(d,w),x.props=re,oe=l.pendingProps,X=x.context,Q=d.contextType,z=Ra,typeof Q=="object"&&Q!==null&&(z=Qt(Q)),R=d.getDerivedStateFromProps,(Q=typeof R=="function"||typeof x.getSnapshotBeforeUpdate=="function")||typeof x.UNSAFE_componentWillReceiveProps!="function"&&typeof x.componentWillReceiveProps!="function"||(w!==oe||X!==z)&&eC(l,x,p,z),Qi=!1,X=l.memoizedState,x.state=X,uu(l,p,x,y),lu();var ee=l.memoizedState;w!==oe||X!==ee||Qi||o!==null&&o.dependencies!==null&&Fd(o.dependencies)?(typeof R=="function"&&(Jg(l,d,R,p),ee=l.memoizedState),(re=Qi||Zx(l,d,re,p,X,ee,z)||o!==null&&o.dependencies!==null&&Fd(o.dependencies))?(Q||typeof x.UNSAFE_componentWillUpdate!="function"&&typeof x.componentWillUpdate!="function"||(typeof x.componentWillUpdate=="function"&&x.componentWillUpdate(p,ee,z),typeof x.UNSAFE_componentWillUpdate=="function"&&x.UNSAFE_componentWillUpdate(p,ee,z)),typeof x.componentDidUpdate=="function"&&(l.flags|=4),typeof x.getSnapshotBeforeUpdate=="function"&&(l.flags|=1024)):(typeof x.componentDidUpdate!="function"||w===o.memoizedProps&&X===o.memoizedState||(l.flags|=4),typeof x.getSnapshotBeforeUpdate!="function"||w===o.memoizedProps&&X===o.memoizedState||(l.flags|=1024),l.memoizedProps=p,l.memoizedState=ee),x.props=p,x.state=ee,x.context=z,p=re):(typeof x.componentDidUpdate!="function"||w===o.memoizedProps&&X===o.memoizedState||(l.flags|=4),typeof x.getSnapshotBeforeUpdate!="function"||w===o.memoizedProps&&X===o.memoizedState||(l.flags|=1024),p=!1)}return x=p,sf(o,l),p=(l.flags&128)!==0,x||p?(x=l.stateNode,d=p&&typeof d.getDerivedStateFromError!="function"?null:x.render(),l.flags|=1,o!==null&&p?(l.child=bo(l,o.child,null,y),l.child=bo(l,null,d,y)):Yt(o,l,d,y),l.memoizedState=x.state,o=l.child):o=li(o,l,y),o}function mC(o,l,d,p){return co(),l.flags|=256,Yt(o,l,d,p),l.child}var rb={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function ib(o){return{baseLanes:o,cachePool:ix()}}function sb(o,l,d){return o=o!==null?o.childLanes&~d:0,l&&(o|=Un),o}function gC(o,l,d){var p=l.pendingProps,y=!1,x=(l.flags&128)!==0,w;if((w=x)||(w=o!==null&&o.memoizedState===null?!1:(Et.current&2)!==0),w&&(y=!0,l.flags&=-129),w=(l.flags&32)!==0,l.flags&=-33,o===null){if(_e){if(y?Ji(l):Zi(),(o=ut)?(o=DE(o,rr),o=o!==null&&o.data!=="&"?o:null,o!==null&&(l.memoizedState={dehydrated:o,treeContext:Ui!==null?{id:Nr,overflow:Pr}:null,retryLane:536870912,hydrationErrors:null},d=Qv(o),d.return=l,l.child=d,Wt=l,ut=null)):o=null,o===null)throw Gi(l);return jb(o)?l.lanes=32:l.lanes=536870912,null}var R=p.children;return p=p.fallback,y?(Zi(),y=l.mode,R=of({mode:"hidden",children:R},y),p=uo(p,y,d,null),R.return=l,p.return=l,R.sibling=p,l.child=R,p=l.child,p.memoizedState=ib(d),p.childLanes=sb(o,w,d),l.memoizedState=rb,pu(null,p)):(Ji(l),ob(l,R))}var z=o.memoizedState;if(z!==null&&(R=z.dehydrated,R!==null)){if(x)l.flags&256?(Ji(l),l.flags&=-257,l=ab(o,l,d)):l.memoizedState!==null?(Zi(),l.child=o.child,l.flags|=128,l=null):(Zi(),R=p.fallback,y=l.mode,p=of({mode:"visible",children:p.children},y),R=uo(R,y,d,null),R.flags|=2,p.return=l,R.return=l,p.sibling=R,l.child=p,bo(l,o.child,null,d),p=l.child,p.memoizedState=ib(d),p.childLanes=sb(o,w,d),l.memoizedState=rb,l=pu(null,p));else if(Ji(l),jb(R)){if(w=R.nextSibling&&R.nextSibling.dataset,w)var Q=w.dgst;w=Q,p=Error(r(419)),p.stack="",p.digest=w,nu({value:p,source:null,stack:null}),l=ab(o,l,d)}else if(Tt||La(o,l,d,!1),w=(d&o.childLanes)!==0,Tt||w){if(w=rt,w!==null&&(p=nv(w,d),p!==0&&p!==z.retryLane))throw z.retryLane=p,lo(o,p),Bn(w,o,p),tb;Kb(R)||mf(),l=ab(o,l,d)}else Kb(R)?(l.flags|=192,l.child=o.child,l=null):(o=z.treeContext,ut=sr(R.nextSibling),Wt=l,_e=!0,qi=null,rr=!1,o!==null&&Jv(l,o),l=ob(l,p.children),l.flags|=4096);return l}return y?(Zi(),R=p.fallback,y=l.mode,z=o.child,Q=z.sibling,p=ni(z,{mode:"hidden",children:p.children}),p.subtreeFlags=z.subtreeFlags&65011712,Q!==null?R=ni(Q,R):(R=uo(R,y,d,null),R.flags|=2),R.return=l,p.return=l,p.sibling=R,l.child=p,pu(null,p),p=l.child,R=o.child.memoizedState,R===null?R=ib(d):(y=R.cachePool,y!==null?(z=wt._currentValue,y=y.parent!==z?{parent:z,pool:z}:y):y=ix(),R={baseLanes:R.baseLanes|d,cachePool:y}),p.memoizedState=R,p.childLanes=sb(o,w,d),l.memoizedState=rb,pu(o.child,p)):(Ji(l),d=o.child,o=d.sibling,d=ni(d,{mode:"visible",children:p.children}),d.return=l,d.sibling=null,o!==null&&(w=l.deletions,w===null?(l.deletions=[o],l.flags|=16):w.push(o)),l.child=d,l.memoizedState=null,d)}function ob(o,l){return l=of({mode:"visible",children:l},o.mode),l.return=o,o.child=l}function of(o,l){return o=jn(22,o,null,l),o.lanes=0,o}function ab(o,l,d){return bo(l,o.child,null,d),o=ob(l,l.pendingProps.children),o.flags|=2,l.memoizedState=null,o}function bC(o,l,d){o.lanes|=l;var p=o.alternate;p!==null&&(p.lanes|=l),Eg(o.return,l,d)}function lb(o,l,d,p,y,x){var w=o.memoizedState;w===null?o.memoizedState={isBackwards:l,rendering:null,renderingStartTime:0,last:p,tail:d,tailMode:y,treeForkCount:x}:(w.isBackwards=l,w.rendering=null,w.renderingStartTime=0,w.last=p,w.tail=d,w.tailMode=y,w.treeForkCount=x)}function yC(o,l,d){var p=l.pendingProps,y=p.revealOrder,x=p.tail;p=p.children;var w=Et.current,R=(w&2)!==0;if(R?(w=w&1|2,l.flags|=128):w&=1,ne(Et,w),Yt(o,l,p,d),p=_e?tu:0,!R&&o!==null&&(o.flags&128)!==0)e:for(o=l.child;o!==null;){if(o.tag===13)o.memoizedState!==null&&bC(o,d,l);else if(o.tag===19)bC(o,d,l);else if(o.child!==null){o.child.return=o,o=o.child;continue}if(o===l)break e;for(;o.sibling===null;){if(o.return===null||o.return===l)break e;o=o.return}o.sibling.return=o.return,o=o.sibling}switch(y){case"forwards":for(d=l.child,y=null;d!==null;)o=d.alternate,o!==null&&Gd(o)===null&&(y=d),d=d.sibling;d=y,d===null?(y=l.child,l.child=null):(y=d.sibling,d.sibling=null),lb(l,!1,y,d,x,p);break;case"backwards":case"unstable_legacy-backwards":for(d=null,y=l.child,l.child=null;y!==null;){if(o=y.alternate,o!==null&&Gd(o)===null){l.child=y;break}o=y.sibling,y.sibling=d,d=y,y=o}lb(l,!0,d,null,x,p);break;case"together":lb(l,!1,null,null,void 0,p);break;default:l.memoizedState=null}return l.child}function li(o,l,d){if(o!==null&&(l.dependencies=o.dependencies),ns|=l.lanes,(d&l.childLanes)===0)if(o!==null){if(La(o,l,d,!1),(d&l.childLanes)===0)return null}else return null;if(o!==null&&l.child!==o.child)throw Error(r(153));if(l.child!==null){for(o=l.child,d=ni(o,o.pendingProps),l.child=d,d.return=l;o.sibling!==null;)o=o.sibling,d=d.sibling=ni(o,o.pendingProps),d.return=l;d.sibling=null}return l.child}function ub(o,l){return(o.lanes&l)!==0?!0:(o=o.dependencies,!!(o!==null&&Fd(o)))}function fN(o,l,d){switch(l.tag){case 3:Ve(l,l.stateNode.containerInfo),Wi(l,wt,o.memoizedState.cache),co();break;case 27:case 5:kn(l);break;case 4:Ve(l,l.stateNode.containerInfo);break;case 10:Wi(l,l.type,l.memoizedProps.value);break;case 31:if(l.memoizedState!==null)return l.flags|=128,Pg(l),null;break;case 13:var p=l.memoizedState;if(p!==null)return p.dehydrated!==null?(Ji(l),l.flags|=128,null):(d&l.child.childLanes)!==0?gC(o,l,d):(Ji(l),o=li(o,l,d),o!==null?o.sibling:null);Ji(l);break;case 19:var y=(o.flags&128)!==0;if(p=(d&l.childLanes)!==0,p||(La(o,l,d,!1),p=(d&l.childLanes)!==0),y){if(p)return yC(o,l,d);l.flags|=128}if(y=l.memoizedState,y!==null&&(y.rendering=null,y.tail=null,y.lastEffect=null),ne(Et,Et.current),p)break;return null;case 22:return l.lanes=0,cC(o,l,d,l.pendingProps);case 24:Wi(l,wt,o.memoizedState.cache)}return li(o,l,d)}function vC(o,l,d){if(o!==null)if(o.memoizedProps!==l.pendingProps)Tt=!0;else{if(!ub(o,d)&&(l.flags&128)===0)return Tt=!1,fN(o,l,d);Tt=(o.flags&131072)!==0}else Tt=!1,_e&&(l.flags&1048576)!==0&&Xv(l,tu,l.index);switch(l.lanes=0,l.tag){case 16:e:{var p=l.pendingProps;if(o=mo(l.elementType),l.type=o,typeof o=="function")pg(o)?(p=vo(o,p),l.tag=1,l=pC(null,l,o,p,d)):(l.tag=0,l=nb(null,l,o,p,d));else{if(o!=null){var y=o.$$typeof;if(y===A){l.tag=11,l=aC(null,l,o,p,d);break e}else if(y===M){l.tag=14,l=lC(null,l,o,p,d);break e}}throw l=K(o)||o,Error(r(306,l,""))}}return l;case 0:return nb(o,l,l.type,l.pendingProps,d);case 1:return p=l.type,y=vo(p,l.pendingProps),pC(o,l,p,y,d);case 3:e:{if(Ve(l,l.stateNode.containerInfo),o===null)throw Error(r(387));p=l.pendingProps;var x=l.memoizedState;y=x.element,Ag(o,l),uu(l,p,null,d);var w=l.memoizedState;if(p=w.cache,Wi(l,wt,p),p!==x.cache&&kg(l,[wt],d,!0),lu(),p=w.element,x.isDehydrated)if(x={element:p,isDehydrated:!1,cache:w.cache},l.updateQueue.baseState=x,l.memoizedState=x,l.flags&256){l=mC(o,l,p,d);break e}else if(p!==y){y=er(Error(r(424)),l),nu(y),l=mC(o,l,p,d);break e}else for(o=l.stateNode.containerInfo,o.nodeType===9?o=o.body:o=o.nodeName==="HTML"?o.ownerDocument.body:o,ut=sr(o.firstChild),Wt=l,_e=!0,qi=null,rr=!0,d=cx(l,null,p,d),l.child=d;d;)d.flags=d.flags&-3|4096,d=d.sibling;else{if(co(),p===y){l=li(o,l,d);break e}Yt(o,l,p,d)}l=l.child}return l;case 26:return sf(o,l),o===null?(d=BE(l.type,null,l.pendingProps,null))?l.memoizedState=d:_e||(d=l.type,o=l.pendingProps,p=Ef(fe.current).createElement(d),p[Gt]=l,p[Dn]=o,Xt(p,d,o),_t(p),l.stateNode=p):l.memoizedState=BE(l.type,o.memoizedProps,l.pendingProps,o.memoizedState),null;case 27:return kn(l),o===null&&_e&&(p=l.stateNode=$E(l.type,l.pendingProps,fe.current),Wt=l,rr=!0,y=ut,ls(l.type)?(_b=y,ut=sr(p.firstChild)):ut=y),Yt(o,l,l.pendingProps.children,d),sf(o,l),o===null&&(l.flags|=4194304),l.child;case 5:return o===null&&_e&&((y=p=ut)&&(p=_N(p,l.type,l.pendingProps,rr),p!==null?(l.stateNode=p,Wt=l,ut=sr(p.firstChild),rr=!1,y=!0):y=!1),y||Gi(l)),kn(l),y=l.type,x=l.pendingProps,w=o!==null?o.memoizedProps:null,p=x.children,zb(y,x)?p=null:w!==null&&zb(y,w)&&(l.flags|=32),l.memoizedState!==null&&(y=Lg(o,l,rN,null,null,d),Au._currentValue=y),sf(o,l),Yt(o,l,p,d),l.child;case 6:return o===null&&_e&&((o=d=ut)&&(d=HN(d,l.pendingProps,rr),d!==null?(l.stateNode=d,Wt=l,ut=null,o=!0):o=!1),o||Gi(l)),null;case 13:return gC(o,l,d);case 4:return Ve(l,l.stateNode.containerInfo),p=l.pendingProps,o===null?l.child=bo(l,null,p,d):Yt(o,l,p,d),l.child;case 11:return aC(o,l,l.type,l.pendingProps,d);case 7:return Yt(o,l,l.pendingProps,d),l.child;case 8:return Yt(o,l,l.pendingProps.children,d),l.child;case 12:return Yt(o,l,l.pendingProps.children,d),l.child;case 10:return p=l.pendingProps,Wi(l,l.type,p.value),Yt(o,l,p.children,d),l.child;case 9:return y=l.type._context,p=l.pendingProps.children,ho(l),y=Qt(y),p=p(y),l.flags|=1,Yt(o,l,p,d),l.child;case 14:return lC(o,l,l.type,l.pendingProps,d);case 15:return uC(o,l,l.type,l.pendingProps,d);case 19:return yC(o,l,d);case 31:return dN(o,l,d);case 22:return cC(o,l,d,l.pendingProps);case 24:return ho(l),p=Qt(wt),o===null?(y=wg(),y===null&&(y=rt,x=Dg(),y.pooledCache=x,x.refCount++,x!==null&&(y.pooledCacheLanes|=d),y=x),l.memoizedState={parent:p,cache:y},Tg(l),Wi(l,wt,y)):((o.lanes&d)!==0&&(Ag(o,l),uu(l,null,null,d),lu()),y=o.memoizedState,x=l.memoizedState,y.parent!==p?(y={parent:p,cache:p},l.memoizedState=y,l.lanes===0&&(l.memoizedState=l.updateQueue.baseState=y),Wi(l,wt,p)):(p=x.cache,Wi(l,wt,p),p!==y.cache&&kg(l,[wt],d,!0))),Yt(o,l,l.pendingProps.children,d),l.child;case 29:throw l.pendingProps}throw Error(r(156,l.tag))}function ui(o){o.flags|=4}function cb(o,l,d,p,y){if((l=(o.mode&32)!==0)&&(l=!1),l){if(o.flags|=16777216,(y&335544128)===y)if(o.stateNode.complete)o.flags|=8192;else if(qC())o.flags|=8192;else throw go=Hd,$g}else o.flags&=-16777217}function xC(o,l){if(l.type!=="stylesheet"||(l.state.loading&4)!==0)o.flags&=-16777217;else if(o.flags|=16777216,!OE(l))if(qC())o.flags|=8192;else throw go=Hd,$g}function af(o,l){l!==null&&(o.flags|=4),o.flags&16384&&(l=o.tag!==22?Z1():536870912,o.lanes|=l,Wa|=l)}function mu(o,l){if(!_e)switch(o.tailMode){case"hidden":l=o.tail;for(var d=null;l!==null;)l.alternate!==null&&(d=l),l=l.sibling;d===null?o.tail=null:d.sibling=null;break;case"collapsed":d=o.tail;for(var p=null;d!==null;)d.alternate!==null&&(p=d),d=d.sibling;p===null?l||o.tail===null?o.tail=null:o.tail.sibling=null:p.sibling=null}}function ct(o){var l=o.alternate!==null&&o.alternate.child===o.child,d=0,p=0;if(l)for(var y=o.child;y!==null;)d|=y.lanes|y.childLanes,p|=y.subtreeFlags&65011712,p|=y.flags&65011712,y.return=o,y=y.sibling;else for(y=o.child;y!==null;)d|=y.lanes|y.childLanes,p|=y.subtreeFlags,p|=y.flags,y.return=o,y=y.sibling;return o.subtreeFlags|=p,o.childLanes=d,l}function hN(o,l,d){var p=l.pendingProps;switch(yg(l),l.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ct(l),null;case 1:return ct(l),null;case 3:return d=l.stateNode,p=null,o!==null&&(p=o.memoizedState.cache),l.memoizedState.cache!==p&&(l.flags|=2048),si(wt),Se(),d.pendingContext&&(d.context=d.pendingContext,d.pendingContext=null),(o===null||o.child===null)&&(Oa(l)?ui(l):o===null||o.memoizedState.isDehydrated&&(l.flags&256)===0||(l.flags|=1024,xg())),ct(l),null;case 26:var y=l.type,x=l.memoizedState;return o===null?(ui(l),x!==null?(ct(l),xC(l,x)):(ct(l),cb(l,y,null,p,d))):x?x!==o.memoizedState?(ui(l),ct(l),xC(l,x)):(ct(l),l.flags&=-16777217):(o=o.memoizedProps,o!==p&&ui(l),ct(l),cb(l,y,o,p,d)),null;case 27:if(sn(l),d=fe.current,y=l.type,o!==null&&l.stateNode!=null)o.memoizedProps!==p&&ui(l);else{if(!p){if(l.stateNode===null)throw Error(r(166));return ct(l),null}o=le.current,Oa(l)?Zv(l):(o=$E(y,p,d),l.stateNode=o,ui(l))}return ct(l),null;case 5:if(sn(l),y=l.type,o!==null&&l.stateNode!=null)o.memoizedProps!==p&&ui(l);else{if(!p){if(l.stateNode===null)throw Error(r(166));return ct(l),null}if(x=le.current,Oa(l))Zv(l);else{var w=Ef(fe.current);switch(x){case 1:x=w.createElementNS("http://www.w3.org/2000/svg",y);break;case 2:x=w.createElementNS("http://www.w3.org/1998/Math/MathML",y);break;default:switch(y){case"svg":x=w.createElementNS("http://www.w3.org/2000/svg",y);break;case"math":x=w.createElementNS("http://www.w3.org/1998/Math/MathML",y);break;case"script":x=w.createElement("div"),x.innerHTML="<script><\/script>",x=x.removeChild(x.firstChild);break;case"select":x=typeof p.is=="string"?w.createElement("select",{is:p.is}):w.createElement("select"),p.multiple?x.multiple=!0:p.size&&(x.size=p.size);break;default:x=typeof p.is=="string"?w.createElement(y,{is:p.is}):w.createElement(y)}}x[Gt]=l,x[Dn]=p;e:for(w=l.child;w!==null;){if(w.tag===5||w.tag===6)x.appendChild(w.stateNode);else if(w.tag!==4&&w.tag!==27&&w.child!==null){w.child.return=w,w=w.child;continue}if(w===l)break e;for(;w.sibling===null;){if(w.return===null||w.return===l)break e;w=w.return}w.sibling.return=w.return,w=w.sibling}l.stateNode=x;e:switch(Xt(x,y,p),y){case"button":case"input":case"select":case"textarea":p=!!p.autoFocus;break e;case"img":p=!0;break e;default:p=!1}p&&ui(l)}}return ct(l),cb(l,l.type,o===null?null:o.memoizedProps,l.pendingProps,d),null;case 6:if(o&&l.stateNode!=null)o.memoizedProps!==p&&ui(l);else{if(typeof p!="string"&&l.stateNode===null)throw Error(r(166));if(o=fe.current,Oa(l)){if(o=l.stateNode,d=l.memoizedProps,p=null,y=Wt,y!==null)switch(y.tag){case 27:case 5:p=y.memoizedProps}o[Gt]=l,o=!!(o.nodeValue===d||p!==null&&p.suppressHydrationWarning===!0||gE(o.nodeValue,d)),o||Gi(l,!0)}else o=Ef(o).createTextNode(p),o[Gt]=l,l.stateNode=o}return ct(l),null;case 31:if(d=l.memoizedState,o===null||o.memoizedState!==null){if(p=Oa(l),d!==null){if(o===null){if(!p)throw Error(r(318));if(o=l.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(r(557));o[Gt]=l}else co(),(l.flags&128)===0&&(l.memoizedState=null),l.flags|=4;ct(l),o=!1}else d=xg(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=d),o=!0;if(!o)return l.flags&256?(Hn(l),l):(Hn(l),null);if((l.flags&128)!==0)throw Error(r(558))}return ct(l),null;case 13:if(p=l.memoizedState,o===null||o.memoizedState!==null&&o.memoizedState.dehydrated!==null){if(y=Oa(l),p!==null&&p.dehydrated!==null){if(o===null){if(!y)throw Error(r(318));if(y=l.memoizedState,y=y!==null?y.dehydrated:null,!y)throw Error(r(317));y[Gt]=l}else co(),(l.flags&128)===0&&(l.memoizedState=null),l.flags|=4;ct(l),y=!1}else y=xg(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=y),y=!0;if(!y)return l.flags&256?(Hn(l),l):(Hn(l),null)}return Hn(l),(l.flags&128)!==0?(l.lanes=d,l):(d=p!==null,o=o!==null&&o.memoizedState!==null,d&&(p=l.child,y=null,p.alternate!==null&&p.alternate.memoizedState!==null&&p.alternate.memoizedState.cachePool!==null&&(y=p.alternate.memoizedState.cachePool.pool),x=null,p.memoizedState!==null&&p.memoizedState.cachePool!==null&&(x=p.memoizedState.cachePool.pool),x!==y&&(p.flags|=2048)),d!==o&&d&&(l.child.flags|=8192),af(l,l.updateQueue),ct(l),null);case 4:return Se(),o===null&&Rb(l.stateNode.containerInfo),ct(l),null;case 10:return si(l.type),ct(l),null;case 19:if(U(Et),p=l.memoizedState,p===null)return ct(l),null;if(y=(l.flags&128)!==0,x=p.rendering,x===null)if(y)mu(p,!1);else{if(yt!==0||o!==null&&(o.flags&128)!==0)for(o=l.child;o!==null;){if(x=Gd(o),x!==null){for(l.flags|=128,mu(p,!1),o=x.updateQueue,l.updateQueue=o,af(l,o),l.subtreeFlags=0,o=d,d=l.child;d!==null;)Wv(d,o),d=d.sibling;return ne(Et,Et.current&1|2),_e&&ri(l,p.treeForkCount),l.child}o=o.sibling}p.tail!==null&&on()>ff&&(l.flags|=128,y=!0,mu(p,!1),l.lanes=4194304)}else{if(!y)if(o=Gd(x),o!==null){if(l.flags|=128,y=!0,o=o.updateQueue,l.updateQueue=o,af(l,o),mu(p,!0),p.tail===null&&p.tailMode==="hidden"&&!x.alternate&&!_e)return ct(l),null}else 2*on()-p.renderingStartTime>ff&&d!==536870912&&(l.flags|=128,y=!0,mu(p,!1),l.lanes=4194304);p.isBackwards?(x.sibling=l.child,l.child=x):(o=p.last,o!==null?o.sibling=x:l.child=x,p.last=x)}return p.tail!==null?(o=p.tail,p.rendering=o,p.tail=o.sibling,p.renderingStartTime=on(),o.sibling=null,d=Et.current,ne(Et,y?d&1|2:d&1),_e&&ri(l,p.treeForkCount),o):(ct(l),null);case 22:case 23:return Hn(l),Ng(),p=l.memoizedState!==null,o!==null?o.memoizedState!==null!==p&&(l.flags|=8192):p&&(l.flags|=8192),p?(d&536870912)!==0&&(l.flags&128)===0&&(ct(l),l.subtreeFlags&6&&(l.flags|=8192)):ct(l),d=l.updateQueue,d!==null&&af(l,d.retryQueue),d=null,o!==null&&o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(d=o.memoizedState.cachePool.pool),p=null,l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(p=l.memoizedState.cachePool.pool),p!==d&&(l.flags|=2048),o!==null&&U(po),null;case 24:return d=null,o!==null&&(d=o.memoizedState.cache),l.memoizedState.cache!==d&&(l.flags|=2048),si(wt),ct(l),null;case 25:return null;case 30:return null}throw Error(r(156,l.tag))}function pN(o,l){switch(yg(l),l.tag){case 1:return o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 3:return si(wt),Se(),o=l.flags,(o&65536)!==0&&(o&128)===0?(l.flags=o&-65537|128,l):null;case 26:case 27:case 5:return sn(l),null;case 31:if(l.memoizedState!==null){if(Hn(l),l.alternate===null)throw Error(r(340));co()}return o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 13:if(Hn(l),o=l.memoizedState,o!==null&&o.dehydrated!==null){if(l.alternate===null)throw Error(r(340));co()}return o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 19:return U(Et),null;case 4:return Se(),null;case 10:return si(l.type),null;case 22:case 23:return Hn(l),Ng(),o!==null&&U(po),o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 24:return si(wt),null;case 25:return null;default:return null}}function CC(o,l){switch(yg(l),l.tag){case 3:si(wt),Se();break;case 26:case 27:case 5:sn(l);break;case 4:Se();break;case 31:l.memoizedState!==null&&Hn(l);break;case 13:Hn(l);break;case 19:U(Et);break;case 10:si(l.type);break;case 22:case 23:Hn(l),Ng(),o!==null&&U(po);break;case 24:si(wt)}}function gu(o,l){try{var d=l.updateQueue,p=d!==null?d.lastEffect:null;if(p!==null){var y=p.next;d=y;do{if((d.tag&o)===o){p=void 0;var x=d.create,w=d.inst;p=x(),w.destroy=p}d=d.next}while(d!==y)}}catch(R){Ye(l,l.return,R)}}function es(o,l,d){try{var p=l.updateQueue,y=p!==null?p.lastEffect:null;if(y!==null){var x=y.next;p=x;do{if((p.tag&o)===o){var w=p.inst,R=w.destroy;if(R!==void 0){w.destroy=void 0,y=l;var z=d,Q=R;try{Q()}catch(re){Ye(y,z,re)}}}p=p.next}while(p!==x)}}catch(re){Ye(l,l.return,re)}}function EC(o){var l=o.updateQueue;if(l!==null){var d=o.stateNode;try{fx(l,d)}catch(p){Ye(o,o.return,p)}}}function kC(o,l,d){d.props=vo(o.type,o.memoizedProps),d.state=o.memoizedState;try{d.componentWillUnmount()}catch(p){Ye(o,l,p)}}function bu(o,l){try{var d=o.ref;if(d!==null){switch(o.tag){case 26:case 27:case 5:var p=o.stateNode;break;case 30:p=o.stateNode;break;default:p=o.stateNode}typeof d=="function"?o.refCleanup=d(p):d.current=p}}catch(y){Ye(o,l,y)}}function Or(o,l){var d=o.ref,p=o.refCleanup;if(d!==null)if(typeof p=="function")try{p()}catch(y){Ye(o,l,y)}finally{o.refCleanup=null,o=o.alternate,o!=null&&(o.refCleanup=null)}else if(typeof d=="function")try{d(null)}catch(y){Ye(o,l,y)}else d.current=null}function DC(o){var l=o.type,d=o.memoizedProps,p=o.stateNode;try{e:switch(l){case"button":case"input":case"select":case"textarea":d.autoFocus&&p.focus();break e;case"img":d.src?p.src=d.src:d.srcSet&&(p.srcset=d.srcSet)}}catch(y){Ye(o,o.return,y)}}function db(o,l,d){try{var p=o.stateNode;LN(p,o.type,d,l),p[Dn]=l}catch(y){Ye(o,o.return,y)}}function SC(o){return o.tag===5||o.tag===3||o.tag===26||o.tag===27&&ls(o.type)||o.tag===4}function fb(o){e:for(;;){for(;o.sibling===null;){if(o.return===null||SC(o.return))return null;o=o.return}for(o.sibling.return=o.return,o=o.sibling;o.tag!==5&&o.tag!==6&&o.tag!==18;){if(o.tag===27&&ls(o.type)||o.flags&2||o.child===null||o.tag===4)continue e;o.child.return=o,o=o.child}if(!(o.flags&2))return o.stateNode}}function hb(o,l,d){var p=o.tag;if(p===5||p===6)o=o.stateNode,l?(d.nodeType===9?d.body:d.nodeName==="HTML"?d.ownerDocument.body:d).insertBefore(o,l):(l=d.nodeType===9?d.body:d.nodeName==="HTML"?d.ownerDocument.body:d,l.appendChild(o),d=d._reactRootContainer,d!=null||l.onclick!==null||(l.onclick=ei));else if(p!==4&&(p===27&&ls(o.type)&&(d=o.stateNode,l=null),o=o.child,o!==null))for(hb(o,l,d),o=o.sibling;o!==null;)hb(o,l,d),o=o.sibling}function lf(o,l,d){var p=o.tag;if(p===5||p===6)o=o.stateNode,l?d.insertBefore(o,l):d.appendChild(o);else if(p!==4&&(p===27&&ls(o.type)&&(d=o.stateNode),o=o.child,o!==null))for(lf(o,l,d),o=o.sibling;o!==null;)lf(o,l,d),o=o.sibling}function wC(o){var l=o.stateNode,d=o.memoizedProps;try{for(var p=o.type,y=l.attributes;y.length;)l.removeAttributeNode(y[0]);Xt(l,p,d),l[Gt]=o,l[Dn]=d}catch(x){Ye(o,o.return,x)}}var ci=!1,At=!1,pb=!1,$C=typeof WeakSet=="function"?WeakSet:Set,Ht=null;function mN(o,l){if(o=o.containerInfo,Ob=Af,o=Fv(o),ag(o)){if("selectionStart"in o)var d={start:o.selectionStart,end:o.selectionEnd};else e:{d=(d=o.ownerDocument)&&d.defaultView||window;var p=d.getSelection&&d.getSelection();if(p&&p.rangeCount!==0){d=p.anchorNode;var y=p.anchorOffset,x=p.focusNode;p=p.focusOffset;try{d.nodeType,x.nodeType}catch{d=null;break e}var w=0,R=-1,z=-1,Q=0,re=0,oe=o,X=null;t:for(;;){for(var ee;oe!==d||y!==0&&oe.nodeType!==3||(R=w+y),oe!==x||p!==0&&oe.nodeType!==3||(z=w+p),oe.nodeType===3&&(w+=oe.nodeValue.length),(ee=oe.firstChild)!==null;)X=oe,oe=ee;for(;;){if(oe===o)break t;if(X===d&&++Q===y&&(R=w),X===x&&++re===p&&(z=w),(ee=oe.nextSibling)!==null)break;oe=X,X=oe.parentNode}oe=ee}d=R===-1||z===-1?null:{start:R,end:z}}else d=null}d=d||{start:0,end:0}}else d=null;for(Lb={focusedElem:o,selectionRange:d},Af=!1,Ht=l;Ht!==null;)if(l=Ht,o=l.child,(l.subtreeFlags&1028)!==0&&o!==null)o.return=l,Ht=o;else for(;Ht!==null;){switch(l=Ht,x=l.alternate,o=l.flags,l.tag){case 0:if((o&4)!==0&&(o=l.updateQueue,o=o!==null?o.events:null,o!==null))for(d=0;d<o.length;d++)y=o[d],y.ref.impl=y.nextImpl;break;case 11:case 15:break;case 1:if((o&1024)!==0&&x!==null){o=void 0,d=l,y=x.memoizedProps,x=x.memoizedState,p=d.stateNode;try{var be=vo(d.type,y);o=p.getSnapshotBeforeUpdate(be,x),p.__reactInternalSnapshotBeforeUpdate=o}catch(ke){Ye(d,d.return,ke)}}break;case 3:if((o&1024)!==0){if(o=l.stateNode.containerInfo,d=o.nodeType,d===9)Fb(o);else if(d===1)switch(o.nodeName){case"HEAD":case"HTML":case"BODY":Fb(o);break;default:o.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((o&1024)!==0)throw Error(r(163))}if(o=l.sibling,o!==null){o.return=l.return,Ht=o;break}Ht=l.return}}function TC(o,l,d){var p=d.flags;switch(d.tag){case 0:case 11:case 15:fi(o,d),p&4&&gu(5,d);break;case 1:if(fi(o,d),p&4)if(o=d.stateNode,l===null)try{o.componentDidMount()}catch(w){Ye(d,d.return,w)}else{var y=vo(d.type,l.memoizedProps);l=l.memoizedState;try{o.componentDidUpdate(y,l,o.__reactInternalSnapshotBeforeUpdate)}catch(w){Ye(d,d.return,w)}}p&64&&EC(d),p&512&&bu(d,d.return);break;case 3:if(fi(o,d),p&64&&(o=d.updateQueue,o!==null)){if(l=null,d.child!==null)switch(d.child.tag){case 27:case 5:l=d.child.stateNode;break;case 1:l=d.child.stateNode}try{fx(o,l)}catch(w){Ye(d,d.return,w)}}break;case 27:l===null&&p&4&&wC(d);case 26:case 5:fi(o,d),l===null&&p&4&&DC(d),p&512&&bu(d,d.return);break;case 12:fi(o,d);break;case 31:fi(o,d),p&4&&MC(o,d);break;case 13:fi(o,d),p&4&&RC(o,d),p&64&&(o=d.memoizedState,o!==null&&(o=o.dehydrated,o!==null&&(d=DN.bind(null,d),VN(o,d))));break;case 22:if(p=d.memoizedState!==null||ci,!p){l=l!==null&&l.memoizedState!==null||At,y=ci;var x=At;ci=p,(At=l)&&!x?hi(o,d,(d.subtreeFlags&8772)!==0):fi(o,d),ci=y,At=x}break;case 30:break;default:fi(o,d)}}function AC(o){var l=o.alternate;l!==null&&(o.alternate=null,AC(l)),o.child=null,o.deletions=null,o.sibling=null,o.tag===5&&(l=o.stateNode,l!==null&&Vm(l)),o.stateNode=null,o.return=null,o.dependencies=null,o.memoizedProps=null,o.memoizedState=null,o.pendingProps=null,o.stateNode=null,o.updateQueue=null}var ft=null,wn=!1;function di(o,l,d){for(d=d.child;d!==null;)BC(o,l,d),d=d.sibling}function BC(o,l,d){if(In&&typeof In.onCommitFiberUnmount=="function")try{In.onCommitFiberUnmount(jl,d)}catch{}switch(d.tag){case 26:At||Or(d,l),di(o,l,d),d.memoizedState?d.memoizedState.count--:d.stateNode&&(d=d.stateNode,d.parentNode.removeChild(d));break;case 27:At||Or(d,l);var p=ft,y=wn;ls(d.type)&&(ft=d.stateNode,wn=!1),di(o,l,d),wu(d.stateNode),ft=p,wn=y;break;case 5:At||Or(d,l);case 6:if(p=ft,y=wn,ft=null,di(o,l,d),ft=p,wn=y,ft!==null)if(wn)try{(ft.nodeType===9?ft.body:ft.nodeName==="HTML"?ft.ownerDocument.body:ft).removeChild(d.stateNode)}catch(x){Ye(d,l,x)}else try{ft.removeChild(d.stateNode)}catch(x){Ye(d,l,x)}break;case 18:ft!==null&&(wn?(o=ft,EE(o.nodeType===9?o.body:o.nodeName==="HTML"?o.ownerDocument.body:o,d.stateNode),nl(o)):EE(ft,d.stateNode));break;case 4:p=ft,y=wn,ft=d.stateNode.containerInfo,wn=!0,di(o,l,d),ft=p,wn=y;break;case 0:case 11:case 14:case 15:es(2,d,l),At||es(4,d,l),di(o,l,d);break;case 1:At||(Or(d,l),p=d.stateNode,typeof p.componentWillUnmount=="function"&&kC(d,l,p)),di(o,l,d);break;case 21:di(o,l,d);break;case 22:At=(p=At)||d.memoizedState!==null,di(o,l,d),At=p;break;default:di(o,l,d)}}function MC(o,l){if(l.memoizedState===null&&(o=l.alternate,o!==null&&(o=o.memoizedState,o!==null))){o=o.dehydrated;try{nl(o)}catch(d){Ye(l,l.return,d)}}}function RC(o,l){if(l.memoizedState===null&&(o=l.alternate,o!==null&&(o=o.memoizedState,o!==null&&(o=o.dehydrated,o!==null))))try{nl(o)}catch(d){Ye(l,l.return,d)}}function gN(o){switch(o.tag){case 31:case 13:case 19:var l=o.stateNode;return l===null&&(l=o.stateNode=new $C),l;case 22:return o=o.stateNode,l=o._retryCache,l===null&&(l=o._retryCache=new $C),l;default:throw Error(r(435,o.tag))}}function uf(o,l){var d=gN(o);l.forEach(function(p){if(!d.has(p)){d.add(p);var y=SN.bind(null,o,p);p.then(y,y)}})}function $n(o,l){var d=l.deletions;if(d!==null)for(var p=0;p<d.length;p++){var y=d[p],x=o,w=l,R=w;e:for(;R!==null;){switch(R.tag){case 27:if(ls(R.type)){ft=R.stateNode,wn=!1;break e}break;case 5:ft=R.stateNode,wn=!1;break e;case 3:case 4:ft=R.stateNode.containerInfo,wn=!0;break e}R=R.return}if(ft===null)throw Error(r(160));BC(x,w,y),ft=null,wn=!1,x=y.alternate,x!==null&&(x.return=null),y.return=null}if(l.subtreeFlags&13886)for(l=l.child;l!==null;)NC(l,o),l=l.sibling}var vr=null;function NC(o,l){var d=o.alternate,p=o.flags;switch(o.tag){case 0:case 11:case 14:case 15:$n(l,o),Tn(o),p&4&&(es(3,o,o.return),gu(3,o),es(5,o,o.return));break;case 1:$n(l,o),Tn(o),p&512&&(At||d===null||Or(d,d.return)),p&64&&ci&&(o=o.updateQueue,o!==null&&(p=o.callbacks,p!==null&&(d=o.shared.hiddenCallbacks,o.shared.hiddenCallbacks=d===null?p:d.concat(p))));break;case 26:var y=vr;if($n(l,o),Tn(o),p&512&&(At||d===null||Or(d,d.return)),p&4){var x=d!==null?d.memoizedState:null;if(p=o.memoizedState,d===null)if(p===null)if(o.stateNode===null){e:{p=o.type,d=o.memoizedProps,y=y.ownerDocument||y;t:switch(p){case"title":x=y.getElementsByTagName("title")[0],(!x||x[Vl]||x[Gt]||x.namespaceURI==="http://www.w3.org/2000/svg"||x.hasAttribute("itemprop"))&&(x=y.createElement(p),y.head.insertBefore(x,y.querySelector("head > title"))),Xt(x,p,d),x[Gt]=o,_t(x),p=x;break e;case"link":var w=NE("link","href",y).get(p+(d.href||""));if(w){for(var R=0;R<w.length;R++)if(x=w[R],x.getAttribute("href")===(d.href==null||d.href===""?null:d.href)&&x.getAttribute("rel")===(d.rel==null?null:d.rel)&&x.getAttribute("title")===(d.title==null?null:d.title)&&x.getAttribute("crossorigin")===(d.crossOrigin==null?null:d.crossOrigin)){w.splice(R,1);break t}}x=y.createElement(p),Xt(x,p,d),y.head.appendChild(x);break;case"meta":if(w=NE("meta","content",y).get(p+(d.content||""))){for(R=0;R<w.length;R++)if(x=w[R],x.getAttribute("content")===(d.content==null?null:""+d.content)&&x.getAttribute("name")===(d.name==null?null:d.name)&&x.getAttribute("property")===(d.property==null?null:d.property)&&x.getAttribute("http-equiv")===(d.httpEquiv==null?null:d.httpEquiv)&&x.getAttribute("charset")===(d.charSet==null?null:d.charSet)){w.splice(R,1);break t}}x=y.createElement(p),Xt(x,p,d),y.head.appendChild(x);break;default:throw Error(r(468,p))}x[Gt]=o,_t(x),p=x}o.stateNode=p}else PE(y,o.type,o.stateNode);else o.stateNode=RE(y,p,o.memoizedProps);else x!==p?(x===null?d.stateNode!==null&&(d=d.stateNode,d.parentNode.removeChild(d)):x.count--,p===null?PE(y,o.type,o.stateNode):RE(y,p,o.memoizedProps)):p===null&&o.stateNode!==null&&db(o,o.memoizedProps,d.memoizedProps)}break;case 27:$n(l,o),Tn(o),p&512&&(At||d===null||Or(d,d.return)),d!==null&&p&4&&db(o,o.memoizedProps,d.memoizedProps);break;case 5:if($n(l,o),Tn(o),p&512&&(At||d===null||Or(d,d.return)),o.flags&32){y=o.stateNode;try{Sa(y,"")}catch(be){Ye(o,o.return,be)}}p&4&&o.stateNode!=null&&(y=o.memoizedProps,db(o,y,d!==null?d.memoizedProps:y)),p&1024&&(pb=!0);break;case 6:if($n(l,o),Tn(o),p&4){if(o.stateNode===null)throw Error(r(162));p=o.memoizedProps,d=o.stateNode;try{d.nodeValue=p}catch(be){Ye(o,o.return,be)}}break;case 3:if(Sf=null,y=vr,vr=kf(l.containerInfo),$n(l,o),vr=y,Tn(o),p&4&&d!==null&&d.memoizedState.isDehydrated)try{nl(l.containerInfo)}catch(be){Ye(o,o.return,be)}pb&&(pb=!1,PC(o));break;case 4:p=vr,vr=kf(o.stateNode.containerInfo),$n(l,o),Tn(o),vr=p;break;case 12:$n(l,o),Tn(o);break;case 31:$n(l,o),Tn(o),p&4&&(p=o.updateQueue,p!==null&&(o.updateQueue=null,uf(o,p)));break;case 13:$n(l,o),Tn(o),o.child.flags&8192&&o.memoizedState!==null!=(d!==null&&d.memoizedState!==null)&&(df=on()),p&4&&(p=o.updateQueue,p!==null&&(o.updateQueue=null,uf(o,p)));break;case 22:y=o.memoizedState!==null;var z=d!==null&&d.memoizedState!==null,Q=ci,re=At;if(ci=Q||y,At=re||z,$n(l,o),At=re,ci=Q,Tn(o),p&8192)e:for(l=o.stateNode,l._visibility=y?l._visibility&-2:l._visibility|1,y&&(d===null||z||ci||At||xo(o)),d=null,l=o;;){if(l.tag===5||l.tag===26){if(d===null){z=d=l;try{if(x=z.stateNode,y)w=x.style,typeof w.setProperty=="function"?w.setProperty("display","none","important"):w.display="none";else{R=z.stateNode;var oe=z.memoizedProps.style,X=oe!=null&&oe.hasOwnProperty("display")?oe.display:null;R.style.display=X==null||typeof X=="boolean"?"":(""+X).trim()}}catch(be){Ye(z,z.return,be)}}}else if(l.tag===6){if(d===null){z=l;try{z.stateNode.nodeValue=y?"":z.memoizedProps}catch(be){Ye(z,z.return,be)}}}else if(l.tag===18){if(d===null){z=l;try{var ee=z.stateNode;y?kE(ee,!0):kE(z.stateNode,!1)}catch(be){Ye(z,z.return,be)}}}else if((l.tag!==22&&l.tag!==23||l.memoizedState===null||l===o)&&l.child!==null){l.child.return=l,l=l.child;continue}if(l===o)break e;for(;l.sibling===null;){if(l.return===null||l.return===o)break e;d===l&&(d=null),l=l.return}d===l&&(d=null),l.sibling.return=l.return,l=l.sibling}p&4&&(p=o.updateQueue,p!==null&&(d=p.retryQueue,d!==null&&(p.retryQueue=null,uf(o,d))));break;case 19:$n(l,o),Tn(o),p&4&&(p=o.updateQueue,p!==null&&(o.updateQueue=null,uf(o,p)));break;case 30:break;case 21:break;default:$n(l,o),Tn(o)}}function Tn(o){var l=o.flags;if(l&2){try{for(var d,p=o.return;p!==null;){if(SC(p)){d=p;break}p=p.return}if(d==null)throw Error(r(160));switch(d.tag){case 27:var y=d.stateNode,x=fb(o);lf(o,x,y);break;case 5:var w=d.stateNode;d.flags&32&&(Sa(w,""),d.flags&=-33);var R=fb(o);lf(o,R,w);break;case 3:case 4:var z=d.stateNode.containerInfo,Q=fb(o);hb(o,Q,z);break;default:throw Error(r(161))}}catch(re){Ye(o,o.return,re)}o.flags&=-3}l&4096&&(o.flags&=-4097)}function PC(o){if(o.subtreeFlags&1024)for(o=o.child;o!==null;){var l=o;PC(l),l.tag===5&&l.flags&1024&&l.stateNode.reset(),o=o.sibling}}function fi(o,l){if(l.subtreeFlags&8772)for(l=l.child;l!==null;)TC(o,l.alternate,l),l=l.sibling}function xo(o){for(o=o.child;o!==null;){var l=o;switch(l.tag){case 0:case 11:case 14:case 15:es(4,l,l.return),xo(l);break;case 1:Or(l,l.return);var d=l.stateNode;typeof d.componentWillUnmount=="function"&&kC(l,l.return,d),xo(l);break;case 27:wu(l.stateNode);case 26:case 5:Or(l,l.return),xo(l);break;case 22:l.memoizedState===null&&xo(l);break;case 30:xo(l);break;default:xo(l)}o=o.sibling}}function hi(o,l,d){for(d=d&&(l.subtreeFlags&8772)!==0,l=l.child;l!==null;){var p=l.alternate,y=o,x=l,w=x.flags;switch(x.tag){case 0:case 11:case 15:hi(y,x,d),gu(4,x);break;case 1:if(hi(y,x,d),p=x,y=p.stateNode,typeof y.componentDidMount=="function")try{y.componentDidMount()}catch(Q){Ye(p,p.return,Q)}if(p=x,y=p.updateQueue,y!==null){var R=p.stateNode;try{var z=y.shared.hiddenCallbacks;if(z!==null)for(y.shared.hiddenCallbacks=null,y=0;y<z.length;y++)dx(z[y],R)}catch(Q){Ye(p,p.return,Q)}}d&&w&64&&EC(x),bu(x,x.return);break;case 27:wC(x);case 26:case 5:hi(y,x,d),d&&p===null&&w&4&&DC(x),bu(x,x.return);break;case 12:hi(y,x,d);break;case 31:hi(y,x,d),d&&w&4&&MC(y,x);break;case 13:hi(y,x,d),d&&w&4&&RC(y,x);break;case 22:x.memoizedState===null&&hi(y,x,d),bu(x,x.return);break;case 30:break;default:hi(y,x,d)}l=l.sibling}}function mb(o,l){var d=null;o!==null&&o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(d=o.memoizedState.cachePool.pool),o=null,l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(o=l.memoizedState.cachePool.pool),o!==d&&(o!=null&&o.refCount++,d!=null&&ru(d))}function gb(o,l){o=null,l.alternate!==null&&(o=l.alternate.memoizedState.cache),l=l.memoizedState.cache,l!==o&&(l.refCount++,o!=null&&ru(o))}function xr(o,l,d,p){if(l.subtreeFlags&10256)for(l=l.child;l!==null;)OC(o,l,d,p),l=l.sibling}function OC(o,l,d,p){var y=l.flags;switch(l.tag){case 0:case 11:case 15:xr(o,l,d,p),y&2048&&gu(9,l);break;case 1:xr(o,l,d,p);break;case 3:xr(o,l,d,p),y&2048&&(o=null,l.alternate!==null&&(o=l.alternate.memoizedState.cache),l=l.memoizedState.cache,l!==o&&(l.refCount++,o!=null&&ru(o)));break;case 12:if(y&2048){xr(o,l,d,p),o=l.stateNode;try{var x=l.memoizedProps,w=x.id,R=x.onPostCommit;typeof R=="function"&&R(w,l.alternate===null?"mount":"update",o.passiveEffectDuration,-0)}catch(z){Ye(l,l.return,z)}}else xr(o,l,d,p);break;case 31:xr(o,l,d,p);break;case 13:xr(o,l,d,p);break;case 23:break;case 22:x=l.stateNode,w=l.alternate,l.memoizedState!==null?x._visibility&2?xr(o,l,d,p):yu(o,l):x._visibility&2?xr(o,l,d,p):(x._visibility|=2,Ua(o,l,d,p,(l.subtreeFlags&10256)!==0||!1)),y&2048&&mb(w,l);break;case 24:xr(o,l,d,p),y&2048&&gb(l.alternate,l);break;default:xr(o,l,d,p)}}function Ua(o,l,d,p,y){for(y=y&&((l.subtreeFlags&10256)!==0||!1),l=l.child;l!==null;){var x=o,w=l,R=d,z=p,Q=w.flags;switch(w.tag){case 0:case 11:case 15:Ua(x,w,R,z,y),gu(8,w);break;case 23:break;case 22:var re=w.stateNode;w.memoizedState!==null?re._visibility&2?Ua(x,w,R,z,y):yu(x,w):(re._visibility|=2,Ua(x,w,R,z,y)),y&&Q&2048&&mb(w.alternate,w);break;case 24:Ua(x,w,R,z,y),y&&Q&2048&&gb(w.alternate,w);break;default:Ua(x,w,R,z,y)}l=l.sibling}}function yu(o,l){if(l.subtreeFlags&10256)for(l=l.child;l!==null;){var d=o,p=l,y=p.flags;switch(p.tag){case 22:yu(d,p),y&2048&&mb(p.alternate,p);break;case 24:yu(d,p),y&2048&&gb(p.alternate,p);break;default:yu(d,p)}l=l.sibling}}var vu=8192;function qa(o,l,d){if(o.subtreeFlags&vu)for(o=o.child;o!==null;)LC(o,l,d),o=o.sibling}function LC(o,l,d){switch(o.tag){case 26:qa(o,l,d),o.flags&vu&&o.memoizedState!==null&&nP(d,vr,o.memoizedState,o.memoizedProps);break;case 5:qa(o,l,d);break;case 3:case 4:var p=vr;vr=kf(o.stateNode.containerInfo),qa(o,l,d),vr=p;break;case 22:o.memoizedState===null&&(p=o.alternate,p!==null&&p.memoizedState!==null?(p=vu,vu=16777216,qa(o,l,d),vu=p):qa(o,l,d));break;default:qa(o,l,d)}}function zC(o){var l=o.alternate;if(l!==null&&(o=l.child,o!==null)){l.child=null;do l=o.sibling,o.sibling=null,o=l;while(o!==null)}}function xu(o){var l=o.deletions;if((o.flags&16)!==0){if(l!==null)for(var d=0;d<l.length;d++){var p=l[d];Ht=p,FC(p,o)}zC(o)}if(o.subtreeFlags&10256)for(o=o.child;o!==null;)IC(o),o=o.sibling}function IC(o){switch(o.tag){case 0:case 11:case 15:xu(o),o.flags&2048&&es(9,o,o.return);break;case 3:xu(o);break;case 12:xu(o);break;case 22:var l=o.stateNode;o.memoizedState!==null&&l._visibility&2&&(o.return===null||o.return.tag!==13)?(l._visibility&=-3,cf(o)):xu(o);break;default:xu(o)}}function cf(o){var l=o.deletions;if((o.flags&16)!==0){if(l!==null)for(var d=0;d<l.length;d++){var p=l[d];Ht=p,FC(p,o)}zC(o)}for(o=o.child;o!==null;){switch(l=o,l.tag){case 0:case 11:case 15:es(8,l,l.return),cf(l);break;case 22:d=l.stateNode,d._visibility&2&&(d._visibility&=-3,cf(l));break;default:cf(l)}o=o.sibling}}function FC(o,l){for(;Ht!==null;){var d=Ht;switch(d.tag){case 0:case 11:case 15:es(8,d,l);break;case 23:case 22:if(d.memoizedState!==null&&d.memoizedState.cachePool!==null){var p=d.memoizedState.cachePool.pool;p!=null&&p.refCount++}break;case 24:ru(d.memoizedState.cache)}if(p=d.child,p!==null)p.return=d,Ht=p;else e:for(d=o;Ht!==null;){p=Ht;var y=p.sibling,x=p.return;if(AC(p),p===d){Ht=null;break e}if(y!==null){y.return=x,Ht=y;break e}Ht=x}}}var bN={getCacheForType:function(o){var l=Qt(wt),d=l.data.get(o);return d===void 0&&(d=o(),l.data.set(o,d)),d},cacheSignal:function(){return Qt(wt).controller.signal}},yN=typeof WeakMap=="function"?WeakMap:Map,Ge=0,rt=null,Pe=null,Fe=0,Qe=0,Vn=null,ts=!1,Ga=!1,bb=!1,pi=0,yt=0,ns=0,Co=0,yb=0,Un=0,Wa=0,Cu=null,An=null,vb=!1,df=0,KC=0,ff=1/0,hf=null,rs=null,Lt=0,is=null,Qa=null,mi=0,xb=0,Cb=null,jC=null,Eu=0,Eb=null;function qn(){return(Ge&2)!==0&&Fe!==0?Fe&-Fe:O.T!==null?Tb():rv()}function _C(){if(Un===0)if((Fe&536870912)===0||_e){var o=xd;xd<<=1,(xd&3932160)===0&&(xd=262144),Un=o}else Un=536870912;return o=_n.current,o!==null&&(o.flags|=32),Un}function Bn(o,l,d){(o===rt&&(Qe===2||Qe===9)||o.cancelPendingCommit!==null)&&(Ya(o,0),ss(o,Fe,Un,!1)),Hl(o,d),((Ge&2)===0||o!==rt)&&(o===rt&&((Ge&2)===0&&(Co|=d),yt===4&&ss(o,Fe,Un,!1)),Lr(o))}function HC(o,l,d){if((Ge&6)!==0)throw Error(r(327));var p=!d&&(l&127)===0&&(l&o.expiredLanes)===0||_l(o,l),y=p?CN(o,l):Db(o,l,!0),x=p;do{if(y===0){Ga&&!p&&ss(o,l,0,!1);break}else{if(d=o.current.alternate,x&&!vN(d)){y=Db(o,l,!1),x=!1;continue}if(y===2){if(x=l,o.errorRecoveryDisabledLanes&x)var w=0;else w=o.pendingLanes&-536870913,w=w!==0?w:w&536870912?536870912:0;if(w!==0){l=w;e:{var R=o;y=Cu;var z=R.current.memoizedState.isDehydrated;if(z&&(Ya(R,w).flags|=256),w=Db(R,w,!1),w!==2){if(bb&&!z){R.errorRecoveryDisabledLanes|=x,Co|=x,y=4;break e}x=An,An=y,x!==null&&(An===null?An=x:An.push.apply(An,x))}y=w}if(x=!1,y!==2)continue}}if(y===1){Ya(o,0),ss(o,l,0,!0);break}e:{switch(p=o,x=y,x){case 0:case 1:throw Error(r(345));case 4:if((l&4194048)!==l)break;case 6:ss(p,l,Un,!ts);break e;case 2:An=null;break;case 3:case 5:break;default:throw Error(r(329))}if((l&62914560)===l&&(y=df+300-on(),10<y)){if(ss(p,l,Un,!ts),Ed(p,0,!0)!==0)break e;mi=l,p.timeoutHandle=xE(VC.bind(null,p,d,An,hf,vb,l,Un,Co,Wa,ts,x,"Throttled",-0,0),y);break e}VC(p,d,An,hf,vb,l,Un,Co,Wa,ts,x,null,-0,0)}}break}while(!0);Lr(o)}function VC(o,l,d,p,y,x,w,R,z,Q,re,oe,X,ee){if(o.timeoutHandle=-1,oe=l.subtreeFlags,oe&8192||(oe&16785408)===16785408){oe={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:ei},LC(l,x,oe);var be=(x&62914560)===x?df-on():(x&4194048)===x?KC-on():0;if(be=rP(oe,be),be!==null){mi=x,o.cancelPendingCommit=be(JC.bind(null,o,l,x,d,p,y,w,R,z,re,oe,null,X,ee)),ss(o,x,w,!Q);return}}JC(o,l,x,d,p,y,w,R,z)}function vN(o){for(var l=o;;){var d=l.tag;if((d===0||d===11||d===15)&&l.flags&16384&&(d=l.updateQueue,d!==null&&(d=d.stores,d!==null)))for(var p=0;p<d.length;p++){var y=d[p],x=y.getSnapshot;y=y.value;try{if(!Kn(x(),y))return!1}catch{return!1}}if(d=l.child,l.subtreeFlags&16384&&d!==null)d.return=l,l=d;else{if(l===o)break;for(;l.sibling===null;){if(l.return===null||l.return===o)return!0;l=l.return}l.sibling.return=l.return,l=l.sibling}}return!0}function ss(o,l,d,p){l&=~yb,l&=~Co,o.suspendedLanes|=l,o.pingedLanes&=~l,p&&(o.warmLanes|=l),p=o.expirationTimes;for(var y=l;0<y;){var x=31-Fn(y),w=1<<x;p[x]=-1,y&=~w}d!==0&&ev(o,d,l)}function pf(){return(Ge&6)===0?(ku(0),!1):!0}function kb(){if(Pe!==null){if(Qe===0)var o=Pe.return;else o=Pe,ii=fo=null,Fg(o),Ka=null,su=0,o=Pe;for(;o!==null;)CC(o.alternate,o),o=o.return;Pe=null}}function Ya(o,l){var d=o.timeoutHandle;d!==-1&&(o.timeoutHandle=-1,FN(d)),d=o.cancelPendingCommit,d!==null&&(o.cancelPendingCommit=null,d()),mi=0,kb(),rt=o,Pe=d=ni(o.current,null),Fe=l,Qe=0,Vn=null,ts=!1,Ga=_l(o,l),bb=!1,Wa=Un=yb=Co=ns=yt=0,An=Cu=null,vb=!1,(l&8)!==0&&(l|=l&32);var p=o.entangledLanes;if(p!==0)for(o=o.entanglements,p&=l;0<p;){var y=31-Fn(p),x=1<<y;l|=o[y],p&=~x}return pi=l,Pd(),d}function UC(o,l){Ae=null,O.H=hu,l===Fa||l===_d?(l=ax(),Qe=3):l===$g?(l=ax(),Qe=4):Qe=l===tb?8:l!==null&&typeof l=="object"&&typeof l.then=="function"?6:1,Vn=l,Pe===null&&(yt=1,nf(o,er(l,o.current)))}function qC(){var o=_n.current;return o===null?!0:(Fe&4194048)===Fe?ir===null:(Fe&62914560)===Fe||(Fe&536870912)!==0?o===ir:!1}function GC(){var o=O.H;return O.H=hu,o===null?hu:o}function WC(){var o=O.A;return O.A=bN,o}function mf(){yt=4,ts||(Fe&4194048)!==Fe&&_n.current!==null||(Ga=!0),(ns&134217727)===0&&(Co&134217727)===0||rt===null||ss(rt,Fe,Un,!1)}function Db(o,l,d){var p=Ge;Ge|=2;var y=GC(),x=WC();(rt!==o||Fe!==l)&&(hf=null,Ya(o,l)),l=!1;var w=yt;e:do try{if(Qe!==0&&Pe!==null){var R=Pe,z=Vn;switch(Qe){case 8:kb(),w=6;break e;case 3:case 2:case 9:case 6:_n.current===null&&(l=!0);var Q=Qe;if(Qe=0,Vn=null,Xa(o,R,z,Q),d&&Ga){w=0;break e}break;default:Q=Qe,Qe=0,Vn=null,Xa(o,R,z,Q)}}xN(),w=yt;break}catch(re){UC(o,re)}while(!0);return l&&o.shellSuspendCounter++,ii=fo=null,Ge=p,O.H=y,O.A=x,Pe===null&&(rt=null,Fe=0,Pd()),w}function xN(){for(;Pe!==null;)QC(Pe)}function CN(o,l){var d=Ge;Ge|=2;var p=GC(),y=WC();rt!==o||Fe!==l?(hf=null,ff=on()+500,Ya(o,l)):Ga=_l(o,l);e:do try{if(Qe!==0&&Pe!==null){l=Pe;var x=Vn;t:switch(Qe){case 1:Qe=0,Vn=null,Xa(o,l,x,1);break;case 2:case 9:if(sx(x)){Qe=0,Vn=null,YC(l);break}l=function(){Qe!==2&&Qe!==9||rt!==o||(Qe=7),Lr(o)},x.then(l,l);break e;case 3:Qe=7;break e;case 4:Qe=5;break e;case 7:sx(x)?(Qe=0,Vn=null,YC(l)):(Qe=0,Vn=null,Xa(o,l,x,7));break;case 5:var w=null;switch(Pe.tag){case 26:w=Pe.memoizedState;case 5:case 27:var R=Pe;if(w?OE(w):R.stateNode.complete){Qe=0,Vn=null;var z=R.sibling;if(z!==null)Pe=z;else{var Q=R.return;Q!==null?(Pe=Q,gf(Q)):Pe=null}break t}}Qe=0,Vn=null,Xa(o,l,x,5);break;case 6:Qe=0,Vn=null,Xa(o,l,x,6);break;case 8:kb(),yt=6;break e;default:throw Error(r(462))}}EN();break}catch(re){UC(o,re)}while(!0);return ii=fo=null,O.H=p,O.A=y,Ge=d,Pe!==null?0:(rt=null,Fe=0,Pd(),yt)}function EN(){for(;Pe!==null&&!yd();)QC(Pe)}function QC(o){var l=vC(o.alternate,o,pi);o.memoizedProps=o.pendingProps,l===null?gf(o):Pe=l}function YC(o){var l=o,d=l.alternate;switch(l.tag){case 15:case 0:l=hC(d,l,l.pendingProps,l.type,void 0,Fe);break;case 11:l=hC(d,l,l.pendingProps,l.type.render,l.ref,Fe);break;case 5:Fg(l);default:CC(d,l),l=Pe=Wv(l,pi),l=vC(d,l,pi)}o.memoizedProps=o.pendingProps,l===null?gf(o):Pe=l}function Xa(o,l,d,p){ii=fo=null,Fg(l),Ka=null,su=0;var y=l.return;try{if(cN(o,y,l,d,Fe)){yt=1,nf(o,er(d,o.current)),Pe=null;return}}catch(x){if(y!==null)throw Pe=y,x;yt=1,nf(o,er(d,o.current)),Pe=null;return}l.flags&32768?(_e||p===1?o=!0:Ga||(Fe&536870912)!==0?o=!1:(ts=o=!0,(p===2||p===9||p===3||p===6)&&(p=_n.current,p!==null&&p.tag===13&&(p.flags|=16384))),XC(l,o)):gf(l)}function gf(o){var l=o;do{if((l.flags&32768)!==0){XC(l,ts);return}o=l.return;var d=hN(l.alternate,l,pi);if(d!==null){Pe=d;return}if(l=l.sibling,l!==null){Pe=l;return}Pe=l=o}while(l!==null);yt===0&&(yt=5)}function XC(o,l){do{var d=pN(o.alternate,o);if(d!==null){d.flags&=32767,Pe=d;return}if(d=o.return,d!==null&&(d.flags|=32768,d.subtreeFlags=0,d.deletions=null),!l&&(o=o.sibling,o!==null)){Pe=o;return}Pe=o=d}while(o!==null);yt=6,Pe=null}function JC(o,l,d,p,y,x,w,R,z){o.cancelPendingCommit=null;do bf();while(Lt!==0);if((Ge&6)!==0)throw Error(r(327));if(l!==null){if(l===o.current)throw Error(r(177));if(x=l.lanes|l.childLanes,x|=fg,tR(o,d,x,w,R,z),o===rt&&(Pe=rt=null,Fe=0),Qa=l,is=o,mi=d,xb=x,Cb=y,jC=p,(l.subtreeFlags&10256)!==0||(l.flags&10256)!==0?(o.callbackNode=null,o.callbackPriority=0,wN(ya,function(){return rE(),null})):(o.callbackNode=null,o.callbackPriority=0),p=(l.flags&13878)!==0,(l.subtreeFlags&13878)!==0||p){p=O.T,O.T=null,y=j.p,j.p=2,w=Ge,Ge|=4;try{mN(o,l,d)}finally{Ge=w,j.p=y,O.T=p}}Lt=1,ZC(),eE(),tE()}}function ZC(){if(Lt===1){Lt=0;var o=is,l=Qa,d=(l.flags&13878)!==0;if((l.subtreeFlags&13878)!==0||d){d=O.T,O.T=null;var p=j.p;j.p=2;var y=Ge;Ge|=4;try{NC(l,o);var x=Lb,w=Fv(o.containerInfo),R=x.focusedElem,z=x.selectionRange;if(w!==R&&R&&R.ownerDocument&&Iv(R.ownerDocument.documentElement,R)){if(z!==null&&ag(R)){var Q=z.start,re=z.end;if(re===void 0&&(re=Q),"selectionStart"in R)R.selectionStart=Q,R.selectionEnd=Math.min(re,R.value.length);else{var oe=R.ownerDocument||document,X=oe&&oe.defaultView||window;if(X.getSelection){var ee=X.getSelection(),be=R.textContent.length,ke=Math.min(z.start,be),nt=z.end===void 0?ke:Math.min(z.end,be);!ee.extend&&ke>nt&&(w=nt,nt=ke,ke=w);var G=zv(R,ke),_=zv(R,nt);if(G&&_&&(ee.rangeCount!==1||ee.anchorNode!==G.node||ee.anchorOffset!==G.offset||ee.focusNode!==_.node||ee.focusOffset!==_.offset)){var W=oe.createRange();W.setStart(G.node,G.offset),ee.removeAllRanges(),ke>nt?(ee.addRange(W),ee.extend(_.node,_.offset)):(W.setEnd(_.node,_.offset),ee.addRange(W))}}}}for(oe=[],ee=R;ee=ee.parentNode;)ee.nodeType===1&&oe.push({element:ee,left:ee.scrollLeft,top:ee.scrollTop});for(typeof R.focus=="function"&&R.focus(),R=0;R<oe.length;R++){var se=oe[R];se.element.scrollLeft=se.left,se.element.scrollTop=se.top}}Af=!!Ob,Lb=Ob=null}finally{Ge=y,j.p=p,O.T=d}}o.current=l,Lt=2}}function eE(){if(Lt===2){Lt=0;var o=is,l=Qa,d=(l.flags&8772)!==0;if((l.subtreeFlags&8772)!==0||d){d=O.T,O.T=null;var p=j.p;j.p=2;var y=Ge;Ge|=4;try{TC(o,l.alternate,l)}finally{Ge=y,j.p=p,O.T=d}}Lt=3}}function tE(){if(Lt===4||Lt===3){Lt=0,Fm();var o=is,l=Qa,d=mi,p=jC;(l.subtreeFlags&10256)!==0||(l.flags&10256)!==0?Lt=5:(Lt=0,Qa=is=null,nE(o,o.pendingLanes));var y=o.pendingLanes;if(y===0&&(rs=null),_m(d),l=l.stateNode,In&&typeof In.onCommitFiberRoot=="function")try{In.onCommitFiberRoot(jl,l,void 0,(l.current.flags&128)===128)}catch{}if(p!==null){l=O.T,y=j.p,j.p=2,O.T=null;try{for(var x=o.onRecoverableError,w=0;w<p.length;w++){var R=p[w];x(R.value,{componentStack:R.stack})}}finally{O.T=l,j.p=y}}(mi&3)!==0&&bf(),Lr(o),y=o.pendingLanes,(d&261930)!==0&&(y&42)!==0?o===Eb?Eu++:(Eu=0,Eb=o):Eu=0,ku(0)}}function nE(o,l){(o.pooledCacheLanes&=l)===0&&(l=o.pooledCache,l!=null&&(o.pooledCache=null,ru(l)))}function bf(){return ZC(),eE(),tE(),rE()}function rE(){if(Lt!==5)return!1;var o=is,l=xb;xb=0;var d=_m(mi),p=O.T,y=j.p;try{j.p=32>d?32:d,O.T=null,d=Cb,Cb=null;var x=is,w=mi;if(Lt=0,Qa=is=null,mi=0,(Ge&6)!==0)throw Error(r(331));var R=Ge;if(Ge|=4,IC(x.current),OC(x,x.current,w,d),Ge=R,ku(0,!1),In&&typeof In.onPostCommitFiberRoot=="function")try{In.onPostCommitFiberRoot(jl,x)}catch{}return!0}finally{j.p=y,O.T=p,nE(o,l)}}function iE(o,l,d){l=er(d,l),l=eb(o.stateNode,l,2),o=Xi(o,l,2),o!==null&&(Hl(o,2),Lr(o))}function Ye(o,l,d){if(o.tag===3)iE(o,o,d);else for(;l!==null;){if(l.tag===3){iE(l,o,d);break}else if(l.tag===1){var p=l.stateNode;if(typeof l.type.getDerivedStateFromError=="function"||typeof p.componentDidCatch=="function"&&(rs===null||!rs.has(p))){o=er(d,o),d=sC(2),p=Xi(l,d,2),p!==null&&(oC(d,p,l,o),Hl(p,2),Lr(p));break}}l=l.return}}function Sb(o,l,d){var p=o.pingCache;if(p===null){p=o.pingCache=new yN;var y=new Set;p.set(l,y)}else y=p.get(l),y===void 0&&(y=new Set,p.set(l,y));y.has(d)||(bb=!0,y.add(d),o=kN.bind(null,o,l,d),l.then(o,o))}function kN(o,l,d){var p=o.pingCache;p!==null&&p.delete(l),o.pingedLanes|=o.suspendedLanes&d,o.warmLanes&=~d,rt===o&&(Fe&d)===d&&(yt===4||yt===3&&(Fe&62914560)===Fe&&300>on()-df?(Ge&2)===0&&Ya(o,0):yb|=d,Wa===Fe&&(Wa=0)),Lr(o)}function sE(o,l){l===0&&(l=Z1()),o=lo(o,l),o!==null&&(Hl(o,l),Lr(o))}function DN(o){var l=o.memoizedState,d=0;l!==null&&(d=l.retryLane),sE(o,d)}function SN(o,l){var d=0;switch(o.tag){case 31:case 13:var p=o.stateNode,y=o.memoizedState;y!==null&&(d=y.retryLane);break;case 19:p=o.stateNode;break;case 22:p=o.stateNode._retryCache;break;default:throw Error(r(314))}p!==null&&p.delete(l),sE(o,d)}function wN(o,l){return br(o,l)}var yf=null,Ja=null,wb=!1,vf=!1,$b=!1,as=0;function Lr(o){o!==Ja&&o.next===null&&(Ja===null?yf=Ja=o:Ja=Ja.next=o),vf=!0,wb||(wb=!0,TN())}function ku(o,l){if(!$b&&vf){$b=!0;do for(var d=!1,p=yf;p!==null;){if(o!==0){var y=p.pendingLanes;if(y===0)var x=0;else{var w=p.suspendedLanes,R=p.pingedLanes;x=(1<<31-Fn(42|o)+1)-1,x&=y&~(w&~R),x=x&201326741?x&201326741|1:x?x|2:0}x!==0&&(d=!0,uE(p,x))}else x=Fe,x=Ed(p,p===rt?x:0,p.cancelPendingCommit!==null||p.timeoutHandle!==-1),(x&3)===0||_l(p,x)||(d=!0,uE(p,x));p=p.next}while(d);$b=!1}}function $N(){oE()}function oE(){vf=wb=!1;var o=0;as!==0&&IN()&&(o=as);for(var l=on(),d=null,p=yf;p!==null;){var y=p.next,x=aE(p,l);x===0?(p.next=null,d===null?yf=y:d.next=y,y===null&&(Ja=d)):(d=p,(o!==0||(x&3)!==0)&&(vf=!0)),p=y}Lt!==0&&Lt!==5||ku(o),as!==0&&(as=0)}function aE(o,l){for(var d=o.suspendedLanes,p=o.pingedLanes,y=o.expirationTimes,x=o.pendingLanes&-62914561;0<x;){var w=31-Fn(x),R=1<<w,z=y[w];z===-1?((R&d)===0||(R&p)!==0)&&(y[w]=eR(R,l)):z<=l&&(o.expiredLanes|=R),x&=~R}if(l=rt,d=Fe,d=Ed(o,o===l?d:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),p=o.callbackNode,d===0||o===l&&(Qe===2||Qe===9)||o.cancelPendingCommit!==null)return p!==null&&p!==null&&Kl(p),o.callbackNode=null,o.callbackPriority=0;if((d&3)===0||_l(o,d)){if(l=d&-d,l===o.callbackPriority)return l;switch(p!==null&&Kl(p),_m(d)){case 2:case 8:d=Rr;break;case 32:d=ya;break;case 268435456:d=J1;break;default:d=ya}return p=lE.bind(null,o),d=br(d,p),o.callbackPriority=l,o.callbackNode=d,l}return p!==null&&p!==null&&Kl(p),o.callbackPriority=2,o.callbackNode=null,2}function lE(o,l){if(Lt!==0&&Lt!==5)return o.callbackNode=null,o.callbackPriority=0,null;var d=o.callbackNode;if(bf()&&o.callbackNode!==d)return null;var p=Fe;return p=Ed(o,o===rt?p:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),p===0?null:(HC(o,p,l),aE(o,on()),o.callbackNode!=null&&o.callbackNode===d?lE.bind(null,o):null)}function uE(o,l){if(bf())return null;HC(o,l,!0)}function TN(){KN(function(){(Ge&6)!==0?br(qt,$N):oE()})}function Tb(){if(as===0){var o=za;o===0&&(o=vd,vd<<=1,(vd&261888)===0&&(vd=256)),as=o}return as}function cE(o){return o==null||typeof o=="symbol"||typeof o=="boolean"?null:typeof o=="function"?o:wd(""+o)}function dE(o,l){var d=l.ownerDocument.createElement("input");return d.name=l.name,d.value=l.value,o.id&&d.setAttribute("form",o.id),l.parentNode.insertBefore(d,l),o=new FormData(o),d.parentNode.removeChild(d),o}function AN(o,l,d,p,y){if(l==="submit"&&d&&d.stateNode===y){var x=cE((y[Dn]||null).action),w=p.submitter;w&&(l=(l=w[Dn]||null)?cE(l.formAction):w.getAttribute("formAction"),l!==null&&(x=l,w=null));var R=new Bd("action","action",null,p,y);o.push({event:R,listeners:[{instance:null,listener:function(){if(p.defaultPrevented){if(as!==0){var z=w?dE(y,w):new FormData(y);Wg(d,{pending:!0,data:z,method:y.method,action:x},null,z)}}else typeof x=="function"&&(R.preventDefault(),z=w?dE(y,w):new FormData(y),Wg(d,{pending:!0,data:z,method:y.method,action:x},x,z))},currentTarget:y}]})}}for(var Ab=0;Ab<dg.length;Ab++){var Bb=dg[Ab],BN=Bb.toLowerCase(),MN=Bb[0].toUpperCase()+Bb.slice(1);yr(BN,"on"+MN)}yr(_v,"onAnimationEnd"),yr(Hv,"onAnimationIteration"),yr(Vv,"onAnimationStart"),yr("dblclick","onDoubleClick"),yr("focusin","onFocus"),yr("focusout","onBlur"),yr(GR,"onTransitionRun"),yr(WR,"onTransitionStart"),yr(QR,"onTransitionCancel"),yr(Uv,"onTransitionEnd"),ka("onMouseEnter",["mouseout","mouseover"]),ka("onMouseLeave",["mouseout","mouseover"]),ka("onPointerEnter",["pointerout","pointerover"]),ka("onPointerLeave",["pointerout","pointerover"]),io("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),io("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),io("onBeforeInput",["compositionend","keypress","textInput","paste"]),io("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),io("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),io("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Du="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),RN=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(Du));function fE(o,l){l=(l&4)!==0;for(var d=0;d<o.length;d++){var p=o[d],y=p.event;p=p.listeners;e:{var x=void 0;if(l)for(var w=p.length-1;0<=w;w--){var R=p[w],z=R.instance,Q=R.currentTarget;if(R=R.listener,z!==x&&y.isPropagationStopped())break e;x=R,y.currentTarget=Q;try{x(y)}catch(re){Nd(re)}y.currentTarget=null,x=z}else for(w=0;w<p.length;w++){if(R=p[w],z=R.instance,Q=R.currentTarget,R=R.listener,z!==x&&y.isPropagationStopped())break e;x=R,y.currentTarget=Q;try{x(y)}catch(re){Nd(re)}y.currentTarget=null,x=z}}}}function Oe(o,l){var d=l[Hm];d===void 0&&(d=l[Hm]=new Set);var p=o+"__bubble";d.has(p)||(hE(l,o,2,!1),d.add(p))}function Mb(o,l,d){var p=0;l&&(p|=4),hE(d,o,p,l)}var xf="_reactListening"+Math.random().toString(36).slice(2);function Rb(o){if(!o[xf]){o[xf]=!0,ov.forEach(function(d){d!=="selectionchange"&&(RN.has(d)||Mb(d,!1,o),Mb(d,!0,o))});var l=o.nodeType===9?o:o.ownerDocument;l===null||l[xf]||(l[xf]=!0,Mb("selectionchange",!1,l))}}function hE(o,l,d,p){switch(_E(l)){case 2:var y=oP;break;case 8:y=aP;break;default:y=Gb}d=y.bind(null,l,d,o),y=void 0,!Jm||l!=="touchstart"&&l!=="touchmove"&&l!=="wheel"||(y=!0),p?y!==void 0?o.addEventListener(l,d,{capture:!0,passive:y}):o.addEventListener(l,d,!0):y!==void 0?o.addEventListener(l,d,{passive:y}):o.addEventListener(l,d,!1)}function Nb(o,l,d,p,y){var x=p;if((l&1)===0&&(l&2)===0&&p!==null)e:for(;;){if(p===null)return;var w=p.tag;if(w===3||w===4){var R=p.stateNode.containerInfo;if(R===y)break;if(w===4)for(w=p.return;w!==null;){var z=w.tag;if((z===3||z===4)&&w.stateNode.containerInfo===y)return;w=w.return}for(;R!==null;){if(w=xa(R),w===null)return;if(z=w.tag,z===5||z===6||z===26||z===27){p=x=w;continue e}R=R.parentNode}}p=p.return}yv(function(){var Q=x,re=Ym(d),oe=[];e:{var X=qv.get(o);if(X!==void 0){var ee=Bd,be=o;switch(o){case"keypress":if(Td(d)===0)break e;case"keydown":case"keyup":ee=SR;break;case"focusin":be="focus",ee=ng;break;case"focusout":be="blur",ee=ng;break;case"beforeblur":case"afterblur":ee=ng;break;case"click":if(d.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":ee=Cv;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":ee=hR;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":ee=TR;break;case _v:case Hv:case Vv:ee=gR;break;case Uv:ee=BR;break;case"scroll":case"scrollend":ee=dR;break;case"wheel":ee=RR;break;case"copy":case"cut":case"paste":ee=yR;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":ee=kv;break;case"toggle":case"beforetoggle":ee=PR}var ke=(l&4)!==0,nt=!ke&&(o==="scroll"||o==="scrollend"),G=ke?X!==null?X+"Capture":null:X;ke=[];for(var _=Q,W;_!==null;){var se=_;if(W=se.stateNode,se=se.tag,se!==5&&se!==26&&se!==27||W===null||G===null||(se=ql(_,G),se!=null&&ke.push(Su(_,se,W))),nt)break;_=_.return}0<ke.length&&(X=new ee(X,be,null,d,re),oe.push({event:X,listeners:ke}))}}if((l&7)===0){e:{if(X=o==="mouseover"||o==="pointerover",ee=o==="mouseout"||o==="pointerout",X&&d!==Qm&&(be=d.relatedTarget||d.fromElement)&&(xa(be)||be[va]))break e;if((ee||X)&&(X=re.window===re?re:(X=re.ownerDocument)?X.defaultView||X.parentWindow:window,ee?(be=d.relatedTarget||d.toElement,ee=Q,be=be?xa(be):null,be!==null&&(nt=s(be),ke=be.tag,be!==nt||ke!==5&&ke!==27&&ke!==6)&&(be=null)):(ee=null,be=Q),ee!==be)){if(ke=Cv,se="onMouseLeave",G="onMouseEnter",_="mouse",(o==="pointerout"||o==="pointerover")&&(ke=kv,se="onPointerLeave",G="onPointerEnter",_="pointer"),nt=ee==null?X:Ul(ee),W=be==null?X:Ul(be),X=new ke(se,_+"leave",ee,d,re),X.target=nt,X.relatedTarget=W,se=null,xa(re)===Q&&(ke=new ke(G,_+"enter",be,d,re),ke.target=W,ke.relatedTarget=nt,se=ke),nt=se,ee&&be)t:{for(ke=NN,G=ee,_=be,W=0,se=G;se;se=ke(se))W++;se=0;for(var xe=_;xe;xe=ke(xe))se++;for(;0<W-se;)G=ke(G),W--;for(;0<se-W;)_=ke(_),se--;for(;W--;){if(G===_||_!==null&&G===_.alternate){ke=G;break t}G=ke(G),_=ke(_)}ke=null}else ke=null;ee!==null&&pE(oe,X,ee,ke,!1),be!==null&&nt!==null&&pE(oe,nt,be,ke,!0)}}e:{if(X=Q?Ul(Q):window,ee=X.nodeName&&X.nodeName.toLowerCase(),ee==="select"||ee==="input"&&X.type==="file")var Ue=Mv;else if(Av(X))if(Rv)Ue=VR;else{Ue=_R;var ve=jR}else ee=X.nodeName,!ee||ee.toLowerCase()!=="input"||X.type!=="checkbox"&&X.type!=="radio"?Q&&Wm(Q.elementType)&&(Ue=Mv):Ue=HR;if(Ue&&(Ue=Ue(o,Q))){Bv(oe,Ue,d,re);break e}ve&&ve(o,X,Q),o==="focusout"&&Q&&X.type==="number"&&Q.memoizedProps.value!=null&&Gm(X,"number",X.value)}switch(ve=Q?Ul(Q):window,o){case"focusin":(Av(ve)||ve.contentEditable==="true")&&(Aa=ve,lg=Q,eu=null);break;case"focusout":eu=lg=Aa=null;break;case"mousedown":ug=!0;break;case"contextmenu":case"mouseup":case"dragend":ug=!1,Kv(oe,d,re);break;case"selectionchange":if(qR)break;case"keydown":case"keyup":Kv(oe,d,re)}var Be;if(ig)e:{switch(o){case"compositionstart":var Ke="onCompositionStart";break e;case"compositionend":Ke="onCompositionEnd";break e;case"compositionupdate":Ke="onCompositionUpdate";break e}Ke=void 0}else Ta?$v(o,d)&&(Ke="onCompositionEnd"):o==="keydown"&&d.keyCode===229&&(Ke="onCompositionStart");Ke&&(Dv&&d.locale!=="ko"&&(Ta||Ke!=="onCompositionStart"?Ke==="onCompositionEnd"&&Ta&&(Be=vv()):(Vi=re,Zm="value"in Vi?Vi.value:Vi.textContent,Ta=!0)),ve=Cf(Q,Ke),0<ve.length&&(Ke=new Ev(Ke,o,null,d,re),oe.push({event:Ke,listeners:ve}),Be?Ke.data=Be:(Be=Tv(d),Be!==null&&(Ke.data=Be)))),(Be=LR?zR(o,d):IR(o,d))&&(Ke=Cf(Q,"onBeforeInput"),0<Ke.length&&(ve=new Ev("onBeforeInput","beforeinput",null,d,re),oe.push({event:ve,listeners:Ke}),ve.data=Be)),AN(oe,o,Q,d,re)}fE(oe,l)})}function Su(o,l,d){return{instance:o,listener:l,currentTarget:d}}function Cf(o,l){for(var d=l+"Capture",p=[];o!==null;){var y=o,x=y.stateNode;if(y=y.tag,y!==5&&y!==26&&y!==27||x===null||(y=ql(o,d),y!=null&&p.unshift(Su(o,y,x)),y=ql(o,l),y!=null&&p.push(Su(o,y,x))),o.tag===3)return p;o=o.return}return[]}function NN(o){if(o===null)return null;do o=o.return;while(o&&o.tag!==5&&o.tag!==27);return o||null}function pE(o,l,d,p,y){for(var x=l._reactName,w=[];d!==null&&d!==p;){var R=d,z=R.alternate,Q=R.stateNode;if(R=R.tag,z!==null&&z===p)break;R!==5&&R!==26&&R!==27||Q===null||(z=Q,y?(Q=ql(d,x),Q!=null&&w.unshift(Su(d,Q,z))):y||(Q=ql(d,x),Q!=null&&w.push(Su(d,Q,z)))),d=d.return}w.length!==0&&o.push({event:l,listeners:w})}var PN=/\r\n?/g,ON=/\u0000|\uFFFD/g;function mE(o){return(typeof o=="string"?o:""+o).replace(PN,`
|
|
9
|
-
`).replace(ON,"")}function gE(o,l){return l=mE(l),mE(o)===l}function tt(o,l,d,p,y,x){switch(d){case"children":typeof p=="string"?l==="body"||l==="textarea"&&p===""||Sa(o,p):(typeof p=="number"||typeof p=="bigint")&&l!=="body"&&Sa(o,""+p);break;case"className":Dd(o,"class",p);break;case"tabIndex":Dd(o,"tabindex",p);break;case"dir":case"role":case"viewBox":case"width":case"height":Dd(o,d,p);break;case"style":gv(o,p,x);break;case"data":if(l!=="object"){Dd(o,"data",p);break}case"src":case"href":if(p===""&&(l!=="a"||d!=="href")){o.removeAttribute(d);break}if(p==null||typeof p=="function"||typeof p=="symbol"||typeof p=="boolean"){o.removeAttribute(d);break}p=wd(""+p),o.setAttribute(d,p);break;case"action":case"formAction":if(typeof p=="function"){o.setAttribute(d,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof x=="function"&&(d==="formAction"?(l!=="input"&&tt(o,l,"name",y.name,y,null),tt(o,l,"formEncType",y.formEncType,y,null),tt(o,l,"formMethod",y.formMethod,y,null),tt(o,l,"formTarget",y.formTarget,y,null)):(tt(o,l,"encType",y.encType,y,null),tt(o,l,"method",y.method,y,null),tt(o,l,"target",y.target,y,null)));if(p==null||typeof p=="symbol"||typeof p=="boolean"){o.removeAttribute(d);break}p=wd(""+p),o.setAttribute(d,p);break;case"onClick":p!=null&&(o.onclick=ei);break;case"onScroll":p!=null&&Oe("scroll",o);break;case"onScrollEnd":p!=null&&Oe("scrollend",o);break;case"dangerouslySetInnerHTML":if(p!=null){if(typeof p!="object"||!("__html"in p))throw Error(r(61));if(d=p.__html,d!=null){if(y.children!=null)throw Error(r(60));o.innerHTML=d}}break;case"multiple":o.multiple=p&&typeof p!="function"&&typeof p!="symbol";break;case"muted":o.muted=p&&typeof p!="function"&&typeof p!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(p==null||typeof p=="function"||typeof p=="boolean"||typeof p=="symbol"){o.removeAttribute("xlink:href");break}d=wd(""+p),o.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",d);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":p!=null&&typeof p!="function"&&typeof p!="symbol"?o.setAttribute(d,""+p):o.removeAttribute(d);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":p&&typeof p!="function"&&typeof p!="symbol"?o.setAttribute(d,""):o.removeAttribute(d);break;case"capture":case"download":p===!0?o.setAttribute(d,""):p!==!1&&p!=null&&typeof p!="function"&&typeof p!="symbol"?o.setAttribute(d,p):o.removeAttribute(d);break;case"cols":case"rows":case"size":case"span":p!=null&&typeof p!="function"&&typeof p!="symbol"&&!isNaN(p)&&1<=p?o.setAttribute(d,p):o.removeAttribute(d);break;case"rowSpan":case"start":p==null||typeof p=="function"||typeof p=="symbol"||isNaN(p)?o.removeAttribute(d):o.setAttribute(d,p);break;case"popover":Oe("beforetoggle",o),Oe("toggle",o),kd(o,"popover",p);break;case"xlinkActuate":Zr(o,"http://www.w3.org/1999/xlink","xlink:actuate",p);break;case"xlinkArcrole":Zr(o,"http://www.w3.org/1999/xlink","xlink:arcrole",p);break;case"xlinkRole":Zr(o,"http://www.w3.org/1999/xlink","xlink:role",p);break;case"xlinkShow":Zr(o,"http://www.w3.org/1999/xlink","xlink:show",p);break;case"xlinkTitle":Zr(o,"http://www.w3.org/1999/xlink","xlink:title",p);break;case"xlinkType":Zr(o,"http://www.w3.org/1999/xlink","xlink:type",p);break;case"xmlBase":Zr(o,"http://www.w3.org/XML/1998/namespace","xml:base",p);break;case"xmlLang":Zr(o,"http://www.w3.org/XML/1998/namespace","xml:lang",p);break;case"xmlSpace":Zr(o,"http://www.w3.org/XML/1998/namespace","xml:space",p);break;case"is":kd(o,"is",p);break;case"innerText":case"textContent":break;default:(!(2<d.length)||d[0]!=="o"&&d[0]!=="O"||d[1]!=="n"&&d[1]!=="N")&&(d=uR.get(d)||d,kd(o,d,p))}}function Pb(o,l,d,p,y,x){switch(d){case"style":gv(o,p,x);break;case"dangerouslySetInnerHTML":if(p!=null){if(typeof p!="object"||!("__html"in p))throw Error(r(61));if(d=p.__html,d!=null){if(y.children!=null)throw Error(r(60));o.innerHTML=d}}break;case"children":typeof p=="string"?Sa(o,p):(typeof p=="number"||typeof p=="bigint")&&Sa(o,""+p);break;case"onScroll":p!=null&&Oe("scroll",o);break;case"onScrollEnd":p!=null&&Oe("scrollend",o);break;case"onClick":p!=null&&(o.onclick=ei);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!av.hasOwnProperty(d))e:{if(d[0]==="o"&&d[1]==="n"&&(y=d.endsWith("Capture"),l=d.slice(2,y?d.length-7:void 0),x=o[Dn]||null,x=x!=null?x[d]:null,typeof x=="function"&&o.removeEventListener(l,x,y),typeof p=="function")){typeof x!="function"&&x!==null&&(d in o?o[d]=null:o.hasAttribute(d)&&o.removeAttribute(d)),o.addEventListener(l,p,y);break e}d in o?o[d]=p:p===!0?o.setAttribute(d,""):kd(o,d,p)}}}function Xt(o,l,d){switch(l){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":Oe("error",o),Oe("load",o);var p=!1,y=!1,x;for(x in d)if(d.hasOwnProperty(x)){var w=d[x];if(w!=null)switch(x){case"src":p=!0;break;case"srcSet":y=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(r(137,l));default:tt(o,l,x,w,d,null)}}y&&tt(o,l,"srcSet",d.srcSet,d,null),p&&tt(o,l,"src",d.src,d,null);return;case"input":Oe("invalid",o);var R=x=w=y=null,z=null,Q=null;for(p in d)if(d.hasOwnProperty(p)){var re=d[p];if(re!=null)switch(p){case"name":y=re;break;case"type":w=re;break;case"checked":z=re;break;case"defaultChecked":Q=re;break;case"value":x=re;break;case"defaultValue":R=re;break;case"children":case"dangerouslySetInnerHTML":if(re!=null)throw Error(r(137,l));break;default:tt(o,l,p,re,d,null)}}fv(o,x,R,z,Q,w,y,!1);return;case"select":Oe("invalid",o),p=w=x=null;for(y in d)if(d.hasOwnProperty(y)&&(R=d[y],R!=null))switch(y){case"value":x=R;break;case"defaultValue":w=R;break;case"multiple":p=R;default:tt(o,l,y,R,d,null)}l=x,d=w,o.multiple=!!p,l!=null?Da(o,!!p,l,!1):d!=null&&Da(o,!!p,d,!0);return;case"textarea":Oe("invalid",o),x=y=p=null;for(w in d)if(d.hasOwnProperty(w)&&(R=d[w],R!=null))switch(w){case"value":p=R;break;case"defaultValue":y=R;break;case"children":x=R;break;case"dangerouslySetInnerHTML":if(R!=null)throw Error(r(91));break;default:tt(o,l,w,R,d,null)}pv(o,p,y,x);return;case"option":for(z in d)d.hasOwnProperty(z)&&(p=d[z],p!=null)&&(z==="selected"?o.selected=p&&typeof p!="function"&&typeof p!="symbol":tt(o,l,z,p,d,null));return;case"dialog":Oe("beforetoggle",o),Oe("toggle",o),Oe("cancel",o),Oe("close",o);break;case"iframe":case"object":Oe("load",o);break;case"video":case"audio":for(p=0;p<Du.length;p++)Oe(Du[p],o);break;case"image":Oe("error",o),Oe("load",o);break;case"details":Oe("toggle",o);break;case"embed":case"source":case"link":Oe("error",o),Oe("load",o);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(Q in d)if(d.hasOwnProperty(Q)&&(p=d[Q],p!=null))switch(Q){case"children":case"dangerouslySetInnerHTML":throw Error(r(137,l));default:tt(o,l,Q,p,d,null)}return;default:if(Wm(l)){for(re in d)d.hasOwnProperty(re)&&(p=d[re],p!==void 0&&Pb(o,l,re,p,d,void 0));return}}for(R in d)d.hasOwnProperty(R)&&(p=d[R],p!=null&&tt(o,l,R,p,d,null))}function LN(o,l,d,p){switch(l){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var y=null,x=null,w=null,R=null,z=null,Q=null,re=null;for(ee in d){var oe=d[ee];if(d.hasOwnProperty(ee)&&oe!=null)switch(ee){case"checked":break;case"value":break;case"defaultValue":z=oe;default:p.hasOwnProperty(ee)||tt(o,l,ee,null,p,oe)}}for(var X in p){var ee=p[X];if(oe=d[X],p.hasOwnProperty(X)&&(ee!=null||oe!=null))switch(X){case"type":x=ee;break;case"name":y=ee;break;case"checked":Q=ee;break;case"defaultChecked":re=ee;break;case"value":w=ee;break;case"defaultValue":R=ee;break;case"children":case"dangerouslySetInnerHTML":if(ee!=null)throw Error(r(137,l));break;default:ee!==oe&&tt(o,l,X,ee,p,oe)}}qm(o,w,R,z,Q,re,x,y);return;case"select":ee=w=R=X=null;for(x in d)if(z=d[x],d.hasOwnProperty(x)&&z!=null)switch(x){case"value":break;case"multiple":ee=z;default:p.hasOwnProperty(x)||tt(o,l,x,null,p,z)}for(y in p)if(x=p[y],z=d[y],p.hasOwnProperty(y)&&(x!=null||z!=null))switch(y){case"value":X=x;break;case"defaultValue":R=x;break;case"multiple":w=x;default:x!==z&&tt(o,l,y,x,p,z)}l=R,d=w,p=ee,X!=null?Da(o,!!d,X,!1):!!p!=!!d&&(l!=null?Da(o,!!d,l,!0):Da(o,!!d,d?[]:"",!1));return;case"textarea":ee=X=null;for(R in d)if(y=d[R],d.hasOwnProperty(R)&&y!=null&&!p.hasOwnProperty(R))switch(R){case"value":break;case"children":break;default:tt(o,l,R,null,p,y)}for(w in p)if(y=p[w],x=d[w],p.hasOwnProperty(w)&&(y!=null||x!=null))switch(w){case"value":X=y;break;case"defaultValue":ee=y;break;case"children":break;case"dangerouslySetInnerHTML":if(y!=null)throw Error(r(91));break;default:y!==x&&tt(o,l,w,y,p,x)}hv(o,X,ee);return;case"option":for(var be in d)X=d[be],d.hasOwnProperty(be)&&X!=null&&!p.hasOwnProperty(be)&&(be==="selected"?o.selected=!1:tt(o,l,be,null,p,X));for(z in p)X=p[z],ee=d[z],p.hasOwnProperty(z)&&X!==ee&&(X!=null||ee!=null)&&(z==="selected"?o.selected=X&&typeof X!="function"&&typeof X!="symbol":tt(o,l,z,X,p,ee));return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var ke in d)X=d[ke],d.hasOwnProperty(ke)&&X!=null&&!p.hasOwnProperty(ke)&&tt(o,l,ke,null,p,X);for(Q in p)if(X=p[Q],ee=d[Q],p.hasOwnProperty(Q)&&X!==ee&&(X!=null||ee!=null))switch(Q){case"children":case"dangerouslySetInnerHTML":if(X!=null)throw Error(r(137,l));break;default:tt(o,l,Q,X,p,ee)}return;default:if(Wm(l)){for(var nt in d)X=d[nt],d.hasOwnProperty(nt)&&X!==void 0&&!p.hasOwnProperty(nt)&&Pb(o,l,nt,void 0,p,X);for(re in p)X=p[re],ee=d[re],!p.hasOwnProperty(re)||X===ee||X===void 0&&ee===void 0||Pb(o,l,re,X,p,ee);return}}for(var G in d)X=d[G],d.hasOwnProperty(G)&&X!=null&&!p.hasOwnProperty(G)&&tt(o,l,G,null,p,X);for(oe in p)X=p[oe],ee=d[oe],!p.hasOwnProperty(oe)||X===ee||X==null&&ee==null||tt(o,l,oe,X,p,ee)}function bE(o){switch(o){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function zN(){if(typeof performance.getEntriesByType=="function"){for(var o=0,l=0,d=performance.getEntriesByType("resource"),p=0;p<d.length;p++){var y=d[p],x=y.transferSize,w=y.initiatorType,R=y.duration;if(x&&R&&bE(w)){for(w=0,R=y.responseEnd,p+=1;p<d.length;p++){var z=d[p],Q=z.startTime;if(Q>R)break;var re=z.transferSize,oe=z.initiatorType;re&&bE(oe)&&(z=z.responseEnd,w+=re*(z<R?1:(R-Q)/(z-Q)))}if(--p,l+=8*(x+w)/(y.duration/1e3),o++,10<o)break}}if(0<o)return l/o/1e6}return navigator.connection&&(o=navigator.connection.downlink,typeof o=="number")?o:5}var Ob=null,Lb=null;function Ef(o){return o.nodeType===9?o:o.ownerDocument}function yE(o){switch(o){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function vE(o,l){if(o===0)switch(l){case"svg":return 1;case"math":return 2;default:return 0}return o===1&&l==="foreignObject"?0:o}function zb(o,l){return o==="textarea"||o==="noscript"||typeof l.children=="string"||typeof l.children=="number"||typeof l.children=="bigint"||typeof l.dangerouslySetInnerHTML=="object"&&l.dangerouslySetInnerHTML!==null&&l.dangerouslySetInnerHTML.__html!=null}var Ib=null;function IN(){var o=window.event;return o&&o.type==="popstate"?o===Ib?!1:(Ib=o,!0):(Ib=null,!1)}var xE=typeof setTimeout=="function"?setTimeout:void 0,FN=typeof clearTimeout=="function"?clearTimeout:void 0,CE=typeof Promise=="function"?Promise:void 0,KN=typeof queueMicrotask=="function"?queueMicrotask:typeof CE<"u"?function(o){return CE.resolve(null).then(o).catch(jN)}:xE;function jN(o){setTimeout(function(){throw o})}function ls(o){return o==="head"}function EE(o,l){var d=l,p=0;do{var y=d.nextSibling;if(o.removeChild(d),y&&y.nodeType===8)if(d=y.data,d==="/$"||d==="/&"){if(p===0){o.removeChild(y),nl(l);return}p--}else if(d==="$"||d==="$?"||d==="$~"||d==="$!"||d==="&")p++;else if(d==="html")wu(o.ownerDocument.documentElement);else if(d==="head"){d=o.ownerDocument.head,wu(d);for(var x=d.firstChild;x;){var w=x.nextSibling,R=x.nodeName;x[Vl]||R==="SCRIPT"||R==="STYLE"||R==="LINK"&&x.rel.toLowerCase()==="stylesheet"||d.removeChild(x),x=w}}else d==="body"&&wu(o.ownerDocument.body);d=y}while(d);nl(l)}function kE(o,l){var d=o;o=0;do{var p=d.nextSibling;if(d.nodeType===1?l?(d._stashedDisplay=d.style.display,d.style.display="none"):(d.style.display=d._stashedDisplay||"",d.getAttribute("style")===""&&d.removeAttribute("style")):d.nodeType===3&&(l?(d._stashedText=d.nodeValue,d.nodeValue=""):d.nodeValue=d._stashedText||""),p&&p.nodeType===8)if(d=p.data,d==="/$"){if(o===0)break;o--}else d!=="$"&&d!=="$?"&&d!=="$~"&&d!=="$!"||o++;d=p}while(d)}function Fb(o){var l=o.firstChild;for(l&&l.nodeType===10&&(l=l.nextSibling);l;){var d=l;switch(l=l.nextSibling,d.nodeName){case"HTML":case"HEAD":case"BODY":Fb(d),Vm(d);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(d.rel.toLowerCase()==="stylesheet")continue}o.removeChild(d)}}function _N(o,l,d,p){for(;o.nodeType===1;){var y=d;if(o.nodeName.toLowerCase()!==l.toLowerCase()){if(!p&&(o.nodeName!=="INPUT"||o.type!=="hidden"))break}else if(p){if(!o[Vl])switch(l){case"meta":if(!o.hasAttribute("itemprop"))break;return o;case"link":if(x=o.getAttribute("rel"),x==="stylesheet"&&o.hasAttribute("data-precedence"))break;if(x!==y.rel||o.getAttribute("href")!==(y.href==null||y.href===""?null:y.href)||o.getAttribute("crossorigin")!==(y.crossOrigin==null?null:y.crossOrigin)||o.getAttribute("title")!==(y.title==null?null:y.title))break;return o;case"style":if(o.hasAttribute("data-precedence"))break;return o;case"script":if(x=o.getAttribute("src"),(x!==(y.src==null?null:y.src)||o.getAttribute("type")!==(y.type==null?null:y.type)||o.getAttribute("crossorigin")!==(y.crossOrigin==null?null:y.crossOrigin))&&x&&o.hasAttribute("async")&&!o.hasAttribute("itemprop"))break;return o;default:return o}}else if(l==="input"&&o.type==="hidden"){var x=y.name==null?null:""+y.name;if(y.type==="hidden"&&o.getAttribute("name")===x)return o}else return o;if(o=sr(o.nextSibling),o===null)break}return null}function HN(o,l,d){if(l==="")return null;for(;o.nodeType!==3;)if((o.nodeType!==1||o.nodeName!=="INPUT"||o.type!=="hidden")&&!d||(o=sr(o.nextSibling),o===null))return null;return o}function DE(o,l){for(;o.nodeType!==8;)if((o.nodeType!==1||o.nodeName!=="INPUT"||o.type!=="hidden")&&!l||(o=sr(o.nextSibling),o===null))return null;return o}function Kb(o){return o.data==="$?"||o.data==="$~"}function jb(o){return o.data==="$!"||o.data==="$?"&&o.ownerDocument.readyState!=="loading"}function VN(o,l){var d=o.ownerDocument;if(o.data==="$~")o._reactRetry=l;else if(o.data!=="$?"||d.readyState!=="loading")l();else{var p=function(){l(),d.removeEventListener("DOMContentLoaded",p)};d.addEventListener("DOMContentLoaded",p),o._reactRetry=p}}function sr(o){for(;o!=null;o=o.nextSibling){var l=o.nodeType;if(l===1||l===3)break;if(l===8){if(l=o.data,l==="$"||l==="$!"||l==="$?"||l==="$~"||l==="&"||l==="F!"||l==="F")break;if(l==="/$"||l==="/&")return null}}return o}var _b=null;function SE(o){o=o.nextSibling;for(var l=0;o;){if(o.nodeType===8){var d=o.data;if(d==="/$"||d==="/&"){if(l===0)return sr(o.nextSibling);l--}else d!=="$"&&d!=="$!"&&d!=="$?"&&d!=="$~"&&d!=="&"||l++}o=o.nextSibling}return null}function wE(o){o=o.previousSibling;for(var l=0;o;){if(o.nodeType===8){var d=o.data;if(d==="$"||d==="$!"||d==="$?"||d==="$~"||d==="&"){if(l===0)return o;l--}else d!=="/$"&&d!=="/&"||l++}o=o.previousSibling}return null}function $E(o,l,d){switch(l=Ef(d),o){case"html":if(o=l.documentElement,!o)throw Error(r(452));return o;case"head":if(o=l.head,!o)throw Error(r(453));return o;case"body":if(o=l.body,!o)throw Error(r(454));return o;default:throw Error(r(451))}}function wu(o){for(var l=o.attributes;l.length;)o.removeAttributeNode(l[0]);Vm(o)}var or=new Map,TE=new Set;function kf(o){return typeof o.getRootNode=="function"?o.getRootNode():o.nodeType===9?o:o.ownerDocument}var gi=j.d;j.d={f:UN,r:qN,D:GN,C:WN,L:QN,m:YN,X:JN,S:XN,M:ZN};function UN(){var o=gi.f(),l=pf();return o||l}function qN(o){var l=Ca(o);l!==null&&l.tag===5&&l.type==="form"?Ux(l):gi.r(o)}var Za=typeof document>"u"?null:document;function AE(o,l,d){var p=Za;if(p&&typeof l=="string"&&l){var y=Jn(l);y='link[rel="'+o+'"][href="'+y+'"]',typeof d=="string"&&(y+='[crossorigin="'+d+'"]'),TE.has(y)||(TE.add(y),o={rel:o,crossOrigin:d,href:l},p.querySelector(y)===null&&(l=p.createElement("link"),Xt(l,"link",o),_t(l),p.head.appendChild(l)))}}function GN(o){gi.D(o),AE("dns-prefetch",o,null)}function WN(o,l){gi.C(o,l),AE("preconnect",o,l)}function QN(o,l,d){gi.L(o,l,d);var p=Za;if(p&&o&&l){var y='link[rel="preload"][as="'+Jn(l)+'"]';l==="image"&&d&&d.imageSrcSet?(y+='[imagesrcset="'+Jn(d.imageSrcSet)+'"]',typeof d.imageSizes=="string"&&(y+='[imagesizes="'+Jn(d.imageSizes)+'"]')):y+='[href="'+Jn(o)+'"]';var x=y;switch(l){case"style":x=el(o);break;case"script":x=tl(o)}or.has(x)||(o=m({rel:"preload",href:l==="image"&&d&&d.imageSrcSet?void 0:o,as:l},d),or.set(x,o),p.querySelector(y)!==null||l==="style"&&p.querySelector($u(x))||l==="script"&&p.querySelector(Tu(x))||(l=p.createElement("link"),Xt(l,"link",o),_t(l),p.head.appendChild(l)))}}function YN(o,l){gi.m(o,l);var d=Za;if(d&&o){var p=l&&typeof l.as=="string"?l.as:"script",y='link[rel="modulepreload"][as="'+Jn(p)+'"][href="'+Jn(o)+'"]',x=y;switch(p){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":x=tl(o)}if(!or.has(x)&&(o=m({rel:"modulepreload",href:o},l),or.set(x,o),d.querySelector(y)===null)){switch(p){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(d.querySelector(Tu(x)))return}p=d.createElement("link"),Xt(p,"link",o),_t(p),d.head.appendChild(p)}}}function XN(o,l,d){gi.S(o,l,d);var p=Za;if(p&&o){var y=Ea(p).hoistableStyles,x=el(o);l=l||"default";var w=y.get(x);if(!w){var R={loading:0,preload:null};if(w=p.querySelector($u(x)))R.loading=5;else{o=m({rel:"stylesheet",href:o,"data-precedence":l},d),(d=or.get(x))&&Hb(o,d);var z=w=p.createElement("link");_t(z),Xt(z,"link",o),z._p=new Promise(function(Q,re){z.onload=Q,z.onerror=re}),z.addEventListener("load",function(){R.loading|=1}),z.addEventListener("error",function(){R.loading|=2}),R.loading|=4,Df(w,l,p)}w={type:"stylesheet",instance:w,count:1,state:R},y.set(x,w)}}}function JN(o,l){gi.X(o,l);var d=Za;if(d&&o){var p=Ea(d).hoistableScripts,y=tl(o),x=p.get(y);x||(x=d.querySelector(Tu(y)),x||(o=m({src:o,async:!0},l),(l=or.get(y))&&Vb(o,l),x=d.createElement("script"),_t(x),Xt(x,"link",o),d.head.appendChild(x)),x={type:"script",instance:x,count:1,state:null},p.set(y,x))}}function ZN(o,l){gi.M(o,l);var d=Za;if(d&&o){var p=Ea(d).hoistableScripts,y=tl(o),x=p.get(y);x||(x=d.querySelector(Tu(y)),x||(o=m({src:o,async:!0,type:"module"},l),(l=or.get(y))&&Vb(o,l),x=d.createElement("script"),_t(x),Xt(x,"link",o),d.head.appendChild(x)),x={type:"script",instance:x,count:1,state:null},p.set(y,x))}}function BE(o,l,d,p){var y=(y=fe.current)?kf(y):null;if(!y)throw Error(r(446));switch(o){case"meta":case"title":return null;case"style":return typeof d.precedence=="string"&&typeof d.href=="string"?(l=el(d.href),d=Ea(y).hoistableStyles,p=d.get(l),p||(p={type:"style",instance:null,count:0,state:null},d.set(l,p)),p):{type:"void",instance:null,count:0,state:null};case"link":if(d.rel==="stylesheet"&&typeof d.href=="string"&&typeof d.precedence=="string"){o=el(d.href);var x=Ea(y).hoistableStyles,w=x.get(o);if(w||(y=y.ownerDocument||y,w={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},x.set(o,w),(x=y.querySelector($u(o)))&&!x._p&&(w.instance=x,w.state.loading=5),or.has(o)||(d={rel:"preload",as:"style",href:d.href,crossOrigin:d.crossOrigin,integrity:d.integrity,media:d.media,hrefLang:d.hrefLang,referrerPolicy:d.referrerPolicy},or.set(o,d),x||eP(y,o,d,w.state))),l&&p===null)throw Error(r(528,""));return w}if(l&&p!==null)throw Error(r(529,""));return null;case"script":return l=d.async,d=d.src,typeof d=="string"&&l&&typeof l!="function"&&typeof l!="symbol"?(l=tl(d),d=Ea(y).hoistableScripts,p=d.get(l),p||(p={type:"script",instance:null,count:0,state:null},d.set(l,p)),p):{type:"void",instance:null,count:0,state:null};default:throw Error(r(444,o))}}function el(o){return'href="'+Jn(o)+'"'}function $u(o){return'link[rel="stylesheet"]['+o+"]"}function ME(o){return m({},o,{"data-precedence":o.precedence,precedence:null})}function eP(o,l,d,p){o.querySelector('link[rel="preload"][as="style"]['+l+"]")?p.loading=1:(l=o.createElement("link"),p.preload=l,l.addEventListener("load",function(){return p.loading|=1}),l.addEventListener("error",function(){return p.loading|=2}),Xt(l,"link",d),_t(l),o.head.appendChild(l))}function tl(o){return'[src="'+Jn(o)+'"]'}function Tu(o){return"script[async]"+o}function RE(o,l,d){if(l.count++,l.instance===null)switch(l.type){case"style":var p=o.querySelector('style[data-href~="'+Jn(d.href)+'"]');if(p)return l.instance=p,_t(p),p;var y=m({},d,{"data-href":d.href,"data-precedence":d.precedence,href:null,precedence:null});return p=(o.ownerDocument||o).createElement("style"),_t(p),Xt(p,"style",y),Df(p,d.precedence,o),l.instance=p;case"stylesheet":y=el(d.href);var x=o.querySelector($u(y));if(x)return l.state.loading|=4,l.instance=x,_t(x),x;p=ME(d),(y=or.get(y))&&Hb(p,y),x=(o.ownerDocument||o).createElement("link"),_t(x);var w=x;return w._p=new Promise(function(R,z){w.onload=R,w.onerror=z}),Xt(x,"link",p),l.state.loading|=4,Df(x,d.precedence,o),l.instance=x;case"script":return x=tl(d.src),(y=o.querySelector(Tu(x)))?(l.instance=y,_t(y),y):(p=d,(y=or.get(x))&&(p=m({},d),Vb(p,y)),o=o.ownerDocument||o,y=o.createElement("script"),_t(y),Xt(y,"link",p),o.head.appendChild(y),l.instance=y);case"void":return null;default:throw Error(r(443,l.type))}else l.type==="stylesheet"&&(l.state.loading&4)===0&&(p=l.instance,l.state.loading|=4,Df(p,d.precedence,o));return l.instance}function Df(o,l,d){for(var p=d.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),y=p.length?p[p.length-1]:null,x=y,w=0;w<p.length;w++){var R=p[w];if(R.dataset.precedence===l)x=R;else if(x!==y)break}x?x.parentNode.insertBefore(o,x.nextSibling):(l=d.nodeType===9?d.head:d,l.insertBefore(o,l.firstChild))}function Hb(o,l){o.crossOrigin==null&&(o.crossOrigin=l.crossOrigin),o.referrerPolicy==null&&(o.referrerPolicy=l.referrerPolicy),o.title==null&&(o.title=l.title)}function Vb(o,l){o.crossOrigin==null&&(o.crossOrigin=l.crossOrigin),o.referrerPolicy==null&&(o.referrerPolicy=l.referrerPolicy),o.integrity==null&&(o.integrity=l.integrity)}var Sf=null;function NE(o,l,d){if(Sf===null){var p=new Map,y=Sf=new Map;y.set(d,p)}else y=Sf,p=y.get(d),p||(p=new Map,y.set(d,p));if(p.has(o))return p;for(p.set(o,null),d=d.getElementsByTagName(o),y=0;y<d.length;y++){var x=d[y];if(!(x[Vl]||x[Gt]||o==="link"&&x.getAttribute("rel")==="stylesheet")&&x.namespaceURI!=="http://www.w3.org/2000/svg"){var w=x.getAttribute(l)||"";w=o+w;var R=p.get(w);R?R.push(x):p.set(w,[x])}}return p}function PE(o,l,d){o=o.ownerDocument||o,o.head.insertBefore(d,l==="title"?o.querySelector("head > title"):null)}function tP(o,l,d){if(d===1||l.itemProp!=null)return!1;switch(o){case"meta":case"title":return!0;case"style":if(typeof l.precedence!="string"||typeof l.href!="string"||l.href==="")break;return!0;case"link":if(typeof l.rel!="string"||typeof l.href!="string"||l.href===""||l.onLoad||l.onError)break;return l.rel==="stylesheet"?(o=l.disabled,typeof l.precedence=="string"&&o==null):!0;case"script":if(l.async&&typeof l.async!="function"&&typeof l.async!="symbol"&&!l.onLoad&&!l.onError&&l.src&&typeof l.src=="string")return!0}return!1}function OE(o){return!(o.type==="stylesheet"&&(o.state.loading&3)===0)}function nP(o,l,d,p){if(d.type==="stylesheet"&&(typeof p.media!="string"||matchMedia(p.media).matches!==!1)&&(d.state.loading&4)===0){if(d.instance===null){var y=el(p.href),x=l.querySelector($u(y));if(x){l=x._p,l!==null&&typeof l=="object"&&typeof l.then=="function"&&(o.count++,o=wf.bind(o),l.then(o,o)),d.state.loading|=4,d.instance=x,_t(x);return}x=l.ownerDocument||l,p=ME(p),(y=or.get(y))&&Hb(p,y),x=x.createElement("link"),_t(x);var w=x;w._p=new Promise(function(R,z){w.onload=R,w.onerror=z}),Xt(x,"link",p),d.instance=x}o.stylesheets===null&&(o.stylesheets=new Map),o.stylesheets.set(d,l),(l=d.state.preload)&&(d.state.loading&3)===0&&(o.count++,d=wf.bind(o),l.addEventListener("load",d),l.addEventListener("error",d))}}var Ub=0;function rP(o,l){return o.stylesheets&&o.count===0&&Tf(o,o.stylesheets),0<o.count||0<o.imgCount?function(d){var p=setTimeout(function(){if(o.stylesheets&&Tf(o,o.stylesheets),o.unsuspend){var x=o.unsuspend;o.unsuspend=null,x()}},6e4+l);0<o.imgBytes&&Ub===0&&(Ub=62500*zN());var y=setTimeout(function(){if(o.waitingForImages=!1,o.count===0&&(o.stylesheets&&Tf(o,o.stylesheets),o.unsuspend)){var x=o.unsuspend;o.unsuspend=null,x()}},(o.imgBytes>Ub?50:800)+l);return o.unsuspend=d,function(){o.unsuspend=null,clearTimeout(p),clearTimeout(y)}}:null}function wf(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Tf(this,this.stylesheets);else if(this.unsuspend){var o=this.unsuspend;this.unsuspend=null,o()}}}var $f=null;function Tf(o,l){o.stylesheets=null,o.unsuspend!==null&&(o.count++,$f=new Map,l.forEach(iP,o),$f=null,wf.call(o))}function iP(o,l){if(!(l.state.loading&4)){var d=$f.get(o);if(d)var p=d.get(null);else{d=new Map,$f.set(o,d);for(var y=o.querySelectorAll("link[data-precedence],style[data-precedence]"),x=0;x<y.length;x++){var w=y[x];(w.nodeName==="LINK"||w.getAttribute("media")!=="not all")&&(d.set(w.dataset.precedence,w),p=w)}p&&d.set(null,p)}y=l.instance,w=y.getAttribute("data-precedence"),x=d.get(w)||p,x===p&&d.set(null,y),d.set(w,y),this.count++,p=wf.bind(this),y.addEventListener("load",p),y.addEventListener("error",p),x?x.parentNode.insertBefore(y,x.nextSibling):(o=o.nodeType===9?o.head:o,o.insertBefore(y,o.firstChild)),l.state.loading|=4}}var Au={$$typeof:$,Provider:null,Consumer:null,_currentValue:Y,_currentValue2:Y,_threadCount:0};function sP(o,l,d,p,y,x,w,R,z){this.tag=1,this.containerInfo=o,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Km(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Km(0),this.hiddenUpdates=Km(null),this.identifierPrefix=p,this.onUncaughtError=y,this.onCaughtError=x,this.onRecoverableError=w,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=z,this.incompleteTransitions=new Map}function LE(o,l,d,p,y,x,w,R,z,Q,re,oe){return o=new sP(o,l,d,w,z,Q,re,oe,R),l=1,x===!0&&(l|=24),x=jn(3,null,null,l),o.current=x,x.stateNode=o,l=Dg(),l.refCount++,o.pooledCache=l,l.refCount++,x.memoizedState={element:p,isDehydrated:d,cache:l},Tg(x),o}function zE(o){return o?(o=Ra,o):Ra}function IE(o,l,d,p,y,x){y=zE(y),p.context===null?p.context=y:p.pendingContext=y,p=Yi(l),p.payload={element:d},x=x===void 0?null:x,x!==null&&(p.callback=x),d=Xi(o,p,l),d!==null&&(Bn(d,o,l),au(d,o,l))}function FE(o,l){if(o=o.memoizedState,o!==null&&o.dehydrated!==null){var d=o.retryLane;o.retryLane=d!==0&&d<l?d:l}}function qb(o,l){FE(o,l),(o=o.alternate)&&FE(o,l)}function KE(o){if(o.tag===13||o.tag===31){var l=lo(o,67108864);l!==null&&Bn(l,o,67108864),qb(o,67108864)}}function jE(o){if(o.tag===13||o.tag===31){var l=qn();l=jm(l);var d=lo(o,l);d!==null&&Bn(d,o,l),qb(o,l)}}var Af=!0;function oP(o,l,d,p){var y=O.T;O.T=null;var x=j.p;try{j.p=2,Gb(o,l,d,p)}finally{j.p=x,O.T=y}}function aP(o,l,d,p){var y=O.T;O.T=null;var x=j.p;try{j.p=8,Gb(o,l,d,p)}finally{j.p=x,O.T=y}}function Gb(o,l,d,p){if(Af){var y=Wb(p);if(y===null)Nb(o,l,p,Bf,d),HE(o,p);else if(uP(y,o,l,d,p))p.stopPropagation();else if(HE(o,p),l&4&&-1<lP.indexOf(o)){for(;y!==null;){var x=Ca(y);if(x!==null)switch(x.tag){case 3:if(x=x.stateNode,x.current.memoizedState.isDehydrated){var w=ro(x.pendingLanes);if(w!==0){var R=x;for(R.pendingLanes|=2,R.entangledLanes|=2;w;){var z=1<<31-Fn(w);R.entanglements[1]|=z,w&=~z}Lr(x),(Ge&6)===0&&(ff=on()+500,ku(0))}}break;case 31:case 13:R=lo(x,2),R!==null&&Bn(R,x,2),pf(),qb(x,2)}if(x=Wb(p),x===null&&Nb(o,l,p,Bf,d),x===y)break;y=x}y!==null&&p.stopPropagation()}else Nb(o,l,p,null,d)}}function Wb(o){return o=Ym(o),Qb(o)}var Bf=null;function Qb(o){if(Bf=null,o=xa(o),o!==null){var l=s(o);if(l===null)o=null;else{var d=l.tag;if(d===13){if(o=a(l),o!==null)return o;o=null}else if(d===31){if(o=u(l),o!==null)return o;o=null}else if(d===3){if(l.stateNode.current.memoizedState.isDehydrated)return l.tag===3?l.stateNode.containerInfo:null;o=null}else l!==o&&(o=null)}}return Bf=o,null}function _E(o){switch(o){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(ot()){case qt:return 2;case Rr:return 8;case ya:case W8:return 32;case J1:return 268435456;default:return 32}default:return 32}}var Yb=!1,us=null,cs=null,ds=null,Bu=new Map,Mu=new Map,fs=[],lP="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function HE(o,l){switch(o){case"focusin":case"focusout":us=null;break;case"dragenter":case"dragleave":cs=null;break;case"mouseover":case"mouseout":ds=null;break;case"pointerover":case"pointerout":Bu.delete(l.pointerId);break;case"gotpointercapture":case"lostpointercapture":Mu.delete(l.pointerId)}}function Ru(o,l,d,p,y,x){return o===null||o.nativeEvent!==x?(o={blockedOn:l,domEventName:d,eventSystemFlags:p,nativeEvent:x,targetContainers:[y]},l!==null&&(l=Ca(l),l!==null&&KE(l)),o):(o.eventSystemFlags|=p,l=o.targetContainers,y!==null&&l.indexOf(y)===-1&&l.push(y),o)}function uP(o,l,d,p,y){switch(l){case"focusin":return us=Ru(us,o,l,d,p,y),!0;case"dragenter":return cs=Ru(cs,o,l,d,p,y),!0;case"mouseover":return ds=Ru(ds,o,l,d,p,y),!0;case"pointerover":var x=y.pointerId;return Bu.set(x,Ru(Bu.get(x)||null,o,l,d,p,y)),!0;case"gotpointercapture":return x=y.pointerId,Mu.set(x,Ru(Mu.get(x)||null,o,l,d,p,y)),!0}return!1}function VE(o){var l=xa(o.target);if(l!==null){var d=s(l);if(d!==null){if(l=d.tag,l===13){if(l=a(d),l!==null){o.blockedOn=l,iv(o.priority,function(){jE(d)});return}}else if(l===31){if(l=u(d),l!==null){o.blockedOn=l,iv(o.priority,function(){jE(d)});return}}else if(l===3&&d.stateNode.current.memoizedState.isDehydrated){o.blockedOn=d.tag===3?d.stateNode.containerInfo:null;return}}}o.blockedOn=null}function Mf(o){if(o.blockedOn!==null)return!1;for(var l=o.targetContainers;0<l.length;){var d=Wb(o.nativeEvent);if(d===null){d=o.nativeEvent;var p=new d.constructor(d.type,d);Qm=p,d.target.dispatchEvent(p),Qm=null}else return l=Ca(d),l!==null&&KE(l),o.blockedOn=d,!1;l.shift()}return!0}function UE(o,l,d){Mf(o)&&d.delete(l)}function cP(){Yb=!1,us!==null&&Mf(us)&&(us=null),cs!==null&&Mf(cs)&&(cs=null),ds!==null&&Mf(ds)&&(ds=null),Bu.forEach(UE),Mu.forEach(UE)}function Rf(o,l){o.blockedOn===l&&(o.blockedOn=null,Yb||(Yb=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,cP)))}var Nf=null;function qE(o){Nf!==o&&(Nf=o,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){Nf===o&&(Nf=null);for(var l=0;l<o.length;l+=3){var d=o[l],p=o[l+1],y=o[l+2];if(typeof p!="function"){if(Qb(p||d)===null)continue;break}var x=Ca(d);x!==null&&(o.splice(l,3),l-=3,Wg(x,{pending:!0,data:y,method:d.method,action:p},p,y))}}))}function nl(o){function l(z){return Rf(z,o)}us!==null&&Rf(us,o),cs!==null&&Rf(cs,o),ds!==null&&Rf(ds,o),Bu.forEach(l),Mu.forEach(l);for(var d=0;d<fs.length;d++){var p=fs[d];p.blockedOn===o&&(p.blockedOn=null)}for(;0<fs.length&&(d=fs[0],d.blockedOn===null);)VE(d),d.blockedOn===null&&fs.shift();if(d=(o.ownerDocument||o).$$reactFormReplay,d!=null)for(p=0;p<d.length;p+=3){var y=d[p],x=d[p+1],w=y[Dn]||null;if(typeof x=="function")w||qE(d);else if(w){var R=null;if(x&&x.hasAttribute("formAction")){if(y=x,w=x[Dn]||null)R=w.formAction;else if(Qb(y)!==null)continue}else R=w.action;typeof R=="function"?d[p+1]=R:(d.splice(p,3),p-=3),qE(d)}}}function GE(){function o(x){x.canIntercept&&x.info==="react-transition"&&x.intercept({handler:function(){return new Promise(function(w){return y=w})},focusReset:"manual",scroll:"manual"})}function l(){y!==null&&(y(),y=null),p||setTimeout(d,20)}function d(){if(!p&&!navigation.transition){var x=navigation.currentEntry;x&&x.url!=null&&navigation.navigate(x.url,{state:x.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var p=!1,y=null;return navigation.addEventListener("navigate",o),navigation.addEventListener("navigatesuccess",l),navigation.addEventListener("navigateerror",l),setTimeout(d,100),function(){p=!0,navigation.removeEventListener("navigate",o),navigation.removeEventListener("navigatesuccess",l),navigation.removeEventListener("navigateerror",l),y!==null&&(y(),y=null)}}}function Xb(o){this._internalRoot=o}Pf.prototype.render=Xb.prototype.render=function(o){var l=this._internalRoot;if(l===null)throw Error(r(409));var d=l.current,p=qn();IE(d,p,o,l,null,null)},Pf.prototype.unmount=Xb.prototype.unmount=function(){var o=this._internalRoot;if(o!==null){this._internalRoot=null;var l=o.containerInfo;IE(o.current,2,null,o,null,null),pf(),l[va]=null}};function Pf(o){this._internalRoot=o}Pf.prototype.unstable_scheduleHydration=function(o){if(o){var l=rv();o={blockedOn:null,target:o,priority:l};for(var d=0;d<fs.length&&l!==0&&l<fs[d].priority;d++);fs.splice(d,0,o),d===0&&VE(o)}};var WE=e.version;if(WE!=="19.2.4")throw Error(r(527,WE,"19.2.4"));j.findDOMNode=function(o){var l=o._reactInternals;if(l===void 0)throw typeof o.render=="function"?Error(r(188)):(o=Object.keys(o).join(","),Error(r(268,o)));return o=f(l),o=o!==null?h(o):null,o=o===null?null:o.stateNode,o};var dP={bundleType:0,version:"19.2.4",rendererPackageName:"react-dom",currentDispatcherRef:O,reconcilerVersion:"19.2.4"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Of=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Of.isDisabled&&Of.supportsFiber)try{jl=Of.inject(dP),In=Of}catch{}}return Pu.createRoot=function(o,l){if(!i(o))throw Error(r(299));var d=!1,p="",y=tC,x=nC,w=rC;return l!=null&&(l.unstable_strictMode===!0&&(d=!0),l.identifierPrefix!==void 0&&(p=l.identifierPrefix),l.onUncaughtError!==void 0&&(y=l.onUncaughtError),l.onCaughtError!==void 0&&(x=l.onCaughtError),l.onRecoverableError!==void 0&&(w=l.onRecoverableError)),l=LE(o,1,!1,null,null,d,p,null,y,x,w,GE),o[va]=l.current,Rb(o),new Xb(l)},Pu.hydrateRoot=function(o,l,d){if(!i(o))throw Error(r(299));var p=!1,y="",x=tC,w=nC,R=rC,z=null;return d!=null&&(d.unstable_strictMode===!0&&(p=!0),d.identifierPrefix!==void 0&&(y=d.identifierPrefix),d.onUncaughtError!==void 0&&(x=d.onUncaughtError),d.onCaughtError!==void 0&&(w=d.onCaughtError),d.onRecoverableError!==void 0&&(R=d.onRecoverableError),d.formState!==void 0&&(z=d.formState)),l=LE(o,1,!0,l,d??null,p,y,z,x,w,R,GE),l.context=zE(null),d=l.current,p=qn(),p=jm(p),y=Yi(p),y.callback=null,Xi(d,y,p),d=p,l.current.lanes=d,Hl(l,d),Lr(l),o[va]=l.current,Rb(o),new Pf(l)},Pu.version="19.2.4",Pu}var i2;function xP(){if(i2)return e0.exports;i2=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),e0.exports=vP(),e0.exports}var CP=xP(),Qc=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(t){return this.listeners.add(t),this.onSubscribe(),()=>{this.listeners.delete(t),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},EP=class extends Qc{#e;#t;#n;constructor(){super(),this.#n=t=>{if(typeof window<"u"&&window.addEventListener){const e=()=>t();return window.addEventListener("visibilitychange",e,!1),()=>{window.removeEventListener("visibilitychange",e)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(t){this.#n=t,this.#t?.(),this.#t=t(e=>{typeof e=="boolean"?this.setFocused(e):this.onFocus()})}setFocused(t){this.#e!==t&&(this.#e=t,this.onFocus())}onFocus(){const t=this.isFocused();this.listeners.forEach(e=>{e(t)})}isFocused(){return typeof this.#e=="boolean"?this.#e:globalThis.document?.visibilityState!=="hidden"}},Uy=new EP,kP={setTimeout:(t,e)=>setTimeout(t,e),clearTimeout:t=>clearTimeout(t),setInterval:(t,e)=>setInterval(t,e),clearInterval:t=>clearInterval(t)},DP=class{#e=kP;#t=!1;setTimeoutProvider(t){this.#e=t}setTimeout(t,e){return this.#e.setTimeout(t,e)}clearTimeout(t){this.#e.clearTimeout(t)}setInterval(t,e){return this.#e.setInterval(t,e)}clearInterval(t){this.#e.clearInterval(t)}},Ao=new DP;function SP(t){setTimeout(t,0)}var wP=typeof window>"u"||"Deno"in globalThis;function Rn(){}function $P(t,e){return typeof t=="function"?t(e):t}function g4(t){return typeof t=="number"&&t>=0&&t!==1/0}function XD(t,e){return Math.max(t+(e||0)-Date.now(),0)}function Bs(t,e){return typeof t=="function"?t(e):t}function Gn(t,e){return typeof t=="function"?t(e):t}function s2(t,e){const{type:n="all",exact:r,fetchStatus:i,predicate:s,queryKey:a,stale:u}=t;if(a){if(r){if(e.queryHash!==qy(a,e.options))return!1}else if(!Cl(e.queryKey,a))return!1}if(n!=="all"){const c=e.isActive();if(n==="active"&&!c||n==="inactive"&&c)return!1}return!(typeof u=="boolean"&&e.isStale()!==u||i&&i!==e.state.fetchStatus||s&&!s(e))}function o2(t,e){const{exact:n,status:r,predicate:i,mutationKey:s}=t;if(s){if(!e.options.mutationKey)return!1;if(n){if(kc(e.options.mutationKey)!==kc(s))return!1}else if(!Cl(e.options.mutationKey,s))return!1}return!(r&&e.state.status!==r||i&&!i(e))}function qy(t,e){return(e?.queryKeyHashFn||kc)(t)}function kc(t){return JSON.stringify(t,(e,n)=>y4(n)?Object.keys(n).sort().reduce((r,i)=>(r[i]=n[i],r),{}):n)}function Cl(t,e){if(t===e)return!0;if(typeof t!=typeof e)return!1;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(Array.isArray(t)&&Array.isArray(e)){for(let r=0;r<e.length;r++)if(!Cl(t[r],e[r]))return!1;return!0}const n=Object.keys(e);for(const r of n)if(!Cl(t[r],e[r]))return!1;return!0}return!1}var TP=Object.prototype.hasOwnProperty;function JD(t,e,n=0){if(t===e)return t;if(n>500)return e;const r=a2(t)&&a2(e);if(!r&&!(y4(t)&&y4(e)))return e;const s=(r?t:Object.keys(t)).length,a=r?e:Object.keys(e),u=a.length,c=r?new Array(u):{};let f=0;for(let h=0;h<u;h++){const m=r?h:a[h],g=t[m],b=e[m];if(g===b){c[m]=g,(r?h<s:TP.call(t,m))&&f++;continue}if(g===null||b===null||typeof g!="object"||typeof b!="object"){c[m]=b;continue}const v=JD(g,b,n+1);c[m]=v,v===g&&f++}return s===u&&f===s?t:c}function b4(t,e){if(!e||Object.keys(t).length!==Object.keys(e).length)return!1;for(const n in t)if(t[n]!==e[n])return!1;return!0}function a2(t){return Array.isArray(t)&&t.length===Object.keys(t).length}function y4(t){if(!l2(t))return!1;const e=t.constructor;if(e===void 0)return!0;const n=e.prototype;return!(!l2(n)||!n.hasOwnProperty("isPrototypeOf")||Object.getPrototypeOf(t)!==Object.prototype)}function l2(t){return Object.prototype.toString.call(t)==="[object Object]"}function AP(t){return new Promise(e=>{Ao.setTimeout(e,t)})}function v4(t,e,n){return typeof n.structuralSharing=="function"?n.structuralSharing(t,e):n.structuralSharing!==!1?JD(t,e):e}function BP(t,e,n=0){const r=[...t,e];return n&&r.length>n?r.slice(1):r}function MP(t,e,n=0){const r=[e,...t];return n&&r.length>n?r.slice(0,-1):r}var Gy=Symbol();function ZD(t,e){return!t.queryFn&&e?.initialPromise?()=>e.initialPromise:!t.queryFn||t.queryFn===Gy?()=>Promise.reject(new Error(`Missing queryFn: '${t.queryHash}'`)):t.queryFn}function eS(t,e){return typeof t=="function"?t(...e):!!t}function RP(t,e,n){let r=!1,i;return Object.defineProperty(t,"signal",{enumerable:!0,get:()=>(i??=e(),r||(r=!0,i.aborted?n():i.addEventListener("abort",n,{once:!0})),i)}),t}var Dc=(()=>{let t=()=>wP;return{isServer(){return t()},setIsServer(e){t=e}}})();function x4(){let t,e;const n=new Promise((i,s)=>{t=i,e=s});n.status="pending",n.catch(()=>{});function r(i){Object.assign(n,i),delete n.resolve,delete n.reject}return n.resolve=i=>{r({status:"fulfilled",value:i}),t(i)},n.reject=i=>{r({status:"rejected",reason:i}),e(i)},n}var NP=SP;function PP(){let t=[],e=0,n=u=>{u()},r=u=>{u()},i=NP;const s=u=>{e?t.push(u):i(()=>{n(u)})},a=()=>{const u=t;t=[],u.length&&i(()=>{r(()=>{u.forEach(c=>{n(c)})})})};return{batch:u=>{let c;e++;try{c=u()}finally{e--,e||a()}return c},batchCalls:u=>(...c)=>{s(()=>{u(...c)})},schedule:s,setNotifyFunction:u=>{n=u},setBatchNotifyFunction:u=>{r=u},setScheduler:u=>{i=u}}}var Zt=PP(),OP=class extends Qc{#e=!0;#t;#n;constructor(){super(),this.#n=t=>{if(typeof window<"u"&&window.addEventListener){const e=()=>t(!0),n=()=>t(!1);return window.addEventListener("online",e,!1),window.addEventListener("offline",n,!1),()=>{window.removeEventListener("online",e),window.removeEventListener("offline",n)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(t){this.#n=t,this.#t?.(),this.#t=t(this.setOnline.bind(this))}setOnline(t){this.#e!==t&&(this.#e=t,this.listeners.forEach(n=>{n(t)}))}isOnline(){return this.#e}},Nh=new OP;function LP(t){return Math.min(1e3*2**t,3e4)}function tS(t){return(t??"online")==="online"?Nh.isOnline():!0}var C4=class extends Error{constructor(t){super("CancelledError"),this.revert=t?.revert,this.silent=t?.silent}};function nS(t){let e=!1,n=0,r;const i=x4(),s=()=>i.status!=="pending",a=C=>{if(!s()){const E=new C4(C);g(E),t.onCancel?.(E)}},u=()=>{e=!0},c=()=>{e=!1},f=()=>Uy.isFocused()&&(t.networkMode==="always"||Nh.isOnline())&&t.canRun(),h=()=>tS(t.networkMode)&&t.canRun(),m=C=>{s()||(r?.(),i.resolve(C))},g=C=>{s()||(r?.(),i.reject(C))},b=()=>new Promise(C=>{r=E=>{(s()||f())&&C(E)},t.onPause?.()}).then(()=>{r=void 0,s()||t.onContinue?.()}),v=()=>{if(s())return;let C;const E=n===0?t.initialPromise:void 0;try{C=E??t.fn()}catch(k){C=Promise.reject(k)}Promise.resolve(C).then(m).catch(k=>{if(s())return;const T=t.retry??(Dc.isServer()?0:3),$=t.retryDelay??LP,A=typeof $=="function"?$(n,k):$,B=T===!0||typeof T=="number"&&n<T||typeof T=="function"&&T(n,k);if(e||!B){g(k);return}n++,t.onFail?.(n,k),AP(A).then(()=>f()?void 0:b()).then(()=>{e?g(k):v()})})};return{promise:i,status:()=>i.status,cancel:a,continue:()=>(r?.(),i),cancelRetry:u,continueRetry:c,canStart:h,start:()=>(h()?v():b().then(v),i)}}var rS=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),g4(this.gcTime)&&(this.#e=Ao.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(t){this.gcTime=Math.max(this.gcTime||0,t??(Dc.isServer()?1/0:300*1e3))}clearGcTimeout(){this.#e!==void 0&&(Ao.clearTimeout(this.#e),this.#e=void 0)}};function zP(t){return{onFetch:(e,n)=>{const r=e.options,i=e.fetchOptions?.meta?.fetchMore?.direction,s=e.state.data?.pages||[],a=e.state.data?.pageParams||[];let u={pages:[],pageParams:[]},c=0;const f=async()=>{let h=!1;const m=v=>{RP(v,()=>e.signal,()=>h=!0)},g=ZD(e.options,e.fetchOptions),b=async(v,C,E)=>{if(h)return Promise.reject(e.signal.reason);if(C==null&&v.pages.length)return Promise.resolve(v);const T=(()=>{const P={client:e.client,queryKey:e.queryKey,pageParam:C,direction:E?"backward":"forward",meta:e.options.meta};return m(P),P})(),$=await g(T),{maxPages:A}=e.options,B=E?MP:BP;return{pages:B(v.pages,$,A),pageParams:B(v.pageParams,C,A)}};if(i&&s.length){const v=i==="backward",C=v?IP:u2,E={pages:s,pageParams:a},k=C(r,E);u=await b(E,k,v)}else{const v=t??s.length;do{const C=c===0?a[0]??r.initialPageParam:u2(r,u);if(c>0&&C==null)break;u=await b(u,C),c++}while(c<v)}return u};e.options.persister?e.fetchFn=()=>e.options.persister?.(f,{client:e.client,queryKey:e.queryKey,meta:e.options.meta,signal:e.signal},n):e.fetchFn=f}}}function u2(t,{pages:e,pageParams:n}){const r=e.length-1;return e.length>0?t.getNextPageParam(e[r],e,n[r],n):void 0}function IP(t,{pages:e,pageParams:n}){return e.length>0?t.getPreviousPageParam?.(e[0],e,n[0],n):void 0}var FP=class extends rS{#e;#t;#n;#r;#s;#i;#a;#o;constructor(t){super(),this.#o=!1,this.#a=t.defaultOptions,this.setOptions(t.options),this.observers=[],this.#s=t.client,this.#r=this.#s.getQueryCache(),this.queryKey=t.queryKey,this.queryHash=t.queryHash,this.#t=d2(this.options),this.state=t.state??this.#t,this.scheduleGc()}get meta(){return this.options.meta}get queryType(){return this.#e}get promise(){return this.#i?.promise}setOptions(t){if(this.options={...this.#a,...t},t?._type&&(this.#e=t._type),this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){const e=d2(this.options);e.data!==void 0&&(this.setState(c2(e.data,e.dataUpdatedAt)),this.#t=e)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus==="idle"&&this.#r.remove(this)}setData(t,e){const n=v4(this.state.data,t,this.options);return this.#l({data:n,type:"success",dataUpdatedAt:e?.updatedAt,manual:e?.manual}),n}setState(t){this.#l({type:"setState",state:t})}cancel(t){const e=this.#i?.promise;return this.#i?.cancel(t),e?e.then(Rn).catch(Rn):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#t}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(t=>Gn(t.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===Gy||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0?this.observers.some(t=>Bs(t.options.staleTime,this)==="static"):!1}isStale(){return this.getObserversCount()>0?this.observers.some(t=>t.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(t=0){return this.state.data===void 0?!0:t==="static"?!1:this.state.isInvalidated?!0:!XD(this.state.dataUpdatedAt,t)}onFocus(){this.observers.find(e=>e.shouldFetchOnWindowFocus())?.refetch({cancelRefetch:!1}),this.#i?.continue()}onOnline(){this.observers.find(e=>e.shouldFetchOnReconnect())?.refetch({cancelRefetch:!1}),this.#i?.continue()}addObserver(t){this.observers.includes(t)||(this.observers.push(t),this.clearGcTimeout(),this.#r.notify({type:"observerAdded",query:this,observer:t}))}removeObserver(t){this.observers.includes(t)&&(this.observers=this.observers.filter(e=>e!==t),this.observers.length||(this.#i&&(this.#o||this.#c()?this.#i.cancel({revert:!0}):this.#i.cancelRetry()),this.scheduleGc()),this.#r.notify({type:"observerRemoved",query:this,observer:t}))}getObserversCount(){return this.observers.length}#c(){return this.state.fetchStatus==="paused"&&this.state.status==="pending"}invalidate(){this.state.isInvalidated||this.#l({type:"invalidate"})}async fetch(t,e){if(this.state.fetchStatus!=="idle"&&this.#i?.status()!=="rejected"){if(this.state.data!==void 0&&e?.cancelRefetch)this.cancel({silent:!0});else if(this.#i)return this.#i.continueRetry(),this.#i.promise}if(t&&this.setOptions(t),!this.options.queryFn){const c=this.observers.find(f=>f.options.queryFn);c&&this.setOptions(c.options)}const n=new AbortController,r=c=>{Object.defineProperty(c,"signal",{enumerable:!0,get:()=>(this.#o=!0,n.signal)})},i=()=>{const c=ZD(this.options,e),h=(()=>{const m={client:this.#s,queryKey:this.queryKey,meta:this.meta};return r(m),m})();return this.#o=!1,this.options.persister?this.options.persister(c,h,this):c(h)},a=(()=>{const c={fetchOptions:e,options:this.options,queryKey:this.queryKey,client:this.#s,state:this.state,fetchFn:i};return r(c),c})();(this.#e==="infinite"?zP(this.options.pages):this.options.behavior)?.onFetch(a,this),this.#n=this.state,(this.state.fetchStatus==="idle"||this.state.fetchMeta!==a.fetchOptions?.meta)&&this.#l({type:"fetch",meta:a.fetchOptions?.meta}),this.#i=nS({initialPromise:e?.initialPromise,fn:a.fetchFn,onCancel:c=>{c instanceof C4&&c.revert&&this.setState({...this.#n,fetchStatus:"idle"}),n.abort()},onFail:(c,f)=>{this.#l({type:"failed",failureCount:c,error:f})},onPause:()=>{this.#l({type:"pause"})},onContinue:()=>{this.#l({type:"continue"})},retry:a.options.retry,retryDelay:a.options.retryDelay,networkMode:a.options.networkMode,canRun:()=>!0});try{const c=await this.#i.start();if(c===void 0)throw new Error(`${this.queryHash} data is undefined`);return this.setData(c),this.#r.config.onSuccess?.(c,this),this.#r.config.onSettled?.(c,this.state.error,this),c}catch(c){if(c instanceof C4){if(c.silent)return this.#i.promise;if(c.revert){if(this.state.data===void 0)throw c;return this.state.data}}throw this.#l({type:"error",error:c}),this.#r.config.onError?.(c,this),this.#r.config.onSettled?.(this.state.data,c,this),c}finally{this.scheduleGc()}}#l(t){const e=n=>{switch(t.type){case"failed":return{...n,fetchFailureCount:t.failureCount,fetchFailureReason:t.error};case"pause":return{...n,fetchStatus:"paused"};case"continue":return{...n,fetchStatus:"fetching"};case"fetch":return{...n,...iS(n.data,this.options),fetchMeta:t.meta??null};case"success":const r={...n,...c2(t.data,t.dataUpdatedAt),dataUpdateCount:n.dataUpdateCount+1,...!t.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return this.#n=t.manual?r:void 0,r;case"error":const i=t.error;return{...n,error:i,errorUpdateCount:n.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:n.fetchFailureCount+1,fetchFailureReason:i,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...n,isInvalidated:!0};case"setState":return{...n,...t.state}}};this.state=e(this.state),Zt.batch(()=>{this.observers.forEach(n=>{n.onQueryUpdate()}),this.#r.notify({query:this,type:"updated",action:t})})}};function iS(t,e){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:tS(e.networkMode)?"fetching":"paused",...t===void 0&&{error:null,status:"pending"}}}function c2(t,e){return{data:t,dataUpdatedAt:e??Date.now(),error:null,isInvalidated:!1,status:"success"}}function d2(t){const e=typeof t.initialData=="function"?t.initialData():t.initialData,n=e!==void 0,r=n?typeof t.initialDataUpdatedAt=="function"?t.initialDataUpdatedAt():t.initialDataUpdatedAt:0;return{data:e,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 KP=class extends Qc{constructor(t,e){super(),this.options=e,this.#e=t,this.#o=null,this.#a=x4(),this.bindMethods(),this.setOptions(e)}#e;#t=void 0;#n=void 0;#r=void 0;#s;#i;#a;#o;#c;#l;#p;#d;#f;#u;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(this.#t.addObserver(this),f2(this.#t,this.options)?this.#h():this.updateResult(),this.#v())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return E4(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return E4(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#x(),this.#C(),this.#t.removeObserver(this)}setOptions(t){const e=this.options,n=this.#t;if(this.options=this.#e.defaultQueryOptions(t),this.options.enabled!==void 0&&typeof this.options.enabled!="boolean"&&typeof this.options.enabled!="function"&&typeof Gn(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),e._defaulted&&!b4(this.options,e)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#t,observer:this});const r=this.hasListeners();r&&h2(this.#t,n,this.options,e)&&this.#h(),this.updateResult(),r&&(this.#t!==n||Gn(this.options.enabled,this.#t)!==Gn(e.enabled,this.#t)||Bs(this.options.staleTime,this.#t)!==Bs(e.staleTime,this.#t))&&this.#g();const i=this.#b();r&&(this.#t!==n||Gn(this.options.enabled,this.#t)!==Gn(e.enabled,this.#t)||i!==this.#u)&&this.#y(i)}getOptimisticResult(t){const e=this.#e.getQueryCache().build(this.#e,t),n=this.createResult(e,t);return _P(this,n)&&(this.#r=n,this.#i=this.options,this.#s=this.#t.state),n}getCurrentResult(){return this.#r}trackResult(t,e){return new Proxy(t,{get:(n,r)=>(this.trackProp(r),e?.(r),r==="promise"&&(this.trackProp("data"),!this.options.experimental_prefetchInRender&&this.#a.status==="pending"&&this.#a.reject(new Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(n,r))})}trackProp(t){this.#m.add(t)}getCurrentQuery(){return this.#t}refetch({...t}={}){return this.fetch({...t})}fetchOptimistic(t){const e=this.#e.defaultQueryOptions(t),n=this.#e.getQueryCache().build(this.#e,e);return n.fetch().then(()=>this.createResult(n,e))}fetch(t){return this.#h({...t,cancelRefetch:t.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#r))}#h(t){this.#E();let e=this.#t.fetch(this.options,t);return t?.throwOnError||(e=e.catch(Rn)),e}#g(){this.#x();const t=Bs(this.options.staleTime,this.#t);if(Dc.isServer()||this.#r.isStale||!g4(t))return;const n=XD(this.#r.dataUpdatedAt,t)+1;this.#d=Ao.setTimeout(()=>{this.#r.isStale||this.updateResult()},n)}#b(){return(typeof this.options.refetchInterval=="function"?this.options.refetchInterval(this.#t):this.options.refetchInterval)??!1}#y(t){this.#C(),this.#u=t,!(Dc.isServer()||Gn(this.options.enabled,this.#t)===!1||!g4(this.#u)||this.#u===0)&&(this.#f=Ao.setInterval(()=>{(this.options.refetchIntervalInBackground||Uy.isFocused())&&this.#h()},this.#u))}#v(){this.#g(),this.#y(this.#b())}#x(){this.#d!==void 0&&(Ao.clearTimeout(this.#d),this.#d=void 0)}#C(){this.#f!==void 0&&(Ao.clearInterval(this.#f),this.#f=void 0)}createResult(t,e){const n=this.#t,r=this.options,i=this.#r,s=this.#s,a=this.#i,c=t!==n?t.state:this.#n,{state:f}=t;let h={...f},m=!1,g;if(e._optimisticResults){const N=this.hasListeners(),I=!N&&f2(t,e),F=N&&h2(t,n,e,r);(I||F)&&(h={...h,...iS(f.data,t.options)}),e._optimisticResults==="isRestoring"&&(h.fetchStatus="idle")}let{error:b,errorUpdatedAt:v,status:C}=h;g=h.data;let E=!1;if(e.placeholderData!==void 0&&g===void 0&&C==="pending"){let N;i?.isPlaceholderData&&e.placeholderData===a?.placeholderData?(N=i.data,E=!0):N=typeof e.placeholderData=="function"?e.placeholderData(this.#p?.state.data,this.#p):e.placeholderData,N!==void 0&&(C="success",g=v4(i?.data,N,e),m=!0)}if(e.select&&g!==void 0&&!E)if(i&&g===s?.data&&e.select===this.#c)g=this.#l;else try{this.#c=e.select,g=e.select(g),g=v4(i?.data,g,e),this.#l=g,this.#o=null}catch(N){this.#o=N}this.#o&&(b=this.#o,g=this.#l,v=Date.now(),C="error");const k=h.fetchStatus==="fetching",T=C==="pending",$=C==="error",A=T&&k,B=g!==void 0,M={status:C,fetchStatus:h.fetchStatus,isPending:T,isSuccess:C==="success",isError:$,isInitialLoading:A,isLoading:A,data:g,dataUpdatedAt:h.dataUpdatedAt,error:b,errorUpdatedAt:v,failureCount:h.fetchFailureCount,failureReason:h.fetchFailureReason,errorUpdateCount:h.errorUpdateCount,isFetched:t.isFetched(),isFetchedAfterMount:h.dataUpdateCount>c.dataUpdateCount||h.errorUpdateCount>c.errorUpdateCount,isFetching:k,isRefetching:k&&!T,isLoadingError:$&&!B,isPaused:h.fetchStatus==="paused",isPlaceholderData:m,isRefetchError:$&&B,isStale:Wy(t,e),refetch:this.refetch,promise:this.#a,isEnabled:Gn(e.enabled,t)!==!1};if(this.options.experimental_prefetchInRender){const N=M.data!==void 0,I=M.status==="error"&&!N,F=ie=>{I?ie.reject(M.error):N&&ie.resolve(M.data)},J=()=>{const ie=this.#a=M.promise=x4();F(ie)},q=this.#a;switch(q.status){case"pending":t.queryHash===n.queryHash&&F(q);break;case"fulfilled":(I||M.data!==q.value)&&J();break;case"rejected":(!I||M.error!==q.reason)&&J();break}}return M}updateResult(){const t=this.#r,e=this.createResult(this.#t,this.options);if(this.#s=this.#t.state,this.#i=this.options,this.#s.data!==void 0&&(this.#p=this.#t),b4(e,t))return;this.#r=e;const n=()=>{if(!t)return!0;const{notifyOnChangeProps:r}=this.options,i=typeof r=="function"?r():r;if(i==="all"||!i&&!this.#m.size)return!0;const s=new Set(i??this.#m);return this.options.throwOnError&&s.add("error"),Object.keys(this.#r).some(a=>{const u=a;return this.#r[u]!==t[u]&&s.has(u)})};this.#k({listeners:n()})}#E(){const t=this.#e.getQueryCache().build(this.#e,this.options);if(t===this.#t)return;const e=this.#t;this.#t=t,this.#n=t.state,this.hasListeners()&&(e?.removeObserver(this),t.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#v()}#k(t){Zt.batch(()=>{t.listeners&&this.listeners.forEach(e=>{e(this.#r)}),this.#e.getQueryCache().notify({query:this.#t,type:"observerResultsUpdated"})})}};function jP(t,e){return Gn(e.enabled,t)!==!1&&t.state.data===void 0&&!(t.state.status==="error"&&Gn(e.retryOnMount,t)===!1)}function f2(t,e){return jP(t,e)||t.state.data!==void 0&&E4(t,e,e.refetchOnMount)}function E4(t,e,n){if(Gn(e.enabled,t)!==!1&&Bs(e.staleTime,t)!=="static"){const r=typeof n=="function"?n(t):n;return r==="always"||r!==!1&&Wy(t,e)}return!1}function h2(t,e,n,r){return(t!==e||Gn(r.enabled,t)===!1)&&(!n.suspense||t.state.status!=="error")&&Wy(t,n)}function Wy(t,e){return Gn(e.enabled,t)!==!1&&t.isStaleByTime(Bs(e.staleTime,t))}function _P(t,e){return!b4(t.getCurrentResult(),e)}var HP=class extends rS{#e;#t;#n;#r;constructor(t){super(),this.#e=t.client,this.mutationId=t.mutationId,this.#n=t.mutationCache,this.#t=[],this.state=t.state||VP(),this.setOptions(t.options),this.scheduleGc()}setOptions(t){this.options=t,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(t){this.#t.includes(t)||(this.#t.push(t),this.clearGcTimeout(),this.#n.notify({type:"observerAdded",mutation:this,observer:t}))}removeObserver(t){this.#t=this.#t.filter(e=>e!==t),this.scheduleGc(),this.#n.notify({type:"observerRemoved",mutation:this,observer:t})}optionalRemove(){this.#t.length||(this.state.status==="pending"?this.scheduleGc():this.#n.remove(this))}continue(){return this.#r?.continue()??this.execute(this.state.variables)}async execute(t){const e=()=>{this.#s({type:"continue"})},n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#r=nS({fn:()=>this.options.mutationFn?this.options.mutationFn(t,n):Promise.reject(new Error("No mutationFn found")),onFail:(s,a)=>{this.#s({type:"failed",failureCount:s,error:a})},onPause:()=>{this.#s({type:"pause"})},onContinue:e,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#n.canRun(this)});const r=this.state.status==="pending",i=!this.#r.canStart();try{if(r)e();else{this.#s({type:"pending",variables:t,isPaused:i}),this.#n.config.onMutate&&await this.#n.config.onMutate(t,this,n);const a=await this.options.onMutate?.(t,n);a!==this.state.context&&this.#s({type:"pending",context:a,variables:t,isPaused:i})}const s=await this.#r.start();return await this.#n.config.onSuccess?.(s,t,this.state.context,this,n),await this.options.onSuccess?.(s,t,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,t,this.state.context,n),this.#s({type:"success",data:s}),s}catch(s){try{await this.#n.config.onError?.(s,t,this.state.context,this,n)}catch(a){Promise.reject(a)}try{await this.options.onError?.(s,t,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,t,this.state.context,n)}catch(a){Promise.reject(a)}throw this.#s({type:"error",error:s}),s}finally{this.#n.runNext(this)}}#s(t){const e=n=>{switch(t.type){case"failed":return{...n,failureCount:t.failureCount,failureReason:t.error};case"pause":return{...n,isPaused:!0};case"continue":return{...n,isPaused:!1};case"pending":return{...n,context:t.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:t.isPaused,status:"pending",variables:t.variables,submittedAt:Date.now()};case"success":return{...n,data:t.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...n,data:void 0,error:t.error,failureCount:n.failureCount+1,failureReason:t.error,isPaused:!1,status:"error"}}};this.state=e(this.state),Zt.batch(()=>{this.#t.forEach(n=>{n.onMutationUpdate(t)}),this.#n.notify({mutation:this,type:"updated",action:t})})}};function VP(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}var UP=class extends Qc{constructor(t={}){super(),this.config=t,this.#e=new Set,this.#t=new Map,this.#n=0}#e;#t;#n;build(t,e,n){const r=new HP({client:t,mutationCache:this,mutationId:++this.#n,options:t.defaultMutationOptions(e),state:n});return this.add(r),r}add(t){this.#e.add(t);const e=Lf(t);if(typeof e=="string"){const n=this.#t.get(e);n?n.push(t):this.#t.set(e,[t])}this.notify({type:"added",mutation:t})}remove(t){if(this.#e.delete(t)){const e=Lf(t);if(typeof e=="string"){const n=this.#t.get(e);if(n)if(n.length>1){const r=n.indexOf(t);r!==-1&&n.splice(r,1)}else n[0]===t&&this.#t.delete(e)}}this.notify({type:"removed",mutation:t})}canRun(t){const e=Lf(t);if(typeof e=="string"){const r=this.#t.get(e)?.find(i=>i.state.status==="pending");return!r||r===t}else return!0}runNext(t){const e=Lf(t);return typeof e=="string"?this.#t.get(e)?.find(r=>r!==t&&r.state.isPaused)?.continue()??Promise.resolve():Promise.resolve()}clear(){Zt.batch(()=>{this.#e.forEach(t=>{this.notify({type:"removed",mutation:t})}),this.#e.clear(),this.#t.clear()})}getAll(){return Array.from(this.#e)}find(t){const e={exact:!0,...t};return this.getAll().find(n=>o2(e,n))}findAll(t={}){return this.getAll().filter(e=>o2(t,e))}notify(t){Zt.batch(()=>{this.listeners.forEach(e=>{e(t)})})}resumePausedMutations(){const t=this.getAll().filter(e=>e.state.isPaused);return Zt.batch(()=>Promise.all(t.map(e=>e.continue().catch(Rn))))}};function Lf(t){return t.options.scope?.id}var qP=class extends Qc{constructor(t={}){super(),this.config=t,this.#e=new Map}#e;build(t,e,n){const r=e.queryKey,i=e.queryHash??qy(r,e);let s=this.get(i);return s||(s=new FP({client:t,queryKey:r,queryHash:i,options:t.defaultQueryOptions(e),state:n,defaultOptions:t.getQueryDefaults(r)}),this.add(s)),s}add(t){this.#e.has(t.queryHash)||(this.#e.set(t.queryHash,t),this.notify({type:"added",query:t}))}remove(t){const e=this.#e.get(t.queryHash);e&&(t.destroy(),e===t&&this.#e.delete(t.queryHash),this.notify({type:"removed",query:t}))}clear(){Zt.batch(()=>{this.getAll().forEach(t=>{this.remove(t)})})}get(t){return this.#e.get(t)}getAll(){return[...this.#e.values()]}find(t){const e={exact:!0,...t};return this.getAll().find(n=>s2(e,n))}findAll(t={}){const e=this.getAll();return Object.keys(t).length>0?e.filter(n=>s2(t,n)):e}notify(t){Zt.batch(()=>{this.listeners.forEach(e=>{e(t)})})}onFocus(){Zt.batch(()=>{this.getAll().forEach(t=>{t.onFocus()})})}onOnline(){Zt.batch(()=>{this.getAll().forEach(t=>{t.onOnline()})})}},GP=class{#e;#t;#n;#r;#s;#i;#a;#o;constructor(t={}){this.#e=t.queryCache||new qP,this.#t=t.mutationCache||new UP,this.#n=t.defaultOptions||{},this.#r=new Map,this.#s=new Map,this.#i=0}mount(){this.#i++,this.#i===1&&(this.#a=Uy.subscribe(async t=>{t&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#o=Nh.subscribe(async t=>{t&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#i--,this.#i===0&&(this.#a?.(),this.#a=void 0,this.#o?.(),this.#o=void 0)}isFetching(t){return this.#e.findAll({...t,fetchStatus:"fetching"}).length}isMutating(t){return this.#t.findAll({...t,status:"pending"}).length}getQueryData(t){const e=this.defaultQueryOptions({queryKey:t});return this.#e.get(e.queryHash)?.state.data}ensureQueryData(t){const e=this.defaultQueryOptions(t),n=this.#e.build(this,e),r=n.state.data;return r===void 0?this.fetchQuery(t):(t.revalidateIfStale&&n.isStaleByTime(Bs(e.staleTime,n))&&this.prefetchQuery(e),Promise.resolve(r))}getQueriesData(t){return this.#e.findAll(t).map(({queryKey:e,state:n})=>{const r=n.data;return[e,r]})}setQueryData(t,e,n){const r=this.defaultQueryOptions({queryKey:t}),s=this.#e.get(r.queryHash)?.state.data,a=$P(e,s);if(a!==void 0)return this.#e.build(this,r).setData(a,{...n,manual:!0})}setQueriesData(t,e,n){return Zt.batch(()=>this.#e.findAll(t).map(({queryKey:r})=>[r,this.setQueryData(r,e,n)]))}getQueryState(t){const e=this.defaultQueryOptions({queryKey:t});return this.#e.get(e.queryHash)?.state}removeQueries(t){const e=this.#e;Zt.batch(()=>{e.findAll(t).forEach(n=>{e.remove(n)})})}resetQueries(t,e){const n=this.#e;return Zt.batch(()=>(n.findAll(t).forEach(r=>{r.reset()}),this.refetchQueries({type:"active",...t},e)))}cancelQueries(t,e={}){const n={revert:!0,...e},r=Zt.batch(()=>this.#e.findAll(t).map(i=>i.cancel(n)));return Promise.all(r).then(Rn).catch(Rn)}invalidateQueries(t,e={}){return Zt.batch(()=>(this.#e.findAll(t).forEach(n=>{n.invalidate()}),t?.refetchType==="none"?Promise.resolve():this.refetchQueries({...t,type:t?.refetchType??t?.type??"active"},e)))}refetchQueries(t,e={}){const n={...e,cancelRefetch:e.cancelRefetch??!0},r=Zt.batch(()=>this.#e.findAll(t).filter(i=>!i.isDisabled()&&!i.isStatic()).map(i=>{let s=i.fetch(void 0,n);return n.throwOnError||(s=s.catch(Rn)),i.state.fetchStatus==="paused"?Promise.resolve():s}));return Promise.all(r).then(Rn)}fetchQuery(t){const e=this.defaultQueryOptions(t);e.retry===void 0&&(e.retry=!1);const n=this.#e.build(this,e);return n.isStaleByTime(Bs(e.staleTime,n))?n.fetch(e):Promise.resolve(n.state.data)}prefetchQuery(t){return this.fetchQuery(t).then(Rn).catch(Rn)}fetchInfiniteQuery(t){return t._type="infinite",this.fetchQuery(t)}prefetchInfiniteQuery(t){return this.fetchInfiniteQuery(t).then(Rn).catch(Rn)}ensureInfiniteQueryData(t){return t._type="infinite",this.ensureQueryData(t)}resumePausedMutations(){return Nh.isOnline()?this.#t.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#t}getDefaultOptions(){return this.#n}setDefaultOptions(t){this.#n=t}setQueryDefaults(t,e){this.#r.set(kc(t),{queryKey:t,defaultOptions:e})}getQueryDefaults(t){const e=[...this.#r.values()],n={};return e.forEach(r=>{Cl(t,r.queryKey)&&Object.assign(n,r.defaultOptions)}),n}setMutationDefaults(t,e){this.#s.set(kc(t),{mutationKey:t,defaultOptions:e})}getMutationDefaults(t){const e=[...this.#s.values()],n={};return e.forEach(r=>{Cl(t,r.mutationKey)&&Object.assign(n,r.defaultOptions)}),n}defaultQueryOptions(t){if(t._defaulted)return t;const e={...this.#n.queries,...this.getQueryDefaults(t.queryKey),...t,_defaulted:!0};return e.queryHash||(e.queryHash=qy(e.queryKey,e)),e.refetchOnReconnect===void 0&&(e.refetchOnReconnect=e.networkMode!=="always"),e.throwOnError===void 0&&(e.throwOnError=!!e.suspense),!e.networkMode&&e.persister&&(e.networkMode="offlineFirst"),e.queryFn===Gy&&(e.enabled=!1),e}defaultMutationOptions(t){return t?._defaulted?t:{...this.#n.mutations,...t?.mutationKey&&this.getMutationDefaults(t.mutationKey),...t,_defaulted:!0}}clear(){this.#e.clear(),this.#t.clear()}},sS=D.createContext(void 0),Xp=t=>{const e=D.useContext(sS);if(!e)throw new Error("No QueryClient set, use QueryClientProvider to set one");return e},WP=({client:t,children:e})=>(D.useEffect(()=>(t.mount(),()=>{t.unmount()}),[t]),S.jsx(sS.Provider,{value:t,children:e})),oS=D.createContext(!1),QP=()=>D.useContext(oS);oS.Provider;function YP(){let t=!1;return{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t}}var XP=D.createContext(YP()),JP=()=>D.useContext(XP),ZP=(t,e,n)=>{const r=n?.state.error&&typeof t.throwOnError=="function"?eS(t.throwOnError,[n.state.error,n]):t.throwOnError;(t.suspense||t.experimental_prefetchInRender||r)&&(e.isReset()||(t.retryOnMount=!1))},eO=t=>{D.useEffect(()=>{t.clearReset()},[t])},tO=({result:t,errorResetBoundary:e,throwOnError:n,query:r,suspense:i})=>t.isError&&!e.isReset()&&!t.isFetching&&r&&(i&&t.data===void 0||eS(n,[t.error,r])),nO=t=>{if(t.suspense){const n=i=>i==="static"?i:Math.max(i??1e3,1e3),r=t.staleTime;t.staleTime=typeof r=="function"?(...i)=>n(r(...i)):n(r),typeof t.gcTime=="number"&&(t.gcTime=Math.max(t.gcTime,1e3))}},rO=(t,e)=>t.isLoading&&t.isFetching&&!e,iO=(t,e)=>t?.suspense&&e.isPending,p2=(t,e,n)=>e.fetchOptimistic(t).catch(()=>{n.clearReset()});function sO(t,e,n){const r=QP(),i=JP(),s=Xp(),a=s.defaultQueryOptions(t);s.getDefaultOptions().queries?._experimental_beforeQuery?.(a);const u=s.getQueryCache().get(a.queryHash),c=t.subscribed!==!1;a._optimisticResults=r?"isRestoring":c?"optimistic":void 0,nO(a),ZP(a,i,u),eO(i);const f=!s.getQueryCache().get(a.queryHash),[h]=D.useState(()=>new e(s,a)),m=h.getOptimisticResult(a),g=!r&&c;if(D.useSyncExternalStore(D.useCallback(b=>{const v=g?h.subscribe(Zt.batchCalls(b)):Rn;return h.updateResult(),v},[h,g]),()=>h.getCurrentResult(),()=>h.getCurrentResult()),D.useEffect(()=>{h.setOptions(a)},[a,h]),iO(a,m))throw p2(a,h,i);if(tO({result:m,errorResetBoundary:i,throwOnError:a.throwOnError,query:u,suspense:a.suspense}))throw m.error;return s.getDefaultOptions().queries?._experimental_afterQuery?.(a,m),a.experimental_prefetchInRender&&!Dc.isServer()&&rO(m,r)&&(f?p2(a,h,i):u?.promise)?.catch(Rn).finally(()=>{h.updateResult()}),a.notifyOnChangeProps?m:h.trackResult(m)}function Yc(t,e){return sO(t,KP)}var Gu=typeof window<"u"?D.useLayoutEffect:D.useEffect;function i0(t){const e=D.useRef({value:t,prev:null}),n=e.current.value;return t!==n&&(e.current={value:t,prev:n}),e.current.prev}function oO(t,e,n={},r={}){D.useEffect(()=>{if(!t.current||r.disabled||typeof IntersectionObserver!="function")return;const i=new IntersectionObserver(([s])=>{e(s)},n);return i.observe(t.current),()=>{i.disconnect()}},[e,n,r.disabled,t])}function aO(t){const e=D.useRef(null);return D.useImperativeHandle(t,()=>e.current,[]),e}const aS=!1;function Sc(t){return t[t.length-1]}function lO(t){return typeof t=="function"}function Bo(t,e){return lO(t)?t(e):t}const lS=Object.prototype.hasOwnProperty,m2=Object.prototype.propertyIsEnumerable;function uS(t){for(const e in t)if(lS.call(t,e))return!0;return!1}const uO=()=>Object.create(null),Eo=(t,e)=>Mo(t,e,uO);function Mo(t,e,n=()=>({}),r=0){if(t===e)return t;if(r>500)return e;const i=e,s=y2(t)&&y2(i);if(!s&&!(Ph(t)&&Ph(i)))return i;const a=s?t:g2(t);if(!a)return i;const u=s?i:g2(i);if(!u)return i;const c=a.length,f=u.length,h=s?new Array(f):n();let m=0;for(let g=0;g<f;g++){const b=s?g:u[g],v=t[b],C=i[b];if(v===C){h[b]=v,(s?g<c:lS.call(t,b))&&m++;continue}if(v===null||C===null||typeof v!="object"||typeof C!="object"){h[b]=C;continue}const E=Mo(v,C,n,r+1);h[b]=E,E===v&&m++}return c===f&&m===c?t:h}function g2(t){const e=Object.getOwnPropertyNames(t);for(const i of e)if(!m2.call(t,i))return!1;const n=Object.getOwnPropertySymbols(t);if(n.length===0)return e;const r=e;for(const i of n){if(!m2.call(t,i))return!1;r.push(i)}return r}function Ph(t){if(!b2(t))return!1;const e=t.constructor;if(typeof e>"u")return!0;const n=e.prototype;return!(!b2(n)||!n.hasOwnProperty("isPrototypeOf"))}function b2(t){return Object.prototype.toString.call(t)==="[object Object]"}function y2(t){return Array.isArray(t)&&t.length===Object.keys(t).length}function _o(t,e,n){if(t===e)return!0;if(typeof t!=typeof e)return!1;if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(let r=0,i=t.length;r<i;r++)if(!_o(t[r],e[r],n))return!1;return!0}if(Ph(t)&&Ph(e)){const r=n?.ignoreUndefined??!0;if(n?.partial){for(const a in e)if((!r||e[a]!==void 0)&&!_o(t[a],e[a],n))return!1;return!0}let i=0;if(!r)i=Object.keys(t).length;else for(const a in t)t[a]!==void 0&&i++;let s=0;for(const a in e)if((!r||e[a]!==void 0)&&(s++,s>i||!_o(t[a],e[a],n)))return!1;return i===s}return!1}function El(t){let e,n;const r=new Promise((i,s)=>{e=i,n=s});return r.status="pending",r.resolve=i=>{r.status="resolved",r.value=i,e(i),t?.(i)},r.reject=i=>{r.status="rejected",n(i)},r}function wc(t){return!!(t&&typeof t=="object"&&typeof t.then=="function")}const cO=/[\x00-\x1f\x7f"<>`{}]/g;function dO(t){return t.replace(cO,e=>"%"+e.charCodeAt(0).toString(16).toUpperCase().padStart(2,"0"))}function v2(t){let e;try{e=decodeURI(t)}catch{e=t.replaceAll(/%[0-9A-F]{2}/gi,n=>{try{return decodeURI(n)}catch{return n}})}return dO(e)}const fO=["http:","https:","mailto:","tel:"];function Oh(t,e){if(!t)return!1;try{const n=new URL(t);return!e.has(n.protocol)}catch{return!1}}function Ou(t){if(!t)return{path:t,handledProtocolRelativeURL:!1};if(!/[%\\\x00-\x1f\x7f]/.test(t)&&!t.startsWith("//"))return{path:t,handledProtocolRelativeURL:!1};const e=/%25|%5C/gi;let n=0,r="",i;for(;(i=e.exec(t))!==null;)r+=v2(t.slice(n,i.index))+i[0],n=e.lastIndex;r=r+v2(n?t.slice(n):t);let s=!1;return r.startsWith("//")&&(s=!0,r="/"+r.replace(/^\/+/,"")),{path:r,handledProtocolRelativeURL:s}}function hO(t){return/\s|[^\u0000-\u007F]/.test(t)?t.replace(/\s|[^\u0000-\u007F]/gu,encodeURIComponent):t}function pO(t,e){if(t===e)return!0;if(t.length!==e.length)return!1;for(let n=0;n<t.length;n++)if(t[n]!==e[n])return!1;return!0}function Ti(){throw new Error("Invariant failed")}function $c(t){const e=new Map;let n,r;const i=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=e.get(s);if(a)return i(a),a.value},set(s,a){if(e.size>=t&&n){const c=n;e.delete(c.key),c.next&&(n=c.next,c.next.prev=void 0),c===r&&(r=void 0)}const u=e.get(s);if(u)u.value=a,i(u);else{const c={key:s,value:a,prev:r};r&&(r.next=c),r=c,n||(n=c),e.set(s,c)}},clear(){e.clear(),n=void 0,r=void 0}}}const Ds=4,cS=5;function mO(t){const e=t.indexOf("{");if(e===-1)return null;const n=t.indexOf("}",e);return n===-1||e+1>=t.length?null:[e,n]}function dS(t,e,n=new Uint16Array(6)){const r=t.indexOf("/",e),i=r===-1?t.length:r,s=t.substring(e,i);if(!s||!s.includes("$"))return n[0]=0,n[1]=e,n[2]=e,n[3]=i,n[4]=i,n[5]=i,n;if(s==="$"){const u=t.length;return n[0]=2,n[1]=e,n[2]=e,n[3]=u,n[4]=u,n[5]=u,n}if(s.charCodeAt(0)===36)return n[0]=1,n[1]=e,n[2]=e+1,n[3]=i,n[4]=i,n[5]=i,n;const a=mO(s);if(a){const[u,c]=a,f=s.charCodeAt(u+1);if(f===45){if(u+2<s.length&&s.charCodeAt(u+2)===36){const h=u+3,m=c;if(h<m)return n[0]=3,n[1]=e+u,n[2]=e+h,n[3]=e+m,n[4]=e+c+1,n[5]=i,n}}else if(f===36){const h=u+1,m=u+2;return m===c?(n[0]=2,n[1]=e+u,n[2]=e+h,n[3]=e+m,n[4]=e+c+1,n[5]=t.length,n):(n[0]=1,n[1]=e+u,n[2]=e+m,n[3]=e+c,n[4]=e+c+1,n[5]=i,n)}}return n[0]=0,n[1]=e,n[2]=e,n[3]=i,n[4]=i,n[5]=i,n}function Jp(t,e,n,r,i,s,a){a?.(n);let u=r;{const c=n.fullPath??n.from,f=c.length,h=n.options?.caseSensitive??t,m=n.options?.params?.parse??n.options?.parseParams;for(;u<f;){const b=dS(c,u,e);let v;const C=u,E=b[5];switch(u=E+1,s++,b[0]){case 0:{const k=c.substring(b[2],b[3]);if(h){const T=i.static?.get(k);if(T)v=T;else{i.static??=new Map;const $=Ro(n.fullPath??n.from);$.parent=i,$.depth=s,v=$,i.static.set(k,$)}}else{const T=k.toLowerCase(),$=i.staticInsensitive?.get(T);if($)v=$;else{i.staticInsensitive??=new Map;const A=Ro(n.fullPath??n.from);A.parent=i,A.depth=s,v=A,i.staticInsensitive.set(T,A)}}break}case 1:{const k=c.substring(C,b[1]),T=c.substring(b[4],E),$=h&&!!(k||T),A=k?$?k:k.toLowerCase():void 0,B=T?$?T:T.toLowerCase():void 0,P=!m&&i.dynamic?.find(M=>!M.parse&&M.caseSensitive===$&&M.prefix===A&&M.suffix===B);if(P)v=P;else{const M=o0(1,n.fullPath??n.from,$,A,B);v=M,M.depth=s,M.parent=i,i.dynamic??=[],i.dynamic.push(M)}break}case 3:{const k=c.substring(C,b[1]),T=c.substring(b[4],E),$=h&&!!(k||T),A=k?$?k:k.toLowerCase():void 0,B=T?$?T:T.toLowerCase():void 0,P=!m&&i.optional?.find(M=>!M.parse&&M.caseSensitive===$&&M.prefix===A&&M.suffix===B);if(P)v=P;else{const M=o0(3,n.fullPath??n.from,$,A,B);v=M,M.parent=i,M.depth=s,i.optional??=[],i.optional.push(M)}break}case 2:{const k=c.substring(C,b[1]),T=c.substring(b[4],E),$=h&&!!(k||T),A=k?$?k:k.toLowerCase():void 0,B=T?$?T:T.toLowerCase():void 0,P=o0(2,n.fullPath??n.from,$,A,B);v=P,P.parent=i,P.depth=s,i.wildcard??=[],i.wildcard.push(P)}}i=v}if(m&&n.children&&!n.isRoot&&n.id&&n.id.charCodeAt(n.id.lastIndexOf("/")+1)===95){const b=Ro(n.fullPath??n.from);b.kind=cS,b.parent=i,s++,b.depth=s,i.pathless??=[],i.pathless.push(b),i=b}const g=(n.path||!n.children)&&!n.isRoot;if(g&&c.endsWith("/")){const b=Ro(n.fullPath??n.from);b.kind=Ds,b.parent=i,s++,b.depth=s,i.index=b,i=b}i.parse=m??null,i.priority=n.options?.params?.priority??0,g&&!i.route&&(i.route=n,i.fullPath=n.fullPath??n.from)}if(n.children)for(const c of n.children)Jp(t,e,c,u,i,s,a)}function s0(t,e){if(t.parse&&!e.parse)return-1;if(!t.parse&&e.parse)return 1;if(t.parse&&e.parse&&(t.priority||e.priority))return e.priority-t.priority;if(t.prefix&&e.prefix&&t.prefix!==e.prefix){if(t.prefix.startsWith(e.prefix))return-1;if(e.prefix.startsWith(t.prefix))return 1}if(t.suffix&&e.suffix&&t.suffix!==e.suffix){if(t.suffix.endsWith(e.suffix))return-1;if(e.suffix.endsWith(t.suffix))return 1}return t.prefix&&!e.prefix?-1:!t.prefix&&e.prefix?1:t.suffix&&!e.suffix?-1:!t.suffix&&e.suffix?1:t.caseSensitive&&!e.caseSensitive?-1:!t.caseSensitive&&e.caseSensitive?1:0}function bs(t){if(t.pathless)for(const e of t.pathless)bs(e);if(t.static)for(const e of t.static.values())bs(e);if(t.staticInsensitive)for(const e of t.staticInsensitive.values())bs(e);if(t.dynamic?.length){t.dynamic.sort(s0);for(const e of t.dynamic)bs(e)}if(t.optional?.length){t.optional.sort(s0);for(const e of t.optional)bs(e)}if(t.wildcard?.length){t.wildcard.sort(s0);for(const e of t.wildcard)bs(e)}}function Ro(t){return{kind:0,depth:0,pathless:null,index:null,static:null,staticInsensitive:null,dynamic:null,optional:null,wildcard:null,route:null,fullPath:t,parent:null,parse:null,priority:0}}function o0(t,e,n,r,i){return{kind:t,depth:0,pathless:null,index:null,static:null,staticInsensitive:null,dynamic:null,optional:null,wildcard:null,route:null,fullPath:e,parent:null,parse:null,priority:0,caseSensitive:n,prefix:r,suffix:i}}function gO(t,e){const n=Ro("/"),r=new Uint16Array(6);for(const i of t)Jp(!1,r,i,1,n,0);bs(n),e.masksTree=n,e.flatCache=$c(1e3)}function bO(t,e){t||="/";const n=e.flatCache.get(t);if(n)return n;const r=Qy(t,e.masksTree);return e.flatCache.set(t,r),r}function yO(t,e,n,r,i){t||="/",r||="/";const s=e?`case\0${t}`:t;let a=i.singleCache.get(s);return a||(a=Ro("/"),Jp(e,new Uint16Array(6),{from:t},1,a,0),i.singleCache.set(s,a)),Qy(r,a,n)}function vO(t,e,n=!1){const r=n?t:`nofuzz\0${t}`,i=e.matchCache.get(r);if(i!==void 0)return i;t||="/";let s;try{s=Qy(t,e.segmentTree,n)}catch(a){if(a instanceof URIError)s=null;else throw a}return s&&(s.branch=hS(s.route)),e.matchCache.set(r,s),s}function xO(t){return t==="/"?t:t.replace(/\/{1,}$/,"")}function CO(t,e=!1,n){const r=Ro(t.fullPath),i=new Uint16Array(6),s={},a={};let u=0;return Jp(e,i,t,1,r,0,c=>{if(n?.(c,u),c.id in s&&Ti(),s[c.id]=c,u!==0&&c.path){const f=xO(c.fullPath);(!a[f]||c.fullPath.endsWith("/"))&&(a[f]=c)}u++}),bs(r),{processedTree:{segmentTree:r,singleCache:$c(1e3),matchCache:$c(1e3),flatCache:null,masksTree:null},routesById:s,routesByPath:a}}function Qy(t,e,n=!1){const r=t.split("/"),i=kO(t,r,e,n);if(!i)return null;const[s]=fS(t,r,i);return{route:i.node.route,rawParams:s}}function fS(t,e,n){const r=EO(n.node);let i=null;const s=Object.create(null);let a=n.extract?.part??0,u=n.extract?.node??0,c=n.extract?.path??0,f=n.extract?.segment??0;for(;u<r.length;a++,u++,c++,f++){const h=r[u];if(h.kind===Ds)break;if(h.kind===cS){f--,a--,c--;continue}const m=e[a],g=c;if(m&&(c+=m.length),h.kind===1){i??=n.node.fullPath.split("/");const b=i[f],v=h.prefix?.length??0;if(b.charCodeAt(v)===123){const C=h.suffix?.length??0,E=b.substring(v+2,b.length-C-1),k=m.substring(v,m.length-C);s[E]=decodeURIComponent(k)}else{const C=b.substring(1);s[C]=decodeURIComponent(m)}}else if(h.kind===3){if(n.skipped&1<<u){a--,c=g-1;continue}i??=n.node.fullPath.split("/");const b=i[f],v=h.prefix?.length??0,C=h.suffix?.length??0,E=b.substring(v+3,b.length-C-1),k=h.suffix||h.prefix?m.substring(v,m.length-C):m;k&&(s[E]=decodeURIComponent(k))}else if(h.kind===2){const b=h,v=t.substring(g+(b.prefix?.length??0),t.length-(b.suffix?.length??0)),C=decodeURIComponent(v);s["*"]=C,s._splat=C;break}}return n.rawParams&&Object.assign(s,n.rawParams),[s,{part:a,node:u,path:c,segment:f}]}function hS(t){const e=[t];for(;t.parentRoute;)t=t.parentRoute,e.push(t);return e.reverse(),e}function EO(t){const e=Array(t.depth+1);do e[t.depth]=t,t=t.parent;while(t);return e}function kO(t,e,n,r){if(t==="/"&&n.index)return{node:n.index,skipped:0};const i=!Sc(e),s=i&&t!=="/",a=e.length-(i?1:0),u=[{node:n,index:1,skipped:0,depth:1,statics:0,dynamics:0,optionals:0}];let c=null,f=null;for(;u.length;){const h=u.pop(),{node:m,index:g,skipped:b,depth:v,statics:C,dynamics:E,optionals:k}=h;let{extract:T,rawParams:$}=h;if(m.kind===2&&m.route&&!If(f,h))continue;if(m.parse){if(!x2(t,e,h))continue;$=h.rawParams,T=h.extract}r&&m.route&&m.kind!==Ds&&If(c,h)&&(c=h);const A=g===a;if(A&&(m.route&&(!s||m.kind===Ds||m.kind===2)&&If(f,h)&&(f=h),!m.optional&&!m.wildcard&&!m.index&&!m.pathless))continue;const B=A?void 0:e[g];let P;if(A&&m.index){const M={node:m.index,index:g,skipped:b,depth:v+1,statics:C,dynamics:E,optionals:k,extract:T,rawParams:$};let N=!0;if(m.index.parse&&(x2(t,e,M)||(N=!1)),N){if(!E&&!k&&!b&&DO(C,a))return M;If(f,M)&&(f=M)}}if(m.wildcard)for(let M=m.wildcard.length-1;M>=0;M--){const N=m.wildcard[M],{prefix:I,suffix:F}=N;if(!(I&&(A||!(N.caseSensitive?B:P??=B.toLowerCase()).startsWith(I)))){if(F){if(A)continue;const J=e.slice(g).join("/").slice(-F.length);if((N.caseSensitive?J:J.toLowerCase())!==F)continue}u.push({node:N,index:a,skipped:b,depth:v+1,statics:C,dynamics:E,optionals:k,extract:T,rawParams:$})}}if(m.optional){const M=b|1<<v,N=v+1;for(let I=m.optional.length-1;I>=0;I--){const F=m.optional[I];u.push({node:F,index:g,skipped:M,depth:N,statics:C,dynamics:E,optionals:k,extract:T,rawParams:$})}if(!A)for(let I=m.optional.length-1;I>=0;I--){const F=m.optional[I],{prefix:J,suffix:q}=F;if(J||q){const ie=F.caseSensitive?B:P??=B.toLowerCase();if(J&&!ie.startsWith(J)||q&&!ie.endsWith(q))continue}u.push({node:F,index:g+1,skipped:b,depth:N,statics:C,dynamics:E,optionals:k+zf(a,g),extract:T,rawParams:$})}}if(!A&&m.dynamic&&B)for(let M=m.dynamic.length-1;M>=0;M--){const N=m.dynamic[M],{prefix:I,suffix:F}=N;if(I||F){const J=N.caseSensitive?B:P??=B.toLowerCase();if(I&&!J.startsWith(I)||F&&!J.endsWith(F))continue}u.push({node:N,index:g+1,skipped:b,depth:v+1,statics:C,dynamics:E+zf(a,g),optionals:k,extract:T,rawParams:$})}if(!A&&m.staticInsensitive){const M=m.staticInsensitive.get(P??=B.toLowerCase());M&&u.push({node:M,index:g+1,skipped:b,depth:v+1,statics:C+zf(a,g),dynamics:E,optionals:k,extract:T,rawParams:$})}if(!A&&m.static){const M=m.static.get(B);M&&u.push({node:M,index:g+1,skipped:b,depth:v+1,statics:C+zf(a,g),dynamics:E,optionals:k,extract:T,rawParams:$})}if(m.pathless){const M=v+1;for(let N=m.pathless.length-1;N>=0;N--){const I=m.pathless[N];u.push({node:I,index:g,skipped:b,depth:M,statics:C,dynamics:E,optionals:k,extract:T,rawParams:$})}}}if(f)return f;if(r&&c){let h=c.index;for(let g=0;g<c.index;g++)h+=e[g].length;const m=h===t.length?"/":t.slice(h);return c.rawParams??=Object.create(null),c.rawParams["**"]=decodeURIComponent(m),c}return null}function zf(t,e){return 2**(t-e-1)}function DO(t,e){return t===2**(e-1)-1}function x2(t,e,n){let r,i;try{[r,i]=fS(t,e,n)}catch{return null}if(n.rawParams=r,n.extract=i,!n.node.parse)return!0;try{if(n.node.parse(r)===!1)return null}catch{}return!0}function If(t,e){return t?e.statics>t.statics||e.statics===t.statics&&(e.dynamics>t.dynamics||e.dynamics===t.dynamics&&(e.optionals>t.optionals||e.optionals===t.optionals&&((e.node.kind===Ds)>(t.node.kind===Ds)||e.node.kind===Ds==(t.node.kind===Ds)&&e.depth>t.depth))):!0}function bh(t){return Yy(t.filter(e=>e!==void 0).join("/"))}function Yy(t){return t.replace(/\/{2,}/g,"/")}function pS(t){return t==="/"?t:t.replace(/^\/{1,}/,"")}function Si(t){const e=t.length;return e>1&&t[e-1]==="/"?t.replace(/\/{1,}$/,""):t}function mS(t){return Si(pS(t))}function Lh(t,e){return t?.endsWith("/")&&t!=="/"&&t!==`${e}/`?t.slice(0,-1):t}function SO(t,e,n){return Lh(t,n)===Lh(e,n)}function wO({base:t,to:e,trailingSlash:n="never",cache:r}){const i=e.startsWith("/"),s=!i&&e===".";let a;if(r){a=i?e:s?t:t+"\0"+e;const f=r.get(a);if(f)return f}let u;if(s)u=t.split("/");else if(i)u=e.split("/");else{for(u=t.split("/");u.length>1&&Sc(u)==="";)u.pop();const f=e.split("/");for(let h=0,m=f.length;h<m;h++){const g=f[h];g===""?h?h===m-1&&u.push(g):u=[g]:g===".."?u.pop():g==="."||u.push(g)}}u.length>1&&(Sc(u)===""?n==="never"&&u.pop():n==="always"&&u.push(""));const c=Yy(u.join("/"))||"/";return a&&r&&r.set(a,c),c}function $O(t){const e=new Map(t.map(i=>[encodeURIComponent(i),i])),n=Array.from(e.keys()).map(i=>i.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")).join("|"),r=new RegExp(n,"g");return i=>i.replace(r,s=>e.get(s)??s)}function a0(t,e,n){const r=e[t];return typeof r!="string"?r:t==="_splat"?/^[a-zA-Z0-9\-._~!/]*$/.test(r)?r:r.split("/").map(i=>E2(i,n)).join("/"):E2(r,n)}function C2({path:t,params:e,decoder:n,...r}){let i=!1;const s=Object.create(null);if(!t||t==="/")return{interpolatedPath:"/",usedParams:s,isMissingParams:i};if(!t.includes("$"))return{interpolatedPath:t,usedParams:s,isMissingParams:i};const a=t.length;let u=0,c,f="";for(;u<a;){const h=u;c=dS(t,h,c);const m=c[5];if(u=m+1,h===m)continue;const g=c[0];if(g===0){f+="/"+t.substring(h,m);continue}if(g===2){const b=e._splat;s._splat=b,s["*"]=b;const v=t.substring(h,c[1]),C=t.substring(c[4],m);if(!b){i=!0,(v||C)&&(f+="/"+v+C);continue}const E=a0("_splat",e,n);f+="/"+v+E+C;continue}if(g===1){const b=t.substring(c[2],c[3]);!i&&!(b in e)&&(i=!0),s[b]=e[b];const v=t.substring(h,c[1]),C=t.substring(c[4],m),E=a0(b,e,n)??"undefined";f+="/"+v+E+C;continue}if(g===3){const b=t.substring(c[2],c[3]),v=e[b];if(v==null)continue;s[b]=v;const C=t.substring(h,c[1]),E=t.substring(c[4],m),k=a0(b,e,n)??"";f+="/"+C+k+E;continue}}return t.endsWith("/")&&(f+="/"),{usedParams:s,interpolatedPath:f||"/",isMissingParams:i}}function E2(t,e){const n=encodeURIComponent(t);return e?.(n)??n}function gS(t={}){if(t.isNotFound=!0,t.throw)throw t;return t}function cn(t){return t?.isNotFound===!0}function TO(){try{return sessionStorage}catch{return}}const AO="tsr-scroll-restoration-v1_3",bS=TO();function BO(){try{return JSON.parse(bS?.getItem("tsr-scroll-restoration-v1_3")||"{}")}catch{return{}}}function MO(){try{bS?.setItem(AO,JSON.stringify(ll))}catch{}}const ll=BO(),k2="data-scroll-restoration-id",RO=t=>t.state.__TSR_key||t.href;function NO(t){const e=t.getAttribute(k2);if(e)return`[${k2}="${e}"]`;let n="",r=t,i;for(;i=r.parentNode;){let s=1,a=r;for(;a=a.previousElementSibling;)s++;const u=`${r.localName}:nth-child(${s})`;n=n?`${u} > ${n}`:u,r=i}return n}let Ff=!1;const yh="window";function k4(t){try{return typeof t=="function"?t():document.querySelector(t)}catch{}}function D2(t){const e=new Set;for(const n of t){if(n===yh)continue;const r=k4(n);r&&e.add(r)}return e}function PO(t,e){const n=t.options.scrollRestoration,r=t._scroll;n&&(r.restoring=!0);const i=t.options.getScrollRestorationKey||RO,s=new Set,a=u=>{const c=ll[u]||={};for(const f of s)f===document?c[yh]={scrollX,scrollY}:f.isConnected&&(c[NO(f)]={scrollX:f.scrollLeft,scrollY:f.scrollTop})};n&&!r.restoration&&(r.restoration=!0,Ff=!1,history.scrollRestoration="manual",document.addEventListener("scroll",u=>{Ff||s.add(u.target)},!0),t.subscribe("onBeforeLoad",u=>{u.fromLocation&&a(i(u.fromLocation)),s.clear()}),addEventListener("pagehide",()=>{a(i(t.stores.resolvedLocation.get()??t.stores.location.get())),MO()})),!r.reset&&(r.reset=!0,t.subscribe("onRendered",u=>{const c=t.options.scrollRestorationBehavior,f=t.options.scrollToTopSelectors,h=r.next,m=r.hash;let g;if(s.clear(),r.next=!0,r.hash=!1,typeof t.options.scrollRestoration=="function"&&!t.options.scrollRestoration({location:t.latestLocation}))return;const b=i(u.toLocation),v=u.fromLocation&&i(u.fromLocation);if(r.restoring&&v&&v!==b){const C=ll[v];if(C){let E=ll[b];for(const k in C){if(k===yh){if(h)continue}else{const T=k4(k);if(!T||h&&f&&(g??=D2(f),g.has(T)))continue}E||(E=ll[b]={}),E[k]??=C[k]}}}Ff=!0;try{const C=u.toLocation.hash,E=u.toLocation.state.__hashScrollIntoViewOptions??!0;let k=!1;if(h){!C&&f&&(g??=D2(f));const T=C&&E&&m,$=r.restoring?ll[b]:void 0;if($)for(const A in $){const{scrollX:B,scrollY:P}=$[A];if(A===yh){if(T)continue;scrollTo({top:P,left:B,behavior:c}),k=!0}else{const M=k4(A);M&&(M.scrollLeft=B,M.scrollTop=P,g?.delete(M))}}if(!C){const A={top:0,left:0,behavior:c};if(k||scrollTo(A),g)for(const B of g)B.scrollTo(A)}}!k&&C&&E&&document.getElementById(C)?.scrollIntoView(E)}finally{Ff=!1}}))}function OO(t,e=String){const n=new URLSearchParams;for(const r in t){const i=t[r];i!==void 0&&n.set(r,e(i))}return n.toString()}function l0(t){return t?t==="false"?!1:t==="true"?!0:+t*0===0&&+t+""===t?+t:t:""}function LO(t){const e=new URLSearchParams(t),n=Object.create(null);for(const[r,i]of e.entries()){const s=n[r];s==null?n[r]=l0(i):Array.isArray(s)?s.push(l0(i)):n[r]=[s,l0(i)]}return n}const zO=FO(JSON.parse),IO=KO(JSON.stringify,JSON.parse);function FO(t){return e=>{e[0]==="?"&&(e=e.substring(1));const n=LO(e);for(const r in n){const i=n[r];if(typeof i=="string")try{n[r]=t(i)}catch{}}return n}}function KO(t,e){const n=typeof e=="function";function r(i){if(typeof i=="object"&&i!==null)try{return t(i)}catch{}else if(n&&typeof i=="string")try{return e(i),t(i)}catch{}return i}return i=>{const s=OO(i,r);return s?`?${s}`:""}}const Ho="__root__";function yS(t){if(t.statusCode=t.statusCode||t.code||307,!t._builtLocation&&!t.reloadDocument&&typeof t.href=="string")try{new URL(t.href),t.reloadDocument=!0}catch{}const e=new Headers(t.headers);t.href&&e.get("Location")===null&&e.set("Location",t.href);const n=new Response(null,{status:t.statusCode,headers:e});if(n.options=t,t.throw)throw n;return n}function Ln(t){return t instanceof Response&&!!t.options}function jO(t){return{input:({url:e})=>{for(const n of t)e=D4(n,e);return e},output:({url:e})=>{for(let n=t.length-1;n>=0;n--)e=vS(t[n],e);return e}}}function _O(t){const e=mS(t.basepath),n=`/${e}`,r=t.caseSensitive?n:n.toLowerCase(),i=`${r}/`;return{input:({url:s})=>{const a=t.caseSensitive?s.pathname:s.pathname.toLowerCase();return a===r?s.pathname="/":a.startsWith(i)&&(s.pathname=s.pathname.slice(n.length)),s},output:({url:s})=>(s.pathname=bh(["/",e,s.pathname]),s)}}function D4(t,e){const n=t?.input?.({url:e});if(n){if(typeof n=="string")return new URL(n);if(n instanceof URL)return n}return e}function vS(t,e){const n=t?.output?.({url:e});if(n){if(typeof n=="string")return new URL(n);if(n instanceof URL)return n}return e}function HO(t,e){const{createMutableStore:n,createReadonlyStore:r,batch:i,init:s}=e,a=new Map,u=new Map,c=new Map,f=n(t.status),h=n(t.loadedAt),m=n(t.isLoading),g=n(t.isTransitioning),b=n(t.location),v=n(t.resolvedLocation),C=n(t.statusCode),E=n(t.redirect),k=n([]),T=n([]),$=n([]),A=r(()=>u0(a,k.get())),B=r(()=>u0(u,T.get())),P=r(()=>u0(c,$.get())),M=r(()=>k.get()[0]),N=r(()=>k.get().some(j=>a.get(j)?.get().status==="pending")),I=r(()=>({locationHref:b.get().href,resolvedLocationHref:v.get()?.href,status:f.get()})),F=r(()=>({status:f.get(),loadedAt:h.get(),isLoading:m.get(),isTransitioning:g.get(),matches:A.get(),location:b.get(),resolvedLocation:v.get(),statusCode:C.get(),redirect:E.get()})),J=$c(64);function q(j){let Y=J.get(j);return Y||(Y=r(()=>{const Z=k.get();for(const H of Z){const L=a.get(H);if(L&&L.routeId===j)return L.get()}}),J.set(j,Y)),Y}const ie={status:f,loadedAt:h,isLoading:m,isTransitioning:g,location:b,resolvedLocation:v,statusCode:C,redirect:E,matchesId:k,pendingIds:T,cachedIds:$,matches:A,pendingMatches:B,cachedMatches:P,firstId:M,hasPending:N,matchRouteDeps:I,matchStores:a,pendingMatchStores:u,cachedMatchStores:c,__store:F,getRouteMatchStore:q,setMatches:K,setPending:te,setCached:O};K(t.matches),s?.(ie);function K(j){c0(j,a,k,n,i)}function te(j){c0(j,u,T,n,i)}function O(j){c0(j,c,$,n,i)}return ie}function u0(t,e){const n=[];for(const r of e){const i=t.get(r);i&&n.push(i.get())}return n}function c0(t,e,n,r,i){const s=t.map(u=>u.id),a=new Set(s);i(()=>{for(const u of e.keys())a.has(u)||e.delete(u);for(const u of t){const c=e.get(u.id);if(!c){const f=r(u);f.routeId=u.routeId,e.set(u.id,f);continue}c.routeId=u.routeId,c.get()!==u&&c.set(u)}pO(n.get(),s)||n.set(s)})}const S4=t=>{if(!t.rendered)return t.rendered=!0,t.onReady?.()},VO=t=>t.stores.matchesId.get().some(e=>t.stores.matchStores.get(e)?.get()._forcePending),Zp=(t,e)=>!!(t.preload&&!t.router.stores.matchStores.has(e)),Vo=(t,e,n=!0)=>{const r={...t.router.options.context??{}},i=n?e:e-1;for(let s=0;s<=i;s++){const a=t.matches[s];if(!a)continue;const u=t.router.getMatch(a.id);u&&Object.assign(r,u.__routeContext,u.__beforeLoadContext)}return r},S2=(t,e)=>{if(!t.matches.length)return;const n=e.routeId,r=t.matches.findIndex(a=>a.routeId===t.router.routeTree.id),i=r>=0?r:0;let s=n?t.matches.findIndex(a=>a.routeId===n):t.firstBadMatchIndex??t.matches.length-1;s<0&&(s=i);for(let a=s;a>=0;a--){const u=t.matches[a];if(t.router.looseRoutesById[u.routeId].options.notFoundComponent)return a}return n?s:i},Ss=(t,e,n)=>{if(!(!Ln(n)&&!cn(n)))throw Ln(n)&&n.redirectHandled&&!n.options.reloadDocument||(e&&(e._nonReactive.beforeLoadPromise?.resolve(),e._nonReactive.loaderPromise?.resolve(),e._nonReactive.beforeLoadPromise=void 0,e._nonReactive.loaderPromise=void 0,e._nonReactive.error=n,t.updateMatch(e.id,r=>({...r,status:Ln(n)?"redirected":cn(n)?"notFound":r.status==="pending"?"success":r.status,context:Vo(t,e.index),isFetching:!1,error:n})),cn(n)&&!n.routeId&&(n.routeId=e.routeId),e._nonReactive.loadPromise?.resolve()),Ln(n)&&(t.rendered=!0,n.options._fromLocation=t.location,n.redirectHandled=!0,n=t.router.resolveRedirect(n))),n},xS=(t,e)=>{const n=t.router.getMatch(e);return!!(!n||n._nonReactive.dehydrated)},w2=(t,e,n)=>{const r=Vo(t,n);t.updateMatch(e,i=>({...i,context:r}))},Lu=(t,e,n)=>{const{id:r,routeId:i}=t.matches[e],s=t.router.looseRoutesById[i];if(n instanceof Promise)throw n;t.firstBadMatchIndex??=e,Ss(t,t.router.getMatch(r),n);try{s.options.onError?.(n)}catch(a){n=a,Ss(t,t.router.getMatch(r),n)}t.updateMatch(r,a=>(a._nonReactive.beforeLoadPromise?.resolve(),a._nonReactive.beforeLoadPromise=void 0,a._nonReactive.loadPromise?.resolve(),{...a,error:n,status:"error",isFetching:!1,updatedAt:Date.now(),abortController:new AbortController})),!t.preload&&!Ln(n)&&!cn(n)&&(t.serialError??=n)},CS=(t,e,n,r)=>{if(r._nonReactive.pendingTimeout!==void 0)return;const i=n.options.pendingMs??t.router.options.defaultPendingMs;if(t.onReady&&!Zp(t,e)&&(n.options.loader||n.options.beforeLoad||kS(n))&&typeof i=="number"&&i!==1/0&&(n.options.pendingComponent??t.router.options?.defaultPendingComponent)){const s=setTimeout(()=>{S4(t)},i);r._nonReactive.pendingTimeout=s}},UO=(t,e,n)=>{const r=t.router.getMatch(e);if(!r._nonReactive.beforeLoadPromise&&!r._nonReactive.loaderPromise)return;CS(t,e,n,r);const i=()=>{const s=t.router.getMatch(e);s.preload&&(s.status==="redirected"||s.status==="notFound")&&Ss(t,s,s.error)};return r._nonReactive.beforeLoadPromise?r._nonReactive.beforeLoadPromise.then(i):i()},qO=(t,e,n,r)=>{const i=t.router.getMatch(e);let s=i._nonReactive.loadPromise;i._nonReactive.loadPromise=El(()=>{s?.resolve(),s=void 0});const{paramsError:a,searchError:u}=i;a&&Lu(t,n,a),u&&Lu(t,n,u),CS(t,e,r,i);const c=new AbortController;let f=!1;const h=()=>{f||(f=!0,t.updateMatch(e,A=>({...A,isFetching:"beforeLoad",fetchCount:A.fetchCount+1,abortController:c})))},m=()=>{i._nonReactive.beforeLoadPromise?.resolve(),i._nonReactive.beforeLoadPromise=void 0,t.updateMatch(e,A=>({...A,isFetching:!1}))};if(!r.options.beforeLoad){t.router.batch(()=>{h(),m()});return}i._nonReactive.beforeLoadPromise=El();const g={...Vo(t,n,!1),...i.__routeContext},{search:b,params:v,cause:C}=i,E=Zp(t,e),k={search:b,abortController:c,params:v,preload:E,context:g,location:t.location,navigate:A=>t.router.navigate({...A,_fromLocation:t.location}),buildLocation:t.router.buildLocation,cause:E?"preload":C,matches:t.matches,routeId:r.id,...t.router.options.additionalContext},T=A=>{if(A===void 0){t.router.batch(()=>{h(),m()});return}(Ln(A)||cn(A))&&(h(),Lu(t,n,A)),t.router.batch(()=>{h(),t.updateMatch(e,B=>({...B,__beforeLoadContext:A})),m()})};let $;try{if($=r.options.beforeLoad(k),wc($))return h(),$.catch(A=>{Lu(t,n,A)}).then(T)}catch(A){h(),Lu(t,n,A)}T($)},GO=(t,e)=>{const{id:n,routeId:r}=t.matches[e],i=t.router.looseRoutesById[r],s=()=>u(),a=()=>qO(t,n,e,i),u=()=>{if(xS(t,n))return;const c=UO(t,n,i);return wc(c)?c.then(a):a()};return s()},WO=(t,e,n)=>{const r=t.router.getMatch(e);if(!r||!n.options.head&&!n.options.scripts&&!n.options.headers)return;const i={ssr:t.router.options.ssr,matches:t.matches,match:r,params:r.params,loaderData:r.loaderData};return Promise.all([n.options.head?.(i),n.options.scripts?.(i),n.options.headers?.(i)]).then(([s,a,u])=>({meta:s?.meta,links:s?.links,headScripts:s?.scripts,headers:u,scripts:a,styles:s?.styles}))},ES=(t,e,n,r,i)=>{const s=e[r-1],{params:a,loaderDeps:u,abortController:c,cause:f}=t.router.getMatch(n),h=Vo(t,r),m=Zp(t,n);return{params:a,deps:u,preload:!!m,parentMatchPromise:s,abortController:c,context:h,location:t.location,navigate:g=>t.router.navigate({...g,_fromLocation:t.location}),cause:m?"preload":f,route:i,...t.router.options.additionalContext}},$2=async(t,e,n,r,i)=>{try{const s=t.router.getMatch(n);try{(!(aS??t.router.isServer)||s.ssr===!0)&&Tc(i);const a=i.options.loader,u=typeof a=="function"?a:a?.handler,c=u?.(ES(t,e,n,r,i)),f=!!u&&wc(c);if((f||i._lazyPromise||i._componentsPromise||i.options.head||i.options.scripts||i.options.headers||s._nonReactive.minPendingPromise)&&t.updateMatch(n,m=>({...m,isFetching:"loader"})),u){const m=f?await c:c;Ss(t,t.router.getMatch(n),m),m!==void 0&&t.updateMatch(n,g=>({...g,loaderData:m}))}i._lazyPromise&&await i._lazyPromise;const h=s._nonReactive.minPendingPromise;h&&await h,i._componentsPromise&&await i._componentsPromise,t.updateMatch(n,m=>({...m,error:void 0,context:Vo(t,r),status:"success",isFetching:!1,updatedAt:Date.now()}))}catch(a){let u=a;if(u?.name==="AbortError"){if(s.abortController.signal.aborted){s._nonReactive.loaderPromise?.resolve(),s._nonReactive.loaderPromise=void 0;return}t.updateMatch(n,f=>({...f,status:f.status==="pending"?"success":f.status,isFetching:!1,context:Vo(t,r)}));return}const c=s._nonReactive.minPendingPromise;c&&await c,cn(a)&&await i.options.notFoundComponent?.preload?.(),Ss(t,t.router.getMatch(n),a);try{i.options.onError?.(a)}catch(f){u=f,Ss(t,t.router.getMatch(n),f)}!Ln(u)&&!cn(u)&&await Tc(i,["errorComponent"]),t.updateMatch(n,f=>({...f,error:u,context:Vo(t,r),status:"error",isFetching:!1}))}}catch(s){const a=t.router.getMatch(n);a&&(a._nonReactive.loaderPromise=void 0),Ss(t,a,s)}},QO=async(t,e,n)=>{async function r(b,v,C,E,k){const T=Date.now()-v.updatedAt,$=b?k.options.preloadStaleTime??t.router.options.defaultPreloadStaleTime??3e4:k.options.staleTime??t.router.options.defaultStaleTime??0,A=k.options.shouldReload,B=typeof A=="function"?A(ES(t,e,i,n,k)):A,{status:P,invalid:M}=E,N=T>=$&&(!!t.forceStaleReload||E.cause==="enter"||C!==void 0&&C!==E.id);a=P==="success"&&(M||(B??N)),b&&k.options.preload===!1||(a&&!t.sync&&h?(u=!0,(async()=>{try{await $2(t,e,i,n,k);const I=t.router.getMatch(i);I._nonReactive.loaderPromise?.resolve(),I._nonReactive.loadPromise?.resolve(),I._nonReactive.loaderPromise=void 0,I._nonReactive.loadPromise=void 0}catch(I){Ln(I)&&await t.router.navigate(I.options)}})()):P!=="success"||a?await $2(t,e,i,n,k):w2(t,i,n))}const{id:i,routeId:s}=t.matches[n];let a=!1,u=!1;const c=t.router.looseRoutesById[s],f=c.options.loader,h=((typeof f=="function"?void 0:f?.staleReloadMode)??t.router.options.defaultStaleReloadMode)!=="blocking";if(xS(t,i)){if(!t.router.getMatch(i))return t.matches[n];w2(t,i,n)}else{const b=t.router.getMatch(i),v=t.router.stores.matchesId.get()[n],C=(v&&t.router.stores.matchStores.get(v)||null)?.routeId===s?v:t.router.stores.matches.get().find(k=>k.routeId===s)?.id,E=Zp(t,i);if(b._nonReactive.loaderPromise){if(b.status==="success"&&!t.sync&&!b.preload&&h)return b;await b._nonReactive.loaderPromise;const k=t.router.getMatch(i),T=k._nonReactive.error||k.error;T&&Ss(t,k,T),k.status==="pending"&&await r(E,b,C,k,c)}else{const k=E&&!t.router.stores.matchStores.has(i),T=t.router.getMatch(i);T._nonReactive.loaderPromise=El(),k!==T.preload&&t.updateMatch(i,$=>({...$,preload:k})),await r(E,b,C,T,c)}}const m=t.router.getMatch(i);u||(m._nonReactive.loaderPromise?.resolve(),m._nonReactive.loadPromise?.resolve(),m._nonReactive.loadPromise=void 0),clearTimeout(m._nonReactive.pendingTimeout),m._nonReactive.pendingTimeout=void 0,u||(m._nonReactive.loaderPromise=void 0),m._nonReactive.dehydrated=void 0;const g=u?m.isFetching:!1;return g!==m.isFetching||m.invalid!==!1?(t.updateMatch(i,b=>({...b,isFetching:g,invalid:!1})),t.router.getMatch(i)):m};async function T2(t){const e=t,n=[];VO(e.router)&&S4(e);let r;for(let g=0;g<e.matches.length;g++){try{const b=GO(e,g);wc(b)&&await b}catch(b){if(Ln(b))throw b;if(cn(b))r=b;else if(!e.preload)throw b;break}if(e.serialError||e.firstBadMatchIndex!=null)break}const i=e.firstBadMatchIndex??e.matches.length,s=r&&!e.preload?S2(e,r):void 0,a=r&&e.preload?0:s!==void 0?Math.min(s+1,i):i;let u,c;for(let g=0;g<a;g++)n.push(QO(e,n,g));try{await Promise.all(n)}catch{const g=await Promise.allSettled(n);for(const b of g){if(b.status!=="rejected")continue;const v=b.reason;if(Ln(v))throw v;cn(v)?u??=v:c??=v}if(c!==void 0)throw c}const f=u??(r&&!e.preload?r:void 0);let h=e.firstBadMatchIndex!==void 0?e.firstBadMatchIndex:e.matches.length-1;if(!f&&r&&e.preload)return e.matches;if(f){const g=S2(e,f);g===void 0&&Ti();const b=e.matches[g],v=e.router.looseRoutesById[b.routeId],C=e.router.options?.defaultNotFoundComponent;!v.options.notFoundComponent&&C&&(v.options.notFoundComponent=C),f.routeId=b.routeId;const E=b.routeId===e.router.routeTree.id;e.updateMatch(b.id,k=>({...k,...E?{status:"success",globalNotFound:!0,error:void 0}:{status:"notFound",error:f},isFetching:!1})),h=g,await Tc(v,["notFoundComponent"])}else if(!e.preload){const g=e.matches[0];g.globalNotFound||e.router.getMatch(g.id)?.globalNotFound&&e.updateMatch(g.id,b=>({...b,globalNotFound:!1,error:void 0}))}if(e.serialError&&e.firstBadMatchIndex!==void 0){const g=e.router.looseRoutesById[e.matches[e.firstBadMatchIndex].routeId];await Tc(g,["errorComponent"])}for(let g=0;g<=h;g++){const{id:b,routeId:v}=e.matches[g],C=e.router.looseRoutesById[v];try{const E=WO(e,b,C);if(E){const k=await E;e.updateMatch(b,T=>({...T,...k}))}}catch(E){console.error(`Error executing head for route ${v}:`,E)}}const m=S4(e);if(wc(m)&&await m,f)throw f;if(e.serialError&&!e.preload&&!e.onReady)throw e.serialError;return e.matches}function A2(t,e){const n=e.map(r=>t.options[r]?.preload?.()).filter(Boolean);if(n.length!==0)return Promise.all(n)}function Tc(t,e=vh){!t._lazyLoaded&&t._lazyPromise===void 0&&(t.lazyFn?t._lazyPromise=t.lazyFn().then(r=>{const{id:i,...s}=r.options;Object.assign(t.options,s),t._lazyLoaded=!0,t._lazyPromise=void 0}):t._lazyLoaded=!0);const n=()=>t._componentsLoaded?void 0:e===vh?(()=>{if(t._componentsPromise===void 0){const r=A2(t,vh);r?t._componentsPromise=r.then(()=>{t._componentsLoaded=!0,t._componentsPromise=void 0}):t._componentsLoaded=!0}return t._componentsPromise})():A2(t,e);return t._lazyPromise?t._lazyPromise.then(n):n()}function kS(t){for(const e of vh)if(t.options[e]?.preload)return!0;return!1}const vh=["component","errorComponent","pendingComponent","notFoundComponent"];var Ms="__TSR_index",B2="popstate",M2="beforeunload";function YO(t){let e=t.getLocation();const n=new Set,r=a=>{e=t.getLocation(),n.forEach(u=>u({location:e,action:a}))},i=a=>{t.notifyOnIndexChange??!0?r(a):e=t.getLocation()},s=async({task:a,navigateOpts:u,...c})=>{if(u?.ignoreBlocker??!1){a();return}const f=t.getBlockers?.()??[],h=c.type==="PUSH"||c.type==="REPLACE";if(typeof document<"u"&&f.length&&h)for(const m of f){const g=zh(c.path,c.state);if(await m.blockerFn({currentLocation:e,nextLocation:g,action:c.type})){t.onBlocked?.();return}}a()};return{get location(){return e},get length(){return t.getLength()},subscribers:n,subscribe:a=>(n.add(a),()=>{n.delete(a)}),push:(a,u,c)=>{const f=e.state[Ms];u=R2(f+1,u),s({task:()=>{t.pushState(a,u),r({type:"PUSH"})},navigateOpts:c,type:"PUSH",path:a,state:u})},replace:(a,u,c)=>{const f=e.state[Ms];u=R2(f,u),s({task:()=>{t.replaceState(a,u),r({type:"REPLACE"})},navigateOpts:c,type:"REPLACE",path:a,state:u})},go:(a,u)=>{s({task:()=>{t.go(a),i({type:"GO",index:a})},navigateOpts:u,type:"GO"})},back:a=>{s({task:()=>{t.back(a?.ignoreBlocker??!1),i({type:"BACK"})},navigateOpts:a,type:"BACK"})},forward:a=>{s({task:()=>{t.forward(a?.ignoreBlocker??!1),i({type:"FORWARD"})},navigateOpts:a,type:"FORWARD"})},canGoBack:()=>e.state[Ms]!==0,createHref:a=>t.createHref(a),block:a=>{if(!t.setBlockers)return()=>{};const u=t.getBlockers?.()??[];return t.setBlockers([...u,a]),()=>{const c=t.getBlockers?.()??[];t.setBlockers?.(c.filter(f=>f!==a))}},flush:()=>t.flush?.(),destroy:()=>t.destroy?.(),notify:r}}function R2(t,e){e||(e={});const n=Xy();return{...e,key:n,__TSR_key:n,[Ms]:t}}function XO(t){const e=typeof document<"u"?window:void 0,n=e.history.pushState,r=e.history.replaceState;let i=[];const s=()=>i,a=N=>i=N,u=(N=>N),c=(()=>zh(`${e.location.pathname}${e.location.search}${e.location.hash}`,e.history.state));if(!e.history.state?.__TSR_key&&!e.history.state?.key){const N=Xy();e.history.replaceState({[Ms]:0,key:N,__TSR_key:N},"")}let f=c(),h,m=!1,g=!1,b=!1,v=!1;const C=()=>f;let E,k;const T=()=>{E&&(M._ignoreSubscribers=!0,(E.isPush?e.history.pushState:e.history.replaceState)(E.state,"",E.href),M._ignoreSubscribers=!1,E=void 0,k=void 0,h=void 0)},$=(N,I,F)=>{const J=u(I);k||(h=f),f=zh(I,F),E={href:J,state:F,isPush:E?.isPush||N==="push"},k||(k=Promise.resolve().then(()=>T()))},A=N=>{f=c(),M.notify({type:N})},B=async()=>{if(g){g=!1;return}const N=c(),I=N.state[Ms]-f.state[Ms],F=I===1,J=I===-1,q=!F&&!J||m;m=!1;const ie=q?"GO":J?"BACK":"FORWARD",K=q?{type:"GO",index:I}:{type:J?"BACK":"FORWARD"};if(b)b=!1;else{const te=s();if(typeof document<"u"&&te.length){for(const O of te)if(await O.blockerFn({currentLocation:f,nextLocation:N,action:ie})){g=!0,e.history.go(1),M.notify(K);return}}}f=c(),M.notify(K)},P=N=>{if(v){v=!1;return}let I=!1;const F=s();if(typeof document<"u"&&F.length)for(const J of F){const q=J.enableBeforeUnload??!0;if(q===!0){I=!0;break}if(typeof q=="function"&&q()===!0){I=!0;break}}if(I)return N.preventDefault(),N.returnValue=""},M=YO({getLocation:C,getLength:()=>e.history.length,pushState:(N,I)=>$("push",N,I),replaceState:(N,I)=>$("replace",N,I),back:N=>(N&&(b=!0),v=!0,e.history.back()),forward:N=>{N&&(b=!0),v=!0,e.history.forward()},go:N=>{m=!0,e.history.go(N)},createHref:N=>u(N),flush:T,destroy:()=>{e.history.pushState=n,e.history.replaceState=r,e.removeEventListener(M2,P,{capture:!0}),e.removeEventListener(B2,B)},onBlocked:()=>{h&&f!==h&&(f=h)},getBlockers:s,setBlockers:a,notifyOnIndexChange:!1});return e.addEventListener(M2,P,{capture:!0}),e.addEventListener(B2,B),e.history.pushState=function(...N){const I=n.apply(e.history,N);return M._ignoreSubscribers||A("PUSH"),I},e.history.replaceState=function(...N){const I=r.apply(e.history,N);return M._ignoreSubscribers||A("REPLACE"),I},M}function JO(t){let e=t.replace(/[\x00-\x1f\x7f]/g,"");return e.startsWith("//")&&(e="/"+e.replace(/^\/+/,"")),e}function zh(t,e){const n=JO(t),r=n.indexOf("#"),i=n.indexOf("?"),s=Xy();return{href:n,pathname:n.substring(0,r>0?i>0?Math.min(r,i):r:i>0?i:n.length),hash:r>-1?n.substring(r):"",search:i>-1?n.slice(i,r===-1?void 0:r):"",state:e||{[Ms]:0,key:s,__TSR_key:s}}}function Xy(){return(Math.random()+1).toString(36).substring(7)}function pl(t,e){const n=e,r=t;return{fromLocation:n,toLocation:r,pathChanged:n?.pathname!==r.pathname,hrefChanged:n?.href!==r.href,hashChanged:n?.hash!==r.hash}}var ZO=class{constructor(t,e){this.tempLocationKey=`${Math.round(Math.random()*1e7)}`,this._scroll={next:!0},this.shouldViewTransition=void 0,this.isViewTransitionTypesSupported=void 0,this.subscribers=new Set,this.routeBranchCache=new WeakMap,this.lightweightCache=new WeakMap,this.startTransition=n=>n(),this.update=n=>{const r=this.options,i=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=$O(this.options.pathParamsAllowedCharacters)),(!this.history||this.options.history&&this.options.history!==this.history)&&(this.options.history?this.history=this.options.history:this.history=XO()),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 h;this.resolvePathCache=$c(1e3),h=this.buildRouteTree(),this.setRoutes(h)}if(!this.stores&&this.latestLocation){const h=this.getStoreConfig(this);this.batch=h.batch,this.stores=HO(tL(this.latestLocation),h),PO(this)}let u=!1;const c=this.options.basepath??"/",f=this.options.rewrite;if(s||i!==c||a!==f){this.basepath=c;const h=[],m=mS(c);m&&m!=="/"&&h.push(_O({basepath:c})),f&&h.push(f),this.rewrite=h.length===0?void 0:h.length===1?h[0]:jO(h),this.history&&this.updateLatestLocation(),u=!0}u&&this.stores&&this.stores.location.set(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=CO(this.routeTree,this.options.caseSensitive,(r,i)=>{r.init({originalIndex:i})});return this.options.routeMasks&&gO(this.options.routeMasks,n.processedTree),n},this.subscribe=(n,r)=>{const i={eventType:n,fn:r};return this.subscribers.add(i),()=>{this.subscribers.delete(i)}},this.emit=n=>{this.subscribers.forEach(r=>{r.eventType===n.type&&r.fn(n)})},this.parseLocation=(n,r)=>{const i=({pathname:c,search:f,hash:h,href:m,state:g})=>{if(!this.rewrite&&!/[ \x00-\x1f\x7f\u0080-\uffff]/.test(c)){const k=this.options.parseSearch(f),T=this.options.stringifySearch(k);return{href:c+T+h,publicHref:c+T+h,pathname:Ou(c).path,external:!1,searchStr:T,search:Eo(r?.search,k),hash:Ou(h.slice(1)).path,state:Mo(r?.state,g)}}const b=new URL(m,this.origin),v=D4(this.rewrite,b),C=this.options.parseSearch(v.search),E=this.options.stringifySearch(C);return v.search=E,{href:v.href.replace(v.origin,""),publicHref:m,pathname:Ou(v.pathname).path,external:!!this.rewrite&&v.origin!==this.origin,searchStr:E,search:Eo(r?.search,C),hash:Ou(v.hash.slice(1)).path,state:Mo(r?.state,g)}},s=i(n),{__tempLocation:a,__tempKey:u}=s.state;if(a&&(!u||u===this.tempLocationKey)){const c=i(a);return c.state.key=s.state.key,c.state.__TSR_key=s.state.__TSR_key,delete c.state.__tempLocation,{...c,maskedLocation:s}}return s},this.resolvePathWithBase=(n,r)=>wO({base:n,to:r.includes("//")?Yy(r):r,trailingSlash:this.options.trailingSlash,cache:this.resolvePathCache}),this.matchRoutes=(n,r,i)=>typeof n=="string"?this.matchRoutesInternal({pathname:n,search:r},i):this.matchRoutesInternal(n,r),this.getMatchedRoutes=n=>nL({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=()=>{this.stores.pendingIds.get().forEach(n=>{this.cancelMatch(n)}),this.stores.matchesId.get().forEach(n=>{if(this.stores.pendingMatchStores.has(n))return;const r=this.stores.matchStores.get(n)?.get();r&&(r.status==="pending"||r.isFetching==="loader")&&this.cancelMatch(n)})},this.buildLocation=n=>{const r=(s={})=>{const a=s._fromLocation||this.pendingBuiltLocation||this.latestLocation,u=this.matchRoutesLightweight(a);s.from;const c=s.unsafeRelative==="path"?a.pathname:s.from??u.fullPath,f=s.to?`${s.to}`:void 0,h=u.search,m=Object.assign(Object.create(null),u.params),g=f?.charCodeAt(0)===47?"/":this.resolvePathWithBase(c,"."),b=f?this.resolvePathWithBase(g,f):g,v=s.params===!1||s.params===null?Object.create(null):(s.params??!0)===!0?m:Object.assign(m,Bo(s.params,m)),C=this.routesByPath[Si(b)];let E;if(C)E=this.getRouteBranch(C);else if(b.includes("$"))E=[];else{const J=this.getMatchedRoutes(b);E=J.matchedRoutes,this.options.notFoundRoute&&(!J.foundRoute||J.foundRoute.path!=="/"&&J.routeParams["**"])&&(E=[...E,this.options.notFoundRoute])}if(E.length&&uS(v))for(const J of E){const q=J.options.params?.stringify??J.options.stringifyParams;if(q)try{Object.assign(v,q(v))}catch{}}const k=n.leaveParams?b:Ou(C2({path:b,params:v,decoder:this.pathParamsDecoder,server:this.isServer}).interpolatedPath).path;let T=h;if(n._includeValidateSearch&&this.options.search?.strict){const J={};E.forEach(q=>{if(q.options.validateSearch)try{Object.assign(J,xh(q.options.validateSearch,{...J,...T}))}catch{}}),T=J}T=rL({search:T,dest:s,destRoutes:E,_includeValidateSearch:n._includeValidateSearch}),T=Eo(h,T);const $=this.options.stringifySearch(T),A=s.hash===!0?a.hash:s.hash?Bo(s.hash,a.hash):void 0,B=A?`#${A}`:"";let P=s.state===!0?a.state:s.state?Bo(s.state,a.state):{};P=Mo(a.state,P);const M=`${k}${$}${B}`;let N,I,F=!1;if(this.rewrite){const J=new URL(M,this.origin),q=vS(this.rewrite,J);N=J.href.replace(J.origin,""),q.origin!==this.origin?(I=q.href,F=!0):I=q.pathname+q.search+q.hash}else N=hO(M),I=N;return{publicHref:I,href:N,pathname:k,search:T,searchStr:$,state:P,hash:A??"",external:F,unmaskOnReload:s.unmaskOnReload}},i=(s={},a)=>{const u=r(s);let c=a?r(a):void 0;if(!c){const f=Object.create(null);if(this.options.routeMasks){const h=bO(u.pathname,this.processedTree);if(h){Object.assign(f,h.rawParams);const{from:m,params:g,...b}=h.route,v=g===!1||g===null?Object.create(null):(g??!0)===!0?f:Object.assign(f,Bo(g,f));a={from:n.from,...b,params:v},c=r(a)}}}return c&&(u.maskedLocation=c),u};return n.mask?i(n,{from:n.from,...n.mask}):i(n)},this.commitLocation=async({viewTransition:n,ignoreBlocker:r,...i})=>{let s;const a=()=>{const f=["key","__TSR_key","__TSR_index","__hashScrollIntoViewOptions"];f.forEach(m=>{i.state[m]=this.latestLocation.state[m]});const h=_o(i.state,this.latestLocation.state);return f.forEach(m=>{delete i.state[m]}),h},u=Si(this.latestLocation.href)===Si(i.href);let c=this.commitLocationPromise;if(this.commitLocationPromise=El(()=>{c?.resolve(),c=void 0}),u&&a())this.load();else{let{maskedLocation:f,hashScrollIntoView:h,...m}=i;f&&(m={...f,state:{...f.state,__tempKey:void 0,__tempLocation:{...m,search:m.searchStr,state:{...m.state,__tempKey:void 0,__tempLocation:void 0,__TSR_key:void 0,key:void 0}}}},(m.unmaskOnReload??this.options.unmaskOnReload??!1)&&(m.state.__tempKey=this.tempLocationKey)),m.state.__hashScrollIntoViewOptions=h??this.options.defaultHashScrollIntoView??!0,this.shouldViewTransition=n,s=i.replace?"REPLACE":"PUSH",this.history[s==="REPLACE"?"replace":"push"](m.publicHref,m.state,{ignoreBlocker:r})}return this._scroll.next=i.resetScroll??!0,this.history.subscribers.size||this.load(s?{action:{type:s}}:void 0),this.commitLocationPromise},this.buildAndCommitLocation=({replace:n,resetScroll:r,hashScrollIntoView:i,viewTransition:s,ignoreBlocker:a,href:u,...c}={})=>{if(u){const m=this.history.location.state.__TSR_index,g=zh(u,{__TSR_index:n?m:m+1}),b=new URL(g.pathname,this.origin);c.to=D4(this.rewrite,b).pathname,c.search=this.options.parseSearch(g.search),c.hash=g.hash.slice(1)}const f=this.buildLocation({...c,_includeValidateSearch:!0});this.pendingBuiltLocation=f;const h=this.commitLocation({...f,viewTransition:s,replace:n,resetScroll:r,hashScrollIntoView:i,ignoreBlocker:a});return queueMicrotask(()=>{this.pendingBuiltLocation===f&&(this.pendingBuiltLocation=void 0)}),h},this.navigate=async({to:n,reloadDocument:r,href:i,publicHref:s,...a})=>{let u=!1;if(i)try{new URL(`${i}`),u=!0}catch{}if(u&&!r&&(r=!0),r){if(n!==void 0||!i){const f=this.buildLocation({to:n,...a});i=i??f.publicHref,s=s??f.publicHref}const c=!u&&s?s:i;if(Oh(c,this.protocolAllowlist))return;if(!a.ignoreBlocker){const f=this.history.getBlockers?.()??[];for(const h of f)if(h?.blockerFn&&await h.blockerFn({currentLocation:this.latestLocation,nextLocation:this.latestLocation,action:"PUSH"}))return}a.replace?window.location.replace(c):window.location.href=c;return}return this.buildAndCommitLocation({...a,href:i,to:n,_isNavigate:!0})},this.beforeLoad=()=>{this.cancelMatches(),this.updateLatestLocation();const n=this.matchRoutes(this.latestLocation),r=this.stores.cachedMatches.get().filter(i=>!n.some(s=>s.id===i.id));this.batch(()=>{this.stores.status.set("pending"),this.stores.statusCode.set(200),this.stores.isLoading.set(!0),this.stores.location.set(this.latestLocation),this.stores.setPending(n),this.stores.setCached(r)})},this.load=async n=>{const r=n?.action?.type;let i,s,a;const u=this.stores.resolvedLocation.get()??this.stores.location.get();for(a=new Promise(f=>{this.startTransition(async()=>{try{this.beforeLoad(),r&&(this._scroll.hash=r==="PUSH"||r==="REPLACE");const h=this.latestLocation,m=pl(h,this.stores.resolvedLocation.get());this.stores.redirect.get()||this.emit({type:"onBeforeNavigate",...m}),this.emit({type:"onBeforeLoad",...m}),await T2({router:this,sync:n?.sync,forceStaleReload:u.href===h.href,matches:this.stores.pendingMatches.get(),location:h,updateMatch:this.updateMatch,onReady:async()=>{this.startTransition(()=>{this.startViewTransition(async()=>{let g=null,b=null,v=null,C=null;this.batch(()=>{const E=this.stores.pendingMatches.get(),k=E.length,T=this.stores.matches.get();g=k?T.filter(B=>!this.stores.pendingMatchStores.has(B.id)):null;const $=new Set;for(const B of this.stores.pendingMatchStores.values())B.routeId&&$.add(B.routeId);const A=new Set;for(const B of this.stores.matchStores.values())B.routeId&&A.add(B.routeId);b=k?T.filter(B=>!$.has(B.routeId)):null,v=k?E.filter(B=>!A.has(B.routeId)):null,C=k?E.filter(B=>A.has(B.routeId)):T,this.stores.isLoading.set(!1),this.stores.loadedAt.set(Date.now()),k&&(this.stores.setMatches(E),this.stores.setPending([]),this.stores.setCached([...this.stores.cachedMatches.get(),...g.filter(B=>B.status!=="error"&&B.status!=="notFound"&&B.status!=="redirected")]),this.clearExpiredCache())});for(const[E,k]of[[b,"onLeave"],[v,"onEnter"],[C,"onStay"]])if(E)for(const T of E)this.looseRoutesById[T.routeId].options[k]?.(T)})})}})}catch(h){Ln(h)?(i=h,this.navigate({...i.options,replace:!0,ignoreBlocker:!0})):cn(h)&&(s=h);const m=i?i.status:s?404:this.stores.matches.get().some(g=>g.status==="error")?500:200;this.batch(()=>{this.stores.statusCode.set(m),this.stores.redirect.set(i)})}this.latestLoadPromise===a&&(this.commitLocationPromise?.resolve(),this.latestLoadPromise=void 0,this.commitLocationPromise=void 0),f()})}),this.latestLoadPromise=a,await a;this.latestLoadPromise&&a!==this.latestLoadPromise;)await this.latestLoadPromise;let c;this.hasNotFoundMatch()?c=404:this.stores.matches.get().some(f=>f.status==="error")&&(c=500),c!==void 0&&this.stores.statusCode.set(c)},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 i;if(typeof r=="object"&&this.isViewTransitionTypesSupported){const s=this.latestLocation,a=this.stores.resolvedLocation.get(),u=typeof r.types=="function"?r.types(pl(s,a)):r.types;if(u===!1){n();return}i={update:n,types:u}}else i=n;document.startViewTransition(i)}else n()},this.updateMatch=(n,r)=>{this.startTransition(()=>{const i=this.stores.pendingMatchStores.get(n);if(i){i.set(r);return}const s=this.stores.matchStores.get(n);if(s){s.set(r);return}const a=this.stores.cachedMatchStores.get(n);if(a){const u=r(a.get());u.status==="redirected"?this.stores.cachedMatchStores.delete(n)&&this.stores.cachedIds.set(c=>c.filter(f=>f!==n)):a.set(u)}})},this.getMatch=n=>this.stores.cachedMatchStores.get(n)?.get()??this.stores.pendingMatchStores.get(n)?.get()??this.stores.matchStores.get(n)?.get(),this.invalidate=n=>{const r=i=>n?.filter?.(i)??!0?{...i,invalid:!0,...n?.forcePending||i.status==="error"||i.status==="notFound"?{status:"pending",error:void 0}:void 0}:i;return this.batch(()=>{this.stores.setMatches(this.stores.matches.get().map(r)),this.stores.setCached(this.stores.cachedMatches.get().map(r)),this.stores.setPending(this.stores.pendingMatches.get().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 i=n.options._builtLocation??this.buildLocation(n.options),s=this.getParsedLocationHref(i);n.options.href=s,n.headers.set("Location",s)}else if(r)try{const i=new URL(r);if(this.origin&&i.origin===this.origin){const s=i.pathname+i.search+i.hash;n.options.href=s,n.headers.set("Location",s)}}catch{}if(n.options.href&&!n.options._builtLocation&&Oh(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.stores.setCached(this.stores.cachedMatches.get().filter(i=>!r(i))):this.stores.setCached([])},this.clearExpiredCache=()=>{const n=Date.now(),r=i=>{const s=this.looseRoutesById[i.routeId];if(!s.options.loader)return!0;const a=(i.preload?s.options.preloadGcTime??this.options.defaultPreloadGcTime:s.options.gcTime??this.options.defaultGcTime)??300*1e3;return i.status==="error"?!0:n-i.updatedAt>=a};this.clearCache({filter:r})},this.loadRouteChunk=Tc,this.preloadRoute=async n=>{const r=n._builtLocation??this.buildLocation(n);let i=this.matchRoutes(r,{throwOnError:!0,preload:!0,dest:n});const s=new Set([...this.stores.matchesId.get(),...this.stores.pendingIds.get()]),a=new Set([...s,...this.stores.cachedIds.get()]),u=i.filter(c=>!a.has(c.id));if(u.length){const c=this.stores.cachedMatches.get();this.stores.setCached([...c,...u])}try{return i=await T2({router:this,matches:i,location:r,preload:!0,updateMatch:(c,f)=>{s.has(c)?i=i.map(h=>h.id===c?f(h):h):this.updateMatch(c,f)}}),i}catch(c){if(Ln(c))return c.options.reloadDocument?void 0:await this.preloadRoute({...c.options,_fromLocation:r});cn(c)||console.error(c);return}},this.matchRoute=(n,r)=>{const i={...n,to:n.to?this.resolvePathWithBase(n.from||"",n.to):void 0,params:n.params||{},leaveParams:!0},s=this.buildLocation(i);if(r?.pending&&this.stores.status.get()!=="pending")return!1;const a=(r?.pending===void 0?!this.stores.isLoading.get():r.pending)?this.latestLocation:this.stores.resolvedLocation.get()||this.stores.location.get(),u=yO(s.pathname,r?.caseSensitive??!1,r?.fuzzy??!1,a.pathname,this.processedTree);return!u||n.params&&!_o(u.rawParams,n.params,{partial:!0})?!1:r?.includeSearch??!0?_o(a.search,s.search,{partial:!0})?u.rawParams:!1:u.rawParams},this.hasNotFoundMatch=()=>this.stores.matches.get().some(n=>n.status==="notFound"||n.globalNotFound),this.getStoreConfig=e,this.update({defaultPreloadDelay:50,defaultPendingMs:1e3,defaultPendingMinMs:500,context:void 0,...t,caseSensitive:t.caseSensitive??!1,notFoundMode:t.notFoundMode??"fuzzy",stringifySearch:t.stringifySearch??IO,parseSearch:t.parseSearch??zO,protocolAllowlist:t.protocolAllowlist??fO}),typeof document<"u"&&(self.__TSR_ROUTER__=this)}isShell(){return!!this.options.isShell}isPrerendering(){return!!this.options.isPrerendering}get state(){return this.stores.__store.get()}setRoutes({routesById:t,routesByPath:e,processedTree:n}){this.routesById=t,this.routesByPath=e,this.processedTree=n;const r=this.options.notFoundRoute;r&&(r.init({originalIndex:99999999999}),this.routesById[r.id]=r)}getRouteBranch(t){let e=this.routeBranchCache.get(t);return e||(e=hS(t),this.routeBranchCache.set(t,e)),e}get looseRoutesById(){return this.routesById}getParentContext(t){return t?.id?t.context??this.options.context??void 0:this.options.context??void 0}matchRoutesInternal(t,e){const n=this.getMatchedRoutes(t.pathname),{foundRoute:r,routeParams:i}=n;let{matchedRoutes:s}=n,a=!1;(r?r.path!=="/"&&i["**"]:Si(t.pathname))&&(this.options.notFoundRoute?s=[...s,this.options.notFoundRoute]:a=!0);const u=a?sL(this.options.notFoundMode,s):void 0,c=new Array(s.length),f=new Map;for(const h of this.stores.matchStores.values())h.routeId&&f.set(h.routeId,h.get());for(let h=0;h<s.length;h++){const m=s[h],g=c[h-1];let b,v,C;{const q=g?.search??t.search,ie=g?._strictSearch??void 0;try{const K=xh(m.options.validateSearch,{...q})??void 0;b={...q,...K},v={...ie,...K},C=void 0}catch(K){let te=K;if(K instanceof Ih||(te=new Ih(K.message,{cause:K})),e?.throwOnError)throw te;b=q,v={},C=te}}const E=m.options.loaderDeps?.({search:b})??"",k=E?JSON.stringify(E):"",{interpolatedPath:T,usedParams:$}=C2({path:m.fullPath,params:i,decoder:this.pathParamsDecoder,server:this.isServer}),A=m.id+T+k,B=this.getMatch(A),P=f.get(m.id),M=B?._strictParams??$;let N;if(!B)try{N2(m,M)}catch(q){if(cn(q)||Ln(q)?N=q:N=new eL(q.message,{cause:q}),e?.throwOnError)throw N}Object.assign(i,M);const I=P?"stay":"enter";let F;if(B)F={...B,cause:I,params:P?.params??i,_strictParams:M,search:Eo(P?P.search:B.search,b),_strictSearch:v};else{const q=m.options.loader||m.options.beforeLoad||m.lazyFn||kS(m)?"pending":"success";F={id:A,ssr:m.options.ssr,index:h,routeId:m.id,params:P?.params??i,_strictParams:M,pathname:T,updatedAt:Date.now(),search:P?Eo(P.search,b):b,_strictSearch:v,searchError:void 0,status:q,isFetching:!1,error:void 0,paramsError:N,__routeContext:void 0,_nonReactive:{loadPromise:El()},__beforeLoadContext:void 0,context:{},abortController:new AbortController,fetchCount:0,cause:I,loaderDeps:P?Mo(P.loaderDeps,E):E,invalid:!1,preload:!1,links:void 0,scripts:void 0,headScripts:void 0,meta:void 0,staticData:m.options.staticData||{},fullPath:m.fullPath}}e?.preload||(F.globalNotFound=u===m.id),F.searchError=C;const J=this.getParentContext(g);F.context={...J,...F.__routeContext,...F.__beforeLoadContext},c[h]=F}for(let h=0;h<c.length;h++){const m=c[h],g=this.looseRoutesById[m.routeId],b=this.getMatch(m.id),v=f.get(m.routeId);if(m.params=v?Eo(v.params,i):i,!b){const C=c[h-1],E=this.getParentContext(C);if(g.options.context){const k={deps:m.loaderDeps,params:m.params,context:E??{},location:t,navigate:T=>this.navigate({...T,_fromLocation:t}),buildLocation:this.buildLocation,cause:m.cause,abortController:m.abortController,preload:!!m.preload,matches:c,routeId:g.id};m.__routeContext=g.options.context(k)??void 0}m.context={...E,...m.__routeContext,...m.__beforeLoadContext}}}return c}matchRoutesLightweight(t){const e=Sc(this.stores.matchesId.get()),n=this.lightweightCache.get(t);if(n&&n[0]===e)return n[1];const{matchedRoutes:r,routeParams:i}=this.getMatchedRoutes(t.pathname),s=Sc(r),a={...t.search};for(const m of r)try{Object.assign(a,xh(m.options.validateSearch,a))}catch{}const u=e&&this.stores.matchStores.get(e)?.get(),c=u&&u.routeId===s.id&&u.pathname===t.pathname;let f;if(c)f=u.params;else{const m=Object.assign(Object.create(null),i);for(const g of r)try{N2(g,m)}catch{}f=m}const h={matchedRoutes:r,fullPath:s.fullPath,search:a,params:f};return this.lightweightCache.set(t,[e,h]),h}},Ih=class extends Error{},eL=class extends Error{};function tL(t){return{loadedAt:0,isLoading:!1,isTransitioning:!1,status:"idle",resolvedLocation:void 0,location:t,matches:[],statusCode:200}}function xh(t,e){if(t==null)return{};if("~standard"in t){const n=t["~standard"].validate(e);if(n instanceof Promise)throw new Ih("Async validation not supported");if(n.issues)throw new Ih(JSON.stringify(n.issues,void 0,2),{cause:n});return n.value}return"parse"in t?t.parse(e):typeof t=="function"?t(e):{}}function nL({pathname:t,routesById:e,processedTree:n}){const r=Object.create(null),i=Si(t);let s;const a=vO(i,n,!0);return a&&(s=a.route,Object.assign(r,a.rawParams)),{matchedRoutes:a?.branch||[e.__root__],routeParams:r,foundRoute:s}}function rL({search:t,dest:e,destRoutes:n,_includeValidateSearch:r}){return iL(n)(t,e,r??!1)}function iL(t){let e,n;const r=[];for(const s of t){const a=s.options;if("search"in a)a.search?.middlewares&&r.push(...a.search.middlewares);else if(a.preSearchFilters||a.postSearchFilters){const c=({search:f,next:h})=>{const m=h(a.preSearchFilters?a.preSearchFilters.reduce((g,b)=>b(g),f):f);return a.postSearchFilters?a.postSearchFilters.reduce((g,b)=>b(g),m):m};r.push(c)}const u=a.validateSearch;if(u){const c=({search:f,next:h,meta:m})=>{const g=h(f);if(n)try{const b=xh(u,g);if(m&&b)for(const v in b)v in g||(m.defaulted||=new Map).set(v,b[v]);return{...g,...b}}catch{}return g};r.push(c)}}const i=(s,a,u)=>{if(s>=r.length){if(!e.search)return{};if(e.search===!0)return a;const f=Bo(e.search,a);return u&&(u.explicit=f),f}const c=(f,h)=>{if(h){const m=u||{};return{search:i(s+1,f,m),meta:m}}return i(s+1,f,u)};return r[s]({search:a,next:c,meta:u})};return function(a,u,c){return e=u,n=c,i(0,a)}}function sL(t,e){if(t!=="root")for(let n=e.length-1;n>=0;n--){const r=e[n];if(r.children)return r.id}return Ho}function N2(t,e){const n=t.options.params?.parse??t.options.parseParams;if(n){const r=n(e);if(r===!1)throw new Error("Route params.parse returned false for a matched route");Object.assign(e,r)}}const oL="Error preloading route! ☝️";var DS=class{get to(){return this._to}get id(){return this._id}get path(){return this._path}get fullPath(){return this._fullPath}constructor(t){if(this.init=e=>{this.originalIndex=e.originalIndex;const n=this.options,r=!n?.path&&!n?.id;this.parentRoute=this.options.getParentRoute?.(),r?this._path=Ho:this.parentRoute||Ti();let i=r?Ho:n?.path;i&&i!=="/"&&(i=pS(i));const s=n?.id||i;let a=r?Ho:bh([this.parentRoute.id==="__root__"?"":this.parentRoute.id,s]);i==="__root__"&&(i="/"),a!=="__root__"&&(a=bh(["/",a]));const u=a==="__root__"?"/":bh([this.parentRoute.fullPath,i]);this._path=i,this._id=a,this._fullPath=u,this._to=Si(u)},this.addChildren=e=>this._addFileChildren(e),this._addFileChildren=e=>(Array.isArray(e)&&(this.children=e),typeof e=="object"&&e!==null&&(this.children=Object.values(e)),this),this._addFileTypes=()=>this,this.updateLoader=e=>(Object.assign(this.options,e),this),this.update=e=>(Object.assign(this.options,e),this),this.lazy=e=>(this.lazyFn=e,this),this.redirect=e=>yS({from:this.fullPath,...e}),this.options=t||{},this.isRoot=!t?.getParentRoute,t?.id&&t?.path)throw new Error("Route cannot have both an 'id' and a 'path' option.")}},aL=class{constructor({id:t}){this.notFound=e=>gS({routeId:this.id,...e}),this.redirect=e=>yS({from:this.id,...e}),this.id=t}},lL=class extends DS{constructor(t){super(t)}};function Jy(t){const e=t.errorComponent??Zy;return S.jsx(uL,{getResetKey:t.getResetKey,onCatch:t.onCatch,children:({error:n,reset:r})=>n?D.createElement(e,{error:n,reset:r}):t.children})}var uL=class extends D.Component{constructor(...t){super(...t),this.state={error:null}}static getDerivedStateFromProps(t,e){const n=t.getResetKey();return e.error&&e.resetKey!==n?{resetKey:n,error:null}:{resetKey:n}}static getDerivedStateFromError(t){return{error:t}}reset(){this.setState({error:null})}componentDidCatch(t,e){this.props.onCatch&&this.props.onCatch(t,e)}render(){return this.props.children({error:this.state.error,reset:()=>{this.reset()}})}};function Zy({error:t}){const[e,n]=D.useState(!1);return S.jsxs("div",{style:{padding:".5rem",maxWidth:"100%"},children:[S.jsxs("div",{style:{display:"flex",alignItems:"center",gap:".5rem"},children:[S.jsx("strong",{style:{fontSize:"1rem"},children:"Something went wrong!"}),S.jsx("button",{style:{appearance:"none",fontSize:".6em",border:"1px solid currentColor",padding:".1rem .2rem",fontWeight:"bold",borderRadius:".25rem"},onClick:()=>n(r=>!r),children:e?"Hide Error":"Show Error"})]}),S.jsx("div",{style:{height:".25rem"}}),e?S.jsx("div",{children:S.jsx("pre",{style:{fontSize:".7em",border:"1px solid red",borderRadius:".25rem",padding:".3rem",color:"red",overflow:"auto"},children:t.message?S.jsx("code",{children:t.message}):null})}):null]})}function cL({children:t,fallback:e=null}){return SS()?S.jsx(V.Fragment,{children:t}):S.jsx(V.Fragment,{children:e})}function SS(){return V.useSyncExternalStore(dL,()=>!0,()=>!1)}function dL(){return()=>{}}var wS=D.createContext(null);function dn(t){return D.useContext(wS)}var em=D.createContext(void 0),fL=D.createContext(void 0),ht=(t=>(t[t.None=0]="None",t[t.Mutable=1]="Mutable",t[t.Watching=2]="Watching",t[t.RecursedCheck=4]="RecursedCheck",t[t.Recursed=8]="Recursed",t[t.Dirty=16]="Dirty",t[t.Pending=32]="Pending",t))(ht||{});function hL({update:t,notify:e,unwatched:n}){return{link:r,unlink:i,propagate:s,checkDirty:a,shallowPropagate:u};function r(f,h,m){const g=h.depsTail;if(g!==void 0&&g.dep===f)return;const b=g!==void 0?g.nextDep:h.deps;if(b!==void 0&&b.dep===f){b.version=m,h.depsTail=b;return}const v=f.subsTail;if(v!==void 0&&v.version===m&&v.sub===h)return;const C=h.depsTail=f.subsTail={version:m,dep:f,sub:h,prevDep:g,nextDep:b,prevSub:v,nextSub:void 0};b!==void 0&&(b.prevDep=C),g!==void 0?g.nextDep=C:h.deps=C,v!==void 0?v.nextSub=C:f.subs=C}function i(f,h=f.sub){const m=f.dep,g=f.prevDep,b=f.nextDep,v=f.nextSub,C=f.prevSub;return b!==void 0?b.prevDep=g:h.depsTail=g,g!==void 0?g.nextDep=b:h.deps=b,v!==void 0?v.prevSub=C:m.subsTail=C,C!==void 0?C.nextSub=v:(m.subs=v)===void 0&&n(m),b}function s(f){let h=f.nextSub,m;e:do{const g=f.sub;let b=g.flags;if(b&60?b&12?b&4?!(b&48)&&c(f,g)?(g.flags=b|40,b&=1):b=0:g.flags=b&-9|32:b=0:g.flags=b|32,b&2&&e(g),b&1){const v=g.subs;if(v!==void 0){const C=(f=v).nextSub;C!==void 0&&(m={value:h,prev:m},h=C);continue}}if((f=h)!==void 0){h=f.nextSub;continue}for(;m!==void 0;)if(f=m.value,m=m.prev,f!==void 0){h=f.nextSub;continue e}break}while(!0)}function a(f,h){let m,g=0,b=!1;e:do{const v=f.dep,C=v.flags;if(h.flags&16)b=!0;else if((C&17)===17){if(t(v)){const E=v.subs;E.nextSub!==void 0&&u(E),b=!0}}else if((C&33)===33){(f.nextSub!==void 0||f.prevSub!==void 0)&&(m={value:f,prev:m}),f=v.deps,h=v,++g;continue}if(!b){const E=f.nextDep;if(E!==void 0){f=E;continue}}for(;g--;){const E=h.subs,k=E.nextSub!==void 0;if(k?(f=m.value,m=m.prev):f=E,b){if(t(h)){k&&u(E),h=f.sub;continue}b=!1}else h.flags&=-33;h=f.sub;const T=f.nextDep;if(T!==void 0){f=T;continue e}}return b}while(!0)}function u(f){do{const h=f.sub,m=h.flags;(m&48)===32&&(h.flags=m|16,(m&6)===2&&e(h))}while((f=f.nextSub)!==void 0)}function c(f,h){let m=h.depsTail;for(;m!==void 0;){if(m===f)return!0;m=m.prevDep}return!1}}function pL(t,e,n){const r=typeof t=="object",i=r?t:void 0;return{next:(r?t.next:t)?.bind(i),error:(r?t.error:e)?.bind(i),complete:(r?t.complete:n)?.bind(i)}}const w4=[];let Ch=0;const{link:P2,unlink:mL,propagate:gL,checkDirty:$S,shallowPropagate:O2}=hL({update(t){return t._update()},notify(t){w4[$4++]=t,t.flags&=~ht.Watching},unwatched(t){t.depsTail!==void 0&&(t.depsTail=void 0,t.flags=ht.Mutable|ht.Dirty,Fh(t))}});let Kf=0,$4=0,Hr,T4=0;function TS(t){try{++T4,t()}finally{--T4||AS()}}function Fh(t){const e=t.depsTail;let n=e!==void 0?e.nextDep:t.deps;for(;n!==void 0;)n=mL(n,t)}function AS(){if(!(T4>0)){for(;Kf<$4;){const t=w4[Kf];w4[Kf++]=void 0,t.notify()}Kf=0,$4=0}}function L2(t,e){const n=typeof t=="function",r=t,i={_snapshot:n?void 0:t,subs:void 0,subsTail:void 0,deps:void 0,depsTail:void 0,flags:n?ht.None:ht.Mutable,get(){return Hr!==void 0&&P2(i,Hr,Ch),i._snapshot},subscribe(s){const a=pL(s),u={current:!1},c=bL(()=>{i.get(),u.current?a.next?.(i._snapshot):u.current=!0});return{unsubscribe:()=>{c.stop()}}},_update(s){const a=Hr,u=e?.compare??Object.is;if(n)Hr=i,++Ch,i.depsTail=void 0;else if(s===void 0)return!1;n&&(i.flags=ht.Mutable|ht.RecursedCheck);try{const c=i._snapshot,f=typeof s=="function"?s(c):s===void 0&&n?r(c):s;return c===void 0||!u(c,f)?(i._snapshot=f,!0):!1}finally{Hr=a,n&&(i.flags&=~ht.RecursedCheck),Fh(i)}}};return n?(i.flags=ht.Mutable|ht.Dirty,i.get=function(){const s=i.flags;if(s&ht.Dirty||s&ht.Pending&&$S(i.deps,i)){if(i._update()){const a=i.subs;a!==void 0&&O2(a)}}else s&ht.Pending&&(i.flags=s&~ht.Pending);return Hr!==void 0&&P2(i,Hr,Ch),i._snapshot}):i.set=function(s){if(i._update(s)){const a=i.subs;a!==void 0&&(gL(a),O2(a),AS())}},i}function bL(t){const e=()=>{const r=Hr;Hr=n,++Ch,n.depsTail=void 0,n.flags=ht.Watching|ht.RecursedCheck;try{return t()}finally{Hr=r,n.flags&=~ht.RecursedCheck,Fh(n)}},n={deps:void 0,depsTail:void 0,subs:void 0,subsTail:void 0,flags:ht.Watching|ht.RecursedCheck,notify(){const r=this.flags;r&ht.Dirty||r&ht.Pending&&$S(this.deps,this)?e():this.flags=ht.Watching},stop(){this.flags=ht.None,this.depsTail=void 0,Fh(this)}};return e(),n}var d0={exports:{}},f0={},h0={exports:{}},p0={};var z2;function yL(){if(z2)return p0;z2=1;var t=Wc();function e(m,g){return m===g&&(m!==0||1/m===1/g)||m!==m&&g!==g}var n=typeof Object.is=="function"?Object.is:e,r=t.useState,i=t.useEffect,s=t.useLayoutEffect,a=t.useDebugValue;function u(m,g){var b=g(),v=r({inst:{value:b,getSnapshot:g}}),C=v[0].inst,E=v[1];return s(function(){C.value=b,C.getSnapshot=g,c(C)&&E({inst:C})},[m,b,g]),i(function(){return c(C)&&E({inst:C}),m(function(){c(C)&&E({inst:C})})},[m]),a(b),b}function c(m){var g=m.getSnapshot;m=m.value;try{var b=g();return!n(m,b)}catch{return!0}}function f(m,g){return g()}var h=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?f:u;return p0.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:h,p0}var I2;function BS(){return I2||(I2=1,h0.exports=yL()),h0.exports}var F2;function vL(){if(F2)return f0;F2=1;var t=Wc(),e=BS();function n(f,h){return f===h&&(f!==0||1/f===1/h)||f!==f&&h!==h}var r=typeof Object.is=="function"?Object.is:n,i=e.useSyncExternalStore,s=t.useRef,a=t.useEffect,u=t.useMemo,c=t.useDebugValue;return f0.useSyncExternalStoreWithSelector=function(f,h,m,g,b){var v=s(null);if(v.current===null){var C={hasValue:!1,value:null};v.current=C}else C=v.current;v=u(function(){function k(P){if(!T){if(T=!0,$=P,P=g(P),b!==void 0&&C.hasValue){var M=C.value;if(b(M,P))return A=M}return A=P}if(M=A,r($,P))return M;var N=g(P);return b!==void 0&&b(M,N)?($=P,M):($=P,A=N)}var T=!1,$,A,B=m===void 0?null:m;return[function(){return k(h())},B===null?void 0:function(){return k(B())}]},[h,m,g,b]);var E=i(f,v[0],v[1]);return a(function(){C.hasValue=!0,C.value=E},[E]),c(E),E},f0}var K2;function xL(){return K2||(K2=1,d0.exports=vL()),d0.exports}var MS=xL();function CL(t,e){return t===e}function xn(t,e,n=CL){const r=D.useCallback(a=>{if(!t)return()=>{};const{unsubscribe:u}=t.subscribe(a);return u},[t]),i=D.useCallback(()=>t?.get(),[t]);return MS.useSyncExternalStoreWithSelector(r,i,i,e,n)}var m0={get(){},subscribe(){return{unsubscribe(){}}}};function EL(t,e){const n=D.useRef();return r=>{const i=t?.select?t.select(r):r;return t?.structuralSharing??e.options.defaultStructuralSharing?n.current=Mo(n.current,i):i}}function Us(t){const e=dn(),n=D.useContext(t.from?fL:em),r=t.from?e.stores.getRouteMatchStore(t.from):e.stores.matchStores.get(n),i=EL(t,e),s=xn(r??m0,a=>a?i(a):m0);if(s!==m0)return s;(t.shouldThrow??!0)&&Ti()}function e3(t){return Us({from:t.from,strict:t.strict,structuralSharing:t.structuralSharing,select:e=>t.select?t.select(e.loaderData):e.loaderData})}function t3(t){const{select:e,...n}=t;return Us({...n,select:r=>e?e(r.loaderDeps):r.loaderDeps})}function n3(t){return Us({from:t.from,shouldThrow:t.shouldThrow,structuralSharing:t.structuralSharing,strict:t.strict,select:e=>{const n=t.strict===!1?e.params:e._strictParams;return t.select?t.select(n):n}})}function qs(t){return Us({from:t.from,strict:t.strict,shouldThrow:t.shouldThrow,structuralSharing:t.structuralSharing,select:e=>t.select?t.select(e.search):e.search})}function Li(t){const e=dn();return D.useCallback(n=>e.navigate({...n,from:n.from??t?.from}),[t?.from,e])}function r3(t){return Us({...t,select:e=>t.select?t.select(e.context):e.context})}var aa=YD();const RS=QD(aa);function kL(t,e){const n=dn(),r=aO(e),{activeProps:i,inactiveProps:s,activeOptions:a,to:u,preload:c,preloadDelay:f,preloadIntentProximity:h,hashScrollIntoView:m,replace:g,startTransition:b,resetScroll:v,viewTransition:C,children:E,target:k,disabled:T,style:$,className:A,onClick:B,onBlur:P,onFocus:M,onMouseEnter:N,onMouseLeave:I,onTouchStart:F,ignoreBlocker:J,params:q,search:ie,hash:K,state:te,mask:O,reloadDocument:j,unsafeRelative:Y,from:Z,_fromLocation:H,...L}=t,U=SS(),ne=D.useMemo(()=>t,[n,t.from,t._fromLocation,t.hash,t.to,t.search,t.params,t.state,t.mask,t.unsafeRelative]),le=xn(n.stores.location,ot=>ot,(ot,qt)=>ot.href===qt.href),ue=D.useMemo(()=>{const ot={_fromLocation:le,...ne};return n.buildLocation(ot)},[n,le,ne]),fe=ue.maskedLocation?ue.maskedLocation.publicHref:ue.publicHref,Ee=ue.maskedLocation?ue.maskedLocation.external:ue.external,Ve=D.useMemo(()=>AL(fe,Ee,n.history,T),[T,Ee,fe,n.history]),Se=D.useMemo(()=>{if(Ve?.external)return Oh(Ve.href,n.protocolAllowlist)?void 0:Ve.href;if(!BL(u)&&!(typeof u!="string"||u.indexOf(":")===-1))try{return new URL(u),Oh(u,n.protocolAllowlist)?void 0:u}catch{}},[u,Ve,n.protocolAllowlist]),kn=D.useMemo(()=>{if(Se)return!1;if(a?.exact){if(!SO(le.pathname,ue.pathname,n.basepath))return!1}else{const ot=Lh(le.pathname,n.basepath),qt=Lh(ue.pathname,n.basepath);if(!(ot.startsWith(qt)&&(ot.length===qt.length||ot[qt.length]==="/")))return!1}return(a?.includeSearch??!0)&&!_o(le.search,ue.search,{partial:!a?.exact,ignoreUndefined:!a?.explicitUndefined})?!1:a?.includeHash?U&&le.hash===ue.hash:!0},[a?.exact,a?.explicitUndefined,a?.includeHash,a?.includeSearch,le,Se,U,ue.hash,ue.pathname,ue.search,n.basepath]),sn=kn?Bo(i,{})??DL:g0,mn=kn?g0:Bo(s,{})??g0,gr=[A,sn.className,mn.className].filter(Boolean).join(" "),jt=($||sn.style||mn.style)&&{...$,...sn.style,...mn.style},[to,Ie]=D.useState(!1),ji=D.useRef(!1),Jr=t.reloadDocument||Se?!1:c??n.options.defaultPreload,no=f??n.options.defaultPreloadDelay??0,br=D.useCallback(()=>{n.preloadRoute({...ne,_builtLocation:ue}).catch(ot=>{console.warn(ot),console.warn(oL)})},[n,ne,ue]);oO(r,D.useCallback(ot=>{ot?.isIntersecting&&br()},[br]),TL,{disabled:!!T||Jr!=="viewport"}),D.useEffect(()=>{ji.current||!T&&Jr==="render"&&(br(),ji.current=!0)},[T,br,Jr]);const Kl=ot=>{const qt=ot.currentTarget.getAttribute("target"),Rr=k!==void 0?k:qt;if(!T&&!ML(ot)&&!ot.defaultPrevented&&(!Rr||Rr==="_self")&&ot.button===0){ot.preventDefault(),aa.flushSync(()=>{Ie(!0)});const ya=n.subscribe("onResolved",()=>{ya(),Ie(!1)});n.navigate({...ne,replace:g,resetScroll:v,hashScrollIntoView:m,startTransition:b,viewTransition:C,ignoreBlocker:J})}};if(Se)return{...L,ref:r,href:Se,...E&&{children:E},...k&&{target:k},...T&&{disabled:T},...$&&{style:$},...A&&{className:A},...B&&{onClick:B},...P&&{onBlur:P},...M&&{onFocus:M},...N&&{onMouseEnter:N},...I&&{onMouseLeave:I},...F&&{onTouchStart:F}};const yd=ot=>{if(T||Jr!=="intent")return;if(!no){br();return}const qt=ot.currentTarget;if(zu.has(qt))return;const Rr=setTimeout(()=>{zu.delete(qt),br()},no);zu.set(qt,Rr)},Fm=ot=>{T||Jr!=="intent"||br()},on=ot=>{if(T||!Jr||!no)return;const qt=ot.currentTarget,Rr=zu.get(qt);Rr&&(clearTimeout(Rr),zu.delete(qt))};return{...L,...sn,...mn,href:Ve?.href,ref:r,onClick:rl([B,Kl]),onBlur:rl([P,on]),onFocus:rl([M,yd]),onMouseEnter:rl([N,yd]),onMouseLeave:rl([I,on]),onTouchStart:rl([F,Fm]),disabled:!!T,target:k,...jt&&{style:jt},...gr&&{className:gr},...T&&SL,...kn&&wL,...U&&to&&$L}}var g0={},DL={className:"active"},SL={role:"link","aria-disabled":!0},wL={"data-status":"active","aria-current":"page"},$L={"data-transitioning":"transitioning"},zu=new WeakMap,TL={rootMargin:"100px"},rl=t=>e=>{for(const n of t)if(n){if(e.defaultPrevented)return;n(e)}};function AL(t,e,n,r){if(!r)return e?{href:t,external:!0}:{href:n.createHref(t)||"/",external:!1}}function BL(t){if(typeof t!="string")return!1;const e=t.charCodeAt(0);return e===47?t.charCodeAt(1)!==47:e===46}var i3=D.forwardRef((t,e)=>{const{_asChild:n,...r}=t,{type:i,...s}=kL(r,e),a=typeof r.children=="function"?r.children({isActive:s["data-status"]==="active"}):r.children;if(!n){const{disabled:u,...c}=s;return D.createElement("a",c,a)}return D.createElement(n,s,a)});function ML(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function RL(t){return new NL({id:t})}var NL=class extends aL{constructor({id:t}){super({id:t}),this.useMatch=e=>Us({select:e?.select,from:this.id,structuralSharing:e?.structuralSharing}),this.useRouteContext=e=>r3({...e,from:this.id}),this.useSearch=e=>qs({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useParams=e=>n3({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useLoaderDeps=e=>t3({...e,from:this.id,strict:!1}),this.useLoaderData=e=>e3({...e,from:this.id,strict:!1}),this.useNavigate=()=>Li({from:dn().routesById[this.id].fullPath}),this.notFound=e=>gS({routeId:this.id,...e}),this.Link=V.forwardRef((e,n)=>{const r=dn().routesById[this.id].fullPath;return S.jsx(i3,{ref:n,from:r,...e})})}},PL=class extends DS{constructor(t){super(t),this.useMatch=e=>Us({select:e?.select,from:this.id,structuralSharing:e?.structuralSharing}),this.useRouteContext=e=>r3({...e,from:this.id}),this.useSearch=e=>qs({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useParams=e=>n3({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useLoaderDeps=e=>t3({...e,from:this.id}),this.useLoaderData=e=>e3({...e,from:this.id}),this.useNavigate=()=>Li({from:this.fullPath}),this.Link=V.forwardRef((e,n)=>S.jsx(i3,{ref:n,from:this.fullPath,...e}))}};function NS(t){return new PL(t)}var OL=class extends lL{constructor(t){super(t),this.useMatch=e=>Us({select:e?.select,from:this.id,structuralSharing:e?.structuralSharing}),this.useRouteContext=e=>r3({...e,from:this.id}),this.useSearch=e=>qs({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useParams=e=>n3({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useLoaderDeps=e=>t3({...e,from:this.id}),this.useLoaderData=e=>e3({...e,from:this.id}),this.useNavigate=()=>Li({from:this.fullPath}),this.Link=V.forwardRef((e,n)=>S.jsx(i3,{ref:n,from:this.fullPath,...e}))}};function LL(t){return new OL(t)}function zL(t){const e=dn(),n=`not-found-${xn(e.stores.location,r=>r.pathname)}-${xn(e.stores.status,r=>r)}`;return S.jsx(Jy,{getResetKey:()=>n,onCatch:(r,i)=>{if(cn(r))t.onCatch?.(r,i);else throw r},errorComponent:({error:r})=>{if(cn(r))return t.fallback?.(r);throw r},children:t.children})}function IL(){return S.jsx("p",{children:"Not Found"})}function ul(t){return S.jsx(S.Fragment,{children:t.children})}function PS(t,e,n){return e.options.notFoundComponent?S.jsx(e.options.notFoundComponent,{...n}):t.options.defaultNotFoundComponent?S.jsx(t.options.defaultNotFoundComponent,{...n}):S.jsx(IL,{})}function FL(t){return null}function KL(){return FL(dn()),null}var jL=(t,e)=>t.routeId===e.routeId&&t._displayPending===e._displayPending,_L=(t,e)=>t[0]===e[0]&&t[1]===e[1],OS=D.memo(function({matchId:e}){const n=dn(),r=n.stores.matchStores.get(e);r||Ti();const i=xn(n.stores.loadedAt,a=>a),s=xn(r,a=>a,jL);return S.jsx(HL,{router:n,matchId:e,resetKey:i,matchState:D.useMemo(()=>{const a=s.routeId,u=n.routesById[a].parentRoute?.id;return{routeId:a,ssr:s.ssr,_displayPending:s._displayPending,parentRouteId:u}},[s._displayPending,s.routeId,s.ssr,n.routesById])})});function HL({router:t,matchId:e,resetKey:n,matchState:r}){const i=t.routesById[r.routeId],s=i.options.pendingComponent??t.options.defaultPendingComponent,a=s?S.jsx(s,{}):null,u=i.options.errorComponent??t.options.defaultErrorComponent,c=i.options.onCatch??t.options.defaultOnCatch,f=i.isRoot?i.options.notFoundComponent??t.options.notFoundRoute?.options.component:i.options.notFoundComponent,h=r.ssr===!1||r.ssr==="data-only",m=(!i.isRoot||i.options.wrapInSuspense||h)&&(i.options.wrapInSuspense??s??(i.options.errorComponent?.preload||h))?D.Suspense:ul,g=u?Jy:ul,b=f?zL:ul;return S.jsxs(i.isRoot?i.options.shellComponent??ul:ul,{children:[S.jsx(em.Provider,{value:e,children:S.jsx(m,{fallback:a,children:S.jsx(g,{getResetKey:()=>n,errorComponent:u||Zy,onCatch:(v,C)=>{if(cn(v))throw v.routeId??=r.routeId,v;c?.(v,C)},children:S.jsx(b,{fallback:v=>{if(v.routeId??=r.routeId,!f||v.routeId&&v.routeId!==r.routeId||!v.routeId&&!i.isRoot)throw v;return D.createElement(f,v)},children:h||r._displayPending?S.jsx(cL,{fallback:a,children:S.jsx(j2,{matchId:e})}):S.jsx(j2,{matchId:e})})})})}),r.parentRouteId===Ho?S.jsxs(S.Fragment,{children:[S.jsx(VL,{}),t.options.scrollRestoration&&aS?S.jsx(KL,{}):null]}):null]})}function VL(){const t=dn(),e=D.useRef();return Gu(()=>{const n=t.stores.resolvedLocation.get(),r=e.current;n&&(!r||r.href!==n.href)&&t.emit({type:"onRendered",...pl(t.stores.location.get(),r??n)}),e.current=n},[xn(t.stores.resolvedLocation,n=>n?.state.__TSR_key),t]),null}var j2=D.memo(function({matchId:e}){const n=dn(),r=(h,m)=>n.getMatch(h.id)?._nonReactive[m]??h._nonReactive[m],i=n.stores.matchStores.get(e);i||Ti();const s=xn(i,h=>h),a=s.routeId,u=n.routesById[a],c=D.useMemo(()=>{const h=(n.routesById[a].options.remountDeps??n.options.defaultRemountDeps)?.({routeId:a,loaderDeps:s.loaderDeps,params:s._strictParams,search:s._strictSearch});return h?JSON.stringify(h):void 0},[a,s.loaderDeps,s._strictParams,s._strictSearch,n.options.defaultRemountDeps,n.routesById]),f=D.useMemo(()=>{const h=u.options.component??n.options.defaultComponent;return h?S.jsx(h,{},c):S.jsx(LS,{})},[c,u.options.component,n.options.defaultComponent]);if(s._displayPending)throw r(s,"displayPendingPromise");if(s._forcePending)throw r(s,"minPendingPromise");if(s.status==="pending"){const h=u.options.pendingMinMs??n.options.defaultPendingMinMs;if(h){const m=n.getMatch(s.id);if(m&&!m._nonReactive.minPendingPromise){const g=El();m._nonReactive.minPendingPromise=g,setTimeout(()=>{g.resolve(),m._nonReactive.minPendingPromise=void 0},h)}}throw r(s,"loadPromise")}if(s.status==="notFound")return cn(s.error)||Ti(),PS(n,u,s.error);if(s.status==="redirected")throw Ln(s.error)||Ti(),r(s,"loadPromise");if(s.status==="error")throw s.error;return f}),LS=D.memo(function(){const e=dn(),n=D.useContext(em);let r,i=!1,s;{const f=n?e.stores.matchStores.get(n):void 0;[r,i]=xn(f,h=>[h?.routeId,h?.globalNotFound??!1],_L),s=xn(e.stores.matchesId,h=>h[h.findIndex(m=>m===n)+1])}const a=r?e.routesById[r]:void 0,u=e.options.defaultPendingComponent?S.jsx(e.options.defaultPendingComponent,{}):null;if(i)return a||Ti(),PS(e,a,void 0);if(!s)return null;const c=S.jsx(OS,{matchId:s});return r===Ho?S.jsx(D.Suspense,{fallback:u,children:c}):c});function UL(){const t=dn(),e=D.useRef({router:t,mounted:!1}),[n,r]=D.useState(!1),i=xn(t.stores.isLoading,m=>m),s=xn(t.stores.hasPending,m=>m),a=i0(i),u=i||n||s,c=i0(u),f=i||s,h=i0(f);return t.startTransition=m=>{r(!0),D.startTransition(()=>{m(),r(!1)})},D.useEffect(()=>{const m=t.history.subscribe(t.load),g=t.buildLocation({to:t.latestLocation.pathname,search:!0,params:!0,hash:!0,state:!0,_includeValidateSearch:!0});return Si(t.latestLocation.publicHref)!==Si(g.publicHref)&&t.commitLocation({...g,replace:!0}),()=>{m()}},[t,t.history]),Gu(()=>{if(typeof window<"u"&&t.ssr||e.current.router===t&&e.current.mounted)return;e.current={router:t,mounted:!0},(async()=>{try{await t.load()}catch(g){console.error(g)}})()},[t]),Gu(()=>{a&&!i&&t.emit({type:"onLoad",...pl(t.stores.location.get(),t.stores.resolvedLocation.get())})},[a,t,i]),Gu(()=>{h&&!f&&t.emit({type:"onBeforeRouteMount",...pl(t.stores.location.get(),t.stores.resolvedLocation.get())})},[f,h,t]),Gu(()=>{if(c&&!u){const m=pl(t.stores.location.get(),t.stores.resolvedLocation.get());t.emit({type:"onResolved",...m}),TS(()=>{t.stores.status.set("idle"),t.stores.resolvedLocation.set(t.stores.location.get())})}},[u,c,t]),null}function qL(){const t=dn(),e=t.routesById[Ho].options.pendingComponent??t.options.defaultPendingComponent,n=e?S.jsx(e,{}):null,r=S.jsxs(typeof document<"u"&&t.ssr?ul:D.Suspense,{fallback:n,children:[S.jsx(UL,{}),S.jsx(GL,{})]});return t.options.InnerWrap?S.jsx(t.options.InnerWrap,{children:r}):r}function GL(){const t=dn(),e=xn(t.stores.firstId,i=>i),n=xn(t.stores.loadedAt,i=>i),r=e?S.jsx(OS,{matchId:e}):null;return S.jsx(em.Provider,{value:e,children:t.options.disableGlobalCatchBoundary?r:S.jsx(Jy,{getResetKey:()=>n,errorComponent:Zy,onCatch:void 0,children:r})})}function zS(){const t=dn();return xn(t.stores.matchRouteDeps,e=>e),D.useCallback(e=>{const{pending:n,caseSensitive:r,fuzzy:i,includeSearch:s,...a}=e;return t.matchRoute(a,{pending:n,caseSensitive:r,fuzzy:i,includeSearch:s})},[t])}var WL=t=>({createMutableStore:L2,createReadonlyStore:L2,batch:TS}),QL=t=>new YL(t),YL=class extends ZO{constructor(t){super(t,WL)}};function XL({router:t,children:e,...n}){uS(n)&&t.update({...t.options,...n,context:{...t.options.context,...n.context}});const r=S.jsx(wS.Provider,{value:t,children:e});return t.options.Wrap?S.jsx(t.options.Wrap,{children:r}):r}function JL({router:t,...e}){return S.jsx(XL,{router:t,...e,children:S.jsx(qL,{})})}function Gs(...t){return(...e)=>{for(let n of t)typeof n=="function"&&n(...e)}}const Le=typeof document<"u"?V.useLayoutEffect:()=>{},IS={prefix:String(Math.round(Math.random()*1e10)),current:0},FS=V.createContext(IS),ZL=V.createContext(!1);let b0=new WeakMap;function ez(t=!1){let e=D.useContext(FS),n=D.useRef(null);if(n.current===null&&!t){let r=V.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED?.ReactCurrentOwner?.current;if(r){let i=b0.get(r);i==null?b0.set(r,{id:e.current,state:r.memoizedState}):r.memoizedState!==i.state&&(e.current=i.id,b0.delete(r))}n.current=++e.current}return n.current}function tz(t){let e=D.useContext(FS),n=ez(!!t),r=`react-aria${e.prefix}`;return t||`${r}-${n}`}function nz(t){let e=V.useId(),[n]=D.useState(Ws()),r=n?"react-aria":`react-aria${IS.prefix}`;return t||`${r}-${e}`}const rz=typeof V.useId=="function"?nz:tz;function iz(){return!1}function sz(){return!0}function oz(t){return()=>{}}function Ws(){return typeof V.useSyncExternalStore=="function"?V.useSyncExternalStore(oz,iz,sz):D.useContext(ZL)}function az(t){let[e,n]=D.useState(t),r=D.useRef(e),i=D.useRef(null),s=D.useRef(()=>{if(!i.current)return;let u=i.current.next();if(u.done){i.current=null;return}r.current===u.value?s.current():n(u.value)});Le(()=>{r.current=e,i.current&&s.current()});let a=D.useCallback(u=>{i.current=u(r.current),s.current()},[s]);return[e,a]}let lz=!!(typeof window<"u"&&window.document&&window.document.createElement),ml=new Map,Wu;typeof FinalizationRegistry<"u"&&(Wu=new FinalizationRegistry(t=>{ml.delete(t)}));function rn(t){let[e,n]=D.useState(t),r=D.useRef(null),i=rz(e),s=D.useRef(null);if(Wu&&Wu.register(s,i),lz){const a=ml.get(i);a&&!a.includes(r)?a.push(r):ml.set(i,[r])}return Le(()=>{let a=i;return()=>{Wu&&Wu.unregister(s),ml.delete(a)}},[i]),D.useEffect(()=>{let a=r.current;return a&&n(a),()=>{a&&(r.current=null)}}),i}function uz(t,e){if(t===e)return t;let n=ml.get(t);if(n)return n.forEach(i=>i.current=e),e;let r=ml.get(e);return r?(r.forEach(i=>i.current=t),t):e}function Uo(t=[]){let e=rn(),[n,r]=az(e),i=D.useCallback(()=>{r(function*(){yield e,yield document.getElementById(e)?e:void 0})},[e,r]);return Le(i,[e,i,...t]),n}function Xc(...t){return t.length===1&&t[0]?t[0]:e=>{let n=!1;const r=t.map(i=>{const s=_2(i,e);return n||=typeof s=="function",s});if(n)return()=>{r.forEach((i,s)=>{typeof i=="function"?i():_2(t[s],null)})}}}function _2(t,e){if(typeof t=="function")return t(e);t!=null&&(t.current=e)}function KS(t){var e,n,r="";if(typeof t=="string"||typeof t=="number")r+=t;else if(typeof t=="object")if(Array.isArray(t)){var i=t.length;for(e=0;e<i;e++)t[e]&&(n=KS(t[e]))&&(r&&(r+=" "),r+=n)}else for(n in t)t[n]&&(r&&(r+=" "),r+=n);return r}function s3(){for(var t,e,n=0,r="",i=arguments.length;n<i;n++)(t=arguments[n])&&(e=KS(t))&&(r&&(r+=" "),r+=e);return r}function $e(...t){let e={...t[0]};for(let n=1;n<t.length;n++){let r=t[n];for(let i in r){let s=e[i],a=r[i];typeof s=="function"&&typeof a=="function"&&i[0]==="o"&&i[1]==="n"&&i.charCodeAt(2)>=65&&i.charCodeAt(2)<=90?e[i]=Gs(s,a):(i==="className"||i==="UNSAFE_className")&&typeof s=="string"&&typeof a=="string"?e[i]=s3(s,a):i==="id"&&s&&a?e.id=uz(s,a):i==="ref"&&s&&a?e.ref=Xc(s,a):e[i]=a!==void 0?a:s}}return e}function Qs(t){const e=D.useRef(null),n=D.useRef(void 0),r=D.useCallback(i=>{if(typeof t=="function"){const s=t,a=s(i);return()=>{typeof a=="function"?a():s(null)}}else if(t)return t.current=i,()=>{t.current=null}},[t]);return D.useMemo(()=>({get current(){return e.current},set current(i){e.current=i,n.current&&(n.current(),n.current=void 0),i!=null&&(n.current=r(i))}}),[r])}const ws=Symbol("default");function Br({values:t,children:e}){for(let[n,r]of t)e=V.createElement(n.Provider,{value:r},e);return e}function St(t){let{className:e,style:n,children:r,defaultClassName:i,defaultChildren:s,defaultStyle:a,values:u,render:c}=t;return D.useMemo(()=>{let f,h,m;return typeof e=="function"?f=e({...u,defaultClassName:i}):f=e,typeof n=="function"?h=n({...u,defaultStyle:a||{}}):h=n,typeof r=="function"?m=r({...u,defaultChildren:s}):r==null?m=s:m=r,{className:f??i,style:h||a?{...a,...h}:void 0,children:m??s,"data-rac":"",render:c?g=>c(g,u):void 0}},[e,n,r,i,s,a,u,c])}function zs(t,e){return n=>e(typeof t=="function"?t(n):t,n)}function Ol(t,e){let n=D.useContext(t);if(e===null)return null;if(n&&typeof n=="object"&&"slots"in n&&n.slots){let r=e||ws;if(!n.slots[r]){let i=new Intl.ListFormat().format(Object.keys(n.slots).map(a=>`"${a}"`)),s=e?`Invalid slot "${e}".`:"A slot prop is required.";throw new Error(`${s} Valid slot names are ${i}.`)}return n.slots[r]}return n}function Ct(t,e,n){let r=Ol(n,t.slot)||{},{ref:i,...s}=r,a=Qs(D.useMemo(()=>Xc(e,i),[e,i])),u=$e(s,t);return"style"in s&&s.style&&"style"in t&&t.style&&(typeof s.style=="function"||typeof t.style=="function"?u.style=c=>{let f=typeof s.style=="function"?s.style(c):s.style,h={...c.defaultStyle,...f},m=typeof t.style=="function"?t.style({...c,defaultStyle:h}):t.style;return{...h,...m}}:u.style={...s.style,...t.style}),[u,a]}function jS(t=!0){let[e,n]=D.useState(t),r=D.useRef(!1),i=D.useCallback(s=>{r.current=!0,n(!!s)},[]);return Le(()=>{r.current||n(!1)},[]),[i,e]}function _S(t){const e=/^(data-.*)$/;let n={};for(const r in t)e.test(r)||(n[r]=t[r]);return n}function cz(t,e,n){let{render:r,...i}=e,s=D.useRef(null),a=D.useMemo(()=>Xc(n,s),[n,s]);Le(()=>{},[t,r]);let u={...i,ref:a};return r?r(u,void 0):V.createElement(t,u)}const H2={},st=new Proxy({},{get(t,e){if(typeof e!="string")return;let n=H2[e];return n||(n=D.forwardRef(cz.bind(null,e)),H2[e]=n),n}}),HS="react-aria-clear-focus",A4="react-aria-focus",ze=t=>t?.ownerDocument??document,fn=t=>t&&"window"in t&&t.window===t?t:ze(t).defaultView||window;function dz(t){return t!==null&&typeof t=="object"&&"nodeType"in t&&typeof t.nodeType=="number"}function fz(t){return dz(t)&&t.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&"host"in t}let hz=!1;function Di(){return hz}function we(t,e){if(!Di())return e&&t?t.contains(e):!1;if(!t||!e)return!1;let n=e;for(;n!==null;){if(n===t)return!0;n.tagName==="SLOT"&&n.assignedSlot?n=n.assignedSlot.parentNode:fz(n)?n=n.host:n=n.parentNode}return!1}const je=(t=document)=>{if(!Di())return t.activeElement;let e=t.activeElement;for(;e&&"shadowRoot"in e&&e.shadowRoot?.activeElement;)e=e.shadowRoot.activeElement;return e};function de(t){if(Di()&&t.target instanceof Element&&t.target.shadowRoot){if("composedPath"in t)return t.composedPath()[0]??null;if("composedPath"in t.nativeEvent)return t.nativeEvent.composedPath()[0]??null}return t.target}function kl(t){if(!t)return!1;let e=t.getRootNode(),n=fn(t);if(!(e instanceof n.Document||e instanceof n.ShadowRoot))return!1;let r=e.activeElement;return r!=null&&t.contains(r)}function o3(t){let e=VS(ze(t));e!==t&&(e&&B4(e,t),t&&Kh(t,e))}function B4(t,e){t.dispatchEvent(new FocusEvent("blur",{relatedTarget:e})),t.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:e}))}function Kh(t,e){t.dispatchEvent(new FocusEvent("focus",{relatedTarget:e})),t.dispatchEvent(new FocusEvent("focusin",{bubbles:!0,relatedTarget:e}))}function VS(t){let e=je(t),n=e?.getAttribute("aria-activedescendant");return n&&t.getElementById(n)||e}function Ar(t){if(pz())t.focus({preventScroll:!0});else{let e=mz(t);t.focus(),gz(e)}}let jf=null;function pz(){if(jf==null){jf=!1;try{document.createElement("div").focus({get preventScroll(){return jf=!0,!0}})}catch{}}return jf}function mz(t){let e=t.parentNode,n=[],r=document.scrollingElement||document.documentElement;for(;e instanceof HTMLElement&&e!==r;)(e.offsetHeight<e.scrollHeight||e.offsetWidth<e.scrollWidth)&&n.push({element:e,scrollTop:e.scrollTop,scrollLeft:e.scrollLeft}),e=e.parentNode;return r instanceof HTMLElement&&n.push({element:r,scrollTop:r.scrollTop,scrollLeft:r.scrollLeft}),n}function gz(t){for(let{element:e,scrollTop:n,scrollLeft:r}of t)e.scrollTop=n,e.scrollLeft=r}const bz=typeof Element<"u"&&"checkVisibility"in Element.prototype;function yz(t){const e=fn(t);if(!(t instanceof e.HTMLElement)&&!(t instanceof e.SVGElement))return!1;let{display:n,visibility:r}=t.style,i=n!=="none"&&r!=="hidden"&&r!=="collapse";if(i){const{getComputedStyle:s}=fn(t);let{display:a,visibility:u}=s(t);i=a!=="none"&&u!=="hidden"&&u!=="collapse"}return i}function vz(t,e){return!t.hasAttribute("hidden")&&!t.hasAttribute("data-react-aria-prevent-focus")&&(t.nodeName==="DETAILS"&&e&&e.nodeName!=="SUMMARY"?t.hasAttribute("open"):!0)}function a3(t,e){return bz?t.checkVisibility({visibilityProperty:!0})&&!t.closest("[data-react-aria-prevent-focus]"):t.nodeName!=="#comment"&&yz(t)&&vz(t,e)&&(!t.parentElement||a3(t.parentElement,t))}const l3=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable^="false"])',"permission"],xz=l3.join(":not([hidden]),")+",[tabindex]:not([disabled]):not([hidden])";l3.push('[tabindex]:not([tabindex="-1"]):not([disabled])');const Cz=l3.join(':not([hidden]):not([tabindex="-1"]),');function US(t,e){return t.matches(xz)&&!qS(t)&&(e?.skipVisibilityCheck||a3(t))}function jh(t){return t.matches(Cz)&&a3(t)&&!qS(t)}function qS(t){let e=t;for(;e!=null;){if(e instanceof fn(e).HTMLElement&&e.inert)return!0;e=e.parentElement}return!1}function u3(t){let e=t;return e.nativeEvent=t,e.isDefaultPrevented=()=>e.defaultPrevented,e.isPropagationStopped=()=>e.cancelBubble,e.persist=()=>{},e}function GS(t,e){Object.defineProperty(t,"target",{value:e}),Object.defineProperty(t,"currentTarget",{value:e})}function WS(t){let e=D.useRef({isFocused:!1,observer:null});return Le(()=>{const n=e.current;return()=>{n.observer&&(n.observer.disconnect(),n.observer=null)}},[]),D.useCallback(n=>{let r=de(n);if(r instanceof HTMLButtonElement||r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement||r instanceof HTMLSelectElement){e.current.isFocused=!0;let i=r,s=a=>{if(e.current.isFocused=!1,i.disabled){let u=u3(a);t?.(u)}e.current.observer&&(e.current.observer.disconnect(),e.current.observer=null)};i.addEventListener("focusout",s,{once:!0}),e.current.observer=new MutationObserver(()=>{if(e.current.isFocused&&i.disabled){e.current.observer?.disconnect();let a=i===je()?null:je();i.dispatchEvent(new FocusEvent("blur",{relatedTarget:a})),i.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:a}))}}),e.current.observer.observe(i,{attributes:!0,attributeFilter:["disabled"]})}},[t])}let _h=!1;function Ez(t){for(;t&&!US(t,{skipVisibilityCheck:!0});)t=t.parentElement;let e=fn(t),n=e.document.activeElement;if(!n||n===t)return;_h=!0;let r=!1,i=h=>{(de(h)===n||r)&&h.stopImmediatePropagation()},s=h=>{(de(h)===n||r)&&(h.stopImmediatePropagation(),!t&&!r&&(r=!0,Ar(n),c()))},a=h=>{(de(h)===t||r)&&h.stopImmediatePropagation()},u=h=>{(de(h)===t||r)&&(h.stopImmediatePropagation(),r||(r=!0,Ar(n),c()))};e.addEventListener("blur",i,!0),e.addEventListener("focusout",s,!0),e.addEventListener("focusin",u,!0),e.addEventListener("focus",a,!0);let c=()=>{cancelAnimationFrame(f),e.removeEventListener("blur",i,!0),e.removeEventListener("focusout",s,!0),e.removeEventListener("focusin",u,!0),e.removeEventListener("focus",a,!0),_h=!1,r=!1},f=requestAnimationFrame(c);return c}function tm(t){if(typeof window>"u"||window.navigator==null)return!1;let e=window.navigator.userAgentData?.brands;return Array.isArray(e)&&e.some(n=>t.test(n.brand))||t.test(window.navigator.userAgent)}function c3(t){return typeof window<"u"&&window.navigator!=null?t.test(window.navigator.userAgentData?.platform||window.navigator.platform):!1}function zi(t){let e=null;return()=>(e==null&&(e=t()),e)}const Is=zi(function(){return c3(/^Mac/i)}),kz=zi(function(){return c3(/^iPhone/i)}),d3=zi(function(){return c3(/^iPad/i)||Is()&&navigator.maxTouchPoints>1}),Ni=zi(function(){return kz()||d3()}),Dz=zi(function(){return Is()||Ni()}),f3=zi(function(){return tm(/AppleWebKit/i)&&!QS()}),QS=zi(function(){return tm(/Chrome/i)}),nm=zi(function(){return tm(/Android/i)}),Sz=zi(function(){return tm(/Firefox/i)});function rm(t){return t.pointerType===""&&t.isTrusted?!0:nm()&&t.pointerType?t.type==="click"&&t.buttons===1:t.detail===0&&!t.pointerType}function h3(t){return!nm()&&t.width===0&&t.height===0||t.width===1&&t.height===1&&t.pressure===0&&t.detail===0&&t.pointerType==="mouse"}const YS=D.createContext({isNative:!0,open:$z,useHref:t=>t});function wz(t){let{children:e,navigate:n,useHref:r}=t,i=D.useMemo(()=>({isNative:!1,open:(s,a,u,c)=>{JS(s,f=>{XS(f,a)?n(u,c):Gr(f,a)})},useHref:r||(s=>s)}),[n,r]);return V.createElement(YS.Provider,{value:i},e)}function Ll(){return D.useContext(YS)}function XS(t,e){let n=t.getAttribute("target");return(!n||n==="_self")&&t.origin===location.origin&&!t.hasAttribute("download")&&!e.metaKey&&!e.ctrlKey&&!e.altKey&&!e.shiftKey}function Gr(t,e,n=!0){let{metaKey:r,ctrlKey:i,altKey:s,shiftKey:a}=e;Sz()&&window.event?.type?.startsWith("key")&&t.target==="_blank"&&(Is()?r=!0:i=!0);let u=f3()&&Is()&&!d3()?new KeyboardEvent("keydown",{keyIdentifier:"Enter",metaKey:r,ctrlKey:i,altKey:s,shiftKey:a}):new MouseEvent("click",{metaKey:r,ctrlKey:i,altKey:s,shiftKey:a,detail:1,bubbles:!0,cancelable:!0});Gr.isOpening=n,Ar(t),t.dispatchEvent(u),Gr.isOpening=!1}Gr.isOpening=!1;function JS(t,e){if(t instanceof HTMLAnchorElement)e(t);else if(t.hasAttribute("data-href")){let n=document.createElement("a");n.href=t.getAttribute("data-href"),t.hasAttribute("data-target")&&(n.target=t.getAttribute("data-target")),t.hasAttribute("data-rel")&&(n.rel=t.getAttribute("data-rel")),t.hasAttribute("data-download")&&(n.download=t.getAttribute("data-download")),t.hasAttribute("data-ping")&&(n.ping=t.getAttribute("data-ping")),t.hasAttribute("data-referrer-policy")&&(n.referrerPolicy=t.getAttribute("data-referrer-policy")),t.appendChild(n),e(n),t.removeChild(n)}}function $z(t,e){JS(t,n=>Gr(n,e))}function Tz(t){const n=Ll().useHref(t.href??"");return{"data-href":t.href?n:void 0,"data-target":t.target,"data-rel":t.rel,"data-download":t.download,"data-ping":t.ping,"data-referrer-policy":t.referrerPolicy}}function ZS(t){const n=Ll().useHref(t?.href??"");let r={};if(t)for(let i of["href","target","rel","download","ping","referrerPolicy"])i in t&&(r[i]=i==="href"?n:t[i]);return r}function ew(t,e,n,r){!e.isNative&&t.currentTarget instanceof HTMLAnchorElement&&t.currentTarget.href&&!t.isDefaultPrevented()&&XS(t.currentTarget,t)&&n&&(t.preventDefault(),e.open(t.currentTarget,t,n,r))}let Pi=null,zl="keyboard";const Ac=new Set;let oc=new Map,ea=!1,M4=!1;const Az={Tab:!0,Escape:!0};function im(t,e){for(let n of Ac)n(t,e)}function Bz(t){return!(t.metaKey||!Is()&&t.altKey||t.ctrlKey||t.key==="Control"||t.key==="Shift"||t.key==="Meta")}function Hh(t){ea=!0,!Gr.isOpening&&Bz(t)&&(Pi="keyboard",zl="keyboard",im("keyboard",t))}function gl(t){Pi="pointer",zl="pointerType"in t?t.pointerType:"mouse",(t.type==="mousedown"||t.type==="pointerdown")&&(ea=!0,im("pointer",t))}function tw(t){!Gr.isOpening&&rm(t)&&(ea=!0,Pi="virtual",zl="virtual")}function nw(t){let e=fn(de(t)),n=ze(de(t));de(t)===e||de(t)===n||_h||!t.isTrusted||(!ea&&!M4&&(Pi="virtual",zl="virtual",im("virtual",t)),ea=!1,M4=!1)}function rw(){_h||(ea=!1,M4=!0)}function Vh(t){if(typeof window>"u"||typeof document>"u")return;const e=fn(t),n=ze(t);if(oc.get(e))return;let r=e.HTMLElement.prototype.focus;Reflect.defineProperty(e.HTMLElement.prototype,"focus",{configurable:!0,writable:!0,value:function(){ea=!0,r.apply(this,arguments)}}),n.addEventListener("keydown",Hh,!0),n.addEventListener("keyup",Hh,!0),n.addEventListener("click",tw,!0),e.addEventListener("focus",nw,!0),e.addEventListener("blur",rw,!1),typeof PointerEvent<"u"&&(n.addEventListener("pointerdown",gl,!0),n.addEventListener("pointermove",gl,!0),n.addEventListener("pointerup",gl,!0)),e.addEventListener("beforeunload",()=>{iw(t)},{once:!0}),oc.set(e,{focus:r})}const iw=(t,e)=>{const n=fn(t),r=ze(t);e&&r.removeEventListener("DOMContentLoaded",e),oc.has(n)&&(Reflect.defineProperty(n.HTMLElement.prototype,"focus",{configurable:!0,writable:!0,value:oc.get(n).focus}),r.removeEventListener("keydown",Hh,!0),r.removeEventListener("keyup",Hh,!0),r.removeEventListener("click",tw,!0),n.removeEventListener("focus",nw,!0),n.removeEventListener("blur",rw,!1),typeof PointerEvent<"u"&&(r.removeEventListener("pointerdown",gl,!0),r.removeEventListener("pointermove",gl,!0),r.removeEventListener("pointerup",gl,!0)),oc.delete(n))};function Mz(t){const e=ze(t);let n;return e.readyState!=="loading"?Vh(t):(n=()=>{Vh(t)},e.addEventListener("DOMContentLoaded",n)),()=>iw(t,n)}typeof document<"u"&&Mz();function Dl(){return Pi!=="pointer"}function ta(){return Pi}function No(t){Pi=t,zl=t==="pointer"?"mouse":t,im(t,null)}function Rz(){return zl}function sw(){Vh();let[t,e]=D.useState(Pi);return D.useEffect(()=>{let n=()=>{e(Pi)};return Ac.add(n),()=>{Ac.delete(n)}},[]),Ws()?null:t}const Nz=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function Pz(t,e,n){let r=n?de(n):void 0,i=ze(r),s=fn(r);const a=typeof s<"u"?s.HTMLInputElement:HTMLInputElement,u=typeof s<"u"?s.HTMLTextAreaElement:HTMLTextAreaElement,c=typeof s<"u"?s.HTMLElement:HTMLElement,f=typeof s<"u"?s.KeyboardEvent:KeyboardEvent;let h=je(i);return t=t||h instanceof a&&!Nz.has(h.type)||h instanceof u||h instanceof c&&h.isContentEditable,!(t&&e==="keyboard"&&n instanceof f&&!Az[n.key])}function Oz(t,e,n){Vh(),D.useEffect(()=>{if(n?.enabled===!1)return;let r=(i,s)=>{Pz(!!n?.isTextInput,i,s)&&t(Dl())};return Ac.add(r),()=>{Ac.delete(r)}},e)}var ow={};ow={collectionLabel:"مقترحات"};var aw={};aw={collectionLabel:"Предложения"};var lw={};lw={collectionLabel:"Návrhy"};var uw={};uw={collectionLabel:"Forslag"};var cw={};cw={collectionLabel:"Empfehlungen"};var dw={};dw={collectionLabel:"Προτάσεις"};var fw={};fw={collectionLabel:"Suggestions"};var hw={};hw={collectionLabel:"Sugerencias"};var pw={};pw={collectionLabel:"Soovitused"};var mw={};mw={collectionLabel:"Ehdotukset"};var gw={};gw={collectionLabel:"Suggestions"};var bw={};bw={collectionLabel:"הצעות"};var yw={};yw={collectionLabel:"Prijedlozi"};var vw={};vw={collectionLabel:"Javaslatok"};var xw={};xw={collectionLabel:"Suggerimenti"};var Cw={};Cw={collectionLabel:"候補"};var Ew={};Ew={collectionLabel:"제안"};var kw={};kw={collectionLabel:"Pasiūlymai"};var Dw={};Dw={collectionLabel:"Ieteikumi"};var Sw={};Sw={collectionLabel:"Forslag"};var ww={};ww={collectionLabel:"Suggesties"};var $w={};$w={collectionLabel:"Sugestie"};var Tw={};Tw={collectionLabel:"Sugestões"};var Aw={};Aw={collectionLabel:"Sugestões"};var Bw={};Bw={collectionLabel:"Sugestii"};var Mw={};Mw={collectionLabel:"Предложения"};var Rw={};Rw={collectionLabel:"Návrhy"};var Nw={};Nw={collectionLabel:"Predlogi"};var Pw={};Pw={collectionLabel:"Predlozi"};var Ow={};Ow={collectionLabel:"Förslag"};var Lw={};Lw={collectionLabel:"Öneriler"};var zw={};zw={collectionLabel:"Пропозиції"};var Iw={};Iw={collectionLabel:"建议"};var Fw={};Fw={collectionLabel:"建議"};var Kw={};Kw={"ar-AE":ow,"bg-BG":aw,"cs-CZ":lw,"da-DK":uw,"de-DE":cw,"el-GR":dw,"en-US":fw,"es-ES":hw,"et-EE":pw,"fi-FI":mw,"fr-FR":gw,"he-IL":bw,"hr-HR":yw,"hu-HU":vw,"it-IT":xw,"ja-JP":Cw,"ko-KR":Ew,"lt-LT":kw,"lv-LV":Dw,"nb-NO":Sw,"nl-NL":ww,"pl-PL":$w,"pt-BR":Tw,"pt-PT":Aw,"ro-RO":Bw,"ru-RU":Mw,"sk-SK":Rw,"sl-SI":Nw,"sr-SP":Pw,"sv-SE":Ow,"tr-TR":Lw,"uk-UA":zw,"zh-CN":Iw,"zh-TW":Fw};function wo(t){return Is()?t.metaKey:t.ctrlKey}const Lz=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function ac(t){return t instanceof HTMLInputElement&&!Lz.has(t.type)||t instanceof HTMLTextAreaElement||t instanceof HTMLElement&&t.isContentEditable}const zz=V.useInsertionEffect??Le;function Nt(t){const e=D.useRef(null);return zz(()=>{e.current=t},[t]),D.useCallback((...n)=>{const r=e.current;return r?.(...n)},[])}function Qu(t,e,n,r){let i=Nt(n),s=n==null;D.useEffect(()=>{if(s||!t.current)return;let a=t.current;return a.addEventListener(e,i,r),()=>{a.removeEventListener(e,i,r)}},[t,e,r,s])}function p3(t,e){let{id:n,"aria-label":r,"aria-labelledby":i}=t;return n=rn(n),i&&r?i=[...new Set([n,...i.trim().split(/\s+/)])].join(" "):i&&(i=i.trim().split(/\s+/).join(" ")),!r&&!i&&e&&(r=e),{id:n,"aria-label":r,"aria-labelledby":i}}const Iz=new Set(["Arab","Syrc","Samr","Mand","Thaa","Mend","Nkoo","Adlm","Rohg","Hebr"]),Fz=new Set(["ae","ar","arc","bcc","bqi","ckb","dv","fa","glk","he","ku","mzn","nqo","pnb","ps","sd","ug","ur","yi"]);function Kz(t){if(Intl.Locale){let n=new Intl.Locale(t).maximize(),r=typeof n.getTextInfo=="function"?n.getTextInfo():n.textInfo;if(r)return r.direction==="rtl";if(n.script)return Iz.has(n.script)}let e=t.split("-")[0];return Fz.has(e)}const jw=Symbol.for("react-aria.i18n.locale");function _w(){let t=typeof window<"u"&&window[jw]||typeof navigator<"u"&&(navigator.language||navigator.userLanguage)||"en-US";try{Intl.DateTimeFormat.supportedLocalesOf([t])}catch{t="en-US"}return{locale:t,direction:Kz(t)?"rtl":"ltr"}}let R4=_w(),Yu=new Set;function V2(){R4=_w();for(let t of Yu)t(R4)}function jz(){let t=Ws(),[e,n]=D.useState(R4);return D.useEffect(()=>(Yu.size===0&&window.addEventListener("languagechange",V2),Yu.add(n),()=>{Yu.delete(n),Yu.size===0&&window.removeEventListener("languagechange",V2)}),[]),t?{locale:typeof window<"u"&&window[jw]||"en-US",direction:"ltr"}:e}const _z=V.createContext(null);function Ii(){let t=jz();return D.useContext(_z)||t}const Hz=Symbol.for("react-aria.i18n.locale"),Vz=Symbol.for("react-aria.i18n.strings");let _f;class sm{constructor(e,n="en-US"){this.strings=Object.fromEntries(Object.entries(e).filter(([,r])=>r)),this.defaultLocale=n}getStringForLocale(e,n){let i=this.getStringsForLocale(n)[e];if(!i)throw new Error(`Could not find intl message ${e} in ${n} locale`);return i}getStringsForLocale(e){let n=this.strings[e];return n||(n=Uz(e,this.strings,this.defaultLocale),this.strings[e]=n),n}static getGlobalDictionaryForPackage(e){if(typeof window>"u")return null;let n=window[Hz];if(_f===void 0){let i=window[Vz];if(!i)return null;_f={};for(let s in i)_f[s]=new sm({[n]:i[s]},n)}let r=_f?.[e];if(!r)throw new Error(`Strings for package "${e}" were not included by LocalizedStringProvider. Please add it to the list passed to createLocalizedStringDictionary.`);return r}}function Uz(t,e,n="en-US"){if(e[t])return e[t];let r=qz(t);if(e[r])return e[r];for(let i in e)if(i.startsWith(r+"-"))return e[i];return e[n]}function qz(t){return Intl.Locale?new Intl.Locale(t).language:t.split("-")[0]}const U2=new Map,q2=new Map;class Gz{constructor(e,n){this.locale=e,this.strings=n}format(e,n){let r=this.strings.getStringForLocale(e,this.locale);return typeof r=="function"?r(n,this):r}plural(e,n,r="cardinal"){let i=n["="+e];if(i)return typeof i=="function"?i():i;let s=this.locale+":"+r,a=U2.get(s);a||(a=new Intl.PluralRules(this.locale,{type:r}),U2.set(s,a));let u=a.select(e);return i=n[u]||n.other,typeof i=="function"?i():i}number(e){let n=q2.get(this.locale);return n||(n=new Intl.NumberFormat(this.locale),q2.set(this.locale,n)),n.format(e)}select(e,n){let r=e[n]||e.other;return typeof r=="function"?r():r}}const G2=new WeakMap;function Wz(t){let e=G2.get(t);return e||(e=new sm(t),G2.set(t,e)),e}function Qz(t,e){return e&&sm.getGlobalDictionaryForPackage(e)||Wz(t)}function mr(t,e){let{locale:n}=Ii(),r=Qz(t,e);return D.useMemo(()=>new Gz(n,r),[n,r])}function Yz(t){return t&&t.__esModule?t.default:t}function Xz(t,e){let{inputRef:n,collectionRef:r,filter:i,disableAutoFocusFirst:s=!1,disableVirtualFocus:a=!1}=t,u=rn(),c=D.useRef(void 0),f=D.useRef(!1),h=D.useRef(null),m=ta()==="virtual"&&(Ni()||nm()),[g,b]=D.useState(!m&&!a),[v,C]=D.useState(!1),[E,k]=D.useState(!1);D.useEffect(()=>()=>clearTimeout(c.current),[]);let T=Nt(U=>{!U.isTrusted&&g&&n.current&&je(ze(n.current))!==n.current&&Rz()!=="touch"&&n.current.focus();let ne=de(U);U.isTrusted||!ne||h.current===ne.id||(clearTimeout(c.current),ne!==r.current?f.current?(h.current=ne.id,c.current=setTimeout(()=>{e.setFocusedNodeId(ne.id)},500)):(h.current=ne.id,e.setFocusedNodeId(ne.id)):h.current&&!document.getElementById(h.current)&&(h.current=null,e.setFocusedNodeId(null)),f.current=!1)}),[$,A]=D.useState(null),B=D.useCallback(U=>{A(U),U!=null?(U.getAttribute("tabindex")!=null&&b(!1),C(!0)):C(!1)},[]);Le(()=>($?.addEventListener("focusin",T),()=>{$?.removeEventListener("focusin",T)}),[$]);let P=Qs(D.useMemo(()=>Xc(r,B),[r,B])),M=D.useCallback(()=>{if(!r.current){k(!0);return}f.current=!0,r.current?.dispatchEvent(new CustomEvent(A4,{cancelable:!0,bubbles:!0,detail:{focusStrategy:"first"}}))},[r]),N=D.useCallback(U=>{k(!1),o3(je()),h.current=null,e.setFocusedNodeId(null);let ne=new CustomEvent(HS,{cancelable:!0,bubbles:!0,detail:{clearFocusKey:U}});clearTimeout(c.current),f.current=!1,r.current?.dispatchEvent(ne)},[r,e]),I=D.useRef("");Qu(n,"beforeinput",U=>{let{inputType:ne}=U;I.current=ne});let F=U=>{(I.current==="insertText"||I.current==="insertCompositionText"||I.current==="insertFromComposition")&&!s?M():I.current&&(I.current.includes("insert")||I.current.includes("delete")||I.current.includes("history"))&&(N(!0),VS(document)===n.current&&Kh(n.current,null)),e.setInputValue(U)},J=D.useRef(null),q=U=>{if(J.current=de(U),U.nativeEvent.isComposing)return;let ne=h.current;switch(ne!==null&&ze(n.current).getElementById(ne)==null&&(h.current=null,ne=null),U.key){case"a":if(wo(U))return;break;case"Escape":if(U.isDefaultPrevented())return;break;case" ":return;case"Tab":"continuePropagation"in U&&U.continuePropagation();return;case"Home":case"End":case"PageDown":case"PageUp":case"ArrowUp":case"ArrowDown":case"ArrowRight":case"ArrowLeft":{if((U.key==="Home"||U.key==="End")&&ne==null&&U.shiftKey)return;if(U.key==="ArrowRight"||U.key==="ArrowLeft"){if(ne==null){U.isPropagationStopped()||U.stopPropagation();return}break}U.preventDefault();let ue=new CustomEvent(A4,{cancelable:!0,bubbles:!0});r.current?.dispatchEvent(ue);break}}U.isPropagationStopped()||U.stopPropagation();let le=!0;if(r.current!==null)if(ne==null)le=r.current?.dispatchEvent(new KeyboardEvent(U.nativeEvent.type,U.nativeEvent))||!1;else{let ue=document.getElementById(ne);ue&&(le=ue?.dispatchEvent(new KeyboardEvent(U.nativeEvent.type,U.nativeEvent))||!1)}if(le)switch(U.key){case"ArrowLeft":case"ArrowRight":N();break;case"Enter":ne!=null&&document.getElementById(ne)?.dispatchEvent(new PointerEvent("click",U.nativeEvent));break}else U.preventDefault()},ie=Nt(U=>{if(de(U)===J.current){U.stopImmediatePropagation();let ne=h.current;ne==null?r.current?.dispatchEvent(new KeyboardEvent(U.type,U)):document.getElementById(ne)?.dispatchEvent(new KeyboardEvent(U.type,U))}});D.useEffect(()=>(document.addEventListener("keyup",ie,!0),()=>{document.removeEventListener("keyup",ie,!0)}),[]);let K=mr(Yz(Kw),"@react-aria/autocomplete"),te=p3({id:u,"aria-label":K.format("collectionLabel")}),O=D.useCallback((U,ne)=>i?i(U,e.inputValue,ne):!0,[e.inputValue,i]),j=U=>{if(!U.isTrusted)return;let ne=h.current?document.getElementById(h.current):null;ne&&B4(ne,U.relatedTarget)},Y=U=>{if(!U.isTrusted)return;if(h.current?document.getElementById(h.current):null){let le=de(U);queueMicrotask(()=>{B4(le,r.current),Kh(r.current,le)})}},Z=U=>{U.button!==0||U.pointerType==="touch"||h.current==null||n.current==null||de(U)===n.current&&N()},H={value:e.inputValue,onChange:F},L={onKeyDown:q,"aria-activedescendant":e.focusedNodeId??void 0,onBlur:j,onFocus:Y,onPointerDown:Z};return H={...H,...g&&v&&L,enterKeyHint:"go","aria-controls":v?u:void 0,"aria-autocomplete":"list",autoCorrect:"off",spellCheck:"false",autoComplete:"off"},{inputProps:H,collectionProps:$e(te,{shouldUseVirtualFocus:g,disallowTypeAhead:g,autoFocus:E?"first":!1}),collectionRef:P,filter:i!=null?O:void 0}}const Jz=typeof document<"u"?V.useInsertionEffect??V.useLayoutEffect:()=>{};function Ys(t,e,n){let[r,i]=D.useState(t||e),s=D.useRef(r),a=D.useRef(t!==void 0),u=t!==void 0;D.useEffect(()=>{a.current,a.current=u},[u]);let c=u?t:r;Jz(()=>{s.current=c});let[,f]=D.useReducer(()=>({}),{}),h=D.useCallback((m,...g)=>{let b=typeof m=="function"?m(s.current):m;Object.is(s.current,b)||(s.current=b,i(b),f(),n?.(b,...g))},[n]);return[c,h]}function Zz(t){let{onInputChange:e,inputValue:n,defaultInputValue:r=""}=t,i=f=>{e&&e(f)},[s,a]=D.useState(null),[u,c]=Ys(n,r,i);return{inputValue:u,setInputValue:c,focusedNodeId:s,setFocusedNodeId:a}}const eI=D.createContext(null),tI=D.createContext(null),Bc=D.createContext(null),om=D.createContext(null);function nI(t){let e=Ol(eI,t.slot);t=$e(e,t);let{filter:n,disableAutoFocusFirst:r}=t,i=Zz(t),s=D.useRef(null),a=D.useRef(null),{inputProps:u,collectionProps:c,collectionRef:f,filter:h}=Xz({..._S(t),filter:n,disableAutoFocusFirst:r,inputRef:s,collectionRef:a},i);return V.createElement(Br,{values:[[tI,i],[om,{...u,ref:s}],[Bc,{...c,filter:h,ref:f}]]},t.children)}class la{constructor(e){this.value=null,this.level=0,this.hasChildNodes=!1,this.rendered=null,this.textValue="",this["aria-label"]=void 0,this.index=0,this.parentKey=null,this.prevKey=null,this.nextKey=null,this.firstChildKey=null,this.lastChildKey=null,this.props={},this.colSpan=null,this.colIndex=null,this.type=this.constructor.type,this.key=e}get childNodes(){throw new Error("childNodes is not supported")}clone(){let e=new this.constructor(this.key);return e.value=this.value,e.level=this.level,e.hasChildNodes=this.hasChildNodes,e.rendered=this.rendered,e.textValue=this.textValue,e["aria-label"]=this["aria-label"],e.index=this.index,e.parentKey=this.parentKey,e.prevKey=this.prevKey,e.nextKey=this.nextKey,e.firstChildKey=this.firstChildKey,e.lastChildKey=this.lastChildKey,e.props=this.props,e.render=this.render,e.colSpan=this.colSpan,e.colIndex=this.colIndex,e}filter(e,n,r){let i=this.clone();return n.addDescendants(i,e),i}}class Hw extends la{filter(e,n,r){let[i,s]=Vw(e,n,this.firstChildKey,r),a=this.clone();return a.firstChildKey=i,a.lastChildKey=s,a}}const U1=class U1 extends la{};U1.type="header";let N4=U1;const q1=class q1 extends la{};q1.type="loader";let Uh=q1;const G1=class G1 extends Hw{filter(e,n,r){if(r(this.textValue,this)){let i=this.clone();return n.addDescendants(i,e),i}return null}};G1.type="item";let qh=G1;const W1=class W1 extends Hw{filter(e,n,r){let i=super.filter(e,n,r);if(i&&i.lastChildKey!==null){let s=e.getItem(i.lastChildKey);if(s&&s.type!=="header")return i}return null}};W1.type="section";let P4=W1;class rI{get size(){return this.itemCount}getKeys(){return this.keyMap.keys()}*[Symbol.iterator](){let e=this.firstKey!=null?this.keyMap.get(this.firstKey):void 0;for(;e;)yield e,e=e.nextKey!=null?this.keyMap.get(e.nextKey):void 0}getChildren(e){let n=this.keyMap;return{*[Symbol.iterator](){let r=n.get(e),i=r?.firstChildKey!=null?n.get(r.firstChildKey):null;for(;i;)yield i,i=i.nextKey!=null?n.get(i.nextKey):void 0}}}getKeyBefore(e){let n=this.keyMap.get(e);if(!n)return null;if(n.prevKey!=null){for(n=this.keyMap.get(n.prevKey);n&&n.type!=="item"&&n.lastChildKey!=null;)n=this.keyMap.get(n.lastChildKey);return n?.key??null}return n.parentKey}getKeyAfter(e){let n=this.keyMap.get(e);if(!n)return null;if(n.type!=="item"&&n.firstChildKey!=null)return n.firstChildKey;for(;n;){if(n.nextKey!=null)return n.nextKey;if(n.parentKey!=null)n=this.keyMap.get(n.parentKey);else return null}return null}getFirstKey(){return this.firstKey}getLastKey(){let e=this.lastKey!=null?this.keyMap.get(this.lastKey):null;for(;e?.lastChildKey!=null;)e=this.keyMap.get(e.lastChildKey);return e?.key??null}getItem(e){return this.keyMap.get(e)??null}at(){throw new Error("Not implemented")}clone(){let e=this.constructor,n=new e;return n.keyMap=new Map(this.keyMap),n.firstKey=this.firstKey,n.lastKey=this.lastKey,n.itemCount=this.itemCount,n}addNode(e){if(this.frozen)throw new Error("Cannot add a node to a frozen collection");e.type==="item"&&this.keyMap.get(e.key)==null&&this.itemCount++,this.keyMap.set(e.key,e)}addDescendants(e,n){this.addNode(e);let r=n.getChildren(e.key);for(let i of r)this.addDescendants(i,n)}removeNode(e){if(this.frozen)throw new Error("Cannot remove a node to a frozen collection");let n=this.keyMap.get(e);n!=null&&n.type==="item"&&this.itemCount--,this.keyMap.delete(e)}commit(e,n,r=!1){if(this.frozen)throw new Error("Cannot commit a frozen collection");this.firstKey=e,this.lastKey=n,this.frozen=!r}filter(e){let n=new this.constructor,[r,i]=Vw(this,n,this.firstKey,e);return n?.commit(r,i),n}constructor(){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.frozen=!1,this.itemCount=0}}function Vw(t,e,n,r){if(n==null)return[null,null];let i=null,s=null,a=t.getItem(n);for(;a!=null;){let u=a.filter(t,e,r);u!=null&&(u.nextKey=null,s&&(u.prevKey=s.key,s.nextKey=u.key),i==null&&(i=u),e.addNode(u),s=u),a=a.nextKey!=null?t.getItem(a.nextKey):null}if(s&&s.type==="separator"){let u=s.prevKey;e.removeNode(s.key),u!=null?(s=e.getItem(u),s.nextKey=null):s=null}return[i?.key??null,s?.key??null]}class Uw{constructor(e){this._firstChild=null,this._lastChild=null,this._previousSibling=null,this._nextSibling=null,this._parentNode=null,this._minInvalidChildIndex=null,this.ownerDocument=e}*[Symbol.iterator](){let e=this.firstChild;for(;e;)yield e,e=e.nextSibling}get firstChild(){return this._firstChild}set firstChild(e){this._firstChild=e,this.ownerDocument.markDirty(this)}get lastChild(){return this._lastChild}set lastChild(e){this._lastChild=e,this.ownerDocument.markDirty(this)}get previousSibling(){return this._previousSibling}set previousSibling(e){this._previousSibling=e,this.ownerDocument.markDirty(this)}get nextSibling(){return this._nextSibling}set nextSibling(e){this._nextSibling=e,this.ownerDocument.markDirty(this)}get parentNode(){return this._parentNode}set parentNode(e){this._parentNode=e,this.ownerDocument.markDirty(this)}get isConnected(){return this.parentNode?.isConnected||!1}invalidateChildIndices(e){(this._minInvalidChildIndex==null||!this._minInvalidChildIndex.isConnected||e.index<this._minInvalidChildIndex.index)&&(this._minInvalidChildIndex=e,this.ownerDocument.markDirty(this))}updateChildIndices(){let e=this._minInvalidChildIndex;for(;e;)e.index=e.previousSibling?e.previousSibling.index+1:0,e=e.nextSibling;this._minInvalidChildIndex=null}appendChild(e){e.parentNode&&e.parentNode.removeChild(e),this.firstChild==null&&(this.firstChild=e),this.lastChild?(this.lastChild.nextSibling=e,e.index=this.lastChild.index+1,e.previousSibling=this.lastChild):(e.previousSibling=null,e.index=0),e.parentNode=this,e.nextSibling=null,this.lastChild=e,this.ownerDocument.markDirty(this),this.isConnected&&this.ownerDocument.queueUpdate()}insertBefore(e,n){if(n==null)return this.appendChild(e);e.parentNode&&e.parentNode.removeChild(e),e.nextSibling=n,e.previousSibling=n.previousSibling,e.index=n.index-1,this.firstChild===n?this.firstChild=e:n.previousSibling&&(n.previousSibling.nextSibling=e),n.previousSibling=e,e.parentNode=n.parentNode,this.invalidateChildIndices(e),this.isConnected&&this.ownerDocument.queueUpdate()}removeChild(e){e.parentNode===this&&(this._minInvalidChildIndex===e&&(this._minInvalidChildIndex=null),e.nextSibling&&(this.invalidateChildIndices(e.nextSibling),e.nextSibling.previousSibling=e.previousSibling),e.previousSibling&&(e.previousSibling.nextSibling=e.nextSibling),this.firstChild===e&&(this.firstChild=e.nextSibling),this.lastChild===e&&(this.lastChild=e.previousSibling),e.parentNode=null,e.nextSibling=null,e.previousSibling=null,e.index=0,this.ownerDocument.markDirty(e),this.isConnected&&this.ownerDocument.queueUpdate())}addEventListener(){}removeEventListener(){}get previousVisibleSibling(){let e=this.previousSibling;for(;e&&e.isHidden;)e=e.previousSibling;return e}get nextVisibleSibling(){let e=this.nextSibling;for(;e&&e.isHidden;)e=e.nextSibling;return e}get firstVisibleChild(){let e=this.firstChild;for(;e&&e.isHidden;)e=e.nextSibling;return e}get lastVisibleChild(){let e=this.lastChild;for(;e&&e.isHidden;)e=e.previousSibling;return e}}class bl extends Uw{constructor(e,n){super(n),this.nodeType=8,this.isMutated=!0,this._index=0,this.isHidden=!1,this.node=null}get index(){return this._index}set index(e){this._index=e,this.ownerDocument.markDirty(this)}get level(){return this.parentNode instanceof bl?this.parentNode.level+(this.parentNode.node?.type==="item"?1:0):0}getMutableNode(){return this.node==null?null:(this.isMutated||(this.node=this.node.clone(),this.isMutated=!0),this.ownerDocument.markDirty(this),this.node)}updateNode(){let e=this.nextVisibleSibling,n=this.getMutableNode();if(n!=null&&(n.index=this.index,n.level=this.level,n.parentKey=this.parentNode instanceof bl?this.parentNode.node?.key??null:null,n.prevKey=this.previousVisibleSibling?.node?.key??null,n.nextKey=e?.node?.key??null,n.hasChildNodes=!!this.firstChild,n.firstChildKey=this.firstVisibleChild?.node?.key??null,n.lastChildKey=this.lastVisibleChild?.node?.key??null,(n.colSpan!=null||n.colIndex!=null)&&e)){let r=(n.colIndex??n.index)+(n.colSpan??1);if(e.node!=null&&r!==e.node.colIndex){let i=e.getMutableNode();i.colIndex=r}}}setProps(e,n,r,i,s){let a,{value:u,textValue:c,id:f,...h}=e;if(this.node==null?(a=new r(f??`react-aria-${++this.ownerDocument.nodeId}`),this.node=a):a=this.getMutableNode(),h.ref=n,a.props=h,a.rendered=i,a.render=s,a.value=u,e["aria-label"]&&(a["aria-label"]=e["aria-label"]),a.textValue=c||(typeof h.children=="string"?h.children:"")||e["aria-label"]||"",f!=null&&f!==a.key)throw new Error("Cannot change the id of an item");h.colSpan!=null&&(a.colSpan=h.colSpan),this.isConnected&&this.ownerDocument.queueUpdate()}get style(){let e=this;return{get display(){return e.isHidden?"none":""},set display(n){let r=n==="none";if(e.isHidden!==r){(e.parentNode?.firstVisibleChild===e||e.parentNode?.lastVisibleChild===e)&&e.ownerDocument.markDirty(e.parentNode);let i=e.previousVisibleSibling,s=e.nextVisibleSibling;i&&e.ownerDocument.markDirty(i),s&&e.ownerDocument.markDirty(s),e.isHidden=r,e.ownerDocument.markDirty(e)}}}}hasAttribute(){}setAttribute(){}setAttributeNS(){}removeAttribute(){}}class iI extends Uw{constructor(e){super(null),this.nodeType=11,this.ownerDocument=this,this.dirtyNodes=new Set,this.isSSR=!1,this.nodeId=0,this.nodesByProps=new WeakMap,this.nextCollection=null,this.subscriptions=new Set,this.queuedRender=!1,this.inSubscription=!1,this.collection=e,this.nextCollection=e}get isConnected(){return!0}createElement(e){return new bl(e,this)}getMutableCollection(){return this.nextCollection||(this.nextCollection=this.collection.clone()),this.nextCollection}markDirty(e){this.dirtyNodes.add(e)}addNode(e){if(e.isHidden||e.node==null)return;let n=this.getMutableCollection();if(!n.getItem(e.node.key))for(let r of e)this.addNode(r);n.addNode(e.node)}removeNode(e){for(let n of e)this.removeNode(n);e.node&&this.getMutableCollection().removeNode(e.node.key)}getCollection(){return this.inSubscription?this.collection:(this.queuedRender=!1,this.updateCollection(),this.collection)}updateCollection(){for(let e of this.dirtyNodes)e instanceof bl&&(!e.isConnected||e.isHidden)?this.removeNode(e):e.updateChildIndices();for(let e of this.dirtyNodes)e instanceof bl?(e.isConnected&&!e.isHidden&&(e.updateNode(),this.addNode(e)),e.node&&this.dirtyNodes.delete(e),e.isMutated=!1):this.dirtyNodes.delete(e);this.nextCollection&&(this.nextCollection.commit(this.firstVisibleChild?.node?.key??null,this.lastVisibleChild?.node?.key??null,this.isSSR),this.isSSR||(this.collection=this.nextCollection,this.nextCollection=null))}queueUpdate(){if(!(this.dirtyNodes.size===0||this.queuedRender)){this.queuedRender=!0,this.inSubscription=!0,this.isSSR||(this.collection=this.collection.clone());for(let e of this.subscriptions)e();this.inSubscription=!1}}subscribe(e){return this.subscriptions.add(e),()=>this.subscriptions.delete(e)}resetAfterSSR(){this.isSSR&&(this.isSSR=!1,this.firstChild=null,this.lastChild=null,this.nodeId=0)}}function qw(t){let{children:e,items:n,idScope:r,addIdAndValue:i,dependencies:s=[]}=t,a=D.useMemo(()=>{},[e]),u=D.useMemo(()=>new WeakMap,[...s,a]);return D.useMemo(()=>{if(n&&typeof e=="function"){let c=[];for(let f of n){let h=sI(f)?f:null,m=h?u.get(h):null;if(!m){m=e(f);let g=m.props.id??f?.key??f?.id;r!=null&&m.props.id==null&&g!=null&&(g=r+":"+g);let b=g??c.length;m=D.cloneElement(m,i?{key:b,id:g,value:f}:{key:b}),h&&u.set(h,m)}c.push(m)}return c}else if(typeof e!="function")return e},[e,n,u,r,i])}function sI(t){switch(typeof t){case"object":return t!=null;case"function":case"symbol":return!0;default:return!1}}let Es=new Map,O4=new Set;function W2(){if(typeof window>"u")return;function t(r){return"propertyName"in r}let e=r=>{let i=de(r);if(!t(r)||!i)return;let s=Es.get(i);s||(s=new Set,Es.set(i,s),i.addEventListener("transitioncancel",n,{once:!0})),s.add(r.propertyName)},n=r=>{let i=de(r);if(!t(r)||!i)return;let s=Es.get(i);if(s&&(s.delete(r.propertyName),s.size===0&&(i.removeEventListener("transitioncancel",n),Es.delete(i)),Es.size===0)){for(let a of O4)a();O4.clear()}};document.body.addEventListener("transitionrun",e),document.body.addEventListener("transitionend",n)}typeof document<"u"&&(document.readyState!=="loading"?W2():document.addEventListener("DOMContentLoaded",W2));function oI(){for(const[t]of Es)"isConnected"in t&&!t.isConnected&&Es.delete(t)}function Gw(t){requestAnimationFrame(()=>{oI(),Es.size===0?t():O4.add(t)})}function bn(t){if(!t.isConnected)return;const e=ze(t);if(ta()==="virtual"){let n=je(e);Gw(()=>{const r=je(e);(r===n||r===e.body)&&t.isConnected&&Ar(t)})}else Ar(t)}function Ww(t){let{isDisabled:e,onFocus:n,onBlur:r,onFocusChange:i}=t;const s=D.useCallback(c=>{if(de(c)===c.currentTarget)return r&&r(c),i&&i(!1),!0},[r,i]),a=WS(s),u=D.useCallback(c=>{let f=de(c);const h=ze(f),m=h?je(h):je();f===c.currentTarget&&f===m&&(n&&n(c),i&&i(!0),a(c))},[i,n,a]);return{focusProps:{onFocus:!e&&(n||i||r)?u:void 0,onBlur:!e&&(r||i)?s:void 0}}}function Q2(t){if(!t)return;let e=!0;return n=>{let r={...n,preventDefault(){n.preventDefault()},isDefaultPrevented(){return n.isDefaultPrevented()},stopPropagation(){e=!0},continuePropagation(){e=!1,typeof n.continuePropagation=="function"&&n.continuePropagation()},isPropagationStopped(){return e}};t(r),e&&n.stopPropagation()}}function Qw(t){return{keyboardProps:t.isDisabled?{}:{onKeyDown:Q2(t.onKeyDown),onKeyUp:Q2(t.onKeyUp)}}}function m3(t,e){Le(()=>{if(t&&t.ref&&e)return t.ref.current=e.current,()=>{t.ref&&(t.ref.current=null)}})}let L4=V.createContext(null);function aI(t){let e=D.useContext(L4)||{};m3(e,t);let{ref:n,...r}=e;return r}function am(t,e){let{focusProps:n}=Ww(t),{keyboardProps:r}=Qw(t),i=$e(n,r),s=aI(e),a=t.isDisabled?{}:s,u=D.useRef(t.autoFocus);D.useEffect(()=>{u.current&&e.current&&bn(e.current),u.current=!1},[e]);let c=t.excludeFromTabOrder?-1:0;return t.isDisabled&&(c=void 0),{focusableProps:$e({...i,tabIndex:c},a)}}typeof HTMLTemplateElement<"u"&&(Object.defineProperty(HTMLTemplateElement.prototype,"firstChild",{configurable:!0,enumerable:!0,get:function(){return this.content.firstChild}}),Object.defineProperty(HTMLTemplateElement.prototype,"appendChild",{configurable:!0,enumerable:!0,value:function(t){return this.content.appendChild(t)}}),Object.defineProperty(HTMLTemplateElement.prototype,"removeChild",{configurable:!0,enumerable:!0,value:function(t){return this.content.removeChild(t)}}),Object.defineProperty(HTMLTemplateElement.prototype,"insertBefore",{configurable:!0,enumerable:!0,value:function(t,e){return this.content.insertBefore(t,e)}}));const Gh=D.createContext(!1);function lI(t){if(D.useContext(Gh))return V.createElement(V.Fragment,null,t.children);let n=V.createElement(Gh.Provider,{value:!0},t.children);return V.createElement("template",null,n)}function lm(t){let e=(n,r)=>D.useContext(Gh)?null:t(n,r);return e.displayName=t.displayName||t.name,D.forwardRef(e)}function Yw(){return D.useContext(Gh)}var g3=BS();const Xw=D.createContext(!1),Mc=D.createContext(null);function b3(t){if(D.useContext(Mc))return t.content;let{collection:n,document:r}=fI(t.createCollection);return V.createElement(V.Fragment,null,V.createElement(lI,null,V.createElement(Mc.Provider,{value:r},t.content)),V.createElement(uI,{render:t.children,collection:n}))}function uI({collection:t,render:e}){return e(t)}function cI(t,e,n){let r=Ws(),i=D.useRef(r);i.current=r;let s=D.useCallback(()=>i.current?n():e(),[e,n]);return g3.useSyncExternalStore(t,s)}const dI=typeof V.useSyncExternalStore=="function"?V.useSyncExternalStore:cI;function fI(t){let[e]=D.useState(()=>new iI(t?.()||new rI)),n=D.useCallback(a=>e.subscribe(a),[e]),r=D.useCallback(()=>{let a=e.getCollection();return e.isSSR&&e.resetAfterSSR(),a},[e]),i=D.useCallback(()=>(e.isSSR=!0,e.getCollection()),[e]);return{collection:dI(n,r,i),document:e}}const z4=D.createContext(null);function hI(t){var n;return n=class extends la{},n.type=t,n}function Jw(t,e,n,r,i,s){typeof t=="string"&&(t=hI(t));let a=D.useCallback(c=>{c?.setProps(e,n,t,r,s)},[e,n,r,s,t]),u=D.useContext(z4);if(u){let c=u.ownerDocument.nodesByProps.get(e);return c||(c=u.ownerDocument.createElement(t.type),c.setProps(e,n,t,r,s),u.appendChild(c),u.ownerDocument.updateCollection(),u.ownerDocument.nodesByProps.set(e,c)),i?V.createElement(z4.Provider,{value:c},i):null}return V.createElement(t.type,{ref:a},i)}function ua(t,e){let n=({node:i})=>e(i.props,i.props.ref,i),r=D.forwardRef((i,s)=>{let a=D.useContext(L4);if(!D.useContext(Xw)){if(e.length>=3)throw new Error(e.name+" cannot be rendered outside a collection.");return e(i,s)}return Jw(t,i,s,"children"in i?i.children:null,null,c=>V.createElement(L4.Provider,{value:a},V.createElement(n,{node:c})))});return r.displayName=e.name,r}function pI(t,e,n=Zw){let r=({node:s})=>e(s.props,s.props.ref,s),i=D.forwardRef((s,a)=>{let u=n(s);return Jw(t,s,a,null,u,c=>V.createElement(r,{node:c}))??V.createElement(V.Fragment,null)});return i.displayName=e.name,i}function Zw(t){return qw({...t,addIdAndValue:!0})}const Y2=D.createContext(null);function um(t){let e=D.useContext(Y2),n=(e?.dependencies||[]).concat(t.dependencies),r=t.idScope??e?.idScope,i=Zw({...t,idScope:r,dependencies:n});return D.useContext(Mc)&&(i=V.createElement(mI,null,i)),e=D.useMemo(()=>({dependencies:n,idScope:r}),[r,...n]),V.createElement(Y2.Provider,{value:e},i)}function mI({children:t}){let e=D.useContext(Mc),n=D.useMemo(()=>V.createElement(Mc.Provider,{value:null},V.createElement(Xw.Provider,{value:!0},t)),[t]);return Ws()?V.createElement(z4.Provider,{value:e},n):aa.createPortal(n,e)}const gI=D.createContext(null),e$={CollectionRoot({collection:t,renderDropIndicator:e}){return X2(t,null,e)},CollectionBranch({collection:t,parent:e,renderDropIndicator:n}){return X2(t,e,n)}};function X2(t,e,n){return qw({items:e?t.getChildren(e.key):t,dependencies:[n],children(r){if(r.type==="content")return V.createElement(V.Fragment,null);let i=r.render(r);return!n||r.type!=="item"?i:V.createElement(V.Fragment,null,n({type:"item",key:r.key,dropPosition:"before"}),i,bI(t,r,n))}})}function bI(t,e,n){let r=e.key,i=t.getKeyAfter(r),s=i!=null?t.getItem(i):null;for(;s!=null&&s.type!=="item";)i=t.getKeyAfter(s.key),s=i!=null?t.getItem(i):null;let a=e.nextKey!=null?t.getItem(e.nextKey):null;for(;a!=null&&a.type!=="item";)a=a.nextKey!=null?t.getItem(a.nextKey):null;let u=[];if(a==null){let c=e;for(;c?.type==="item"&&(!s||c.parentKey!==s.parentKey&&s.level<c.level);){let f=n({type:"item",key:c.key,dropPosition:"after"});D.isValidElement(f)&&u.push(D.cloneElement(f,{key:`${c.key}-after`})),c=c.parentKey!=null?t.getItem(c.parentKey):null}}return u}const Fs=D.createContext(e$);function yI(t){return D.useMemo(()=>t!=null?new Set([t]):null,[t])}const vI=new Set(["id"]),xI=new Set(["aria-label","aria-labelledby","aria-describedby","aria-details"]),CI=new Set(["href","hrefLang","target","rel","download","ping","referrerPolicy"]),EI=new Set(["dir","lang","hidden","inert","translate"]),J2=new Set(["onClick","onAuxClick","onContextMenu","onDoubleClick","onMouseDown","onMouseEnter","onMouseLeave","onMouseMove","onMouseOut","onMouseOver","onMouseUp","onTouchCancel","onTouchEnd","onTouchMove","onTouchStart","onPointerDown","onPointerMove","onPointerUp","onPointerCancel","onPointerEnter","onPointerLeave","onPointerOver","onPointerOut","onGotPointerCapture","onLostPointerCapture","onScroll","onWheel","onAnimationStart","onAnimationEnd","onAnimationIteration","onTransitionCancel","onTransitionEnd","onTransitionRun","onTransitionStart"]),kI=/^(data-.*)$/;function Ze(t,e={}){let{labelable:n,isLink:r,global:i,events:s=i,propNames:a}=e,u={};for(const c in t)Object.prototype.hasOwnProperty.call(t,c)&&(vI.has(c)||n&&xI.has(c)||r&&CI.has(c)||i&&EI.has(c)||s&&(J2.has(c)||c.endsWith("Capture")&&J2.has(c.slice(0,-7)))||a?.has(c)||kI.test(c))&&(u[c]=t[c]);return u}let hl="default",I4="",Eh=new WeakMap;function DI(t){if(Ni()){if(hl==="default"){const e=ze(t);I4=e.documentElement.style.webkitUserSelect,e.documentElement.style.webkitUserSelect="none"}hl="disabled"}else if(t instanceof HTMLElement||t instanceof SVGElement){let e="userSelect"in t.style?"userSelect":"webkitUserSelect";Eh.set(t,t.style[e]),t.style[e]="none"}}function Z2(t){if(Ni()){if(hl!=="disabled")return;hl="restoring",setTimeout(()=>{Gw(()=>{if(hl==="restoring"){const e=ze(t);e.documentElement.style.webkitUserSelect==="none"&&(e.documentElement.style.webkitUserSelect=I4||""),I4="",hl="default"}})},300)}else if((t instanceof HTMLElement||t instanceof SVGElement)&&t&&Eh.has(t)){let e=Eh.get(t),n="userSelect"in t.style?"userSelect":"webkitUserSelect";t.style[n]==="none"&&(t.style[n]=e),t.getAttribute("style")===""&&t.removeAttribute("style"),Eh.delete(t)}}function e5(t){return t?.defaultView?.__webpack_nonce__||globalThis.__webpack_nonce__||void 0}let y0=new WeakMap;function t$(t){let e=t??(typeof document<"u"?document:void 0);if(!e)return e5(e);if(y0.has(e))return y0.get(e);let n=e.querySelector('meta[property="csp-nonce"]'),r=n&&n instanceof fn(n).HTMLMetaElement&&(n.nonce||n.content)||e5(e)||void 0;return r!==void 0&&y0.set(e,r),r}const Rc=V.createContext({register:()=>{}});Rc.displayName="PressResponderContext";function Jc(){let t=D.useRef(new Map),e=D.useCallback((i,s,a,u)=>{let c=u?.once?(...f)=>{t.current.delete(a),a(...f)}:a;t.current.set(a,{type:s,eventTarget:i,fn:c,options:u}),i.addEventListener(s,c,u)},[]),n=D.useCallback((i,s,a,u)=>{let c=t.current.get(a)?.fn||a;i.removeEventListener(s,c,u),t.current.delete(a)},[]),r=D.useCallback(()=>{t.current.forEach((i,s)=>{n(i.eventTarget,i.type,s,i.options)})},[n]);return D.useEffect(()=>r,[r]),{addGlobalListener:e,removeGlobalListener:n,removeAllGlobalListeners:r}}function SI(t){let e=D.useContext(Rc);if(e){let{register:n,ref:r,...i}=e;t=$e(i,t),n()}return m3(e,t.ref),t}class Hf{#e;constructor(e,n,r,i){this.#e=!0;const a=(i?.target??r.currentTarget)?.getBoundingClientRect();let u,c=0,f,h=null;r.clientX!=null&&r.clientY!=null&&(f=r.clientX,h=r.clientY),a&&(f!=null&&h!=null?(u=f-a.left,c=h-a.top):(u=a.width/2,c=a.height/2)),this.type=e,this.pointerType=n,this.target=r.currentTarget,this.shiftKey=r.shiftKey,this.metaKey=r.metaKey,this.ctrlKey=r.ctrlKey,this.altKey=r.altKey,this.x=u,this.y=c,this.key=r.key}continuePropagation(){this.#e=!1}get shouldStopPropagation(){return this.#e}}const t5=Symbol("linkClicked"),n5="react-aria-pressable-style",r5="data-react-aria-pressable";function Zc(t){let{onPress:e,onPressChange:n,onPressStart:r,onPressEnd:i,onPressUp:s,onClick:a,isDisabled:u,isPressed:c,preventFocusOnPress:f,shouldCancelOnPointerExit:h,allowTextSelectionOnPress:m,ref:g,...b}=SI(t),[v,C]=D.useState(!1),E=D.useRef({isPressed:!1,ignoreEmulatedMouseEvents:!1,didFirePressStart:!1,isTriggeringEvent:!1,activePointerId:null,target:null,isOverTarget:!1,pointerType:null,disposables:[]}),{addGlobalListener:k,removeAllGlobalListeners:T}=Jc(),$=D.useCallback((K,te)=>{let O=E.current;if(u||O.didFirePressStart)return!1;let j=!0;if(O.isTriggeringEvent=!0,r){let Y=new Hf("pressstart",te,K);r(Y),j=Y.shouldStopPropagation}return n&&n(!0),O.isTriggeringEvent=!1,O.didFirePressStart=!0,C(!0),j},[u,r,n]),A=D.useCallback((K,te,O=!0)=>{let j=E.current;if(!j.didFirePressStart)return!1;j.didFirePressStart=!1,j.isTriggeringEvent=!0;let Y=!0;if(i){let Z=new Hf("pressend",te,K);i(Z),Y=Z.shouldStopPropagation}if(n&&n(!1),C(!1),e&&O&&!u){let Z=new Hf("press",te,K);e(Z),Y&&=Z.shouldStopPropagation}return j.isTriggeringEvent=!1,Y},[u,i,n,e]),B=Nt(A),P=D.useCallback((K,te)=>{let O=E.current;if(u)return!1;if(s){O.isTriggeringEvent=!0;let j=new Hf("pressup",te,K);return s(j),O.isTriggeringEvent=!1,j.shouldStopPropagation}return!0},[u,s]),M=Nt(P),N=D.useCallback(K=>{let te=E.current;if(te.isPressed&&te.target){te.didFirePressStart&&te.pointerType!=null&&A(ko(te.target,K),te.pointerType,!1),te.isPressed=!1,te.isOverTarget=!1,te.activePointerId=null,te.pointerType=null,T(),m||Z2(te.target);for(let O of te.disposables)O();te.disposables=[]}},[m,T,A]),I=Nt(N);D.useEffect(()=>{u&&E.current.isPressed&&I({currentTarget:E.current.target,shiftKey:!1,ctrlKey:!1,metaKey:!1,altKey:!1})},[u]);let F=D.useCallback(K=>{h&&N(K)},[h,N]),J=D.useCallback(K=>{u||a?.(K)},[u,a]),q=D.useCallback((K,te)=>{if(!u&&a){let O=new MouseEvent("click",K);GS(O,te),a(u3(O))}},[u,a]),ie=D.useMemo(()=>{let K=E.current,te={onKeyDown(j){if(v0(j.nativeEvent,j.currentTarget)&&we(j.currentTarget,de(j))){i5(de(j),j.key)&&j.preventDefault();let Y=!0;!K.isPressed&&!j.repeat&&(K.target=j.currentTarget,K.isPressed=!0,K.pointerType="keyboard",Y=$(j,"keyboard"));let Z=j.currentTarget,H=L=>{v0(L,Z)&&!L.repeat&&we(Z,de(L))&&K.target&&M(ko(K.target,L),"keyboard")};k(ze(j.currentTarget),"keyup",Gs(H,O),!0),Y&&j.stopPropagation(),j.metaKey&&Is()&&K.metaKeyEvents?.set(j.key,j.nativeEvent)}else j.key==="Meta"&&(K.metaKeyEvents=new Map)},onClick(j){if(!(j&&!we(j.currentTarget,de(j)))&&j&&j.button===0&&!K.isTriggeringEvent&&!Gr.isOpening){let Y=!0;if(u&&j.preventDefault(),!K.ignoreEmulatedMouseEvents&&!K.isPressed&&(K.pointerType==="virtual"||rm(j.nativeEvent))){let Z=$(j,"virtual"),H=M(j,"virtual"),L=B(j,"virtual");J(j),Y=Z&&H&&L}else if(K.isPressed&&K.pointerType!=="keyboard"){let Z=K.pointerType||j.nativeEvent.pointerType||"virtual",H=M(ko(j.currentTarget,j),Z),L=B(ko(j.currentTarget,j),Z,!0);Y=H&&L,K.isOverTarget=!1,J(j),I(j)}K.ignoreEmulatedMouseEvents=!1,Y&&j.stopPropagation()}}},O=j=>{if(K.isPressed&&K.target&&v0(j,K.target)){i5(de(j),j.key)&&j.preventDefault();let Y=de(j),Z=we(K.target,Y);B(ko(K.target,j),"keyboard",Z),Z&&q(j,K.target),T(),j.key!=="Enter"&&y3(K.target)&&we(K.target,Y)&&!j[t5]&&(j[t5]=!0,Gr(K.target,j,!1)),K.isPressed=!1,K.metaKeyEvents?.delete(j.key)}else if(j.key==="Meta"&&K.metaKeyEvents?.size){let Y=K.metaKeyEvents;K.metaKeyEvents=void 0;for(let Z of Y.values())K.target?.dispatchEvent(new KeyboardEvent("keyup",Z))}};if(typeof PointerEvent<"u"){te.onPointerDown=Z=>{if(Z.button!==0||!we(Z.currentTarget,de(Z)))return;if(h3(Z.nativeEvent)){K.pointerType="virtual";return}K.pointerType=Z.pointerType;let H=!0;if(!K.isPressed){K.isPressed=!0,K.isOverTarget=!0,K.activePointerId=Z.pointerId,K.target=Z.currentTarget,m||DI(K.target),H=$(Z,K.pointerType);let L=de(Z);"releasePointerCapture"in L&&("hasPointerCapture"in L?L.hasPointerCapture(Z.pointerId)&&L.releasePointerCapture(Z.pointerId):L.releasePointerCapture(Z.pointerId)),k(ze(Z.currentTarget),"pointerup",j,!1),k(ze(Z.currentTarget),"pointercancel",Y,!1)}H&&Z.stopPropagation()},te.onMouseDown=Z=>{if(we(Z.currentTarget,de(Z))&&Z.button===0){if(f){let H=Ez(Z.target);H&&K.disposables.push(H)}Z.stopPropagation()}},te.onPointerUp=Z=>{!we(Z.currentTarget,de(Z))||K.pointerType==="virtual"||Z.button===0&&!K.isPressed&&M(Z,K.pointerType||Z.pointerType)},te.onPointerEnter=Z=>{Z.pointerId===K.activePointerId&&K.target&&!K.isOverTarget&&K.pointerType!=null&&(K.isOverTarget=!0,$(ko(K.target,Z),K.pointerType))},te.onPointerLeave=Z=>{Z.pointerId===K.activePointerId&&K.target&&K.isOverTarget&&K.pointerType!=null&&(K.isOverTarget=!1,B(ko(K.target,Z),K.pointerType,!1),F(Z))};let j=Z=>{if(Z.pointerId===K.activePointerId&&K.isPressed&&Z.button===0&&K.target){if(we(K.target,de(Z))&&K.pointerType!=null){let H=!1,L=setTimeout(()=>{K.isPressed&&K.target instanceof HTMLElement&&(H?I(Z):(Ar(K.target),K.target.click()))},80);k(Z.currentTarget,"click",()=>H=!0,!0),K.disposables.push(()=>clearTimeout(L))}else I(Z);K.isOverTarget=!1}},Y=Z=>{I(Z)};te.onDragStart=Z=>{we(Z.currentTarget,de(Z))&&I(Z)}}return te},[k,u,f,T,m,F,$,J,q]);return D.useEffect(()=>{if(!g)return;const K=ze(g.current);if(!K||!K.head||K.getElementById(n5))return;const te=K.createElement("style");te.id=n5;let O=t$(K);O&&(te.nonce=O),te.textContent=`
|
|
10
|
-
@layer {
|
|
11
|
-
[${r5}] {
|
|
12
|
-
touch-action: pan-x pan-y pinch-zoom;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
`.trim(),K.head.prepend(te)},[g]),D.useEffect(()=>{let K=E.current;return()=>{m||Z2(K.target??void 0);for(let te of K.disposables)te();K.disposables=[]}},[m]),{isPressed:c||v,pressProps:$e(b,ie,{[r5]:!0})}}function y3(t){return t.tagName==="A"&&t.hasAttribute("href")}function v0(t,e){const{key:n,code:r}=t,i=e,s=i.getAttribute("role");return(n==="Enter"||n===" "||n==="Spacebar"||r==="Space")&&!(i instanceof fn(i).HTMLInputElement&&!n$(i,n)||i instanceof fn(i).HTMLTextAreaElement||i.isContentEditable)&&!((s==="link"||!s&&y3(i))&&n!=="Enter")}function ko(t,e){let n=e.clientX,r=e.clientY;return{currentTarget:t,shiftKey:e.shiftKey,ctrlKey:e.ctrlKey,metaKey:e.metaKey,altKey:e.altKey,clientX:n,clientY:r,key:e.key}}function wI(t){return t instanceof HTMLInputElement?!1:t instanceof HTMLButtonElement?t.type!=="submit"&&t.type!=="reset":!y3(t)}function i5(t,e){return t instanceof HTMLInputElement?!n$(t,e):wI(t)}const $I=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function n$(t,e){return t.type==="checkbox"||t.type==="radio"?e===" ":$I.has(t.type)}function TI(t,e){let{elementType:n="a",onPress:r,onPressStart:i,onPressEnd:s,onClick:a,isDisabled:u,...c}=t,f={};n!=="a"&&(f={role:"link",tabIndex:u?void 0:0});let{focusableProps:h}=am(t,e),{pressProps:m,isPressed:g}=Zc({onPress:r,onPressStart:i,onPressEnd:s,onClick:a,isDisabled:u,ref:e}),b=Ze(c,{labelable:!0}),v=$e(h,m),C=Ll(),E=ZS(t);return{isPressed:g,linkProps:$e(b,E,{...v,...f,"aria-disabled":u||void 0,"aria-current":t["aria-current"],onClick:k=>{m.onClick?.(k),ew(k,C,t.href,t.routerOptions)}})}}function v3(t){let{isDisabled:e,onBlurWithin:n,onFocusWithin:r,onFocusWithinChange:i}=t,s=D.useRef({isFocusWithin:!1}),{addGlobalListener:a,removeAllGlobalListeners:u}=Jc(),c=D.useCallback(m=>{we(m.currentTarget,de(m))&&s.current.isFocusWithin&&!we(m.currentTarget,m.relatedTarget)&&(s.current.isFocusWithin=!1,u(),n&&n(m),i&&i(!1))},[n,i,s,u]),f=WS(c),h=D.useCallback(m=>{if(!we(m.currentTarget,de(m)))return;let g=de(m);const b=ze(g),v=je(b);if(!s.current.isFocusWithin&&v===g){r&&r(m),i&&i(!0),s.current.isFocusWithin=!0,f(m);let C=m.currentTarget;a(b,"focus",E=>{let k=de(E);if(s.current.isFocusWithin&&!we(C,k)){let T=new b.defaultView.FocusEvent("blur",{relatedTarget:k});GS(T,C);let $=u3(T);c($)}},{capture:!0})}},[r,i,f,a,c]);return e?{focusWithinProps:{onFocus:void 0,onBlur:void 0}}:{focusWithinProps:{onFocus:h,onBlur:c}}}function Oi(t={}){let{autoFocus:e=!1,isTextInput:n,within:r}=t,i=D.useRef({isFocused:!1,isFocusVisible:e||Dl()}),[s,a]=D.useState(!1),[u,c]=D.useState(()=>i.current.isFocused&&i.current.isFocusVisible),f=D.useCallback(()=>c(i.current.isFocused&&i.current.isFocusVisible),[]),h=D.useCallback(b=>{i.current.isFocused=b,i.current.isFocusVisible=Dl(),a(b),f()},[f]);Oz(b=>{i.current.isFocusVisible=b,f()},[n,s],{enabled:s,isTextInput:n});let{focusProps:m}=Ww({isDisabled:r,onFocusChange:h}),{focusWithinProps:g}=v3({isDisabled:!r,onFocusWithinChange:h});return{isFocused:s,isFocusVisible:u,focusProps:r?g:m}}let F4=!1,Vf=0;function AI(){F4=!0,setTimeout(()=>{F4=!1},500)}function s5(t){t.pointerType==="touch"&&AI()}function BI(){let t=ze(null);if(!(typeof t>"u"))return Vf===0&&typeof PointerEvent<"u"&&t.addEventListener("pointerup",s5),Vf++,()=>{Vf--,!(Vf>0)&&typeof PointerEvent<"u"&&t.removeEventListener("pointerup",s5)}}function Fi(t){let{onHoverStart:e,onHoverChange:n,onHoverEnd:r,isDisabled:i}=t,[s,a]=D.useState(!1),u=D.useRef({isHovered:!1,ignoreEmulatedMouseEvents:!1,pointerType:"",target:null}).current;D.useEffect(BI,[]);let{addGlobalListener:c,removeAllGlobalListeners:f}=Jc(),{hoverProps:h,triggerHoverEnd:m}=D.useMemo(()=>{let g=(C,E)=>{if(u.pointerType=E,i||E==="touch"||u.isHovered||!we(C.currentTarget,de(C)))return;u.isHovered=!0;let k=C.currentTarget;u.target=k,c(ze(de(C)),"pointerover",T=>{u.isHovered&&u.target&&!we(u.target,de(T))&&b(T,T.pointerType)},{capture:!0}),e&&e({type:"hoverstart",target:k,pointerType:E}),n&&n(!0),a(!0)},b=(C,E)=>{let k=u.target;u.pointerType="",u.target=null,!(E==="touch"||!u.isHovered||!k)&&(u.isHovered=!1,f(),r&&r({type:"hoverend",target:k,pointerType:E}),n&&n(!1),a(!1))},v={};return typeof PointerEvent<"u"&&(v.onPointerEnter=C=>{F4&&C.pointerType==="mouse"||g(C,C.pointerType)},v.onPointerLeave=C=>{!i&&we(C.currentTarget,de(C))&&b(C,C.pointerType)}),{hoverProps:v,triggerHoverEnd:b}},[e,n,r,i,u,c,f]);return D.useEffect(()=>{i&&m({currentTarget:u.target},u.pointerType)},[i]),{hoverProps:h,isHovered:s}}const r$=D.createContext(null),i$=D.forwardRef(function(e,n){[e,n]=Ct(e,n,r$);let r=e.href&&!e.isDisabled?"a":"span",{linkProps:i,isPressed:s}=TI({...e,elementType:r},n),a=st[r],{hoverProps:u,isHovered:c}=Fi(e),{focusProps:f,isFocused:h,isFocusVisible:m}=Oi(),g=St({...e,defaultClassName:"react-aria-Link",values:{isCurrent:!!e["aria-current"],isDisabled:e.isDisabled||!1,isPressed:s,isHovered:c,isFocused:h,isFocusVisible:m}}),b=Ze(e,{global:!0});return delete b.onClick,V.createElement(a,{ref:n,slot:e.slot||void 0,...$e(b,g,i,u,f),"data-focused":h||void 0,"data-hovered":c||void 0,"data-pressed":s||void 0,"data-focus-visible":m||void 0,"data-current":!!e["aria-current"]||void 0,"data-disabled":e.isDisabled||void 0},g.children)});var s$={};s$={breadcrumbs:"عناصر الواجهة"};var o$={};o$={breadcrumbs:"Трохи хляб"};var a$={};a$={breadcrumbs:"Popis cesty"};var l$={};l$={breadcrumbs:"Brødkrummer"};var u$={};u$={breadcrumbs:"Breadcrumbs"};var c$={};c$={breadcrumbs:"Πλοηγήσεις breadcrumb"};var d$={};d$={breadcrumbs:"Breadcrumbs"};var f$={};f$={breadcrumbs:"Migas de pan"};var h$={};h$={breadcrumbs:"Lingiread"};var p$={};p$={breadcrumbs:"Navigointilinkit"};var m$={};m$={breadcrumbs:"Chemin de navigation"};var g$={};g$={breadcrumbs:"שבילי ניווט"};var b$={};b$={breadcrumbs:"Navigacijski putovi"};var y$={};y$={breadcrumbs:"Morzsamenü"};var v$={};v$={breadcrumbs:"Breadcrumb"};var x$={};x$={breadcrumbs:"パンくずリスト"};var C$={};C$={breadcrumbs:"탐색 표시"};var E$={};E$={breadcrumbs:"Naršymo kelias"};var k$={};k$={breadcrumbs:"Atpakaļceļi"};var D$={};D$={breadcrumbs:"Navigasjonsstier"};var S$={};S$={breadcrumbs:"Broodkruimels"};var w$={};w$={breadcrumbs:"Struktura nawigacyjna"};var $$={};$$={breadcrumbs:"Caminho detalhado"};var T$={};T$={breadcrumbs:"Categorias"};var A$={};A$={breadcrumbs:"Miez de pâine"};var B$={};B$={breadcrumbs:"Навигация"};var M$={};M$={breadcrumbs:"Navigačné prvky Breadcrumbs"};var R$={};R$={breadcrumbs:"Drobtine"};var N$={};N$={breadcrumbs:"Putanje navigacije"};var P$={};P$={breadcrumbs:"Sökvägar"};var O$={};O$={breadcrumbs:"İçerik haritaları"};var L$={};L$={breadcrumbs:"Навігаційна стежка"};var z$={};z$={breadcrumbs:"导航栏"};var I$={};I$={breadcrumbs:"導覽列"};var F$={};F$={"ar-AE":s$,"bg-BG":o$,"cs-CZ":a$,"da-DK":l$,"de-DE":u$,"el-GR":c$,"en-US":d$,"es-ES":f$,"et-EE":h$,"fi-FI":p$,"fr-FR":m$,"he-IL":g$,"hr-HR":b$,"hu-HU":y$,"it-IT":v$,"ja-JP":x$,"ko-KR":C$,"lt-LT":E$,"lv-LV":k$,"nb-NO":D$,"nl-NL":S$,"pl-PL":w$,"pt-BR":$$,"pt-PT":T$,"ro-RO":A$,"ru-RU":B$,"sk-SK":M$,"sl-SI":R$,"sr-SP":N$,"sv-SE":P$,"tr-TR":O$,"uk-UA":L$,"zh-CN":z$,"zh-TW":I$};function MI(t){return t&&t.__esModule?t.default:t}function RI(t){let{"aria-label":e,...n}=t,r=mr(MI(F$),"@react-aria/breadcrumbs");return{navProps:{...Ze(n,{labelable:!0}),"aria-label":e||r.format("breadcrumbs")}}}const K4=D.createContext(null),NI=D.forwardRef(function(e,n){[e,n]=Ct(e,n,K4);let{CollectionRoot:r}=D.useContext(Fs),{navProps:i}=RI(e),s=Ze(e,{global:!0,labelable:!0});return V.createElement(b3,{content:V.createElement(um,e)},a=>V.createElement(st.ol,{render:e.render,ref:n,...$e(s,i),slot:e.slot||void 0,style:e.style,className:e.className??"react-aria-Breadcrumbs"},V.createElement(K4.Provider,{value:e},V.createElement(r,{collection:a}))))}),Q1=class Q1 extends la{};Q1.type="item";let j4=Q1;const PI=ua(j4,function(e,n,r){let i=r.nextKey==null,{isDisabled:s,onAction:a}=Ol(K4),u={"aria-current":i?"page":null,isDisabled:s||i,onPress:()=>a?.(r.key)},c=St({...r.props,children:r.rendered,values:{isDisabled:s||i,isCurrent:i},defaultClassName:"react-aria-Breadcrumb"}),f=Ze(e,{global:!0,labelable:!0});return delete f.id,V.createElement(st.li,{...f,...c,ref:n,"data-disabled":s||i||void 0,"data-current":i||void 0},V.createElement(r$.Provider,{value:u},c.children))}),x3=D.createContext({}),OI=lm(function(e,n){[e,n]=Ct(e,n,x3);let{elementType:r="label",...i}=e,s=st[r];return V.createElement(s,{className:"react-aria-Label",...i,ref:n})});function LI(t){let{id:e,label:n,"aria-labelledby":r,"aria-label":i,labelElementType:s="label"}=t;e=rn(e);let a=rn(),u={};n&&(r=r?`${a} ${r}`:a,u={id:a,htmlFor:s==="label"?e:void 0});let c=p3({id:e,"aria-label":i,"aria-labelledby":r});return{labelProps:u,fieldProps:c}}function _4(t,e=-1/0,n=1/0){return Math.min(Math.max(t,e),n)}const zI=D.createContext(null),K$=7e3;let il=null;function Po(t,e="assertive",n=K$){il?il.announce(t,e,n):(il=new II,(typeof IS_REACT_ACT_ENVIRONMENT=="boolean"?IS_REACT_ACT_ENVIRONMENT:typeof jest<"u")?il.announce(t,e,n):setTimeout(()=>{il?.isAttached()&&il?.announce(t,e,n)},100))}class II{constructor(){this.node=null,this.assertiveLog=null,this.politeLog=null,typeof document<"u"&&(this.node=document.createElement("div"),this.node.dataset.liveAnnouncer="true",Object.assign(this.node.style,{border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"}),this.assertiveLog=this.createLog("assertive"),this.node.appendChild(this.assertiveLog),this.politeLog=this.createLog("polite"),this.node.appendChild(this.politeLog),document.body.prepend(this.node))}isAttached(){return this.node?.isConnected}createLog(e){let n=document.createElement("div");return n.setAttribute("role","log"),n.setAttribute("aria-live",e),n.setAttribute("aria-relevant","additions"),n}destroy(){this.node&&(document.body.removeChild(this.node),this.node=null)}announce(e,n="assertive",r=K$){if(!this.node)return;let i=document.createElement("div");typeof e=="object"?(i.setAttribute("role","img"),i.setAttribute("aria-labelledby",e["aria-labelledby"])):i.textContent=e,n==="assertive"?this.assertiveLog?.appendChild(i):this.politeLog?.appendChild(i),e!==""&&setTimeout(()=>{i.remove()},r)}clear(e){this.node&&((!e||e==="assertive")&&this.assertiveLog&&(this.assertiveLog.innerHTML=""),(!e||e==="polite")&&this.politeLog&&(this.politeLog.innerHTML=""))}}function j$(t,e){let{elementType:n="button",isDisabled:r,onPress:i,onPressStart:s,onPressEnd:a,onPressUp:u,onPressChange:c,preventFocusOnPress:f,allowFocusWhenDisabled:h,onClick:m,href:g,target:b,rel:v,type:C="button"}=t,E;n==="button"?E={type:C,disabled:r,form:t.form,formAction:t.formAction,formEncType:t.formEncType,formMethod:t.formMethod,formNoValidate:t.formNoValidate,formTarget:t.formTarget,name:t.name,value:t.value}:E={role:"button",href:n==="a"&&!r?g:void 0,target:n==="a"?b:void 0,type:n==="input"?C:void 0,disabled:n==="input"?r:void 0,"aria-disabled":!r||n==="input"?void 0:r,rel:n==="a"?v:void 0};let{pressProps:k,isPressed:T}=Zc({onPressStart:s,onPressEnd:a,onPressChange:c,onPress:i,onPressUp:u,onClick:m,isDisabled:r,preventFocusOnPress:f,ref:e}),{focusableProps:$}=am(t,e);h&&($.tabIndex=r?-1:$.tabIndex);let A=$e($,k,Ze(t,{labelable:!0}));return{isPressed:T,buttonProps:$e(E,A,{"aria-haspopup":t["aria-haspopup"],"aria-expanded":t["aria-expanded"],"aria-controls":t["aria-controls"],"aria-pressed":t["aria-pressed"],"aria-current":t["aria-current"],"aria-disabled":t["aria-disabled"]})}}const cm=D.createContext({}),_$=lm(function(e,n){[e,n]=Ct(e,n,cm);let r=e,{isPending:i}=r,{buttonProps:s,isPressed:a}=j$(e,n);s=KI(s,i);let{focusProps:u,isFocused:c,isFocusVisible:f}=Oi(e),{hoverProps:h,isHovered:m}=Fi({...e,isDisabled:e.isDisabled||i}),g={isHovered:m,isPressed:(r.isPressed||a)&&!i,isFocused:c,isFocusVisible:f,isDisabled:e.isDisabled||!1,isPending:i??!1},b=St({...e,values:g,defaultClassName:"react-aria-Button"}),v=rn(s.id),C=rn(),E=s["aria-labelledby"];i&&(E?E=`${E} ${C}`:s["aria-label"]&&(E=`${v} ${C}`));let k=D.useRef(i);D.useEffect(()=>{let $={"aria-labelledby":E||v};(!k.current&&c&&i||k.current&&c&&!i)&&Po($,"assertive"),k.current=i},[i,c,E,v]);let T=Ze(e,{global:!0});return delete T.onClick,V.createElement(st.button,{...$e(T,b,s,u,h),type:s.type==="submit"&&i?"button":s.type,id:v,ref:n,"aria-labelledby":E,slot:e.slot||void 0,"aria-disabled":i?"true":s["aria-disabled"],"data-disabled":e.isDisabled||void 0,"data-pressed":g.isPressed||void 0,"data-hovered":m||void 0,"data-focused":c||void 0,"data-pending":i||void 0,"data-focus-visible":f||void 0},V.createElement(zI.Provider,{value:{id:C}},b.children))}),FI=/Focus|Blur|Hover|Pointer(Enter|Leave|Over|Out)|Mouse(Enter|Leave|Over|Out)/;function KI(t,e){if(e){for(const n in t)n.startsWith("on")&&!FI.test(n)&&(t[n]=void 0);t.href=void 0,t.target=void 0}return t}const H$=D.createContext({}),jI=D.forwardRef(function(e,n){[e,n]=Ct(e,n,H$);let{children:r,level:i=3,className:s,...a}=e,u=st[`h${i}`];return V.createElement(u,{...a,ref:n,className:s??"react-aria-Heading"},r)}),C3=D.createContext({});function _I(t,e){const n=D.useRef(!0),r=D.useRef(null);let i=Nt(t);D.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[]),D.useEffect(()=>{let s=r.current;n.current?n.current=!1:(!s||e.some((a,u)=>!Object.is(a,s[u])))&&i(),r.current=e},e)}function Ks(t,e){if(!t)return!1;let n=window.getComputedStyle(t),r=document.scrollingElement||document.documentElement,i=/(auto|scroll)/.test(n.overflow+n.overflowX+n.overflowY);return t===r&&n.overflow!=="hidden"&&(i=!0),i&&e&&(i=t.scrollHeight!==t.clientHeight||t.scrollWidth!==t.clientWidth),i}function Ur(t,e){let n=t;for(Ks(n,e)&&(n=n.parentElement);n&&!Ks(n,e);)n=n.parentElement;return n||document.scrollingElement||document.documentElement}function x0(t,e){let n=[],r=document.scrollingElement||document.documentElement;for(;t&&(Ks(t,e)&&n.push(t),t!==r);)t=t.parentElement;return n}function kh(t,e,n={}){let{block:r="nearest",inline:i="nearest"}=n;if(t===e)return;let s=t.scrollTop,a=t.scrollLeft,u=e.getBoundingClientRect(),c=t.getBoundingClientRect(),f=window.getComputedStyle(e),h=window.getComputedStyle(t),m=document.scrollingElement||document.documentElement,g=t===m,b=t===m?0:c.top,v=t===m?t.clientHeight:c.bottom,C=t===m?0:c.left,E=t===m?t.clientWidth:c.right,k=parseFloat(f.scrollMarginTop)||0,T=parseFloat(f.scrollMarginBottom)||0,$=parseFloat(f.scrollMarginLeft)||0,A=parseFloat(f.scrollMarginRight)||0,B=parseFloat(h.scrollPaddingTop)||0,P=parseFloat(h.scrollPaddingBottom)||0,M=parseFloat(h.scrollPaddingLeft)||0,N=parseFloat(h.scrollPaddingRight)||0,I=parseFloat(h.borderTopWidth)||0,F=parseFloat(h.borderBottomWidth)||0,J=parseFloat(h.borderLeftWidth)||0,q=parseFloat(h.borderRightWidth)||0,ie=u.top-k,K=u.bottom+T,te=u.left-$,O=u.right+A,j=t===m?0:J+q,Y=t===m?0:I+F,Z=t===m?0:t.offsetWidth-t.clientWidth-j,H=t===m?0:t.offsetHeight-t.clientHeight-Y,L=b+(g?0:I)+B,U=v-(g?0:F)-P-H,ne=C+(g?0:J)+M,le=E-(g?0:q)-N;h.direction==="rtl"&&!Ni()?ne+=Z:le-=Z;let ue=ie<L||K>U,fe=te<ne||O>le;if(ue&&r==="start")s+=ie-L;else if(ue&&r==="center")s+=(ie+K)/2-(L+U)/2;else if(ue&&r==="end")s+=K-U;else if(ue&&r==="nearest"){let Ee=ie-L,Ve=K-U;s+=Math.abs(Ee)<=Math.abs(Ve)?Ee:Ve}if(fe&&i==="start")a+=te-ne;else if(fe&&i==="center")a+=(te+O)/2-(ne+le)/2;else if(fe&&i==="end")a+=O-le;else if(fe&&i==="nearest"){let Ee=te-ne,Ve=O-le;a+=Math.abs(Ee)<=Math.abs(Ve)?Ee:Ve}t.scrollTo({left:a,top:s})}function ys(t,e={}){let{containingElement:n}=e;if(t&&t.isConnected){let r=document.scrollingElement||document.documentElement;if(window.getComputedStyle(r).overflow==="hidden"){let{left:s,top:a}=t.getBoundingClientRect(),u=x0(t,!0);for(let h of u)kh(h,t);let{left:c,top:f}=t.getBoundingClientRect();if(Math.abs(s-c)>1||Math.abs(a-f)>1){u=n?x0(n,!0):[];for(let h of u)kh(h,n,{block:"center",inline:"center"});for(let h of x0(t,!0))kh(h,t)}}else{let{left:s,top:a}=t.getBoundingClientRect();t?.scrollIntoView?.({block:"nearest"});let{left:u,top:c}=t.getBoundingClientRect();(Math.abs(s-u)>1||Math.abs(a-c)>1)&&(n?.scrollIntoView?.({block:"center",inline:"center"}),t.scrollIntoView?.({block:"nearest"}))}}}let HI=0;const C0=new Map;function ed(t){let[e,n]=D.useState();return Le(()=>{if(!t)return;let r=C0.get(t);if(r)n(r.element.id);else{let i=`react-aria-description-${HI++}`;n(i);let s=document.createElement("div");s.id=i,s.style.display="none",s.textContent=t,document.body.appendChild(s),r={refCount:0,element:s},C0.set(t,r)}return r.refCount++,()=>{r&&--r.refCount===0&&(r.element.remove(),C0.delete(t))}},[t]),{"aria-describedby":t?e:void 0}}const o5={border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"};function dm(t={}){let{style:e,isFocusable:n}=t,[r,i]=D.useState(!1),{focusWithinProps:s}=v3({isDisabled:!n,onFocusWithinChange:u=>i(u)}),a=D.useMemo(()=>r?e:e?{...o5,...e}:o5,[r]);return{visuallyHiddenProps:{...s,style:a}}}function VI(t){let{children:e,elementType:n="div",isFocusable:r,style:i,...s}=t,{visuallyHiddenProps:a}=dm(t);return V.createElement(n,$e(s,a),e)}const UI=D.createContext(null),V$={badInput:!1,customError:!1,patternMismatch:!1,rangeOverflow:!1,rangeUnderflow:!1,stepMismatch:!1,tooLong:!1,tooShort:!1,typeMismatch:!1,valueMissing:!1,valid:!0},U$={...V$,customError:!0,valid:!1},Iu={isInvalid:!1,validationDetails:V$,validationErrors:[]},qI=D.createContext({}),a5="__reactAriaFormValidationState";function GI(t){if(t[a5]){let{realtimeValidation:e,displayValidation:n,updateValidation:r,resetValidation:i,commitValidation:s}=t[a5];return{realtimeValidation:e,displayValidation:n,updateValidation:r,resetValidation:i,commitValidation:s}}return WI(t)}function WI(t){let{isInvalid:e,validationState:n,name:r,value:i,builtinValidation:s,validate:a,validationBehavior:u="aria"}=t;n&&(e||=n==="invalid");let c=e!==void 0?{isInvalid:e,validationErrors:[],validationDetails:U$}:null,f=D.useMemo(()=>{if(!a||i==null)return null;let F=QI(a,i);return l5(F)},[a,i]);s?.validationDetails.valid&&(s=void 0);let h=D.useContext(qI),m=D.useMemo(()=>r?Array.isArray(r)?r.flatMap(F=>H4(h[F])):H4(h[r]):[],[h,r]),[g,b]=D.useState(h),[v,C]=D.useState(!1);h!==g&&(b(h),C(!1));let E=D.useMemo(()=>l5(v?[]:m),[v,m]),k=D.useRef(Iu),[T,$]=D.useState(Iu),A=D.useRef(Iu),B=()=>{if(!P)return;M(!1);let F=f||s||k.current;E0(F,A.current)||(A.current=F,$(F))},[P,M]=D.useState(!1);return D.useEffect(B),{realtimeValidation:c||E||f||s||Iu,displayValidation:u==="native"?c||E||T:c||E||f||s||T,updateValidation(F){u==="aria"&&!E0(T,F)?$(F):k.current=F},resetValidation(){let F=Iu;E0(F,A.current)||(A.current=F,$(F)),u==="native"&&M(!1),C(!0)},commitValidation(){u==="native"&&M(!0),C(!0)}}}function H4(t){return t?Array.isArray(t)?t:[t]:[]}function QI(t,e){if(typeof t=="function"){let n=t(e);if(n&&typeof n!="boolean")return H4(n)}return[]}function l5(t){return t.length?{isInvalid:!0,validationErrors:t,validationDetails:U$}:null}function E0(t,e){return t===e?!0:!!t&&!!e&&t.isInvalid===e.isInvalid&&t.validationErrors.length===e.validationErrors.length&&t.validationErrors.every((n,r)=>n===e.validationErrors[r])&&Object.entries(t.validationDetails).every(([n,r])=>e.validationDetails[n]===r)}const YI=D.createContext(null);function XI(t){let{description:e,errorMessage:n,isInvalid:r,validationState:i}=t,{labelProps:s,fieldProps:a}=LI(t),u=Uo([!!e,!!n,r,i]),c=Uo([!!e,!!n,r,i]);return a=$e(a,{"aria-describedby":[u,c,t["aria-describedby"]].filter(Boolean).join(" ")||void 0}),{labelProps:s,fieldProps:a,descriptionProps:{id:u},errorMessageProps:{id:c}}}function JI(t,e,n){let r=Nt(i=>{n&&!i.defaultPrevented&&n(e)});D.useEffect(()=>{let i=t?.current?.form;return i?.addEventListener("reset",r),()=>{i?.removeEventListener("reset",r)}},[t])}function ZI(t,e,n){let{validationBehavior:r,focus:i}=t;Le(()=>{if(r==="native"&&n?.current&&"setCustomValidity"in n.current&&!n.current.disabled){let f=e.realtimeValidation.isInvalid?e.realtimeValidation.validationErrors.join(" ")||"Invalid value.":"";n.current.setCustomValidity(f),n.current.hasAttribute("title")||(n.current.title=""),e.realtimeValidation.isInvalid||e.updateValidation(tF(n.current))}});let s=D.useRef(!1),a=Nt(()=>{s.current||e.resetValidation()}),u=Nt(f=>{e.displayValidation.isInvalid||e.commitValidation();let h=n?.current?.form;!f.defaultPrevented&&n&&h&&nF(h)===n.current&&(i?i():n.current?.focus(),No("keyboard")),f.preventDefault()}),c=Nt(()=>{e.commitValidation()});D.useEffect(()=>{let f=n?.current;if(!f)return;let h=f.form,m=h?.reset;return h&&(h.reset=()=>{s.current=!window.event||window.event.type==="message"&&de(window.event)instanceof MessagePort,m?.call(h),s.current=!1}),f.addEventListener("invalid",u),f.addEventListener("change",c),h?.addEventListener("reset",a),()=>{f.removeEventListener("invalid",u),f.removeEventListener("change",c),h?.removeEventListener("reset",a),h&&(h.reset=m)}},[n,r])}function eF(t){let e=t.validity;return{badInput:e.badInput,customError:e.customError,patternMismatch:e.patternMismatch,rangeOverflow:e.rangeOverflow,rangeUnderflow:e.rangeUnderflow,stepMismatch:e.stepMismatch,tooLong:e.tooLong,tooShort:e.tooShort,typeMismatch:e.typeMismatch,valueMissing:e.valueMissing,valid:e.valid}}function tF(t){return{isInvalid:!t.validity.valid,validationDetails:eF(t),validationErrors:t.validationMessage?[t.validationMessage]:[]}}function nF(t){for(let e=0;e<t.elements.length;e++){let n=t.elements[e];if(n.validity?.valid===!1)return n}return null}function rF(t={}){let{isReadOnly:e}=t,[n,r]=Ys(t.isSelected,t.defaultSelected||!1,t.onChange),[i]=D.useState(n);function s(u){e||r(u)}function a(){e||r(!n)}return{isSelected:n,defaultSelected:t.defaultSelected??i,setSelected:s,toggle:a}}const iF=D.createContext(null),sF=D.createContext(null),q$=D.createContext({}),oF=D.forwardRef(function(e,n){[e,n]=Ct(e,n,q$);let{isDisabled:r,isInvalid:i,isReadOnly:s,onHoverStart:a,onHoverChange:u,onHoverEnd:c,...f}=e;r??=!!e["aria-disabled"]&&e["aria-disabled"]!=="false",i??=!!e["aria-invalid"]&&e["aria-invalid"]!=="false";let{hoverProps:h,isHovered:m}=Fi({onHoverStart:a,onHoverChange:u,onHoverEnd:c,isDisabled:r}),{isFocused:g,isFocusVisible:b,focusProps:v}=Oi({within:!0}),C=St({...e,values:{isHovered:m,isFocusWithin:g,isFocusVisible:b,isDisabled:r,isInvalid:i},defaultClassName:"react-aria-Group"});return V.createElement(st.div,{...$e(f,v,h),...C,ref:n,role:e.role??"group",slot:e.slot??void 0,"data-focus-within":g||void 0,"data-hovered":m||void 0,"data-focus-visible":b||void 0,"data-disabled":r||void 0,"data-invalid":i||void 0,"data-readonly":s||void 0},C.children)}),G$=D.createContext({});let aF=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:r,...i}=t;return i};const W$=lm(function(e,n){[e,n]=Ct(e,n,G$);let{hoverProps:r,isHovered:i}=Fi({...e,isDisabled:e.disabled}),{isFocused:s,isFocusVisible:a,focusProps:u}=Oi({isTextInput:!0,autoFocus:e.autoFocus}),c=!!e["aria-invalid"]&&e["aria-invalid"]!=="false",f=St({...e,values:{isHovered:i,isFocused:s,isFocusVisible:a,isDisabled:e.disabled||!1,isInvalid:c},defaultClassName:"react-aria-Input"});return V.createElement(st.input,{...$e(aF(e),u,r),...f,ref:n,"data-focused":s||void 0,"data-disabled":e.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":a||void 0,"data-invalid":c||void 0})});function lF(t,e){let{inputElementType:n="input",isDisabled:r=!1,isRequired:i=!1,isReadOnly:s=!1,type:a="text",validationBehavior:u="aria"}=t,[c,f]=Ys(t.value,t.defaultValue||"",t.onChange),{focusableProps:h}=am(t,e),m=GI({...t,value:c}),{isInvalid:g,validationErrors:b,validationDetails:v}=m.displayValidation,{labelProps:C,fieldProps:E,descriptionProps:k,errorMessageProps:T}=XI({...t,isInvalid:g,errorMessage:t.errorMessage||b}),$=Ze(t,{labelable:!0});const A={type:a,pattern:t.pattern};let[B]=D.useState(c);return JI(e,t.defaultValue??B,f),ZI(t,m,e),{labelProps:C,inputProps:$e($,n==="input"?A:void 0,{disabled:r,readOnly:s,required:i&&u==="native","aria-required":i&&u==="aria"||void 0,"aria-invalid":g||void 0,"aria-errormessage":t["aria-errormessage"],"aria-activedescendant":t["aria-activedescendant"],"aria-autocomplete":t["aria-autocomplete"],"aria-haspopup":t["aria-haspopup"],"aria-controls":t["aria-controls"],value:c,onChange:P=>f(de(P).value),autoComplete:t.autoComplete,autoCapitalize:t.autoCapitalize,maxLength:t.maxLength,minLength:t.minLength,name:t.name,form:t.form,placeholder:t.placeholder,inputMode:t.inputMode,autoCorrect:t.autoCorrect,spellCheck:t.spellCheck,[parseInt(V.version,10)>=17?"enterKeyHint":"enterkeyhint"]:t.enterKeyHint,onCopy:t.onCopy,onCut:t.onCut,onPaste:t.onPaste,onCompositionEnd:t.onCompositionEnd,onCompositionStart:t.onCompositionStart,onCompositionUpdate:t.onCompositionUpdate,onSelect:t.onSelect,onBeforeInput:t.onBeforeInput,onInput:t.onInput,...h,...E}),descriptionProps:k,errorMessageProps:T,isInvalid:g,validationErrors:b,validationDetails:v}}const fm=D.createContext({}),Q$=D.createContext(null),Y$=D.forwardRef(function(e,n){let{render:r}=D.useContext(Q$);return V.createElement(V.Fragment,null,r(e,n))});function uF(t,e){let n=t?.renderDropIndicator,r=t?.isVirtualDragging?.(),i=D.useCallback(s=>{if(r||e?.isDropTarget(s))return n?n(s):V.createElement(Y$,{target:s})},[e?.target,r,n]);return t?.useDropIndicator?i:void 0}function cF(t,e,n){let r=t.focusedKey,i=null;if(e?.isVirtualDragging?.()&&n?.target?.type==="item"&&(i=n.target.key,n.target.dropPosition==="after")){let s=n.collection.getKeyAfter(i),a=null;if(s!=null){let u=n.collection.getItem(i)?.level??0;for(;s!=null;){let c=n.collection.getItem(s);if(!c)break;if(c.type!=="item"){s=n.collection.getKeyAfter(s);continue}if((c.level??0)<=u)break;a=s,s=n.collection.getKeyAfter(s)}}i=s??a??i}return D.useMemo(()=>new Set([r,i].filter(s=>s!=null)),[r,i])}const X$=D.createContext({}),dF=ua(N4,function(e,n){return[e,n]=Ct(e,n,X$),V.createElement(st.header,{className:"react-aria-Header",...e,ref:n},e.children)}),fF=D.createContext(null);function E3(t){let e=D.useRef({});return V.createElement(fF.Provider,{value:e},t.children)}const k3=D.createContext({isSelected:!1});function hF(t){let e=Ze(t,{labelable:!0}),n;return t.orientation==="vertical"&&(n="vertical"),t.elementType!=="hr"?{separatorProps:{...e,role:"separator","aria-orientation":n}}:{separatorProps:e}}const J$=D.createContext({}),Y1=class Y1 extends la{filter(e,n){let r=n.getItem(this.prevKey);if(r&&r.type!=="separator"){let i=this.clone();return n.addDescendants(i,e),i}return null}};Y1.type="separator";let V4=Y1;const pF=ua(V4,function(e,n){[e,n]=Ct(e,n,J$);let{elementType:r,orientation:i,style:s,className:a,slot:u,...c}=e,f=r||"hr";f==="hr"&&i==="vertical"&&(f="div");let h=st[f],{separatorProps:m}=hF({...c,elementType:r,orientation:i}),g=Ze(e,{global:!0});return V.createElement(h,{render:e.render,...$e(g,m),style:s,className:a??"react-aria-Separator",ref:n,slot:u||void 0})});class mF{constructor(e,n,r,i){this._walkerStack=[],this._currentSetFor=new Set,this._acceptNode=a=>{if(a.nodeType===Node.ELEMENT_NODE){const u=a.shadowRoot;if(u){const c=this._doc.createTreeWalker(u,this.whatToShow,{acceptNode:this._acceptNode});return this._walkerStack.unshift(c),NodeFilter.FILTER_ACCEPT}else{if(typeof this.filter=="function")return this.filter(a);if(this.filter?.acceptNode)return this.filter.acceptNode(a);if(this.filter===null)return NodeFilter.FILTER_ACCEPT}}return NodeFilter.FILTER_SKIP},this._doc=e,this.root=n,this.filter=i??null,this.whatToShow=r??NodeFilter.SHOW_ALL,this._currentNode=n,this._walkerStack.unshift(e.createTreeWalker(n,r,this._acceptNode));const s=n.shadowRoot;if(s){const a=this._doc.createTreeWalker(s,this.whatToShow,{acceptNode:this._acceptNode});this._walkerStack.unshift(a)}}get currentNode(){return this._currentNode}set currentNode(e){if(!we(this.root,e))throw new Error("Cannot set currentNode to a node that is not contained by the root node.");const n=[];let r=e,i=e;for(this._currentNode=e;r&&r!==this.root;)if(r.nodeType===Node.DOCUMENT_FRAGMENT_NODE){const a=r,u=this._doc.createTreeWalker(a,this.whatToShow,{acceptNode:this._acceptNode});n.push(u),u.currentNode=i,this._currentSetFor.add(u),r=i=a.host}else r=r.parentNode;const s=this._doc.createTreeWalker(this.root,this.whatToShow,{acceptNode:this._acceptNode});n.push(s),s.currentNode=i,this._currentSetFor.add(s),this._walkerStack=n}get doc(){return this._doc}firstChild(){let e=this.currentNode,n=this.nextNode();return we(e,n)?(n&&(this.currentNode=n),n):(this.currentNode=e,null)}lastChild(){let n=this._walkerStack[0].lastChild();return n&&(this.currentNode=n),n}nextNode(){const e=this._walkerStack[0].nextNode();if(e){if(e.shadowRoot){let r;if(typeof this.filter=="function"?r=this.filter(e):this.filter?.acceptNode&&(r=this.filter.acceptNode(e)),r===NodeFilter.FILTER_ACCEPT)return this.currentNode=e,e;let i=this.nextNode();return i&&(this.currentNode=i),i}return e&&(this.currentNode=e),e}else if(this._walkerStack.length>1){this._walkerStack.shift();let n=this.nextNode();return n&&(this.currentNode=n),n}else return null}previousNode(){const e=this._walkerStack[0];if(e.currentNode===e.root){if(this._currentSetFor.has(e))if(this._currentSetFor.delete(e),this._walkerStack.length>1){this._walkerStack.shift();let r=this.previousNode();return r&&(this.currentNode=r),r}else return null;return null}const n=e.previousNode();if(n){if(n.shadowRoot){let i;if(typeof this.filter=="function"?i=this.filter(n):this.filter?.acceptNode&&(i=this.filter.acceptNode(n)),i===NodeFilter.FILTER_ACCEPT)return n&&(this.currentNode=n),n;let s=this.lastChild();return s&&(this.currentNode=s),s}return n&&(this.currentNode=n),n}else if(this._walkerStack.length>1){this._walkerStack.shift();let r=this.previousNode();return r&&(this.currentNode=r),r}else return null}nextSibling(){return null}previousSibling(){return null}parentNode(){return null}}function Z$(t,e,n,r){return Di()?new mF(t,e,n,r):t.createTreeWalker(e,n,r)}const u5=V.createContext(null),U4="react-aria-focus-scope-restore";let at=null;function D3(t){let{children:e,contain:n,restoreFocus:r,autoFocus:i}=t,s=D.useRef(null),a=D.useRef(null),u=D.useRef([]),{parentNode:c}=D.useContext(u5)||{},f=D.useMemo(()=>new G4({scopeRef:u}),[u]);Le(()=>{let g=c||Bt.root;if(Bt.getTreeNode(g.scopeRef)&&at&&!Wh(at,g.scopeRef)){let b=Bt.getTreeNode(at);b&&(g=b)}g.addChild(f),Bt.addNode(f)},[f,c]),Le(()=>{let g=Bt.getTreeNode(u);g&&(g.contain=!!n)},[n]),Le(()=>{let g=s.current?.nextSibling,b=[],v=C=>C.stopPropagation();for(;g&&g!==a.current;)b.push(g),g.addEventListener(U4,v),g=g.nextSibling;return u.current=b,()=>{for(let C of b)C.removeEventListener(U4,v)}},[e]),EF(u,r,n),vF(u,n),kF(u,r,n),CF(u,i),D.useEffect(()=>{const g=je(ze(u.current?u.current[0]:void 0));let b=null;if(pr(g,u.current)){for(let v of Bt.traverse())v.scopeRef&&pr(g,v.scopeRef.current)&&(b=v);b===Bt.getTreeNode(u)&&(at=b.scopeRef)}},[u]),Le(()=>()=>{let g=Bt.getTreeNode(u)?.parent?.scopeRef??null;(u===at||Wh(u,at))&&(!g||Bt.getTreeNode(g))&&(at=g),Bt.removeTreeNode(u)},[u]);let h=D.useMemo(()=>gF(u),[]),m=D.useMemo(()=>({focusManager:h,parentNode:f}),[f,h]);return V.createElement(u5.Provider,{value:m},V.createElement("span",{"data-focus-scope-start":!0,hidden:!0,ref:s}),e,V.createElement("span",{"data-focus-scope-end":!0,hidden:!0,ref:a}))}function gF(t){return{focusNext(e={}){let n=t.current,{from:r,tabbable:i,wrap:s,accept:a}=e,u=r||je(ze(n[0]??void 0)),c=n[0].previousElementSibling,f=Oo(n),h=un(f,{tabbable:i,accept:a},n);h.currentNode=pr(u,n)?u:c;let m=h.nextNode();return!m&&s&&(h.currentNode=c,m=h.nextNode()),m&&On(m,!0),m},focusPrevious(e={}){let n=t.current,{from:r,tabbable:i,wrap:s,accept:a}=e,u=r||je(ze(n[0]??void 0)),c=n[n.length-1].nextElementSibling,f=Oo(n),h=un(f,{tabbable:i,accept:a},n);h.currentNode=pr(u,n)?u:c;let m=h.previousNode();return!m&&s&&(h.currentNode=c,m=h.previousNode()),m&&On(m,!0),m},focusFirst(e={}){let n=t.current,{tabbable:r,accept:i}=e,s=Oo(n),a=un(s,{tabbable:r,accept:i},n);a.currentNode=n[0].previousElementSibling;let u=a.nextNode();return u&&On(u,!0),u},focusLast(e={}){let n=t.current,{tabbable:r,accept:i}=e,s=Oo(n),a=un(s,{tabbable:r,accept:i},n);a.currentNode=n[n.length-1].nextElementSibling;let u=a.previousNode();return u&&On(u,!0),u}}}function Oo(t){return t[0].parentElement}function Xu(t){let e=Bt.getTreeNode(at);for(;e&&e.scopeRef!==t;){if(e.contain)return!1;e=e.parent}return!0}function bF(t){if(!t.form)return Array.from(ze(t).querySelectorAll(`input[type="radio"][name="${CSS.escape(t.name)}"]`)).filter(r=>!r.form);const e=t.form.elements.namedItem(t.name);let n=fn(t);return e instanceof n.RadioNodeList?Array.from(e).filter(r=>r instanceof n.HTMLInputElement):e instanceof n.HTMLInputElement?[e]:[]}function yF(t){if(t.checked)return!0;const e=bF(t);return e.length>0&&!e.some(n=>n.checked)}function vF(t,e){let n=D.useRef(void 0),r=D.useRef(void 0);Le(()=>{let i=t.current;if(!e){r.current&&(cancelAnimationFrame(r.current),r.current=void 0);return}const s=ze(i?i[0]:void 0);let a=f=>{if(f.key!=="Tab"||f.altKey||f.ctrlKey||f.metaKey||!Xu(t)||f.isComposing)return;let h=je(s),m=t.current;if(!m||!pr(h,m))return;let g=Oo(m),b=un(g,{tabbable:!0},m);if(!h)return;b.currentNode=h;let v=f.shiftKey?b.previousNode():b.nextNode();v||(b.currentNode=f.shiftKey?m[m.length-1].nextElementSibling:m[0].previousElementSibling,v=f.shiftKey?b.previousNode():b.nextNode()),f.preventDefault(),v&&(On(v,!0),v instanceof fn(v).HTMLInputElement&&v.select())},u=f=>{(!at||Wh(at,t))&&pr(de(f),t.current)?(at=t,n.current=de(f)):Xu(t)&&!$s(de(f),t)?n.current?n.current.focus():at&&at.current&&q4(at.current):Xu(t)&&(n.current=de(f))},c=f=>{r.current&&cancelAnimationFrame(r.current),r.current=requestAnimationFrame(()=>{let h=ta(),m=(h==="virtual"||h===null)&&nm()&&QS(),g=je(s);if(!m&&g&&Xu(t)&&!$s(g,t)){at=t;let b=de(f);b&&b.isConnected?(n.current=b,n.current?.focus()):at.current&&q4(at.current)}})};return s.addEventListener("keydown",a,!1),s.addEventListener("focusin",u,!1),i?.forEach(f=>f.addEventListener("focusin",u,!1)),i?.forEach(f=>f.addEventListener("focusout",c,!1)),()=>{s.removeEventListener("keydown",a,!1),s.removeEventListener("focusin",u,!1),i?.forEach(f=>f.removeEventListener("focusin",u,!1)),i?.forEach(f=>f.removeEventListener("focusout",c,!1))}},[t,e]),Le(()=>()=>{r.current&&cancelAnimationFrame(r.current)},[r])}function e6(t){return $s(t)}function pr(t,e){return!t||!e?!1:e.some(n=>we(n,t))}function $s(t,e=null){if(t instanceof Element&&t.closest("[data-react-aria-top-layer]"))return!0;for(let{scopeRef:n}of Bt.traverse(Bt.getTreeNode(e)))if(n&&pr(t,n.current))return!0;return!1}function xF(t){return $s(t,at)}function Wh(t,e){let n=Bt.getTreeNode(e)?.parent;for(;n;){if(n.scopeRef===t)return!0;n=n.parent}return!1}function On(t,e=!1){if(t!=null&&!e)try{bn(t)}catch{}else if(t!=null)try{t.focus()}catch{}}function t6(t,e=!0){let n=t[0].previousElementSibling,r=Oo(t),i=un(r,{tabbable:e},t);i.currentNode=n;let s=i.nextNode();return e&&!s&&(r=Oo(t),i=un(r,{tabbable:!1},t),i.currentNode=n,s=i.nextNode()),s}function q4(t,e=!0){On(t6(t,e))}function CF(t,e){const n=V.useRef(e);D.useEffect(()=>{if(n.current){at=t;const r=ze(t.current?t.current[0]:void 0);!pr(je(r),at.current)&&t.current&&q4(t.current)}n.current=!1},[t])}function EF(t,e,n){Le(()=>{if(e||n)return;let r=t.current;const i=ze(r?r[0]:void 0);let s=a=>{let u=de(a);pr(u,t.current)?at=t:e6(u)||(at=null)};return i.addEventListener("focusin",s,!1),r?.forEach(a=>a.addEventListener("focusin",s,!1)),()=>{i.removeEventListener("focusin",s,!1),r?.forEach(a=>a.removeEventListener("focusin",s,!1))}},[t,e,n])}function c5(t){let e=Bt.getTreeNode(at);for(;e&&e.scopeRef!==t;){if(e.nodeToRestore)return!1;e=e.parent}return e?.scopeRef===t}function kF(t,e,n){const r=D.useRef(typeof document<"u"?je(ze(t.current?t.current[0]:void 0)):null);Le(()=>{let i=t.current;const s=ze(i?i[0]:void 0);if(!e||n)return;let a=()=>{(!at||Wh(at,t))&&pr(je(s),t.current)&&(at=t)};return s.addEventListener("focusin",a,!1),i?.forEach(u=>u.addEventListener("focusin",a,!1)),()=>{s.removeEventListener("focusin",a,!1),i?.forEach(u=>u.removeEventListener("focusin",a,!1))}},[t,n]),Le(()=>{const i=ze(t.current?t.current[0]:void 0);if(!e)return;let s=a=>{if(a.key!=="Tab"||a.altKey||a.ctrlKey||a.metaKey||!Xu(t)||a.isComposing)return;let u=i.activeElement;if(!$s(u,t)||!c5(t))return;let c=Bt.getTreeNode(t);if(!c)return;let f=c.nodeToRestore,h=un(i.body,{tabbable:!0});h.currentNode=u;let m=a.shiftKey?h.previousNode():h.nextNode();if((!f||!f.isConnected||f===i.body)&&(f=void 0,c.nodeToRestore=void 0),(!m||!$s(m,t))&&f){h.currentNode=f;do m=a.shiftKey?h.previousNode():h.nextNode();while($s(m,t));a.preventDefault(),a.stopPropagation(),m?On(m,!0):e6(f)?On(f,!0):u.blur()}};return n||i.addEventListener("keydown",s,!0),()=>{n||i.removeEventListener("keydown",s,!0)}},[t,e,n]),Le(()=>{const i=ze(t.current?t.current[0]:void 0);if(!e)return;let s=Bt.getTreeNode(t);if(s)return s.nodeToRestore=r.current??void 0,()=>{let a=Bt.getTreeNode(t);if(!a)return;let u=a.nodeToRestore,c=je(i);if(e&&u&&(c&&$s(c,t)||c===i.body&&c5(t))){let f=Bt.clone();requestAnimationFrame(()=>{if(i.activeElement===i.body){let h=f.getTreeNode(t);for(;h;){if(h.nodeToRestore&&h.nodeToRestore.isConnected){d5(h.nodeToRestore);return}h=h.parent}for(h=f.getTreeNode(t);h;){if(h.scopeRef&&h.scopeRef.current&&Bt.getTreeNode(h.scopeRef)){let m=t6(h.scopeRef.current,!0);d5(m);return}h=h.parent}}})}}},[t,e])}function d5(t){t.dispatchEvent(new CustomEvent(U4,{bubbles:!0,cancelable:!0}))&&On(t)}function un(t,e,n){let r=e?.tabbable?jh:US,i=t?.nodeType===Node.ELEMENT_NODE?t:null,s=ze(i),a=Z$(s,t||s,NodeFilter.SHOW_ELEMENT,{acceptNode(u){return we(e?.from,u)||e?.tabbable&&u.tagName==="INPUT"&&u.getAttribute("type")==="radio"&&(!yF(u)||a.currentNode.tagName==="INPUT"&&a.currentNode.type==="radio"&&a.currentNode.name===u.name)?NodeFilter.FILTER_REJECT:r(u)&&(!n||pr(u,n))&&(!e?.accept||e.accept(u))?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});return e?.from&&(a.currentNode=e.from),a}function DF(t,e={}){return{focusNext(n={}){let r=t.current;if(!r)return null;let{from:i,tabbable:s=e.tabbable,wrap:a=e.wrap,accept:u=e.accept}=n,c=i||je(ze(r)),f=un(r,{tabbable:s,accept:u});we(r,c)&&(f.currentNode=c);let h=f.nextNode();return!h&&a&&(f.currentNode=r,h=f.nextNode()),h&&On(h,!0),h},focusPrevious(n=e){let r=t.current;if(!r)return null;let{from:i,tabbable:s=e.tabbable,wrap:a=e.wrap,accept:u=e.accept}=n,c=i||je(ze(r)),f=un(r,{tabbable:s,accept:u});if(we(r,c))f.currentNode=c;else{let m=k0(f);return m&&On(m,!0),m??null}let h=f.previousNode();if(!h&&a){f.currentNode=r;let m=k0(f);if(!m)return null;h=m}return h&&On(h,!0),h??null},focusFirst(n=e){let r=t.current;if(!r)return null;let{tabbable:i=e.tabbable,accept:s=e.accept}=n,u=un(r,{tabbable:i,accept:s}).nextNode();return u&&On(u,!0),u},focusLast(n=e){let r=t.current;if(!r)return null;let{tabbable:i=e.tabbable,accept:s=e.accept}=n,a=un(r,{tabbable:i,accept:s}),u=k0(a);return u&&On(u,!0),u??null}}}function k0(t){let e,n;do n=t.lastChild(),n&&(e=n);while(n);return e}class S3{constructor(){this.fastMap=new Map,this.root=new G4({scopeRef:null}),this.fastMap.set(null,this.root)}get size(){return this.fastMap.size}getTreeNode(e){return this.fastMap.get(e)}addTreeNode(e,n,r){let i=this.fastMap.get(n??null);if(!i)return;let s=new G4({scopeRef:e});i.addChild(s),s.parent=i,this.fastMap.set(e,s),r&&(s.nodeToRestore=r)}addNode(e){this.fastMap.set(e.scopeRef,e)}removeTreeNode(e){if(e===null)return;let n=this.fastMap.get(e);if(!n)return;let r=n.parent;for(let s of this.traverse())s!==n&&n.nodeToRestore&&s.nodeToRestore&&n.scopeRef&&n.scopeRef.current&&pr(s.nodeToRestore,n.scopeRef.current)&&(s.nodeToRestore=n.nodeToRestore);let i=n.children;r&&(r.removeChild(n),i.size>0&&i.forEach(s=>r&&r.addChild(s))),this.fastMap.delete(n.scopeRef)}*traverse(e=this.root){if(e.scopeRef!=null&&(yield e),e.children.size>0)for(let n of e.children)yield*this.traverse(n)}clone(){let e=new S3;for(let n of this.traverse())e.addTreeNode(n.scopeRef,n.parent?.scopeRef??null,n.nodeToRestore);return e}}class G4{constructor(e){this.children=new Set,this.contain=!1,this.scopeRef=e.scopeRef}addChild(e){this.children.add(e),e.parent=this}removeChild(e){this.children.delete(e),e.parent=void 0}}let Bt=new S3;function W4(t){return Dz()?t.altKey:t.ctrlKey}function qo(t,e){let n=`[data-key="${CSS.escape(String(e))}"]`,r=t.current?.dataset.collection;return r&&(n=`[data-collection="${CSS.escape(r)}"]${n}`),t.current?.querySelector(n)}const n6=new WeakMap;function SF(t){let e=rn();return n6.set(t,e),e}function wF(t){return n6.get(t)}const f5=1e3;function $F(t){let{keyboardDelegate:e,selectionManager:n,onTypeSelect:r}=t,i=D.useRef({search:"",timeout:void 0}),s=u=>{if(i.current.search.length>0&&u.key===" "){if(u.preventDefault(),(!("continuePropagation"in u)||"continuePropagation"in u&&!u.isPropagationStopped())&&u.stopPropagation(),i.current.search+=" ",e.getKeyForSearch!=null){let c=e.getKeyForSearch(i.current.search,n.focusedKey);c==null&&(c=e.getKeyForSearch(i.current.search)),c!=null&&(n.setFocusedKey(c),r&&r(c))}clearTimeout(i.current.timeout),i.current.timeout=setTimeout(()=>{i.current.search=""},f5)}},a=u=>{let c=TF(u.key);if(!(!c||u.ctrlKey||u.metaKey||u.altKey||!we(u.currentTarget,de(u))||i.current.search.length===0&&c===" ")){if(i.current.search+=c,e.getKeyForSearch!=null){let f=e.getKeyForSearch(i.current.search,n.focusedKey);if(f==null&&(f=e.getKeyForSearch(i.current.search)),f!=null)n.setFocusedKey(f),r&&r(f),u.preventDefault(),"continuePropagation"in u||u.stopPropagation();else{i.current.search="",clearTimeout(i.current.timeout),i.current.timeout=void 0;return}}clearTimeout(i.current.timeout),i.current.timeout=setTimeout(()=>{i.current.search=""},f5)}};return D.useEffect(()=>{let u=i.current.timeout;return()=>{clearTimeout(u)}},[i]),{typeSelectProps:{onKeyDownCapture:e.getKeyForSearch?s:void 0,onKeyDown:e.getKeyForSearch?a:void 0}}}function TF(t){return t.length===1||!/^[A-Z]/i.test(t)?t:""}function h5(t,e){const n=D.useRef(!0),r=D.useRef(null);Le(()=>(n.current=!0,()=>{n.current=!1}),[]),Le(()=>{n.current?n.current=!1:(!r.current||e.some((i,s)=>!Object.is(i,r[s])))&&t(),r.current=e},e)}function AF(t){let{selectionManager:e,keyboardDelegate:n,ref:r,autoFocus:i=!1,shouldFocusWrap:s=!1,disallowEmptySelection:a=!1,disallowSelectAll:u=!1,escapeKeyBehavior:c="clearSelection",selectOnFocus:f=e.selectionBehavior==="replace",disallowTypeAhead:h=!1,shouldUseVirtualFocus:m,allowsTabNavigation:g=!1,scrollRef:b=r,linkBehavior:v="action",UNSTABLE_focusOnEntry:C}=t,{direction:E}=Ii(),k=Ll(),T=O=>{if(O.altKey&&O.key==="Tab"&&O.preventDefault(),!r.current||!we(r.current,de(O)))return;const j=(Y,Z)=>{if(Y!=null){if(e.isLink(Y)&&v==="selection"&&f&&!W4(O)){aa.flushSync(()=>{e.setFocusedKey(Y,Z)});let H=qo(r,Y),L=e.getItemProps(Y);H&&k.open(H,O,L.href,L.routerOptions);return}if(e.setFocusedKey(Y,Z),e.isLink(Y)&&v==="override")return;O.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(Y):f&&!W4(O)&&e.replaceSelection(Y)}};switch(O.key){case"ArrowDown":if(n.getKeyBelow){let Y=e.focusedKey!=null?n.getKeyBelow?.(e.focusedKey):n.getFirstKey?.();Y==null&&s&&(Y=n.getFirstKey?.(e.focusedKey)),Y!=null&&(O.preventDefault(),j(Y))}break;case"ArrowUp":if(n.getKeyAbove){let Y=e.focusedKey!=null?n.getKeyAbove?.(e.focusedKey):n.getLastKey?.();Y==null&&s&&(Y=n.getLastKey?.(e.focusedKey)),Y!=null&&(O.preventDefault(),j(Y))}break;case"ArrowLeft":if(n.getKeyLeftOf){let Y=e.focusedKey!=null?n.getKeyLeftOf?.(e.focusedKey):n.getFirstKey?.();Y==null&&s&&(Y=E==="rtl"?n.getFirstKey?.(e.focusedKey):n.getLastKey?.(e.focusedKey)),Y!=null&&(O.preventDefault(),j(Y,E==="rtl"?"first":"last"))}break;case"ArrowRight":if(n.getKeyRightOf){let Y=e.focusedKey!=null?n.getKeyRightOf?.(e.focusedKey):n.getFirstKey?.();Y==null&&s&&(Y=E==="rtl"?n.getLastKey?.(e.focusedKey):n.getFirstKey?.(e.focusedKey)),Y!=null&&(O.preventDefault(),j(Y,E==="rtl"?"last":"first"))}break;case"Home":if(n.getFirstKey){if(e.focusedKey===null&&O.shiftKey)return;O.preventDefault();let Y=n.getFirstKey(e.focusedKey,wo(O));e.setFocusedKey(Y),Y!=null&&(wo(O)&&O.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(Y):f&&e.replaceSelection(Y))}break;case"End":if(n.getLastKey){if(e.focusedKey===null&&O.shiftKey)return;O.preventDefault();let Y=n.getLastKey(e.focusedKey,wo(O));e.setFocusedKey(Y),Y!=null&&(wo(O)&&O.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(Y):f&&e.replaceSelection(Y))}break;case"PageDown":if(n.getKeyPageBelow&&e.focusedKey!=null){let Y=n.getKeyPageBelow(e.focusedKey);Y!=null&&(O.preventDefault(),j(Y))}break;case"PageUp":if(n.getKeyPageAbove&&e.focusedKey!=null){let Y=n.getKeyPageAbove(e.focusedKey);Y!=null&&(O.preventDefault(),j(Y))}break;case"a":wo(O)&&e.selectionMode==="multiple"&&u!==!0&&(O.preventDefault(),e.selectAll());break;case"Escape":c==="clearSelection"&&!a&&e.selectedKeys.size!==0&&(O.stopPropagation(),O.preventDefault(),e.clearSelection());break;case"Tab":if(!g){if(O.shiftKey)r.current.focus();else{let Y=un(r.current,{tabbable:!0}),Z,H;do H=Y.lastChild(),H&&(Z=H);while(H);let L=je();Z&&(!kl(Z)||L&&!jh(L))&&Ar(Z)}break}}},$=D.useRef({top:0,left:0});Qu(b,"scroll",()=>{$.current={top:b.current?.scrollTop??0,left:b.current?.scrollLeft??0}});let A=O=>{if(e.isFocused){we(O.currentTarget,de(O))||e.setFocused(!1);return}if(!we(O.currentTarget,de(O)))return;let j=ta();e.setFocused(!0);let Y=Z=>{Z!=null&&(e.setFocusedKey(Z),f&&!e.isSelected(Z)&&e.replaceSelection(Z))};if(C&&(j==="keyboard"||j==="virtual"))Y(C==="first"?n.getFirstKey?.():n.getLastKey?.());else if(e.focusedKey==null){let Z=O.relatedTarget;Z&&O.currentTarget.compareDocumentPosition(Z)&Node.DOCUMENT_POSITION_FOLLOWING?Y(e.lastSelectedKey??n.getLastKey?.()):Y(e.firstSelectedKey??n.getFirstKey?.())}else b.current&&(b.current.scrollTop=$.current.top,b.current.scrollLeft=$.current.left);if(e.focusedKey!=null&&b.current){let Z=qo(r,e.focusedKey);Z instanceof HTMLElement&&(!kl(Z)&&!m&&Ar(Z),(j==="keyboard"||C&&j==="virtual")&&ys(Z,{containingElement:r.current}))}},B=O=>{we(O.currentTarget,O.relatedTarget)||e.setFocused(!1)},P=D.useRef(!1);Qu(r,A4,m?O=>{let{detail:j}=O;O.stopPropagation(),e.setFocused(!0),j?.focusStrategy==="first"&&(P.current=!0)}:void 0);let M=n.getFirstKey?.()??null;h5(()=>{if(P.current)if(M==null){let O=je();o3(r.current),Kh(O,null),e.collection.size>0&&(P.current=!1)}else e.setFocusedKey(M),P.current=!1},[M,e.collection.size]),h5(()=>{e.collection.size>0&&(P.current=!1)},[e.focusedKey]),Qu(r,HS,m?O=>{O.stopPropagation(),e.setFocused(!1),O.detail?.clearFocusKey&&e.setFocusedKey(null)}:void 0);const N=D.useRef(i),I=D.useRef(!1);D.useEffect(()=>{if(N.current){let O=null;i==="first"&&(O=n.getFirstKey?.()??null),i==="last"&&(O=n.getLastKey?.()??null);let j=e.selectedKeys;if(j.size){for(let Y of j)if(e.canSelectItem(Y)){O=Y;break}}e.setFocused(!0),e.setFocusedKey(O),O==null&&!m&&r.current&&bn(r.current),e.collection.size>0&&(N.current=!1,I.current=!0)}});let F=D.useRef(e.focusedKey),J=D.useRef(null);D.useEffect(()=>{if(e.isFocused&&e.focusedKey!=null&&(e.focusedKey!==F.current||I.current)&&b.current&&r.current){let O=ta(),j=qo(r,e.focusedKey);if(!(j instanceof HTMLElement))return;(O==="keyboard"||I.current)&&(J.current&&cancelAnimationFrame(J.current),J.current=requestAnimationFrame(()=>{b.current&&(kh(b.current,j),O!=="virtual"&&ys(j,{containingElement:r.current}))}))}!m&&e.isFocused&&e.focusedKey==null&&F.current!=null&&r.current&&bn(r.current),F.current=e.focusedKey,I.current=!1}),D.useEffect(()=>()=>{J.current&&cancelAnimationFrame(J.current)},[]),Qu(r,"react-aria-focus-scope-restore",O=>{O.preventDefault(),e.setFocused(!0)});let q={onKeyDown:T,onFocus:A,onBlur:B,onMouseDown(O){b.current===de(O)&&O.preventDefault()}},{typeSelectProps:ie}=$F({keyboardDelegate:n,selectionManager:e});h||(q=$e(ie,q));let K;m||(K=e.focusedKey==null?0:-1);let te=SF(e.collection);return{collectionProps:$e(q,{tabIndex:K,"data-collection":te})}}class p5{constructor(e){this.ref=e}getItemRect(e){let n=this.ref.current;if(!n)return null;let r=e!=null?qo(this.ref,e):null;if(!r)return null;let i=n.getBoundingClientRect(),s=r.getBoundingClientRect();return{x:s.left-i.left-n.clientLeft+n.scrollLeft,y:s.top-i.top-n.clientTop+n.scrollTop,width:s.width,height:s.height}}getContentSize(){let e=this.ref.current;return{width:e?.scrollWidth??0,height:e?.scrollHeight??0}}getVisibleRect(){let e=this.ref.current;return{x:e?.scrollLeft??0,y:e?.scrollTop??0,width:e?.clientWidth??0,height:e?.clientHeight??0}}}class r6{constructor(...e){if(e.length===1){let n=e[0];this.collection=n.collection,this.ref=n.ref,this.collator=n.collator,this.disabledKeys=n.disabledKeys||new Set,this.disabledBehavior=n.disabledBehavior||"all",this.orientation=n.orientation||"vertical",this.direction=n.direction,this.layout=n.layout||"stack",this.layoutDelegate=n.layoutDelegate||new p5(n.ref)}else this.collection=e[0],this.disabledKeys=e[1],this.ref=e[2],this.collator=e[3],this.layout="stack",this.orientation="vertical",this.disabledBehavior="all",this.layoutDelegate=new p5(this.ref);this.layout==="stack"&&this.orientation==="vertical"&&(this.getKeyLeftOf=void 0,this.getKeyRightOf=void 0)}isDisabled(e){return this.disabledBehavior==="all"&&(e.props?.isDisabled||this.disabledKeys.has(e.key))&&e.props?.disabledBehavior!=="selection"}findNextNonDisabled(e,n,r=!1){let i=e;for(;i!=null;){let s=this.collection.getItem(i);if(s?.type==="item"&&(r||!this.isDisabled(s)))return i;i=n(i)}return null}getNextKey(e,n){let r=e;return r=this.collection.getKeyAfter(r),this.findNextNonDisabled(r,i=>this.collection.getKeyAfter(i),n?.includeDisabled)}getPreviousKey(e,n){let r=e;return r=this.collection.getKeyBefore(r),this.findNextNonDisabled(r,i=>this.collection.getKeyBefore(i),n?.includeDisabled)}findKey(e,n,r){let i=e,s=this.layoutDelegate.getItemRect(i);if(!s||i==null)return null;let a=s;do{if(i=n(i),i==null)break;s=this.layoutDelegate.getItemRect(i)}while(s&&r(a,s)&&i!=null);return i}isSameRow(e,n){return e.y===n.y||e.x!==n.x}isSameColumn(e,n){return e.x===n.x||e.y!==n.y}isReversed(e){let n=this.getNextKey(e),r=qo(this.ref,e);if(n!=null){let s=qo(this.ref,n);return!r||!s?!1:r.getBoundingClientRect().top>s.getBoundingClientRect().top}let i=this.getPreviousKey(e);if(i!=null){let s=qo(this.ref,i);return!r||!s?!1:s.getBoundingClientRect().top>r.getBoundingClientRect().top}return!1}getKeyBelow(e,n){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,r=>this.getNextKey(r,n),this.isSameRow):this.orientation==="vertical"?this.isReversed(e)?this.getPreviousKey(e,n):this.getNextKey(e,n):this.getNextKey(e,n)}getKeyAbove(e,n){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,r=>this.getPreviousKey(r,n),this.isSameRow):this.orientation==="vertical"?this.isReversed(e)?this.getNextKey(e,n):this.getPreviousKey(e,n):this.getPreviousKey(e,n)}getNextColumn(e,n,r){return n?this.getPreviousKey(e,r):this.getNextKey(e,r)}getKeyRightOf(e,n){let r=this.direction==="ltr"?"getKeyRightOf":"getKeyLeftOf";return this.layoutDelegate[r]?(e=this.layoutDelegate[r](e),this.findNextNonDisabled(e,i=>this.layoutDelegate[r](i),n?.includeDisabled)):this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="rtl",n):this.findKey(e,i=>this.getNextColumn(i,this.direction==="rtl",n),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="rtl",n):null}getKeyLeftOf(e,n){let r=this.direction==="ltr"?"getKeyLeftOf":"getKeyRightOf";return this.layoutDelegate[r]?(e=this.layoutDelegate[r](e),this.findNextNonDisabled(e,i=>this.layoutDelegate[r](i),n?.includeDisabled)):this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="ltr",n):this.findKey(e,i=>this.getNextColumn(i,this.direction==="ltr",n),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="ltr",n):null}getFirstKey(){let e=this.collection.getFirstKey();return this.findNextNonDisabled(e,n=>this.collection.getKeyAfter(n))}getLastKey(){let e=this.collection.getLastKey();return this.findNextNonDisabled(e,n=>this.collection.getKeyBefore(n))}getKeyPageAbove(e){let n=this.ref.current,r=this.layoutDelegate.getItemRect(e);if(!r)return null;let i=this.isReversed(e);if(n&&!Ks(n))return this.getFirstKey();let s=e;if(this.orientation==="horizontal"){let a=Math.max(0,r.x+r.width-this.layoutDelegate.getVisibleRect().width);for(;r&&r.x>a&&s!=null;)s=this.getKeyAbove(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}else{let a=this.layoutDelegate.getVisibleRect(),u=i?r.y-a.height:Math.max(0,r.y+r.height-a.height);for(;r&&r.y>u&&s!=null;)s=this.getKeyAbove(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}return s??(i?this.getLastKey():this.getFirstKey())}getKeyPageBelow(e){let n=this.ref.current,r=this.layoutDelegate.getItemRect(e);if(!r)return null;let i=this.isReversed(e);if(n&&!Ks(n))return this.getLastKey();let s=e;if(this.orientation==="horizontal"){let a=Math.min(this.layoutDelegate.getContentSize().width,r.x-r.width+this.layoutDelegate.getVisibleRect().width);for(;r&&r.x<a&&s!=null;)s=this.getKeyBelow(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}else{let a=Math.min(this.layoutDelegate.getContentSize().height,r.y-r.height+this.layoutDelegate.getVisibleRect().height);for(;r&&r.y<a&&s!=null;)s=this.getKeyBelow(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}return s??(i?this.getFirstKey():this.getLastKey())}getKeyForSearch(e,n){if(!this.collator)return null;let r=this.collection,i=n||this.getFirstKey();for(;i!=null;){let s=r.getItem(i);if(!s)return null;let a=s.textValue.slice(0,e.length);if(s.textValue&&this.collator.compare(a,e)===0)return i;i=this.getNextKey(i)}return null}}let D0=new Map;function w3(t){let{locale:e}=Ii(),n=e+(t?Object.entries(t).sort((i,s)=>i[0]<s[0]?-1:1).join():"");if(D0.has(n))return D0.get(n);let r=new Intl.Collator(e,t);return D0.set(n,r),r}function i6(t){let{selectionManager:e,collection:n,disabledKeys:r,ref:i,keyboardDelegate:s,layoutDelegate:a,orientation:u}=t,c=w3({usage:"search",sensitivity:"base"}),f=e.disabledBehavior,h=D.useMemo(()=>s||new r6({collection:n,disabledKeys:r,disabledBehavior:f,ref:i,collator:c,layoutDelegate:a,orientation:u}),[s,a,n,r,i,c,f,u]),{collectionProps:m}=AF({...t,ref:i,selectionManager:e,keyboardDelegate:h});return{listProps:m}}const BF=500;function s6(t){let{isDisabled:e,onLongPressStart:n,onLongPressEnd:r,onLongPress:i,threshold:s=BF,accessibilityDescription:a}=t;const u=D.useRef(void 0);let{addGlobalListener:c,removeGlobalListener:f}=Jc(),{pressProps:h}=Zc({isDisabled:e,onPressStart(g){if(g.continuePropagation(),(g.pointerType==="mouse"||g.pointerType==="touch")&&(n&&n({...g,type:"longpressstart"}),u.current=setTimeout(()=>{g.target.dispatchEvent(new PointerEvent("pointercancel",{bubbles:!0})),ze(g.target).activeElement!==g.target&&Ar(g.target),i&&i({...g,type:"longpress"}),u.current=void 0},s),g.pointerType==="touch")){let b=C=>{C.preventDefault()},v=fn(g.target);c(g.target,"contextmenu",b,{once:!0}),c(v,"pointerup",()=>{setTimeout(()=>{f(g.target,"contextmenu",b)},30)},{once:!0})}},onPressEnd(g){u.current&&clearTimeout(u.current),r&&(g.pointerType==="mouse"||g.pointerType==="touch")&&r({...g,type:"longpressend"})}}),m=ed(i&&!e?a:void 0);return{longPressProps:$e(h,m)}}function o6(t){let{id:e,selectionManager:n,key:r,ref:i,shouldSelectOnPressUp:s,shouldUseVirtualFocus:a,focus:u,isDisabled:c,onAction:f,allowsDifferentPressOrigin:h,linkBehavior:m="action"}=t,g=Ll();e=rn(e);let b=H=>{if(H.pointerType==="keyboard"&&W4(H))n.toggleSelection(r);else{if(n.selectionMode==="none")return;if(n.isLink(r)){if(m==="selection"&&i.current){let L=n.getItemProps(r);g.open(i.current,H,L.href,L.routerOptions),n.setSelectedKeys(n.selectedKeys);return}else if(m==="override"||m==="none")return}n.selectionMode==="single"?n.isSelected(r)&&!n.disallowEmptySelection?n.toggleSelection(r):n.replaceSelection(r):H&&H.shiftKey?n.extendSelection(r):n.selectionBehavior==="toggle"||H&&(wo(H)||H.pointerType==="touch"||H.pointerType==="virtual")?n.toggleSelection(r):n.replaceSelection(r)}};D.useEffect(()=>{r===n.focusedKey&&n.isFocused&&(a?o3(i.current):u?u():je()!==i.current&&i.current&&bn(i.current))},[i,r,n.focusedKey,n.childFocusStrategy,n.isFocused,a]),c=c||n.isDisabled(r);let v={};!a&&!c?v={tabIndex:r===n.focusedKey?0:-1,onFocus(H){de(H)===i.current&&n.setFocusedKey(r)}}:c&&(v.onMouseDown=H=>{H.preventDefault()}),D.useEffect(()=>{c&&n.focusedKey===r&&n.setFocusedKey(null)},[n,c,r]);let C=n.isLink(r)&&m==="override",E=f&&t.UNSTABLE_itemBehavior==="action",k=n.isLink(r)&&m!=="selection"&&m!=="none",T=!c&&n.canSelectItem(r)&&!C&&!E,$=(f||k)&&!c,A=$&&(n.selectionBehavior==="replace"?!T:!T||n.isEmpty),B=$&&T&&n.selectionBehavior==="replace",P=A||B,M=D.useRef(null),N=P&&T,I=D.useRef(!1),F=D.useRef(!1),J=n.getItemProps(r),q=H=>{f&&(f(),i.current?.dispatchEvent(new CustomEvent("react-aria-item-action",{bubbles:!0}))),k&&i.current&&g.open(i.current,H,J.href,J.routerOptions)},ie={ref:i};if(s?(ie.onPressStart=H=>{M.current=H.pointerType,I.current=N,H.pointerType==="keyboard"&&(!P||g5(H.key))&&b(H)},h?(ie.onPressUp=A?void 0:H=>{H.pointerType==="mouse"&&T&&b(H)},ie.onPress=A?q:H=>{H.pointerType!=="keyboard"&&H.pointerType!=="mouse"&&T&&b(H)}):ie.onPress=H=>{if(A||B&&H.pointerType!=="mouse"){if(H.pointerType==="keyboard"&&!m5(H.key))return;q(H)}else H.pointerType!=="keyboard"&&T&&b(H)}):(ie.onPressStart=H=>{M.current=H.pointerType,I.current=N,F.current=A,T&&(H.pointerType==="mouse"&&!A||H.pointerType==="keyboard"&&(!$||g5(H.key)))&&b(H)},ie.onPress=H=>{(H.pointerType==="touch"||H.pointerType==="pen"||H.pointerType==="virtual"||H.pointerType==="keyboard"&&P&&m5(H.key)||H.pointerType==="mouse"&&F.current)&&(P?q(H):T&&b(H))}),v["data-collection"]=wF(n.collection),v["data-key"]=r,ie.preventFocusOnPress=a,a&&(ie=$e(ie,{onPressStart(H){H.pointerType!=="touch"&&(n.setFocused(!0),n.setFocusedKey(r))},onPress(H){H.pointerType==="touch"&&(n.setFocused(!0),n.setFocusedKey(r))}})),J)for(let H of["onPressStart","onPressEnd","onPressChange","onPress","onPressUp","onClick"])J[H]&&(ie[H]=Gs(ie[H],J[H]));let{pressProps:K,isPressed:te}=Zc(ie),O=B?H=>{M.current==="mouse"&&(H.stopPropagation(),H.preventDefault(),q(H))}:void 0,{longPressProps:j}=s6({isDisabled:!N,onLongPress(H){H.pointerType==="touch"&&(b(H),n.setSelectionBehavior("toggle"))}}),Y=H=>{M.current==="touch"&&I.current&&H.preventDefault()},Z=m!=="none"&&n.isLink(r)?H=>{Gr.isOpening||H.preventDefault()}:void 0;return{itemProps:$e(v,T||A||a&&!c?K:{},N?j:{},{onDoubleClick:O,onDragStartCapture:Y,onClick:Z,id:e},a?{onMouseDown:H=>H.preventDefault()}:void 0),isPressed:te,isSelected:n.isSelected(r),isFocused:n.isFocused&&n.focusedKey===r,isDisabled:c,allowsSelection:T,hasAction:P}}function m5(t){return t==="Enter"}function g5(t){return t===" "}function a6(t,e){return typeof e.getChildren=="function"?e.getChildren(t.key):t.childNodes}function MF(t){return RF(t)}function RF(t,e){for(let n of t)return n}function S0(t,e,n){if(e.parentKey===n.parentKey)return e.index-n.index;let r=[...b5(t,e),e],i=[...b5(t,n),n],s=r.slice(0,i.length).findIndex((a,u)=>a!==i[u]);return s!==-1?(e=r[s],n=i[s],e.index-n.index):r.findIndex(a=>a===n)>=0?1:(i.findIndex(a=>a===e)>=0,-1)}function b5(t,e){let n=[],r=e;for(;r?.parentKey!=null;)r=t.getItem(r.parentKey),r&&n.unshift(r);return n}const y5=new WeakMap;function NF(t){let e=y5.get(t);if(e!=null)return e;let n=0,r=i=>{for(let s of i)s.type==="section"?r(a6(s,t)):s.type==="item"&&n++};return r(t),y5.set(t,n),n}function l6(t){const e=D.version.split(".");return parseInt(e[0],10)>=19?t:t?"true":void 0}class v5{constructor(e){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.iterable=e;let n=a=>{if(this.keyMap.set(a.key,a),a.childNodes&&a.type==="section")for(let u of a.childNodes)n(u)};for(let a of e)n(a);let r=null,i=0,s=0;for(let[a,u]of this.keyMap)r?(r.nextKey=a,u.prevKey=r.key):(this.firstKey=a,u.prevKey=void 0),u.type==="item"&&(u.index=i++),(u.type==="section"||u.type==="item")&&s++,r=u,r.nextKey=void 0;this._size=s,this.lastKey=r?.key??null}*[Symbol.iterator](){yield*this.iterable}get size(){return this._size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey??null:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey??null:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)??null}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}getChildren(e){return this.keyMap.get(e)?.childNodes||[]}}class Er extends Set{constructor(e,n,r){super(e),e instanceof Er?(this.anchorKey=n??e.anchorKey,this.currentKey=r??e.currentKey):(this.anchorKey=n??null,this.currentKey=r??null)}}function PF(t,e){if(t.size!==e.size)return!1;for(let n of t)if(!e.has(n))return!1;return!0}function $3(t){let{selectionMode:e="none",disallowEmptySelection:n=!1,allowDuplicateSelectionEvents:r,selectionBehavior:i="toggle",disabledBehavior:s="all"}=t,a=D.useRef(!1),[,u]=D.useState(!1),c=D.useRef(null),f=D.useRef(null),[,h]=D.useState(null),m=D.useMemo(()=>x5(t.selectedKeys),[t.selectedKeys]),g=D.useMemo(()=>x5(t.defaultSelectedKeys,new Er),[t.defaultSelectedKeys]),[b,v]=Ys(m,g,t.onSelectionChange),C=D.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),[E,k]=D.useState(i);i==="replace"&&E==="toggle"&&typeof b=="object"&&b.size===0&&k("replace");let T=D.useRef(i);return D.useEffect(()=>{i!==T.current&&(k(i),T.current=i)},[i]),{selectionMode:e,disallowEmptySelection:n,selectionBehavior:E,setSelectionBehavior:k,get isFocused(){return a.current},setFocused($){a.current=$,u($)},get focusedKey(){return c.current},get childFocusStrategy(){return f.current},setFocusedKey($,A="first"){c.current=$,f.current=A,h($)},selectedKeys:b,setSelectedKeys($){(r||!PF($,b))&&v($)},disabledKeys:C,disabledBehavior:s}}function x5(t,e){return t?t==="all"?"all":new Er(t):e}class td{constructor(e,n,r){this.collection=e,this.state=n,this.allowsCellSelection=r?.allowsCellSelection??!1,this._isSelectAll=null,this.layoutDelegate=r?.layoutDelegate||null,this.fullCollection=r?.fullCollection||null}get selectionMode(){return this.state.selectionMode}get disallowEmptySelection(){return this.state.disallowEmptySelection}get selectionBehavior(){return this.state.selectionBehavior}setSelectionBehavior(e){this.state.setSelectionBehavior(e)}get isFocused(){return this.state.isFocused}setFocused(e){this.state.setFocused(e)}get focusedKey(){return this.state.focusedKey}get childFocusStrategy(){return this.state.childFocusStrategy}setFocusedKey(e,n){(e==null||this.collection.getItem(e))&&this.state.setFocusedKey(e,n)}get selectedKeys(){return this.state.selectedKeys==="all"?new Set(this.getSelectAllKeys()):this.state.selectedKeys}get rawSelection(){return this.state.selectedKeys}isSelected(e){if(this.state.selectionMode==="none")return!1;let n=this.getKey(e);return n==null?!1:this.state.selectedKeys==="all"?this.canSelectItem(n):this.state.selectedKeys.has(n)}get isEmpty(){return this.state.selectedKeys!=="all"&&this.state.selectedKeys.size===0}get isSelectAll(){if(this.isEmpty)return!1;if(this.state.selectedKeys==="all")return!0;if(this._isSelectAll!=null)return this._isSelectAll;let e=this.getSelectAllKeys(),n=this.state.selectedKeys;return this._isSelectAll=e.every(r=>n.has(r)),this._isSelectAll}get firstSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let r=this.collection.getItem(n);(!e||r&&S0(this.collection,r,e)<0)&&(e=r)}return e?.key??null}get lastSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let r=this.collection.getItem(n);(!e||r&&S0(this.collection,r,e)>0)&&(e=r)}return e?.key??null}get disabledKeys(){return this.state.disabledKeys}get disabledBehavior(){return this.state.disabledBehavior}extendSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"){this.replaceSelection(e);return}let n=this.getKey(e);if(n==null)return;let r;if(this.state.selectedKeys==="all")r=new Er([n],n,n);else{let i=this.state.selectedKeys,s=i.anchorKey??n;r=new Er(i,s,n);for(let a of this.getKeyRange(s,i.currentKey??n))r.delete(a);for(let a of this.getKeyRange(n,s))this.canSelectItem(a)&&r.add(a)}this.state.setSelectedKeys(r)}getKeyRange(e,n){let r=this.collection.getItem(e),i=this.collection.getItem(n);return r&&i?S0(this.collection,r,i)<=0?this.getKeyRangeInternal(e,n):this.getKeyRangeInternal(n,e):[]}getKeyRangeInternal(e,n){if(this.layoutDelegate?.getKeyRange)return this.layoutDelegate.getKeyRange(e,n);let r=[],i=e;for(;i!=null;){let s=this.collection.getItem(i);if(s&&(s.type==="item"||s.type==="cell"&&this.allowsCellSelection)&&r.push(i),i===n)return r;i=this.collection.getKeyAfter(i)}return[]}getKey(e){let n=this.collection.getItem(e);if(!n||n.type==="cell"&&this.allowsCellSelection)return e;for(;n&&n.type!=="item"&&n.parentKey!=null;)n=this.collection.getItem(n.parentKey);return!n||n.type!=="item"?null:n.key}toggleSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"&&!this.isSelected(e)){this.replaceSelection(e);return}let n=this.getKey(e);if(n==null)return;let r=new Er(this.state.selectedKeys==="all"?this.getSelectAllKeys():this.state.selectedKeys);r.has(n)?r.delete(n):this.canSelectItem(n)&&(r.add(n),r.anchorKey=n,r.currentKey=n),!(this.disallowEmptySelection&&r.size===0)&&this.state.setSelectedKeys(r)}replaceSelection(e){if(this.selectionMode==="none")return;let n=this.getKey(e);if(n==null)return;let r=this.canSelectItem(n)?new Er([n],n,n):new Er;this.state.setSelectedKeys(r)}setSelectedKeys(e){if(this.selectionMode==="none")return;let n=new Er;for(let r of e){let i=this.getKey(r);if(i!=null&&(n.add(i),this.selectionMode==="single"))break}this.state.setSelectedKeys(n)}getSelectAllKeys(){let e=this.fullCollection??this.collection,n=[],r=i=>{for(;i!=null;){if(this.canSelectItemIn(i,e)){let s=e.getItem(i);s?.type==="item"&&n.push(i),s?.hasChildNodes&&(this.allowsCellSelection||s.type!=="item")&&r(MF(a6(s,e))?.key??null)}i=e.getKeyAfter(i)}};return r(e.getFirstKey()),n}selectAll(){!this.isSelectAll&&this.selectionMode==="multiple"&&this.state.setSelectedKeys("all")}clearSelection(){!this.disallowEmptySelection&&(this.state.selectedKeys==="all"||this.state.selectedKeys.size>0)&&this.state.setSelectedKeys(new Er)}toggleSelectAll(){this.isSelectAll?this.clearSelection():this.selectAll()}select(e,n){this.selectionMode!=="none"&&(this.selectionMode==="single"?this.isSelected(e)&&!this.disallowEmptySelection?this.toggleSelection(e):this.replaceSelection(e):this.selectionBehavior==="toggle"||n&&(n.pointerType==="touch"||n.pointerType==="virtual")?this.toggleSelection(e):this.replaceSelection(e))}isSelectionEqual(e){if(e===this.state.selectedKeys)return!0;let n=this.selectedKeys;if(e.size!==n.size)return!1;for(let r of e)if(!n.has(r))return!1;for(let r of n)if(!e.has(r))return!1;return!0}canSelectItem(e){return this.canSelectItemIn(e,this.collection)}canSelectItemIn(e,n){if(this.state.selectionMode==="none"||this.state.disabledKeys.has(e))return!1;let r=n.getItem(e);return!(!r||r?.props?.isDisabled||r.type==="cell"&&!this.allowsCellSelection)}isDisabled(e){let n=this.collection.getItem(e);return this.state.disabledBehavior==="all"&&(this.state.disabledKeys.has(e)||!!n?.props?.isDisabled)&&n?.props?.disabledBehavior!=="selection"}isLink(e){return!!this.collection.getItem(e)?.props?.href}getItemProps(e){return this.collection.getItem(e)?.props}withCollection(e){return new td(e,this.state,{allowsCellSelection:this.allowsCellSelection,layoutDelegate:this.layoutDelegate||void 0,fullCollection:this.fullCollection??this.collection})}}class OF{build(e,n){return this.context=n,C5(()=>this.iterateCollection(e))}*iterateCollection(e){let{children:n,items:r}=e;if(V.isValidElement(n)&&n.type===V.Fragment)yield*this.iterateCollection({children:n.props.children,items:r});else if(typeof n=="function"){if(!r)throw new Error("props.children was a function but props.items is missing");let i=0;for(let s of r)yield*this.getFullNode({value:s,index:i},{renderer:n}),i++}else{let i=[];V.Children.forEach(n,a=>{a&&i.push(a)});let s=0;for(let a of i){let u=this.getFullNode({element:a,index:s},{});for(let c of u)s++,yield c}}}getKey(e,n,r,i){if(e.key!=null)return e.key;if(n.type==="cell"&&n.key!=null)return`${i}${n.key}`;let s=n.value;if(s!=null){let a=s.key??s.id;if(a==null)throw new Error("No key found for item");return a}return i?`${i}.${n.index}`:`$.${n.index}`}getChildState(e,n){return{renderer:n.renderer||e.renderer}}*getFullNode(e,n,r,i){if(V.isValidElement(e.element)&&e.element.type===V.Fragment){let c=[];V.Children.forEach(e.element.props.children,h=>{c.push(h)});let f=e.index??0;for(const h of c)yield*this.getFullNode({element:h,index:f++},n,r,i);return}let s=e.element;if(!s&&e.value&&n&&n.renderer){let c=this.cache.get(e.value);if(c&&(!c.shouldInvalidate||!c.shouldInvalidate(this.context))){c.index=e.index,c.parentKey=i?i.key:null,yield c;return}s=n.renderer(e.value)}if(V.isValidElement(s)){let c=s.type;if(typeof c!="function"&&typeof c.getCollectionNode!="function"){let g=s.type;throw new Error(`Unknown element <${g}> in collection.`)}let f=c.getCollectionNode(s.props,this.context),h=e.index??0,m=f.next();for(;!m.done&&m.value;){let g=m.value;e.index=h;let b=g.key??null;b==null&&(b=g.element?null:this.getKey(s,e,n,r));let C=[...this.getFullNode({...g,key:b,index:h,wrapper:LF(e.wrapper,g.wrapper)},this.getChildState(n,g),r?`${r}${s.key}`:s.key,i)];for(let E of C){if(E.value=g.value??e.value??null,E.value&&this.cache.set(E.value,E),e.type&&E.type!==e.type)throw new Error(`Unsupported type <${w0(E.type)}> in <${w0(i?.type??"unknown parent type")}>. Only <${w0(e.type)}> is supported.`);h++,yield E}m=f.next(C)}return}if(e.key==null||e.type==null)return;let a=this,u={type:e.type,props:e.props,key:e.key,parentKey:i?i.key:null,value:e.value??null,level:(i?.level??0)+(i?.type==="item"?1:0),index:e.index,rendered:e.rendered,textValue:e.textValue??"","aria-label":e["aria-label"],wrapper:e.wrapper,shouldInvalidate:e.shouldInvalidate,hasChildNodes:e.hasChildNodes||!1,childNodes:C5(function*(){if(!e.hasChildNodes||!e.childNodes)return;let c=0;for(let f of e.childNodes()){f.key!=null&&(f.key=`${u.key}${f.key}`);let h=a.getFullNode({...f,index:c},a.getChildState(n,f),u.key,u);for(let m of h)c++,yield m}})};yield u}constructor(){this.cache=new WeakMap}}function C5(t){let e=[],n=null;return{*[Symbol.iterator](){for(let r of e)yield r;n||(n=t());for(let r of n)e.push(r),yield r}}}function LF(t,e){if(t&&e)return n=>t(e(n));if(t)return t;if(e)return e}function w0(t){return t[0].toUpperCase()+t.slice(1)}function u6(t,e,n){let r=D.useMemo(()=>new OF,[]),{children:i,items:s,collection:a}=t;return D.useMemo(()=>{if(a)return a;let c=r.build({children:i,items:s},n);return e(c)},[r,i,s,a,n,e])}function zF(t){let{filter:e,layoutDelegate:n}=t,r=$3(t),i=D.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),s=D.useCallback(f=>e?new v5(e(f)):new v5(f),[e]),a=D.useMemo(()=>({suppressTextValueWarning:t.suppressTextValueWarning}),[t.suppressTextValueWarning]),u=u6(t,s,a),c=D.useMemo(()=>new td(u,r,{layoutDelegate:n}),[u,r,n]);return c6(u,c),{collection:u,disabledKeys:i,selectionManager:c}}function IF(t,e){let n=D.useMemo(()=>e?t.collection.filter(e):t.collection,[t.collection,e]),r=t.selectionManager.withCollection(n);return c6(n,r),{collection:n,selectionManager:r,disabledKeys:t.disabledKeys}}function c6(t,e){const n=D.useRef(null);D.useEffect(()=>{if(e.focusedKey!=null&&!t.getItem(e.focusedKey)&&n.current){let r=n.current.getKeyAfter(e.focusedKey),i=null;for(;r!=null;){let s=t.getItem(r);if(s&&s.type==="item"&&!e.isDisabled(r)){i=r;break}r=n.current.getKeyAfter(r)}if(i==null)for(r=n.current.getKeyBefore(e.focusedKey);r!=null;){let s=t.getItem(r);if(s&&s.type==="item"&&!e.isDisabled(r)){i=r;break}r=n.current.getKeyBefore(r)}e.setFocusedKey(i)}n.current=t},[t,e])}function d6(t,e){let{collection:n,onLoadMore:r,scrollOffset:i=1}=t,s=D.useRef(null),a=Nt(u=>{for(let c of u)c.isIntersecting&&r&&r()});Le(()=>(e.current&&(s.current=new IntersectionObserver(a,{root:Ur(e?.current),rootMargin:`0px ${100*i}% ${100*i}% ${100*i}%`}),s.current.observe(e.current)),()=>{s.current&&s.current.disconnect()}),[n,e,i])}const Nc=D.createContext(null);ua(Uh,function(e,n,r){let i=D.useContext(Nc),{isLoading:s,onLoadMore:a,scrollOffset:u,...c}=e,f=D.useRef(null),h=D.useMemo(()=>({onLoadMore:a,collection:i?.collection,sentinelRef:f,scrollOffset:u}),[a,u,i?.collection]);d6(h,f);let m=St({...c,id:void 0,children:r.rendered,defaultClassName:"react-aria-ListBoxLoadingIndicator",values:void 0}),g={tabIndex:-1};return V.createElement(V.Fragment,null,V.createElement("div",{style:{position:"relative",width:0,height:0},inert:l6(!0)},V.createElement("div",{"data-testid":"loadMoreSentinel",ref:f,style:{position:"absolute",height:1,width:1}})),s&&m.children&&V.createElement(V.Fragment,null,V.createElement(st.div,{...$e(Ze(e,{global:!0}),g),...m,role:"option",ref:n},m.children)))});const FF=D.createContext({placement:"bottom"}),KF=typeof HTMLElement<"u"&&"inert"in HTMLElement.prototype;function E5(t){return t.dataset.liveAnnouncer==="true"||t.dataset.reactAriaTopLayer!==void 0}let Fu=new WeakMap,Mn=[];function T3(t,e){let n=fn(t?.[0]),r=e instanceof n.Element?{root:e}:e,i=r?.root??document.body,s=r?.shouldUseInert&&KF,a=new Set(t),u=new Set,c=E=>s&&E instanceof n.HTMLElement?E.inert:E.getAttribute("aria-hidden")==="true",f=(E,k)=>{s&&E instanceof n.HTMLElement?E.inert=k:k?E.setAttribute("aria-hidden","true"):(E.removeAttribute("aria-hidden"),E instanceof n.HTMLElement&&(E.inert=!1))},h=new Set;if(Di())for(let E of t){let k=E;for(;k&&k!==i;){let T=k.getRootNode();"shadowRoot"in T&&h.add(T.shadowRoot),k=T.parentNode}}let m=E=>{for(let A of E.querySelectorAll("[data-live-announcer], [data-react-aria-top-layer]"))a.add(A);let k=A=>{if(u.has(A)||a.has(A)||A.parentElement&&u.has(A.parentElement)&&A.parentElement.getAttribute("role")!=="row")return NodeFilter.FILTER_REJECT;for(let B of a)if(we(A,B))return NodeFilter.FILTER_SKIP;return NodeFilter.FILTER_ACCEPT},T=Z$(ze(E),E,NodeFilter.SHOW_ELEMENT,{acceptNode:k}),$=k(E);if($===NodeFilter.FILTER_ACCEPT&&g(E),$!==NodeFilter.FILTER_REJECT){let A=T.nextNode();for(;A!=null;)g(A),A=T.nextNode()}},g=E=>{let k=Fu.get(E)??0;c(E)&&k===0||(k===0&&f(E,!0),u.add(E),Fu.set(E,k+1))};Mn.length&&Mn[Mn.length-1].disconnect(),m(i);let b=new MutationObserver(E=>{for(let k of E)if(k.type==="childList"){if(k.target.isConnected&&![...a,...u].some(T=>we(T,k.target)))for(let T of k.addedNodes)(T instanceof HTMLElement||T instanceof SVGElement)&&E5(T)?a.add(T):T instanceof Element&&m(T);if(Di()){for(let T of h)if(!T.isConnected){b.disconnect();break}}}});b.observe(i,{childList:!0,subtree:!0});let v=new Set;if(Di())for(let E of h){let k=new MutationObserver(T=>{for(let $ of T)if($.type==="childList"){if($.target.isConnected&&![...a,...u].some(A=>we(A,$.target)))for(let A of $.addedNodes)(A instanceof HTMLElement||A instanceof SVGElement)&&E5(A)?a.add(A):A instanceof Element&&m(A);if(Di()){for(let A of h)if(!A.isConnected){b.disconnect();break}}}});k.observe(E,{childList:!0,subtree:!0}),v.add(k)}let C={visibleNodes:a,hiddenNodes:u,observe(){b.observe(i,{childList:!0,subtree:!0})},disconnect(){b.disconnect()}};return Mn.push(C),()=>{if(b.disconnect(),Di())for(let E of v)E.disconnect();for(let E of u){let k=Fu.get(E);k!=null&&(k===1?(f(E,!1),Fu.delete(E)):Fu.set(E,k-1))}C===Mn[Mn.length-1]?(Mn.pop(),Mn.length&&Mn[Mn.length-1].observe()):Mn.splice(Mn.indexOf(C),1)}}function jF(t){let e=Mn[Mn.length-1];if(e&&!e.visibleNodes.has(t))return e.visibleNodes.add(t),()=>{e.visibleNodes.delete(t)}}const cr={top:"top",bottom:"top",left:"left",right:"left"},Qh={top:"bottom",bottom:"top",left:"right",right:"left"},_F={top:"left",left:"top"},Q4={top:"height",left:"width"},f6={width:"totalWidth",height:"totalHeight"},Uf={};let HF=()=>typeof document<"u"?window.visualViewport:null;function k5(t,e){let n=0,r=0,i=0,s=0,a=0,u=0,c={},f=(e?.scale??1)>1;if(t.tagName==="BODY"||t.tagName==="HTML"){let h=document.documentElement;i=h.clientWidth,s=h.clientHeight,n=e?.width??i,r=e?.height??s,c.top=h.scrollTop||t.scrollTop,c.left=h.scrollLeft||t.scrollLeft,e&&(a=e.offsetTop,u=e.offsetLeft)}else({width:n,height:r,top:a,left:u}=Pc(t,!1)),c.top=t.scrollTop,c.left=t.scrollLeft,i=n,s=r;return f3()&&(t.tagName==="BODY"||t.tagName==="HTML")&&f&&(c.top=0,c.left=0,a=e?.pageTop??0,u=e?.pageLeft??0),{width:n,height:r,totalWidth:i,totalHeight:s,scroll:c,top:a,left:u}}function VF(t){return{top:t.scrollTop,left:t.scrollLeft,width:t.scrollWidth,height:t.scrollHeight}}function D5(t,e,n,r,i,s,a){let u=i.scroll[t]??0,c=r[Q4[t]],f=a[t]+r.scroll[cr[t]]+s,h=a[t]+r.scroll[cr[t]]+c-s,m=e-u+r.scroll[cr[t]]+a[t]-r[cr[t]],g=e-u+n+r.scroll[cr[t]]+a[t]-r[cr[t]];return m<f?f-m:g>h?Math.max(h-g,f-m):0}function UF(t){let e=window.getComputedStyle(t);return{top:parseInt(e.marginTop,10)||0,bottom:parseInt(e.marginBottom,10)||0,left:parseInt(e.marginLeft,10)||0,right:parseInt(e.marginRight,10)||0}}function S5(t){if(Uf[t])return Uf[t];let[e,n]=t.split(" "),r=cr[e]||"right",i=_F[r];cr[n]||(n="center");let s=Q4[r],a=Q4[i];return Uf[t]={placement:e,crossPlacement:n,axis:r,crossAxis:i,size:s,crossSize:a},Uf[t]}function $0(t,e,n,r,i,s,a,u,c,f,h){let{placement:m,crossPlacement:g,axis:b,crossAxis:v,size:C,crossSize:E}=r,k={};k[v]=t[v]??0,g==="center"?k[v]+=((t[E]??0)-(n[E]??0))/2:g!==v&&(k[v]+=(t[E]??0)-(n[E]??0)),k[v]+=s;const T=t[v]-n[E]+c+f,$=t[v]+t[E]-c-f;if(k[v]=_4(k[v],T,$),m===b){let A=u?h[C]:h[f6[C]];k[Qh[b]]=Math.floor(A-t[b]+i)}else k[b]=Math.floor(t[b]+t[C]+i);return k}function qF(t,e,n,r,i,s,a,u,c,f,h){let m=(t.top!=null?t.top:c[f6.height]-(t.bottom??0)-a)-(c.scroll.top??0),g=f?n.top:0,b={top:Math.max(e.top+g,(h?.offsetTop??e.top)+g),bottom:Math.min(e.top+e.height+g,(h?.offsetTop??0)+(h?.height??0))};return u!=="top"?Math.max(0,b.bottom-m-((i.top??0)+(i.bottom??0)+s)):Math.max(0,m+a-b.top-((i.top??0)+(i.bottom??0)+s))}function w5(t,e,n,r,i,s,a,u){let{placement:c,axis:f,size:h}=s;return c===f?Math.max(0,n[f]-(a.scroll[f]??0)-(t[f]+(u?e[f]:0))-(r[f]??0)-r[Qh[f]]-i):Math.max(0,t[h]+t[f]+(u?e[f]:0)-n[f]-n[h]+(a.scroll[f]??0)-(r[f]??0)-r[Qh[f]]-i)}function GF(t,e,n,r,i,s,a,u,c,f,h,m,g,b,v,C,E,k){let T=S5(t),{size:$,crossAxis:A,crossSize:B,placement:P,crossPlacement:M}=T,N=$0(e,u,n,T,h,m,f,g,v,C,c),I=h,F=w5(u,f,e,i,s+h,T,c,E);if(a&&n[$]>F){let ue=S5(`${Qh[P]} ${M}`),fe=$0(e,u,n,ue,h,m,f,g,v,C,c);w5(u,f,e,i,s+h,ue,c,E)>F&&(T=ue,N=fe,I=h)}let J="bottom";T.axis==="top"?T.placement==="top"?J="top":T.placement==="bottom"&&(J="bottom"):T.crossAxis==="top"&&(T.crossPlacement==="top"?J="bottom":T.crossPlacement==="bottom"&&(J="top"));let q=D5(A,N[A],n[B],u,c,s,f);N[A]+=q;let ie=qF(N,u,f,g,i,s,n.height,J,c,E,k);b&&b<ie&&(ie=b),n.height=Math.min(n.height,ie),N=$0(e,u,n,T,I,m,f,g,v,C,c),q=D5(A,N[A],n[B],u,c,s,f),N[A]+=q;let K={},te=e[A]-N[A]-i[cr[A]],O=te+.5*e[B];const j=v/2+C,Y=cr[A]==="left"?(i.left??0)+(i.right??0):(i.top??0)+(i.bottom??0),Z=n[B]-Y-v/2-C,H=e[A]+v/2-(N[A]+i[cr[A]]),L=e[A]+e[B]-v/2-(N[A]+i[cr[A]]),U=_4(O,H,L);K[A]=_4(U,j,Z),{placement:P,crossPlacement:M}=T,v?te=K[A]:M==="right"?te+=e[B]:M==="center"&&(te+=e[B]/2);let ne=P==="left"||P==="top"?n[$]:0,le={x:P==="top"||P==="bottom"?te:ne,y:P==="left"||P==="right"?te:ne};return{position:N,maxHeight:ie,arrowOffsetLeft:K.left,arrowOffsetTop:K.top,placement:P,triggerAnchorPoint:le}}function WF(t){let{placement:e,targetNode:n,overlayNode:r,scrollNode:i,padding:s,shouldFlip:a,boundaryElement:u,offset:c,crossOffset:f,maxHeight:h,arrowSize:m=0,arrowBoundaryOffset:g=0,targetRect:b}=t,v=HF(),C=r instanceof HTMLElement?QF(r):document.documentElement,E=C===document.documentElement;const k=window.getComputedStyle(C).position;let T=!!k&&k!=="static",$=E?Pc(n,!1,b):$5(n,C,!1,b);if(!E){let{marginTop:J,marginLeft:q}=window.getComputedStyle(n);$.top+=parseInt(J,10)||0,$.left+=parseInt(q,10)||0}let A=Pc(r,!0),B=UF(r);A.width+=(B.left??0)+(B.right??0),A.height+=(B.top??0)+(B.bottom??0);let P=VF(i),M=k5(u,v),N=k5(C,v),I;if((u.tagName==="BODY"||u.tagName==="HTML")&&!E){let J=hm(C,!1);I={top:-(J.top-M.top),left:-(J.left-M.left),width:0,height:0}}else(u.tagName==="BODY"||u.tagName==="HTML")&&E?I={top:0,left:0,width:0,height:0}:I=$5(u,C,!1);let F=we(u,C);return GF(e,$,A,P,B,s,a,M,N,I,c,f,T,h,m,g,F,v)}function hm(t,e){let{top:n,left:r,width:i,height:s}=t.getBoundingClientRect();return e&&t instanceof t.ownerDocument.defaultView.HTMLElement&&(i=t.offsetWidth,s=t.offsetHeight),{top:n,left:r,width:i,height:s}}function Pc(t,e,n){let{top:r,left:i,width:s,height:a}=n||hm(t,e),{scrollTop:u,scrollLeft:c,clientTop:f,clientLeft:h}=document.documentElement;return{top:r+u-f,left:i+c-h,width:s,height:a}}function $5(t,e,n,r){let i=window.getComputedStyle(t),s;if(i.position==="fixed")s=r||hm(t,n);else{s=Pc(t,n,r);let a=Pc(e,n),u=window.getComputedStyle(e);a.top+=(parseInt(u.borderTopWidth,10)||0)-e.scrollTop,a.left+=(parseInt(u.borderLeftWidth,10)||0)-e.scrollLeft,s.top-=a.top,s.left-=a.left}return s.top-=parseInt(i.marginTop,10)||0,s.left-=parseInt(i.marginLeft,10)||0,s}function QF(t){let e=t.offsetParent;if(e&&e===document.body&&window.getComputedStyle(e).position==="static"&&!T5(e)&&(e=document.documentElement),e==null)for(e=t.parentElement;e&&!T5(e);)e=e.parentElement;return e||document.documentElement}function T5(t){let e=window.getComputedStyle(t);return e.transform!=="none"||/transform|perspective/.test(e.willChange)||e.filter!=="none"||e.contain==="paint"||"backdropFilter"in e&&e.backdropFilter!=="none"||"WebkitBackdropFilter"in e&&e.WebkitBackdropFilter!=="none"}const h6=new WeakMap;function YF(t){let{triggerRef:e,isOpen:n,onClose:r}=t;D.useEffect(()=>{if(!n||r===null)return;let i=s=>{let a=de(s);if(!e.current||a instanceof Node&&!we(a,e.current)||a instanceof HTMLInputElement||a instanceof HTMLTextAreaElement)return;let u=r||h6.get(e.current);u&&u()};return window.addEventListener("scroll",i,!0),()=>{window.removeEventListener("scroll",i,!0)}},[n,r,e])}function XF(){return typeof window.ResizeObserver<"u"}function Y4(t){const{ref:e,box:n,onResize:r}=t;let i=Nt(r);D.useEffect(()=>{let s=e?.current;if(s)if(XF()){const a=new window.ResizeObserver(u=>{u.length&&i()});return a.observe(s,{box:n}),()=>{s&&a.unobserve(s)}}else return window.addEventListener("resize",i,!1),()=>{window.removeEventListener("resize",i,!1)}},[e,n])}let Do=typeof document<"u"?window.visualViewport:null;function JF(t){let{direction:e}=Ii(),{arrowSize:n,targetRef:r,overlayRef:i,arrowRef:s,scrollRef:a=i,placement:u="bottom",containerPadding:c=12,shouldFlip:f=!0,boundaryElement:h=typeof document<"u"?document.body:null,offset:m=0,crossOffset:g=0,shouldUpdatePosition:b=!0,isOpen:v=!0,onClose:C,maxHeight:E,arrowBoundaryOffset:k=0,getTargetRect:T}=t,[$,A]=D.useState(null),B=[b,u,i.current,r.current,s?.current,a.current,c,f,h,m,g,v,e,E,k,n],P=D.useRef(Do?.scale);D.useEffect(()=>{v&&(P.current=Do?.scale)},[v]);let M=D.useCallback(()=>{if(b===!1||!v||!i.current||!r.current||!h||Do?.scale!==P.current)return;let F=null;if(a.current&&kl(a.current)){let K=je()?.getBoundingClientRect(),te=a.current.getBoundingClientRect();F={type:"top",offset:(K?.top??0)-te.top},F.offset>te.height/2&&(F.type="bottom",F.offset=(K?.bottom??0)-te.bottom)}let J=i.current;!E&&i.current&&(J.style.top="0px",J.style.bottom="",J.style.maxHeight=(window.visualViewport?.height??window.innerHeight)+"px");let q=WF({placement:eK(u,e),overlayNode:i.current,targetNode:r.current,scrollNode:a.current||i.current,padding:c,shouldFlip:f,boundaryElement:h,offset:m,crossOffset:g,maxHeight:E,arrowSize:n??(s?.current?hm(s.current,!0).width:0),arrowBoundaryOffset:k,targetRect:T?.(r.current)});if(!q.position)return;J.style.top="",J.style.bottom="",J.style.left="",J.style.right="",Object.keys(q.position).forEach(K=>J.style[K]=q.position[K]+"px"),J.style.maxHeight=q.maxHeight!=null?q.maxHeight+"px":"";let ie=je();if(F&&ie&&a.current){let K=ie.getBoundingClientRect(),te=a.current.getBoundingClientRect(),O=K[F.type]-te[F.type];a.current.scrollTop+=O-F.offset}A(q)},B);Le(M,B),ZF(M),Y4({ref:i,onResize:M}),Y4({ref:r,onResize:M});let N=D.useRef(!1);Le(()=>{let F,J=()=>{N.current=!0,clearTimeout(F),F=setTimeout(()=>{N.current=!1},500),M()},q=()=>{N.current&&J()};return Do?.addEventListener("resize",J),Do?.addEventListener("scroll",q),()=>{Do?.removeEventListener("resize",J),Do?.removeEventListener("scroll",q)}},[M]);let I=D.useCallback(()=>{N.current||C?.()},[C,N]);return YF({triggerRef:r,isOpen:v,onClose:C&&I}),{overlayProps:{style:{position:$?"absolute":"fixed",top:$?void 0:0,left:$?void 0:0,zIndex:1e5,...$?.position,maxHeight:$?.maxHeight??"100vh"}},placement:$?.placement??null,triggerAnchorPoint:$?.triggerAnchorPoint??null,arrowProps:{"aria-hidden":"true",role:"presentation",style:{left:$?.arrowOffsetLeft,top:$?.arrowOffsetTop}},updatePosition:M}}function ZF(t){Le(()=>(window.addEventListener("resize",t,!1),()=>{window.removeEventListener("resize",t,!1)}),[t])}function eK(t,e){return e==="rtl"?t.replace("start","right").replace("end","left"):t.replace("start","left").replace("end","right")}function tK(t){let{ref:e,onInteractOutside:n,isDisabled:r,onInteractOutsideStart:i}=t,s=D.useRef({isPointerDown:!1,ignoreEmulatedMouseEvents:!1}),a=Nt(c=>{n&&A5(c,e)&&(i&&i(c),s.current.isPointerDown=!0)}),u=Nt(c=>{n&&n(c)});D.useEffect(()=>{let c=s.current;if(r)return;const f=e.current,h=ze(f);if(typeof PointerEvent<"u"){let m=g=>{c.isPointerDown&&A5(g,e)&&u(g),c.isPointerDown=!1};return h.addEventListener("pointerdown",a,!0),h.addEventListener("click",m,!0),()=>{h.removeEventListener("pointerdown",a,!0),h.removeEventListener("click",m,!0)}}},[e,r])}function A5(t,e){if(t.button>0)return!1;let n=de(t);if(n){const r=n.ownerDocument;if(!r||!we(r.documentElement,n)||n.closest("[data-react-aria-top-layer]"))return!1}return e.current?!t.composedPath().includes(e.current):!1}const zr=[];function p6(t,e){let{onClose:n,shouldCloseOnBlur:r,isOpen:i,isDismissable:s=!1,isKeyboardDismissDisabled:a=!1,shouldCloseOnInteractOutside:u}=t,c=D.useRef(void 0);D.useEffect(()=>{if(i&&!zr.includes(e))return zr.push(e),()=>{let v=zr.indexOf(e);v>=0&&zr.splice(v,1)}},[i,e]);let f=()=>{zr[zr.length-1]===e&&n&&n()},h=v=>{const C=zr[zr.length-1];c.current=C,(!u||u(de(v)))&&C===e&&v.stopPropagation()},m=v=>{(!u||u(de(v)))&&(zr[zr.length-1]===e&&v.stopPropagation(),c.current===e&&f()),c.current=void 0},g=v=>{v.key==="Escape"&&!a&&!v.nativeEvent.isComposing&&(v.stopPropagation(),v.preventDefault(),f())};tK({ref:e,onInteractOutside:s&&i?m:void 0,onInteractOutsideStart:h});let{focusWithinProps:b}=v3({isDisabled:!r,onBlurWithin:v=>{!v.relatedTarget||xF(v.relatedTarget)||(!u||u(v.relatedTarget))&&n?.()}});return{overlayProps:{onKeyDown:g,...b},underlayProps:{}}}const lc=typeof document<"u"&&window.visualViewport;let qf=0,T0;function m6(t={}){let{isDisabled:e}=t;Le(()=>{if(!e)return qf++,qf===1&&(Ni()?T0=rK():T0=nK()),()=>{qf--,qf===0&&T0()}},[e])}function nK(){let t=window.innerWidth-document.documentElement.clientWidth;return Gs(t>0&&("scrollbarGutter"in document.documentElement.style?Dh(document.documentElement,"scrollbarGutter","stable"):Dh(document.documentElement,"paddingRight",`${t}px`)),Dh(document.documentElement,"overflow","hidden"))}function rK(){let t=Dh(document.documentElement,"overflow","hidden"),e,n=!1,r=h=>{let m=de(h);e=Ks(m)?m:Ur(m,!0),n=!1;let g=m.ownerDocument.defaultView.getSelection();g&&!g.isCollapsed&&g.containsNode(m,!0)&&(n=!0),h.composedPath().some(b=>b instanceof HTMLInputElement&&b.type==="range")&&(n=!0),"selectionStart"in m&&"selectionEnd"in m&&m.selectionStart<m.selectionEnd&&m.ownerDocument.activeElement===m&&(n=!0)},i=document.createElement("style"),s=t$();s&&(i.nonce=s),i.textContent=`
|
|
16
|
-
@layer {
|
|
17
|
-
* {
|
|
18
|
-
overscroll-behavior: contain;
|
|
19
|
-
}
|
|
20
|
-
}`.trim(),document.head.prepend(i);let a=h=>{if(!(h.touches.length===2||n)){if(!e||e===document.documentElement||e===document.body){h.preventDefault();return}e.scrollHeight===e.clientHeight&&e.scrollWidth===e.clientWidth&&h.preventDefault()}},u=h=>{let m=de(h),g=h.relatedTarget;g&&ac(g)?(g.focus({preventScroll:!0}),B5(g,ac(m))):g||m.parentElement?.closest("[tabindex]")?.focus({preventScroll:!0})},c=HTMLElement.prototype.focus;HTMLElement.prototype.focus=function(h){let m=je(),g=m!=null&&ac(m);c.call(this,{...h,preventScroll:!0}),(!h||!h.preventScroll)&&B5(this,g)};let f=Gs(A0(document,"touchstart",r,{passive:!1,capture:!0}),A0(document,"touchmove",a,{passive:!1,capture:!0}),A0(document,"blur",u,!0));return()=>{t(),f(),i.remove(),HTMLElement.prototype.focus=c}}function Dh(t,e,n){let r=t.style[e];return t.style[e]=n,()=>{t.style[e]=r}}function A0(t,e,n,r){return t.addEventListener(e,n,r),()=>{t.removeEventListener(e,n,r)}}function B5(t,e){e||!lc?M5(t):lc.addEventListener("resize",()=>M5(t),{once:!0})}function M5(t){let e=document.scrollingElement||document.documentElement,n=t;for(;n&&n!==e;){let r=Ur(n);if(r!==document.documentElement&&r!==document.body&&r!==n){let i=r.getBoundingClientRect(),s=n.getBoundingClientRect();if(s.top<i.top||s.bottom>i.top+n.clientHeight){let a=i.bottom;lc&&(a=Math.min(a,lc.offsetTop+lc.height));let u=s.top-i.top-((a-i.top)/2-s.height/2);r.scrollTo({top:Math.max(0,Math.min(r.scrollHeight-r.clientHeight,r.scrollTop+u)),behavior:"smooth"})}}n=r.parentElement}}function iK(t,e){let{triggerRef:n,popoverRef:r,groupRef:i,isNonModal:s,isKeyboardDismissDisabled:a,shouldCloseOnInteractOutside:u,...c}=t,f=c.trigger==="SubmenuTrigger",{overlayProps:h,underlayProps:m}=p6({isOpen:e.isOpen,onClose:e.close,shouldCloseOnBlur:!0,isDismissable:!s||f,isKeyboardDismissDisabled:a,shouldCloseOnInteractOutside:u},i??r),{overlayProps:g,arrowProps:b,placement:v,triggerAnchorPoint:C}=JF({...c,targetRef:n,overlayRef:r,isOpen:e.isOpen,onClose:s&&!f?e.close:null});return m6({isDisabled:s||!e.isOpen}),D.useEffect(()=>{if(e.isOpen&&r.current)return s?jF(i?.current??r.current):T3([i?.current??r.current],{shouldUseInert:!0})},[s,e.isOpen,r,i]),{popoverProps:$e(h,g),arrowProps:b,underlayProps:m,placement:v,triggerAnchorPoint:C}}var g6={};g6={dismiss:"تجاهل"};var b6={};b6={dismiss:"Отхвърляне"};var y6={};y6={dismiss:"Odstranit"};var v6={};v6={dismiss:"Luk"};var x6={};x6={dismiss:"Schließen"};var C6={};C6={dismiss:"Απόρριψη"};var E6={};E6={dismiss:"Dismiss"};var k6={};k6={dismiss:"Descartar"};var D6={};D6={dismiss:"Lõpeta"};var S6={};S6={dismiss:"Hylkää"};var w6={};w6={dismiss:"Rejeter"};var $6={};$6={dismiss:"התעלם"};var T6={};T6={dismiss:"Odbaci"};var A6={};A6={dismiss:"Elutasítás"};var B6={};B6={dismiss:"Ignora"};var M6={};M6={dismiss:"閉じる"};var R6={};R6={dismiss:"무시"};var N6={};N6={dismiss:"Atmesti"};var P6={};P6={dismiss:"Nerādīt"};var O6={};O6={dismiss:"Lukk"};var L6={};L6={dismiss:"Negeren"};var z6={};z6={dismiss:"Zignoruj"};var I6={};I6={dismiss:"Descartar"};var F6={};F6={dismiss:"Dispensar"};var K6={};K6={dismiss:"Revocare"};var j6={};j6={dismiss:"Пропустить"};var _6={};_6={dismiss:"Zrušiť"};var H6={};H6={dismiss:"Opusti"};var V6={};V6={dismiss:"Odbaci"};var U6={};U6={dismiss:"Avvisa"};var q6={};q6={dismiss:"Kapat"};var G6={};G6={dismiss:"Скасувати"};var W6={};W6={dismiss:"取消"};var Q6={};Q6={dismiss:"關閉"};var Y6={};Y6={"ar-AE":g6,"bg-BG":b6,"cs-CZ":y6,"da-DK":v6,"de-DE":x6,"el-GR":C6,"en-US":E6,"es-ES":k6,"et-EE":D6,"fi-FI":S6,"fr-FR":w6,"he-IL":$6,"hr-HR":T6,"hu-HU":A6,"it-IT":B6,"ja-JP":M6,"ko-KR":R6,"lt-LT":N6,"lv-LV":P6,"nb-NO":O6,"nl-NL":L6,"pl-PL":z6,"pt-BR":I6,"pt-PT":F6,"ro-RO":K6,"ru-RU":j6,"sk-SK":_6,"sl-SI":H6,"sr-SP":V6,"sv-SE":U6,"tr-TR":q6,"uk-UA":G6,"zh-CN":W6,"zh-TW":Q6};function sK(t){return t&&t.__esModule?t.default:t}function X4(t){let{onDismiss:e,...n}=t,r=mr(sK(Y6),"@react-aria/overlays"),i=p3(n,r.format("dismiss")),s=()=>{e&&e()};return V.createElement(VI,null,V.createElement("button",{...i,tabIndex:-1,onClick:s,style:{width:1,height:1}}))}const X6=V.forwardRef(({children:t,...e},n)=>{let r=D.useRef(!1),i=D.useContext(Rc),s=$e(i||{},{...e,register(){r.current=!0,i&&i.register()}});return s.ref=Qs(n||i?.ref),m3(i,s.ref),D.useEffect(()=>{r.current||(r.current=!0)},[]),V.createElement(Rc.Provider,{value:s},t)});function oK({children:t}){let e=D.useMemo(()=>({register:()=>{}}),[]);return V.createElement(Rc.Provider,{value:e},t)}const aK=D.createContext({});function lK(){return D.useContext(aK)??{}}const J6=V.createContext(null);function J4(t){let e=Ws(),{portalContainer:n=e?null:document.body,isExiting:r}=t,[i,s]=D.useState(!1),a=D.useMemo(()=>({contain:i,setContain:s}),[i,s]),{getContainer:u}=lK();if(!t.portalContainer&&u&&(n=u()),!n)return null;let c=t.children;return t.disableFocusManagement||(c=V.createElement(D3,{restoreFocus:!0,contain:(t.shouldContainFocus||i)&&!r},c)),c=V.createElement(J6.Provider,{value:a},V.createElement(oK,null,c)),RS.createPortal(c,n)}function Z6(){let e=D.useContext(J6)?.setContain;Le(()=>{e?.(!0)},[e])}function A3(t){let[e,n]=Ys(t.isOpen,t.defaultOpen||!1,t.onOpenChange);const r=D.useCallback(()=>{n(!0)},[n]),i=D.useCallback(()=>{n(!1)},[n]),s=D.useCallback(()=>{n(!e)},[n,e]);return{isOpen:e,setOpen:n,open:r,close:i,toggle:s}}function B3(t,e=!0){let[n,r]=D.useState(!0),i=n&&e;return Le(()=>{if(i&&t.current&&"getAnimations"in t.current)for(let s of t.current.getAnimations())s instanceof CSSTransition&&s.cancel()},[t,i]),eT(t,i,D.useCallback(()=>r(!1),[])),i}function Z4(t,e){let[n,r]=D.useState(e?"open":"closed");switch(n){case"open":e||r("exiting");break;case"closed":case"exiting":e&&r("open");break}let i=n==="exiting";return eT(t,i,D.useCallback(()=>{r(s=>s==="exiting"?"closed":s)},[])),i}function eT(t,e,n){Le(()=>{if(e&&t.current){if(!("getAnimations"in t.current)){n();return}let r=t.current.getAnimations();if(r.length===0){n();return}let i=!1;return Promise.allSettled(r.map(s=>s.finished)).then(()=>{i||aa.flushSync(()=>{n()})}),()=>{i=!0}}},[t,e,n])}const Oc=D.createContext(null),R5=D.createContext(null),pm=D.forwardRef(function(e,n){[e,n]=Ct(e,n,Oc);let r=D.useContext(ca),i=A3(e),s=e.isOpen!=null||e.defaultOpen!=null||!r?i:r,a=Z4(n,s.isOpen)||e.isExiting||!1,u=Yw(),{direction:c}=Ii();if(u){let f=e.children;return typeof f=="function"&&(f=f({trigger:e.trigger||null,placement:"bottom",isEntering:!1,isExiting:!1,defaultChildren:null})),V.createElement(V.Fragment,null,f)}return s&&!s.isOpen&&!a?null:V.createElement(uK,{...e,triggerRef:e.triggerRef,state:s,popoverRef:n,isExiting:a,dir:c})});function uK({state:t,isExiting:e,UNSTABLE_portalContainer:n,clearContexts:r,...i}){let s=D.useRef(null),a=D.useRef(null),u=D.useContext(R5),c=u&&i.trigger==="SubmenuTrigger",{popoverProps:f,underlayProps:h,arrowProps:m,placement:g,triggerAnchorPoint:b}=iK({...i,offset:i.offset??8,arrowRef:s,groupRef:c?u:a},t),v=i.popoverRef,C=B3(v,!!g)||i.isEntering||!1,E=St({...i,defaultClassName:"react-aria-Popover",values:{trigger:i.trigger||null,placement:g,isEntering:C,isExiting:e}}),k=!i.isNonModal||i.trigger==="SubmenuTrigger",[T,$]=D.useState(!1);Le(()=>{v.current&&$(k&&!v.current.querySelector("[role=dialog]"))},[v,k]),D.useEffect(()=>{T&&(i.trigger!=="SubmenuTrigger"||ta()!=="pointer")&&v.current&&!kl(v.current)&&bn(v.current)},[T,v,i.trigger]);let A=D.useMemo(()=>{let F=E.children;if(r)for(let J of r)F=V.createElement(J.Provider,{value:null},F);return F},[E.children,r]),[B,P]=D.useState(null),M=D.useCallback(()=>{i.triggerRef.current&&P(i.triggerRef.current.getBoundingClientRect().width+"px")},[i.triggerRef]);Le(M,[M]),Y4({ref:E.style?.["--trigger-width"]?void 0:i.triggerRef,onResize:M});let N={...f.style,"--trigger-anchor-point":b?`${b.x}px ${b.y}px`:void 0,...E.style,"--trigger-width":E.style?.["--trigger-width"]||B},I=V.createElement(st.div,{...$e(Ze(i,{global:!0}),f),...E,role:T?"dialog":void 0,tabIndex:T?-1:void 0,"aria-label":i["aria-label"],"aria-labelledby":i["aria-labelledby"],ref:v,slot:i.slot||void 0,style:N,dir:i.dir,"data-trigger":i.trigger,"data-placement":g,"data-entering":C||void 0,"data-exiting":e||void 0},!i.isNonModal&&V.createElement(X4,{onDismiss:t.close}),V.createElement(FF.Provider,{value:{...m,placement:g,ref:s}},A),V.createElement(X4,{onDismiss:t.close}));return c?V.createElement(J4,{...i,shouldContainFocus:T,isExiting:e,portalContainer:n??u?.current??void 0},I):V.createElement(J4,{...i,shouldContainFocus:T,isExiting:e,portalContainer:n},!i.isNonModal&&t.isOpen&&V.createElement("div",{"data-testid":"underlay",...h,style:{position:"fixed",inset:0}}),V.createElement("div",{ref:a,style:{display:"contents"}},V.createElement(R5.Provider,{value:a},I)))}const cK=D.createContext({});var tT={};tT={longPressMessage:"اضغط مطولاً أو اضغط على Alt + السهم لأسفل لفتح القائمة"};var nT={};nT={longPressMessage:"Натиснете продължително или натиснете Alt+ стрелка надолу, за да отворите менюто"};var rT={};rT={longPressMessage:"Dlouhým stiskem nebo stisknutím kláves Alt + šipka dolů otevřete nabídku"};var iT={};iT={longPressMessage:"Langt tryk eller tryk på Alt + pil ned for at åbne menuen"};var sT={};sT={longPressMessage:"Drücken Sie lange oder drücken Sie Alt + Nach-unten, um das Menü zu öffnen"};var oT={};oT={longPressMessage:"Πιέστε παρατεταμένα ή πατήστε Alt + κάτω βέλος για να ανοίξετε το μενού"};var aT={};aT={longPressMessage:"Long press or press Alt + ArrowDown to open menu"};var lT={};lT={longPressMessage:"Mantenga pulsado o pulse Alt + flecha abajo para abrir el menú"};var uT={};uT={longPressMessage:"Menüü avamiseks vajutage pikalt või vajutage klahve Alt + allanool"};var cT={};cT={longPressMessage:"Avaa valikko painamalla pohjassa tai näppäinyhdistelmällä Alt + Alanuoli"};var dT={};dT={longPressMessage:"Appuyez de manière prolongée ou appuyez sur Alt + Flèche vers le bas pour ouvrir le menu."};var fT={};fT={longPressMessage:"לחץ לחיצה ארוכה או הקש Alt + ArrowDown כדי לפתוח את התפריט"};var hT={};hT={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dolje za otvaranje izbornika"};var pT={};pT={longPressMessage:"Nyomja meg hosszan, vagy nyomja meg az Alt + lefele nyíl gombot a menü megnyitásához"};var mT={};mT={longPressMessage:"Premi a lungo o premi Alt + Freccia giù per aprire il menu"};var gT={};gT={longPressMessage:"長押しまたは Alt+下矢印キーでメニューを開く"};var bT={};bT={longPressMessage:"길게 누르거나 Alt + 아래쪽 화살표를 눌러 메뉴 열기"};var yT={};yT={longPressMessage:"Norėdami atidaryti meniu, nuspaudę palaikykite arba paspauskite „Alt + ArrowDown“."};var vT={};vT={longPressMessage:"Lai atvērtu izvēlni, turiet nospiestu vai nospiediet taustiņu kombināciju Alt + lejupvērstā bultiņa"};var xT={};xT={longPressMessage:"Langt trykk eller trykk Alt + PilNed for å åpne menyen"};var CT={};CT={longPressMessage:"Druk lang op Alt + pijl-omlaag of druk op Alt om het menu te openen"};var ET={};ET={longPressMessage:"Naciśnij i przytrzymaj lub naciśnij klawisze Alt + Strzałka w dół, aby otworzyć menu"};var kT={};kT={longPressMessage:"Pressione e segure ou pressione Alt + Seta para baixo para abrir o menu"};var DT={};DT={longPressMessage:"Prima continuamente ou prima Alt + Seta Para Baixo para abrir o menu"};var ST={};ST={longPressMessage:"Apăsați lung sau apăsați pe Alt + săgeată în jos pentru a deschide meniul"};var wT={};wT={longPressMessage:"Нажмите и удерживайте или нажмите Alt + Стрелка вниз, чтобы открыть меню"};var $T={};$T={longPressMessage:"Ponuku otvoríte dlhým stlačením alebo stlačením klávesu Alt + klávesu so šípkou nadol"};var TT={};TT={longPressMessage:"Za odprtje menija pritisnite in držite gumb ali pritisnite Alt+puščica navzdol"};var AT={};AT={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dole da otvorite meni"};var BT={};BT={longPressMessage:"Håll nedtryckt eller tryck på Alt + pil nedåt för att öppna menyn"};var MT={};MT={longPressMessage:"Menüyü açmak için uzun basın veya Alt + Aşağı Ok tuşuna basın"};var RT={};RT={longPressMessage:"Довго або звичайно натисніть комбінацію клавіш Alt і стрілка вниз, щоб відкрити меню"};var NT={};NT={longPressMessage:"长按或按 Alt + 向下方向键以打开菜单"};var PT={};PT={longPressMessage:"長按或按 Alt+向下鍵以開啟功能表"};var OT={};OT={"ar-AE":tT,"bg-BG":nT,"cs-CZ":rT,"da-DK":iT,"de-DE":sT,"el-GR":oT,"en-US":aT,"es-ES":lT,"et-EE":uT,"fi-FI":cT,"fr-FR":dT,"he-IL":fT,"hr-HR":hT,"hu-HU":pT,"it-IT":mT,"ja-JP":gT,"ko-KR":bT,"lt-LT":yT,"lv-LV":vT,"nb-NO":xT,"nl-NL":CT,"pl-PL":ET,"pt-BR":kT,"pt-PT":DT,"ro-RO":ST,"ru-RU":wT,"sk-SK":$T,"sl-SI":TT,"sr-SP":AT,"sv-SE":BT,"tr-TR":MT,"uk-UA":RT,"zh-CN":NT,"zh-TW":PT};function LT(t,e,n){let{type:r}=t,{isOpen:i}=e;D.useEffect(()=>{n&&n.current&&h6.set(n.current,e.close)});let s;r==="menu"?s=!0:r==="listbox"&&(s="listbox");let a=rn();return{triggerProps:{"aria-haspopup":s,"aria-expanded":i,"aria-controls":i?a:void 0,onPress:e.toggle},overlayProps:{id:a}}}function dK(t){return t&&t.__esModule?t.default:t}function fK(t,e,n){let{type:r="menu",isDisabled:i,trigger:s="press"}=t,a=rn(),{triggerProps:u,overlayProps:c}=LT({type:r},e,n),f=b=>{if(!i&&!(s==="longPress"&&!b.altKey)&&n&&n.current)switch(b.key){case"Enter":case" ":if(s==="longPress"||b.isDefaultPrevented())return;case"ArrowDown":"continuePropagation"in b||b.stopPropagation(),b.preventDefault(),e.toggle("first");break;case"ArrowUp":"continuePropagation"in b||b.stopPropagation(),b.preventDefault(),e.toggle("last");break;default:"continuePropagation"in b&&b.continuePropagation()}},h=mr(dK(OT),"@react-aria/menu"),{longPressProps:m}=s6({isDisabled:i||s!=="longPress",accessibilityDescription:h.format("longPressMessage"),onLongPressStart(){e.close()},onLongPress(){e.open("first")}}),g={preventFocusOnPress:!0,onPressStart(b){b.pointerType!=="touch"&&b.pointerType!=="keyboard"&&!i&&(Ar(b.target),e.open(b.pointerType==="virtual"?"first":null))},onPress(b){b.pointerType==="touch"&&!i&&(Ar(b.target),e.toggle())}};return delete u.onPress,{menuTriggerProps:{...u,...s==="press"?g:m,id:a,onKeyDown:f},menuProps:{...c,"aria-labelledby":a,autoFocus:e.focusStrategy||!0,onClose:e.close}}}const zT=new WeakMap;function hK(t,e,n){let{shouldFocusWrap:r=!0,onKeyDown:i,onKeyUp:s,...a}=t;!t["aria-label"]&&t["aria-labelledby"];let u=Ze(t,{labelable:!0}),{listProps:c}=i6({...a,ref:n,selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,shouldFocusWrap:r,linkBehavior:"override"});return zT.set(e,{onClose:t.onClose,onAction:t.onAction,shouldUseVirtualFocus:t.shouldUseVirtualFocus}),{menuProps:$e(u,{onKeyDown:i,onKeyUp:s},{role:"menu",...c,onKeyDown:f=>{(f.key!=="Escape"||t.shouldUseVirtualFocus)&&c.onKeyDown?.(f)}})}}function pK(t,e,n){let{id:r,key:i,closeOnSelect:s,shouldCloseOnSelect:a,isVirtualized:u,"aria-haspopup":c,onPressStart:f,onPressUp:h,onPress:m,onPressChange:g,onPressEnd:b,onClick:v,onHoverStart:C,onHoverChange:E,onHoverEnd:k,onKeyDown:T,onKeyUp:$,onFocus:A,onFocusChange:B,onBlur:P,selectionManager:M=e.selectionManager}=t,N=!!c,I=N&&t["aria-expanded"]==="true",F=t.isDisabled??M.isDisabled(i),J=t.isSelected??M.isSelected(i),q=zT.get(e),ie=e.collection.getItem(i),K=t.onClose||q.onClose,te=Ll(),O=()=>{if(!N&&(ie?.props?.onAction?ie.props.onAction():t.onAction&&t.onAction(i),q.onAction)){let Ie=q.onAction;Ie(i,ie?.value)}},j="menuitem";N||(M.selectionMode==="single"?j="menuitemradio":M.selectionMode==="multiple"&&(j="menuitemcheckbox"));let Y=Uo(),Z=Uo(),H=Uo(),L={id:r,"aria-disabled":F||void 0,role:j,"aria-label":t["aria-label"],"aria-labelledby":Y,"aria-describedby":[t["aria-describedby"],Z,H].filter(Boolean).join(" ")||void 0,"aria-controls":t["aria-controls"],"aria-haspopup":c,"aria-expanded":t["aria-expanded"]};if(M.selectionMode!=="none"&&!N&&(L["aria-checked"]=J),u){let Ie=Number(ie?.index);L["aria-posinset"]=Number.isNaN(Ie)?void 0:Ie+1,L["aria-setsize"]=NF(e.collection)}let U=D.useRef(!1),ne=Ie=>{g?.(Ie),U.current=Ie},le=D.useRef(null),ue=Ie=>{Ie.pointerType!=="keyboard"&&(le.current={pointerType:Ie.pointerType}),Ie.pointerType==="mouse"&&(U.current||Ie.target.click()),h?.(Ie)},fe=Ie=>{v?.(Ie),O(),ew(Ie,te,ie.props.href,ie?.props.routerOptions);let ji=le.current?.pointerType==="keyboard"?le.current?.key==="Enter"||M.selectionMode==="none"||M.isLink(i):M.selectionMode!=="multiple"||M.isLink(i);ji=a??s??ji,K&&!N&&ji&&K(),le.current=null},{itemProps:Ee,isFocused:Ve}=o6({id:r,selectionManager:M,key:i,ref:n,shouldSelectOnPressUp:!0,allowsDifferentPressOrigin:!0,linkBehavior:"none",shouldUseVirtualFocus:q.shouldUseVirtualFocus}),{pressProps:Se,isPressed:kn}=Zc({onPressStart:f,onPress:m,onPressUp:ue,onPressChange:ne,onPressEnd:b,isDisabled:F}),{hoverProps:sn}=Fi({isDisabled:F,onHoverStart(Ie){!Dl()&&!(I&&c)&&(M.setFocused(!0),M.setFocusedKey(i)),C?.(Ie)},onHoverChange:E,onHoverEnd:k}),{keyboardProps:mn}=Qw({onKeyDown:Ie=>{if(Ie.repeat){Ie.continuePropagation();return}switch(Ie.key){case" ":le.current={pointerType:"keyboard",key:" "},de(Ie).click(),No("keyboard");break;case"Enter":le.current={pointerType:"keyboard",key:"Enter"},de(Ie).tagName!=="A"&&de(Ie).click(),No("keyboard");break;default:N||Ie.continuePropagation(),T?.(Ie);break}},onKeyUp:$}),{focusableProps:gr}=am({onBlur:P,onFocus:A,onFocusChange:B},n),jt=Ze(ie?.props);delete jt.id;let to=ZS(ie?.props);return{menuItemProps:{...L,...$e(jt,to,N?{onFocus:Ee.onFocus,"data-collection":Ee["data-collection"],"data-key":Ee["data-key"]}:Ee,Se,sn,mn,gr,q.shouldUseVirtualFocus||N?{onMouseDown:Ie=>Ie.preventDefault()}:void 0,F?void 0:{onClick:fe}),tabIndex:Ee.tabIndex!=null&&I&&!q.shouldUseVirtualFocus?-1:Ee.tabIndex},labelProps:{id:Y},descriptionProps:{id:Z},keyboardShortcutProps:{id:H},isFocused:Ve,isFocusVisible:Ve&&M.isFocused&&Dl()&&!I,isSelected:J,isPressed:kn,isDisabled:F}}function mK(t){let{heading:e,"aria-label":n}=t,r=rn();return{itemProps:{role:"presentation"},headingProps:e?{id:r,role:"presentation"}:{},groupProps:{role:"group","aria-label":n,"aria-labelledby":e?r:void 0}}}function M3(t){let e=A3(t),[n,r]=D.useState(null),[i,s]=D.useState([]),a=()=>{s([]),e.close()};return{focusStrategy:n,...e,open(f=null){r(f),e.open()},toggle(f=null){r(f),e.toggle()},close(){a()},expandedKeysStack:i,openSubmenu:(f,h)=>{s(m=>h>m.length?m:[...m.slice(0,h),f])},closeSubmenu:(f,h)=>{s(m=>m[h]===f?m.slice(0,h):m)}}}class gK{constructor(e,{expandedKeys:n}={}){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.iterable=e,n=n||new Set;let r=a=>{if(this.keyMap.set(a.key,a),a.childNodes&&(a.type==="section"||n.has(a.key)))for(let u of a.childNodes)r(u)};for(let a of e)r(a);let i=null,s=0;for(let[a,u]of this.keyMap)i?(i.nextKey=a,u.prevKey=i.key):(this.firstKey=a,u.prevKey=void 0),u.type==="item"&&(u.index=s++),i=u,i.nextKey=void 0;this.lastKey=i?.key??null}*[Symbol.iterator](){yield*this.iterable}get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey??null:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey??null:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)??null}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}}function bK(t){let{onExpandedChange:e}=t,[n,r]=Ys(t.expandedKeys?new Set(t.expandedKeys):void 0,t.defaultExpandedKeys?new Set(t.defaultExpandedKeys):new Set,e),i=$3(t),s=D.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),a=u6(t,D.useCallback(c=>new gK(c,{expandedKeys:n}),[n]),null);return D.useEffect(()=>{i.focusedKey!=null&&!a.getItem(i.focusedKey)&&i.setFocusedKey(null)},[a,i.focusedKey]),{collection:a,expandedKeys:n,disabledKeys:s,toggleKey:c=>{r(yK(n,c))},setExpandedKeys:r,selectionManager:new td(a,i)}}function yK(t,e){let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n}const IT=D.createContext(null),R3=D.createContext(null),Yh=D.createContext(null),Xh=D.createContext(null);function N3(t){let e=M3(t),n=D.useRef(null),{menuTriggerProps:r,menuProps:i}=fK({...t,type:"menu"},e,n),s=D.useRef(null);return Yw()?null:V.createElement(Br,{values:[[IT,{...i,ref:s}],[ca,e],[Yh,e],[Oc,{trigger:"MenuTrigger",triggerRef:n,scrollRef:s,placement:"bottom start","aria-labelledby":i["aria-labelledby"]}]]},V.createElement(X6,{...r,ref:n,isPressed:e.isOpen},t.children))}const vK=D.createContext(null),X1=class X1 extends la{filter(e,n,r){let i=e.getItem(this.firstChildKey);if(i&&r(i.textValue,this)){let s=this.clone();return n.addDescendants(s,e),s}return null}};X1.type="submenutrigger";let N5=X1;const P3=D.forwardRef(function(e,n){return[e,n]=Ct(e,n,IT),V.createElement(b3,{content:V.createElement(um,e)},r=>V.createElement(xK,{props:e,collection:r,menuRef:n}))});function xK({props:t,collection:e,menuRef:n}){[t,n]=Ct(t,n,Bc);let{filter:r,...i}=t,s=D.useMemo(()=>r?e.filter(r):e,[e,r]),a=bK({...t,collection:s,children:void 0}),u=D.useContext(Yh),{isVirtualized:c,CollectionRoot:f}=D.useContext(Fs),{menuProps:h}=hK({...t,isVirtualized:c,onClose:t.onClose||u?.close},a,n),m=St({...t,children:void 0,defaultClassName:"react-aria-Menu",values:{isEmpty:a.collection.size===0}}),g=null;a.collection.size===0&&t.renderEmptyState&&(g=V.createElement("div",{role:"menuitem",style:{display:"contents"}},t.renderEmptyState()));let b=Ze(t,{global:!0});return V.createElement(D3,null,V.createElement(st.div,{...$e(b,m,h),ref:n,slot:t.slot||void 0,"data-empty":a.collection.size===0||void 0,onScroll:t.onScroll},V.createElement(Br,{values:[[R3,a],[J$,{elementType:"div"}],[gI,{name:"MenuSection",render:FT}],[vK,{parentMenuRef:n,shouldUseVirtualFocus:i?.shouldUseVirtualFocus}],[Lc,{shouldCloseOnSelect:t.shouldCloseOnSelect}],[Bc,null],[om,null],[Xh,a.selectionManager],[Yh,u??M3({})]]},V.createElement(E3,null,V.createElement(f,{collection:a.collection,persistedKeys:yI(a.selectionManager.focusedKey),scrollRef:n}))),g))}class CK extends td{constructor(e,n){super(e.collection,n),this.parent=e}get focusedKey(){return this.parent.focusedKey}get isFocused(){return this.parent.isFocused}setFocusedKey(e,n){return this.parent.setFocusedKey(e,n)}setFocused(e){this.parent.setFocused(e)}get childFocusStrategy(){return this.parent.childFocusStrategy}}function FT(t,e,n,r="react-aria-MenuSection"){let i=D.useContext(R3),{CollectionBranch:s}=D.useContext(Fs),[a,u]=jS(),{headingProps:c,groupProps:f}=mK({heading:u,"aria-label":n.props["aria-label"]??void 0}),h=St({...t,id:void 0,children:void 0,defaultClassName:r,className:n.props?.className,style:n.props?.style,values:void 0}),m=D.useContext(Xh),g=$3(t),b=t.selectionMode!=null?new CK(m,g):m,v=Ol(Lc)?.shouldCloseOnSelect,C=Ze(t,{global:!0});return delete C.id,V.createElement(st.section,{...$e(C,h,f),ref:e},V.createElement(Br,{values:[[X$,{...c,ref:a}],[Xh,b],[Lc,{shouldCloseOnSelect:t.shouldCloseOnSelect??v}]]},V.createElement(s,{collection:i.collection,parent:n})))}const EK=pI(P4,FT),Lc=D.createContext(null),O3=ua(qh,function(e,n,r){[e,n]=Ct(e,n,Lc);let i=Ol(Lc)?.id,s=D.useContext(R3),a=Qs(n),u=D.useContext(Xh),{isVirtualized:c}=D.useContext(Fs),{menuItemProps:f,labelProps:h,descriptionProps:m,keyboardShortcutProps:g,...b}=pK({...e,id:i,key:r.key,selectionManager:u,isVirtualized:c},s,a),{hoverProps:v,isHovered:C}=Fi({isDisabled:b.isDisabled}),E=St({...e,id:void 0,children:r.rendered,defaultClassName:"react-aria-MenuItem",values:{...b,isHovered:C,isFocusVisible:b.isFocusVisible,selectionMode:u.selectionMode,selectionBehavior:u.selectionBehavior,hasSubmenu:!!e["aria-haspopup"],isOpen:e["aria-expanded"]==="true"}}),k=e.href?st.a:st.div,T=Ze(e,{global:!0});return delete T.id,delete T.onClick,V.createElement(k,{...$e(T,E,f,v),ref:a,"data-disabled":b.isDisabled||void 0,"data-hovered":C||void 0,"data-focused":b.isFocused||void 0,"data-focus-visible":b.isFocusVisible||void 0,"data-pressed":b.isPressed||void 0,"data-selected":b.isSelected||void 0,"data-selection-mode":u.selectionMode==="none"?void 0:u.selectionMode,"data-has-submenu":!!e["aria-haspopup"]||void 0,"data-open":e["aria-expanded"]==="true"||void 0},V.createElement(Br,{values:[[C3,{slots:{[ws]:h,label:h,description:m}}],[cK,g],[k3,{isSelected:b.isSelected}]]},E.children))});function kK(t,e){let{role:n="dialog"}=t,r=Uo();r=t["aria-label"]?void 0:r;let i=D.useRef(!1);return D.useEffect(()=>{if(e.current&&!kl(e.current)){bn(e.current);let s=setTimeout(()=>{(je()===e.current||je()===document.body)&&(i.current=!0,e.current&&(e.current.blur(),bn(e.current)),i.current=!1)},500);return()=>{clearTimeout(s)}}},[e]),Z6(),D.useRef(!1),D.useEffect(()=>{}),{dialogProps:{...Ze(t,{labelable:!0}),role:n,tabIndex:-1,"aria-labelledby":t["aria-labelledby"]||r,onBlur:s=>{i.current&&s.stopPropagation()}},titleProps:{id:r}}}const KT=D.createContext(null),ca=D.createContext(null);function DK(t){let e=M3(t),n=D.useRef(null),{triggerProps:r,overlayProps:i}=LT({type:"dialog"},e,n);return r.id=rn(),i["aria-labelledby"]=r.id,V.createElement(Br,{values:[[ca,e],[Yh,e],[KT,i],[Oc,{trigger:"DialogTrigger",triggerRef:n,"aria-labelledby":i["aria-labelledby"]}]]},V.createElement(X6,{...r,ref:n,isPressed:e.isOpen},t.children))}const SK=D.forwardRef(function(e,n){let r=e["aria-labelledby"];[e,n]=Ct(e,n,KT);let{dialogProps:i,titleProps:s}=kK({...e,"aria-labelledby":r},n),a=D.useContext(ca);!i["aria-label"]&&!i["aria-labelledby"]&&e["aria-labelledby"]&&(i["aria-labelledby"]=e["aria-labelledby"]);let u=St({defaultClassName:"react-aria-Dialog",className:e.className,style:e.style,children:e.children,values:{close:a?.close||(()=>{})}}),c=Ze(e,{global:!0});return V.createElement(st.section,{...$e(c,u,i),render:e.render,ref:n,slot:e.slot||void 0},V.createElement(Br,{values:[[H$,{slots:{[ws]:{},title:{...s,level:2}}}],[cm,{slots:{[ws]:{},close:{onPress:()=>a?.close()}}}]]},u.children))});function wK(t){let e=w3({usage:"search",...t}),n=D.useCallback((s,a)=>a.length===0?!0:(s=s.normalize("NFC"),a=a.normalize("NFC"),e.compare(s.slice(0,a.length),a)===0),[e]),r=D.useCallback((s,a)=>a.length===0?!0:(s=s.normalize("NFC"),a=a.normalize("NFC"),e.compare(s.slice(-a.length),a)===0),[e]),i=D.useCallback((s,a)=>{if(a.length===0)return!0;s=s.normalize("NFC"),a=a.normalize("NFC");let u=0,c=a.length;for(;u+c<=s.length;u++){let f=s.slice(u,u+c);if(e.compare(a,f)===0)return!0}return!1},[e]);return D.useMemo(()=>({startsWith:n,endsWith:r,contains:i}),[n,r,i])}var Mt=(function(t){return t[t.none=0]="none",t[t.cancel=0]="cancel",t[t.move=1]="move",t[t.copy=2]="copy",t[t.link=4]="link",t[t.all=7]="all",t})({});const jT={...Mt,copyMove:3,copyLink:6,linkMove:5,all:7,uninitialized:7},_T=HT(jT);_T[7]="all";const uc={none:"cancel",link:"link",copy:"copy",move:"move"},B0=HT(uc);function HT(t){let e={};for(let n in t)e[t[n]]=n;return e}const $K=new Set(["text/plain","text/uri-list","text/html"]),Jh="application/vnd.react-aria.items+json",Zh="application/octet-stream",L3=new WeakMap,VT=Symbol();function TK(t){let{id:e}=L3.get(t)||{};if(!e)throw new Error("Droppable item outside a droppable collection");return e}function AK(t){let{ref:e}=L3.get(t)||{};if(!e)throw new Error("Droppable item outside a droppable collection");return e}function Go(t){let e=new Set;for(let n of t)for(let r of Object.keys(n))e.add(r);return e}function UT(t){return t||(t="virtual"),t==="pointer"&&(t="virtual"),t==="virtual"&&typeof window<"u"&&typeof window.matchMedia=="function"&&window.matchMedia("(pointer: coarse)").matches&&(t="touch"),t}function z3(){return UT(sw())}function qT(){return UT(ta())}function BK(t,e){let n=new Map,r=!1,i=[];for(let s of e){let a=Object.keys(s);a.length>1&&(r=!0);let u={};for(let c of a){let f=n.get(c);f?r=!0:(f=[],n.set(c,f));let h=s[c];u[c]=h,f.push(h)}i.push(u)}for(let[s,a]of n)if($K.has(s)){let u=a.join(`
|
|
21
|
-
`);t.items.add(u,s)}else t.items.add(a[0],s);if(r){let s=JSON.stringify(i);t.items.add(s,Jh)}}class Gf{constructor(e){this.types=new Set;let n=!1;for(let r of e.items)r.type!==Jh&&(r.kind==="file"&&(n=!0),r.type?this.types.add(r.type):this.types.add(Zh));this.includesUnknownTypes=!n&&e.types.includes("Files")}has(e){if(Array.isArray(e))return e.some(n=>this.has(n));if(this.includesUnknownTypes||e===VT&&this.types.has(Zh)||e==="*/*")return!0;if(typeof e=="string"){if(e.endsWith("/*")){for(let n of this.types)if(n.startsWith(e.slice(0,-2)))return!0;return!1}return this.types.has(e)}return!1}}function MK(t){let e=[];if(!t)return e;let n=!1;if(t.types.includes(Jh))try{let r=t.getData(Jh),i=JSON.parse(r);for(let s of i)e.push({kind:"text",types:new Set(Object.keys(s)),getText:a=>Promise.resolve(s[a])});n=!0}catch{}if(!n){let r=new Map;for(let i of t.items)if(i.kind==="string")r.set(i.type||Zh,t.getData(i.type));else if(i.kind==="file")if(typeof i.webkitGetAsEntry=="function"){let s=i.webkitGetAsEntry();if(!s)continue;s.isFile?e.push(ey(i.getAsFile())):s.isDirectory&&e.push(GT(s))}else e.push(ey(i.getAsFile()));r.size>0&&e.push({kind:"text",types:new Set(r.keys()),getText:i=>Promise.resolve(r.get(i))})}return e}function RK(t){return typeof t.text=="function"?t.text():new Promise((e,n)=>{let r=new FileReader;r.onload=()=>{e(r.result)},r.onerror=n,r.readAsText(t)})}function ey(t){if(!t)throw new Error("No file provided");return{kind:"file",type:t.type||Zh,name:t.name,getText:()=>RK(t),getFile:()=>Promise.resolve(t)}}function GT(t){return{kind:"directory",name:t.name,getEntries:()=>NK(t)}}async function*NK(t){let e=t.createReader(),n;do{n=await new Promise((r,i)=>{e.readEntries(r,i)});for(let r of n)if(r.isFile){let i=await PK(r);yield ey(i)}else r.isDirectory&&(yield GT(r))}while(n.length>0)}function PK(t){return new Promise((e,n)=>t.file(e,n))}let It={draggingKeys:new Set};function OK(t){It.draggingCollectionRef=t}function LK(t){It.draggingKeys=t}function sl(t){It.dropCollectionRef=t}function WT(){It={draggingKeys:new Set}}function zK(t){It=t}function Vr(t){let{draggingCollectionRef:e,dropCollectionRef:n}=It;return e?.current!=null&&e.current===(t?.current||n?.current)}let Sh;function ep(t){Sh=t}let ty=Mt.none;function M0(t){ty=t}let ny=new Map,cc=new Map,Sr=null,tp=new Set;function QT(t){return ny.set(t.element,t),Sr?.updateValidDropTargets(),()=>{ny.delete(t.element),Sr?.updateValidDropTargets()}}function IK(t){return cc.set(t.element,t),()=>{cc.delete(t.element)}}function FK(t,e){if(Sr)throw new Error("Cannot begin dragging while already dragging");Sr=new VK(t,e),requestAnimationFrame(()=>{Sr&&(Sr.setup(),qT()==="keyboard"&&Sr.next())});for(let n of tp)n()}function I3(){let[t,e]=D.useState(Sr);return D.useEffect(()=>{let n=()=>e(Sr);return tp.add(n),()=>{tp.delete(n)}},[]),t}function KK(){return!!Sr}function jK(){Sr=null;for(let t of tp)t()}const P5=["pointerdown","pointermove","pointerenter","pointerleave","pointerover","pointerout","pointerup","mousedown","mousemove","mouseenter","mouseleave","mouseover","mouseout","mouseup","touchstart","touchmove","touchend","focusin","focusout"],_K=["pointerup","mouseup","touchend"],HK={keyboard:"dragStartedKeyboard",touch:"dragStartedTouch",virtual:"dragStartedVirtual"};class VK{constructor(e,n){this.validDropTargets=[],this.currentDropTarget=null,this.currentDropItem=null,this.dropOperation=null,this.mutationObserver=null,this.restoreAriaHidden=null,this.isVirtualClick=!1,this.dragTarget=e,this.stringFormatter=n,this.onKeyDown=this.onKeyDown.bind(this),this.onKeyUp=this.onKeyUp.bind(this),this.onFocus=this.onFocus.bind(this),this.onBlur=this.onBlur.bind(this),this.onClick=this.onClick.bind(this),this.onPointerDown=this.onPointerDown.bind(this),this.cancelEvent=this.cancelEvent.bind(this),this.initialFocused=!1}setup(){document.addEventListener("keydown",this.onKeyDown,!0),document.addEventListener("keyup",this.onKeyUp,!0),window.addEventListener("focus",this.onFocus,!0),window.addEventListener("blur",this.onBlur,!0),document.addEventListener("click",this.onClick,!0),document.addEventListener("pointerdown",this.onPointerDown,!0);for(let e of P5)document.addEventListener(e,this.cancelEvent,!0);this.mutationObserver=new MutationObserver(()=>this.updateValidDropTargets()),this.updateValidDropTargets(),Po(this.stringFormatter.format(HK[qT()]))}teardown(){document.removeEventListener("keydown",this.onKeyDown,!0),document.removeEventListener("keyup",this.onKeyUp,!0),window.removeEventListener("focus",this.onFocus,!0),window.removeEventListener("blur",this.onBlur,!0),document.removeEventListener("click",this.onClick,!0),document.removeEventListener("pointerdown",this.onPointerDown,!0);for(let e of P5)document.removeEventListener(e,this.cancelEvent,!0);this.mutationObserver?.disconnect(),this.restoreAriaHidden?.()}onKeyDown(e){if(this.cancelEvent(e),e.key==="Escape"){this.cancel();return}e.key==="Tab"&&!(e.metaKey||e.altKey||e.ctrlKey)&&(e.shiftKey?this.previous():this.next()),typeof this.currentDropTarget?.onKeyDown=="function"&&this.currentDropTarget.onKeyDown(e,this.dragTarget)}onKeyUp(e){this.cancelEvent(e),e.key==="Enter"&&(e.altKey||we(this.getCurrentActivateButton(),de(e))?this.activate(this.currentDropTarget,this.currentDropItem):this.drop())}getCurrentActivateButton(){return this.currentDropItem?.activateButtonRef?.current??this.currentDropTarget?.activateButtonRef?.current??null}onFocus(e){let n=this.getCurrentActivateButton(),r=de(e);if(r===n){this.cancelEvent(e);return}if(r!==this.dragTarget.element&&this.cancelEvent(e),!(r instanceof HTMLElement)||r===this.dragTarget.element)return;let i=this.validDropTargets.find(a=>a.element===r)||this.validDropTargets.find(a=>we(a.element,r));if(!i){this.currentDropTarget?this.currentDropTarget.element.focus():this.dragTarget.element.focus();return}let s=cc.get(r);i&&this.setCurrentDropTarget(i,s)}onBlur(e){let n=this.getCurrentActivateButton();if(n&&e.relatedTarget===n){this.cancelEvent(e);return}de(e)!==this.dragTarget.element&&this.cancelEvent(e),(!e.relatedTarget||!(e.relatedTarget instanceof HTMLElement))&&(this.currentDropTarget?this.currentDropTarget.element.focus():this.dragTarget.element.focus())}onClick(e){if(this.cancelEvent(e),rm(e)||this.isVirtualClick){let n=cc.values(),r=de(e),i=[...n].find(u=>u.element===r||we(u.activateButtonRef?.current,r)),s=this.validDropTargets.find(u=>we(u.element,r)),a=i?.activateButtonRef?.current??s?.activateButtonRef?.current;if(we(a,r)&&s){this.activate(s,i);return}if(de(e)===this.dragTarget.element){this.cancel();return}s&&(this.setCurrentDropTarget(s,i),this.drop(i))}}onPointerDown(e){this.cancelEvent(e),this.isVirtualClick=h3(e)}cancelEvent(e){let n=de(e);(e.type==="focusin"||e.type==="focusout")&&(n===this.dragTarget?.element||n===this.getCurrentActivateButton())||(_K.includes(e.type)||e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation())}updateValidDropTargets(){if(!this.mutationObserver)return;if(this.mutationObserver.disconnect(),this.restoreAriaHidden&&this.restoreAriaHidden(),this.validDropTargets=UK(this.dragTarget),this.validDropTargets.length>0){let i=this.findNearestDropTarget();this.validDropTargets=[...this.validDropTargets.slice(i),...this.validDropTargets.slice(0,i)]}this.currentDropTarget&&!this.validDropTargets.includes(this.currentDropTarget)&&this.setCurrentDropTarget(this.validDropTargets[0]);let e=Go(this.dragTarget.items),n=[...cc.values()].filter(i=>typeof i.getDropOperation=="function"?i.getDropOperation(e,this.dragTarget.allowedDropOperations)!=="cancel":!0),r=this.validDropTargets.filter(i=>!n.some(s=>we(i.element,s.element)));this.restoreAriaHidden=T3([this.dragTarget.element,...n.flatMap(i=>i.activateButtonRef?.current?[i.element,i.activateButtonRef?.current]:[i.element]),...r.flatMap(i=>i.activateButtonRef?.current?[i.element,i.activateButtonRef?.current]:[i.element])],{shouldUseInert:!0}),this.mutationObserver.observe(document.body,{subtree:!0,attributes:!0,attributeFilter:["aria-hidden","inert"]})}next(){if(!this.currentDropTarget){this.setCurrentDropTarget(this.validDropTargets[0]);return}let e=this.validDropTargets.indexOf(this.currentDropTarget);if(e<0){this.setCurrentDropTarget(this.validDropTargets[0]);return}e===this.validDropTargets.length-1?this.dragTarget.element.closest('[aria-hidden="true"], [inert]')?this.setCurrentDropTarget(this.validDropTargets[0]):(this.setCurrentDropTarget(null),this.dragTarget.element.focus()):this.setCurrentDropTarget(this.validDropTargets[e+1])}previous(){if(!this.currentDropTarget){this.setCurrentDropTarget(this.validDropTargets[this.validDropTargets.length-1]);return}let e=this.validDropTargets.indexOf(this.currentDropTarget);if(e<0){this.setCurrentDropTarget(this.validDropTargets[this.validDropTargets.length-1]);return}e===0?this.dragTarget.element.closest('[aria-hidden="true"], [inert]')?this.setCurrentDropTarget(this.validDropTargets[this.validDropTargets.length-1]):(this.setCurrentDropTarget(null),this.dragTarget.element.focus()):this.setCurrentDropTarget(this.validDropTargets[e-1])}findNearestDropTarget(){let e=this.dragTarget.element.getBoundingClientRect(),n=1/0,r=-1;for(let i=0;i<this.validDropTargets.length;i++){let a=this.validDropTargets[i].element.getBoundingClientRect(),u=a.left-e.left,c=a.top-e.top,f=u*u+c*c;f<n&&(n=f,r=i)}return r}setCurrentDropTarget(e,n){if(e!==this.currentDropTarget){if(this.currentDropTarget&&typeof this.currentDropTarget.onDropExit=="function"){let r=this.currentDropTarget.element.getBoundingClientRect();this.currentDropTarget.onDropExit({type:"dropexit",x:r.left+r.width/2,y:r.top+r.height/2})}if(this.currentDropTarget=e,e){if(typeof e.onDropEnter=="function"){let r=e.element.getBoundingClientRect();e.onDropEnter({type:"dropenter",x:r.left+r.width/2,y:r.top+r.height/2},this.dragTarget)}n||e?.element.focus()}}if(n!=null&&n!==this.currentDropItem&&(this.currentDropTarget&&typeof this.currentDropTarget.onDropTargetEnter=="function"&&this.currentDropTarget.onDropTargetEnter(n.target),n.element.focus(),this.currentDropItem=n,!this.initialFocused)){let r=n?.element.getAttribute("aria-label");r&&Po(r,"polite"),this.initialFocused=!0}}end(){if(this.teardown(),jK(),typeof this.dragTarget.onDragEnd=="function"){let n=(this.currentDropTarget&&this.dropOperation!=="cancel"?this.currentDropTarget:this.dragTarget).element.getBoundingClientRect();this.dragTarget.onDragEnd({type:"dragend",x:n.x+n.width/2,y:n.y+n.height/2,dropOperation:this.dropOperation||"cancel"})}this.currentDropTarget&&!this.currentDropTarget.preventFocusOnDrop&&je()?.dispatchEvent(new FocusEvent("focusin",{bubbles:!0})),this.setCurrentDropTarget(null)}cancel(){this.setCurrentDropTarget(null),this.end(),this.dragTarget.element.closest('[aria-hidden="true"], [inert]')||this.dragTarget.element.focus(),je()?.dispatchEvent(new FocusEvent("focusin",{bubbles:!0})),Po(this.stringFormatter.format("dropCanceled"))}drop(e){if(!this.currentDropTarget){this.cancel();return}if(typeof e?.getDropOperation=="function"){let n=Go(this.dragTarget.items);this.dropOperation=e.getDropOperation(n,this.dragTarget.allowedDropOperations)}else if(typeof this.currentDropTarget.getDropOperation=="function"){let n=Go(this.dragTarget.items);this.dropOperation=this.currentDropTarget.getDropOperation(n,this.dragTarget.allowedDropOperations)}else this.dropOperation=this.dragTarget.allowedDropOperations[0];if(typeof this.currentDropTarget.onDrop=="function"){let n=this.dragTarget.items.map(i=>({kind:"text",types:new Set(Object.keys(i)),getText:s=>Promise.resolve(i[s])})),r=this.currentDropTarget.element.getBoundingClientRect();this.currentDropTarget.onDrop({type:"drop",x:r.left+r.width/2,y:r.top+r.height/2,items:n,dropOperation:this.dropOperation},e?.target??null)}this.end(),Po(this.stringFormatter.format("dropComplete"))}activate(e,n){if(e&&typeof e.onDropActivate=="function"){let r=n?.target??null,i=e.element.getBoundingClientRect();e.onDropActivate({type:"dropactivate",x:i.left+i.width/2,y:i.top+i.height/2},r)}}}function UK(t){let e=Go(t.items);return[...ny.values()].filter(n=>n.element.closest('[aria-hidden="true"], [inert]')?!1:typeof n.getDropOperation=="function"?n.getDropOperation(e,t.allowedDropOperations)!=="cancel":!0)}var YT={};YT={dragDescriptionKeyboard:"اضغط Enter لبدء السحب.",dragDescriptionKeyboardAlt:"اضغط على Alt + Enter لبدء السحب.",dragDescriptionLongPress:"اضغط باستمرار لبدء السحب.",dragDescriptionTouch:"اضغط مرتين لبدء السحب.",dragDescriptionVirtual:"انقر لبدء السحب.",dragItem:t=>`اسحب ${t.itemText}`,dragSelectedItems:(t,e)=>`اسحب ${e.plural(t.count,{one:()=>`${e.number(t.count)} عنصر محدد`,other:()=>`${e.number(t.count)} عناصر محددة`})}`,dragSelectedKeyboard:(t,e)=>`اضغط على Enter للسحب ${e.plural(t.count,{one:"عدد العناصر المختارة",other:"عدد العناصر المختارة"})}.`,dragSelectedKeyboardAlt:(t,e)=>`اضغط على مفتاحي Alt + Enter للسحب ${e.plural(t.count,{one:"عدد العناصر المختارة",other:"عدد العناصر المختارة"})}.`,dragSelectedLongPress:(t,e)=>`اضغط باستمرار للسحب ${e.plural(t.count,{one:"عدد العناصر المختارة",other:"عدد العناصر المختارة"})}.`,dragStartedKeyboard:"بدأ السحب. اضغط Tab للانتقال إلى موضع الإفلات، ثم اضغط Enter للإفلات، أو اضغط Escape للإلغاء.",dragStartedTouch:"بدأ السحب. انتقل إلى موضع الإفلات، ثم اضغط مرتين للإفلات.",dragStartedVirtual:"بدأ السحب. انتقل إلى مكان الإفلات، ثم انقر أو اضغط Enter للإفلات.",dropCanceled:"تم إلغاء الإفلات.",dropComplete:"اكتمل الإفلات.",dropDescriptionKeyboard:"اضغط Enter للإفلات. اضغط Escape لإلغاء السحب.",dropDescriptionTouch:"اضغط مرتين للإفلات.",dropDescriptionVirtual:"انقر للإفلات.",dropIndicator:"مؤشر الإفلات",dropOnItem:t=>`إفلات ${t.itemText}`,dropOnRoot:"الإفلات",endDragKeyboard:"السحب. اضغط Enter لإلغاء السحب.",endDragTouch:"السحب. اضغط مرتين لإلغاء السحب.",endDragVirtual:"السحب. انقر لإلغاء السحب.",insertAfter:t=>`أدخل بعد ${t.itemText}`,insertBefore:t=>`أدخل قبل ${t.itemText}`,insertBetween:t=>`أدخل بين ${t.beforeItemText} و ${t.afterItemText}`};var XT={};XT={dragDescriptionKeyboard:"Натиснете „Enter“, за да започнете да плъзгате.",dragDescriptionKeyboardAlt:"Натиснете Alt + Enter, за да започнете да плъзгате.",dragDescriptionLongPress:"Натиснете продължително, за да започнете да плъзгате.",dragDescriptionTouch:"Натиснете двукратно, за да започнете да плъзгате.",dragDescriptionVirtual:"Щракнете, за да започнете да плъзгате.",dragItem:t=>`Плъзни ${t.itemText}`,dragSelectedItems:(t,e)=>`Плъзни ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елемента`})}`,dragSelectedKeyboard:(t,e)=>`Натиснете Enter, за да плъзнете ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Натиснете Alt и Enter, за да плъзнете ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,dragSelectedLongPress:(t,e)=>`Натиснете продължително, за да плъзнете ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,dragStartedKeyboard:"Започна плъзгане. Натиснете „Tab“, за да се придвижите до целта, след което натиснете „Enter“ за пускане или натиснете „Escape“ за отмяна.",dragStartedTouch:"Започна плъзгане. Придвижете се до целта, след което натиснете двукратно, за да пуснете.",dragStartedVirtual:"Започна плъзгане. Придвижете се до целта, след което щракнете или натиснете „Enter“ за пускане.",dropCanceled:"Пускането е отменено.",dropComplete:"Пускането е завършено.",dropDescriptionKeyboard:"Натиснете „Enter“ за пускане. Натиснете „Escape“ за отмяна на плъзгането.",dropDescriptionTouch:"Натиснете двукратно за пускане.",dropDescriptionVirtual:"Щракнете за пускане.",dropIndicator:"индикатор за пускане",dropOnItem:t=>`Пусни върху ${t.itemText}`,dropOnRoot:"Пусни върху",endDragKeyboard:"Плъзгане. Натиснете „Enter“ за отмяна на плъзгането.",endDragTouch:"Плъзгане. Натиснете двукратно за отмяна на плъзгането.",endDragVirtual:"Плъзгане. Щракнете за отмяна.",insertAfter:t=>`Вмъкни след ${t.itemText}`,insertBefore:t=>`Вмъкни преди ${t.itemText}`,insertBetween:t=>`Вмъкни между ${t.beforeItemText} и ${t.afterItemText}`};var JT={};JT={dragDescriptionKeyboard:"Stisknutím klávesy Enter začnete s přetahováním.",dragDescriptionKeyboardAlt:"Stisknutím Alt + Enter zahájíte přetahování.",dragDescriptionLongPress:"Dlouhým stisknutím zahájíte přetahování.",dragDescriptionTouch:"Poklepáním začnete s přetahováním.",dragDescriptionVirtual:"Kliknutím začnete s přetahováním.",dragItem:t=>`Přetáhnout ${t.itemText}`,dragSelectedItems:(t,e)=>`Přetáhnout ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,few:()=>`${e.number(t.count)} vybrané položky`,other:()=>`${e.number(t.count)} vybraných položek`})}`,dragSelectedKeyboard:(t,e)=>`Stisknutím klávesy Enter přetáhněte ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,other:()=>`${e.number(t.count)} vybrané položky`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Stisknutím Alt + Enter přetáhněte ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,other:()=>`${e.number(t.count)} vybrané položky`})}.`,dragSelectedLongPress:(t,e)=>`Dlouhým stisknutím přetáhnete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,other:()=>`${e.number(t.count)} vybrané položky`})}.`,dragStartedKeyboard:"Začněte s přetahováním. Po stisknutí klávesy Tab najděte požadovaný cíl a stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.",dragStartedTouch:"Začněte s přetahováním. Najděte požadovaný cíl a poklepáním přetažení dokončete.",dragStartedVirtual:"Začněte s přetahováním. Najděte požadovaný cíl a kliknutím nebo stisknutím klávesy Enter přetažení dokončete.",dropCanceled:"Přetažení bylo zrušeno.",dropComplete:"Přetažení bylo dokončeno.",dropDescriptionKeyboard:"Stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.",dropDescriptionTouch:"Poklepáním přetažení dokončete.",dropDescriptionVirtual:"Kliknutím objekt přetáhněte.",dropIndicator:"indikátor přetažení",dropOnItem:t=>`Přetáhnout na ${t.itemText}`,dropOnRoot:"Přetáhnout na",endDragKeyboard:"Probíhá přetahování. Stisknutím klávesy Enter přetažení zrušíte.",endDragTouch:"Probíhá přetahování. Poklepáním přetažení zrušíte.",endDragVirtual:"Probíhá přetahování. Kliknutím přetažení zrušíte.",insertAfter:t=>`Vložit za ${t.itemText}`,insertBefore:t=>`Vložit před ${t.itemText}`,insertBetween:t=>`Vložit mezi ${t.beforeItemText} a ${t.afterItemText}`};var ZT={};ZT={dragDescriptionKeyboard:"Tryk på Enter for at starte med at trække.",dragDescriptionKeyboardAlt:"Tryk på Alt + Enter for at starte med at trække.",dragDescriptionLongPress:"Tryk længe for at starte med at trække.",dragDescriptionTouch:"Dobbelttryk for at starte med at trække.",dragDescriptionVirtual:"Klik for at starte med at trække.",dragItem:t=>`Træk ${t.itemText}`,dragSelectedItems:(t,e)=>`Træk ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}`,dragSelectedKeyboard:(t,e)=>`Tryk på Enter for at trække ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgte element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Tryk på Alt + Enter for at trække ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgte element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedLongPress:(t,e)=>`Tryk længe for at trække ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgte element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragStartedKeyboard:"Startet med at trække. Tryk på Tab for at gå til et slip-mål, tryk derefter på Enter for at slippe, eller tryk på Escape for at annullere.",dragStartedTouch:"Startet med at trække. Gå til et slip-mål, og dobbelttryk derefter for at slippe.",dragStartedVirtual:"Startet med at trække. Gå til et slip-mål, og klik eller tryk derefter på enter for at slippe.",dropCanceled:"Slip annulleret.",dropComplete:"Slip fuldført.",dropDescriptionKeyboard:"Tryk på Enter for at slippe. Tryk på Escape for at annullere trækning.",dropDescriptionTouch:"Dobbelttryk for at slippe.",dropDescriptionVirtual:"Klik for at slippe.",dropIndicator:"slip-indikator",dropOnItem:t=>`Slip på ${t.itemText}`,dropOnRoot:"Slip på",endDragKeyboard:"Trækning. Tryk på enter for at annullere træk.",endDragTouch:"Trækning. Dobbelttryk for at annullere træk.",endDragVirtual:"Trækning. Klik for at annullere trækning.",insertAfter:t=>`Indsæt efter ${t.itemText}`,insertBefore:t=>`Indsæt før ${t.itemText}`,insertBetween:t=>`Indsæt mellem ${t.beforeItemText} og ${t.afterItemText}`};var eA={};eA={dragDescriptionKeyboard:"Drücken Sie die Eingabetaste, um den Ziehvorgang zu starten.",dragDescriptionKeyboardAlt:"Alt + Eingabe drücken, um den Ziehvorgang zu starten.",dragDescriptionLongPress:"Lang drücken, um mit dem Ziehen zu beginnen.",dragDescriptionTouch:"Tippen Sie doppelt, um den Ziehvorgang zu starten.",dragDescriptionVirtual:"Zum Starten des Ziehvorgangs klicken.",dragItem:t=>`${t.itemText} ziehen`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Objekt`,other:()=>`${e.number(t.count)} ausgewählte Objekte`})} ziehen`,dragSelectedKeyboard:(t,e)=>`Eingabetaste drücken, um ${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Element`,other:()=>`${e.number(t.count)} ausgewählte Elemente`})} zu ziehen.`,dragSelectedKeyboardAlt:(t,e)=>`Alt + Eingabetaste drücken, um ${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Element`,other:()=>`${e.number(t.count)} ausgewählte Elemente`})} zu ziehen.`,dragSelectedLongPress:(t,e)=>`Lang drücken, um ${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Element`,other:()=>`${e.number(t.count)} ausgewählte Elemente`})} zu ziehen.`,dragStartedKeyboard:"Ziehvorgang gestartet. Drücken Sie die Tabulatortaste, um zu einem Ablegeziel zu navigieren und drücken Sie dann die Eingabetaste, um das Objekt abzulegen, oder Escape, um den Vorgang abzubrechen.",dragStartedTouch:"Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und tippen Sie doppelt, um das Objekt abzulegen.",dragStartedVirtual:"Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und klicken Sie oder drücken Sie die Eingabetaste, um das Objekt abzulegen.",dropCanceled:"Ablegen abgebrochen.",dropComplete:"Ablegen abgeschlossen.",dropDescriptionKeyboard:"Drücken Sie die Eingabetaste, um das Objekt abzulegen. Drücken Sie Escape, um den Vorgang abzubrechen.",dropDescriptionTouch:"Tippen Sie doppelt, um das Objekt abzulegen.",dropDescriptionVirtual:"Zum Ablegen klicken.",dropIndicator:"Ablegeanzeiger",dropOnItem:t=>`Auf ${t.itemText} ablegen`,dropOnRoot:"Ablegen auf",endDragKeyboard:"Ziehvorgang läuft. Drücken Sie die Eingabetaste, um den Vorgang abzubrechen.",endDragTouch:"Ziehvorgang läuft. Tippen Sie doppelt, um den Vorgang abzubrechen.",endDragVirtual:"Ziehvorgang läuft. Klicken Sie, um den Vorgang abzubrechen.",insertAfter:t=>`Nach ${t.itemText} einfügen`,insertBefore:t=>`Vor ${t.itemText} einfügen`,insertBetween:t=>`Zwischen ${t.beforeItemText} und ${t.afterItemText} einfügen`};var tA={};tA={dragDescriptionKeyboard:"Πατήστε Enter για έναρξη της μεταφοράς.",dragDescriptionKeyboardAlt:"Πατήστε Alt + Enter για έναρξη της μεταφοράς.",dragDescriptionLongPress:"Πατήστε παρατεταμένα για να ξεκινήσετε τη μεταφορά.",dragDescriptionTouch:"Πατήστε δύο φορές για έναρξη της μεταφοράς.",dragDescriptionVirtual:"Κάντε κλικ για να ξεκινήσετε τη μεταφορά.",dragItem:t=>`Μεταφορά ${t.itemText}`,dragSelectedItems:(t,e)=>`Μεταφορά σε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}`,dragSelectedKeyboard:(t,e)=>`Πατήστε Enter για να σύρετε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Πατήστε Alt + Enter για να σύρετε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}.`,dragSelectedLongPress:(t,e)=>`Πατήστε παρατεταμένα για να σύρετε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}.`,dragStartedKeyboard:"Η μεταφορά ξεκίνησε. Πατήστε το πλήκτρο Tab για να μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε Enter για απόθεση ή πατήστε Escape για ακύρωση.",dragStartedTouch:"Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε δύο φορές για απόθεση.",dragStartedVirtual:"Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, κάντε κλικ ή πατήστε Enter για απόθεση.",dropCanceled:"Η απόθεση ακυρώθηκε.",dropComplete:"Η απόθεση ολοκληρώθηκε.",dropDescriptionKeyboard:"Πατήστε Enter για απόθεση. Πατήστε Escape για ακύρωση της μεταφοράς.",dropDescriptionTouch:"Πατήστε δύο φορές για απόθεση.",dropDescriptionVirtual:"Κάντε κλικ για απόθεση.",dropIndicator:"δείκτης απόθεσης",dropOnItem:t=>`Απόθεση σε ${t.itemText}`,dropOnRoot:"Απόθεση σε",endDragKeyboard:"Μεταφορά σε εξέλιξη. Πατήστε Enter για ακύρωση της μεταφοράς.",endDragTouch:"Μεταφορά σε εξέλιξη. Πατήστε δύο φορές για ακύρωση της μεταφοράς.",endDragVirtual:"Μεταφορά σε εξέλιξη. Κάντε κλικ για ακύρωση της μεταφοράς.",insertAfter:t=>`Εισαγωγή μετά από ${t.itemText}`,insertBefore:t=>`Εισαγωγή πριν από ${t.itemText}`,insertBetween:t=>`Εισαγωγή μεταξύ ${t.beforeItemText} και ${t.afterItemText}`};var nA={};nA={dragItem:t=>`Drag ${t.itemText}`,dragSelectedItems:(t,e)=>`Drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}`,dragDescriptionKeyboard:"Press Enter to start dragging.",dragDescriptionKeyboardAlt:"Press Alt + Enter to start dragging.",dragDescriptionTouch:"Double tap to start dragging.",dragDescriptionVirtual:"Click to start dragging.",dragDescriptionLongPress:"Long press to start dragging.",dragSelectedKeyboard:(t,e)=>`Press Enter to drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Press Alt + Enter to drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}.`,dragSelectedLongPress:(t,e)=>`Long press to drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}.`,dragStartedKeyboard:"Started dragging. Press Tab to navigate to a drop target, then press Enter to drop, or press Escape to cancel.",dragStartedTouch:"Started dragging. Navigate to a drop target, then double tap to drop.",dragStartedVirtual:"Started dragging. Navigate to a drop target, then click or press Enter to drop.",endDragKeyboard:"Dragging. Press Enter to cancel drag.",endDragTouch:"Dragging. Double tap to cancel drag.",endDragVirtual:"Dragging. Click to cancel drag.",dropDescriptionKeyboard:"Press Enter to drop. Press Escape to cancel drag.",dropDescriptionTouch:"Double tap to drop.",dropDescriptionVirtual:"Click to drop.",dropCanceled:"Drop canceled.",dropComplete:"Drop complete.",dropIndicator:"drop indicator",dropOnRoot:"Drop on",dropOnItem:t=>`Drop on ${t.itemText}`,insertBefore:t=>`Insert before ${t.itemText}`,insertBetween:t=>`Insert between ${t.beforeItemText} and ${t.afterItemText}`,insertAfter:t=>`Insert after ${t.itemText}`};var rA={};rA={dragDescriptionKeyboard:"Pulse Intro para empezar a arrastrar.",dragDescriptionKeyboardAlt:"Pulse Intro para empezar a arrastrar.",dragDescriptionLongPress:"Mantenga pulsado para comenzar a arrastrar.",dragDescriptionTouch:"Pulse dos veces para iniciar el arrastre.",dragDescriptionVirtual:"Haga clic para iniciar el arrastre.",dragItem:t=>`Arrastrar ${t.itemText}`,dragSelectedItems:(t,e)=>`Arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}`,dragSelectedKeyboard:(t,e)=>`Pulse Intro para arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pulse Alt + Intro para arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,dragSelectedLongPress:(t,e)=>`Mantenga pulsado para arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,dragStartedKeyboard:"Se ha empezado a arrastrar. Pulse el tabulador para ir al destino donde se vaya a colocar y, a continuación, pulse Intro para soltar, o pulse Escape para cancelar.",dragStartedTouch:"Se ha empezado a arrastrar. Vaya al destino donde se vaya a colocar y, a continuación, pulse dos veces para soltar.",dragStartedVirtual:"Se ha empezado a arrastrar. Vaya al destino donde se vaya a colocar y, a continuación, haga clic o pulse Intro para soltar.",dropCanceled:"Se ha cancelado la colocación.",dropComplete:"Colocación finalizada.",dropDescriptionKeyboard:"Pulse Intro para soltar. Pulse Escape para cancelar el arrastre.",dropDescriptionTouch:"Pulse dos veces para soltar.",dropDescriptionVirtual:"Haga clic para soltar.",dropIndicator:"indicador de colocación",dropOnItem:t=>`Soltar en ${t.itemText}`,dropOnRoot:"Soltar en",endDragKeyboard:"Arrastrando. Pulse Intro para cancelar el arrastre.",endDragTouch:"Arrastrando. Pulse dos veces para cancelar el arrastre.",endDragVirtual:"Arrastrando. Haga clic para cancelar el arrastre.",insertAfter:t=>`Insertar después de ${t.itemText}`,insertBefore:t=>`Insertar antes de ${t.itemText}`,insertBetween:t=>`Insertar entre ${t.beforeItemText} y ${t.afterItemText}`};var iA={};iA={dragDescriptionKeyboard:"Lohistamise alustamiseks vajutage klahvi Enter.",dragDescriptionKeyboardAlt:"Lohistamise alustamiseks vajutage klahvikombinatsiooni Alt + Enter.",dragDescriptionLongPress:"Vajutage pikalt lohistamise alustamiseks.",dragDescriptionTouch:"Topeltpuudutage lohistamise alustamiseks.",dragDescriptionVirtual:"Klõpsake lohistamise alustamiseks.",dragItem:t=>`Lohista ${t.itemText}`,dragSelectedItems:(t,e)=>`Lohista ${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksust`,other:()=>`${e.number(t.count)} valitud üksust`})}`,dragSelectedKeyboard:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksuse`,other:()=>`${e.number(t.count)} valitud üksuse`})} lohistamiseks vajutage sisestusklahvi Enter.`,dragSelectedKeyboardAlt:(t,e)=>`Lohistamiseks vajutage klahvikombinatsiooni Alt + Enter ${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksuse`,other:()=>`${e.number(t.count)} valitud üksuse`})} jaoks.`,dragSelectedLongPress:(t,e)=>`Pikk vajutus ${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksuse`,other:()=>`${e.number(t.count)} valitud üksuse`})} lohistamiseks.`,dragStartedKeyboard:"Alustati lohistamist. Kukutamise sihtmärgi juurde navigeerimiseks vajutage klahvi Tab, seejärel vajutage kukutamiseks klahvi Enter või loobumiseks klahvi Escape.",dragStartedTouch:"Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja topeltpuudutage kukutamiseks.",dragStartedVirtual:"Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja kukutamiseks klõpsake või vajutage klahvi Enter.",dropCanceled:"Lohistamisest loobuti.",dropComplete:"Lohistamine on tehtud.",dropDescriptionKeyboard:"Kukutamiseks vajutage klahvi Enter. Lohistamisest loobumiseks vajutage klahvi Escape.",dropDescriptionTouch:"Kukutamiseks topeltpuudutage.",dropDescriptionVirtual:"Kukutamiseks klõpsake.",dropIndicator:"lohistamise indikaator",dropOnItem:t=>`Kukuta asukohta ${t.itemText}`,dropOnRoot:"Kukuta asukohta",endDragKeyboard:"Lohistamine. Lohistamisest loobumiseks vajutage klahvi Enter.",endDragTouch:"Lohistamine. Lohistamisest loobumiseks topeltpuudutage.",endDragVirtual:"Lohistamine. Lohistamisest loobumiseks klõpsake.",insertAfter:t=>`Sisesta ${t.itemText} järele`,insertBefore:t=>`Sisesta ${t.itemText} ette`,insertBetween:t=>`Sisesta ${t.beforeItemText} ja ${t.afterItemText} vahele`};var sA={};sA={dragDescriptionKeyboard:"Aloita vetäminen painamalla Enter-näppäintä.",dragDescriptionKeyboardAlt:"Aloita vetäminen painamalla Alt + Enter -näppäinyhdistelmää.",dragDescriptionLongPress:"Aloita vetäminen pitämällä painettuna.",dragDescriptionTouch:"Aloita vetäminen kaksoisnapauttamalla.",dragDescriptionVirtual:"Aloita vetäminen napsauttamalla.",dragItem:t=>`Vedä kohdetta ${t.itemText}`,dragSelectedItems:(t,e)=>`Vedä ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittua kohdetta`,other:()=>`${e.number(t.count)} valittua kohdetta`})}`,dragSelectedKeyboard:(t,e)=>`Vedä painamalla Enter ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittu kohde`,other:()=>`${e.number(t.count)} valittua kohdetta`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Vedä painamalla Alt + Enter ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittu kohde`,other:()=>`${e.number(t.count)} valittua kohdetta`})}.`,dragSelectedLongPress:(t,e)=>`Vedä pitämällä painettuna ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittu kohde`,other:()=>`${e.number(t.count)} valittua kohdetta`})}.`,dragStartedKeyboard:"Vetäminen aloitettu. Siirry pudotuskohteeseen painamalla sarkainnäppäintä ja sitten pudota painamalla Enter-näppäintä tai peruuta painamalla Escape-näppäintä.",dragStartedTouch:"Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota kaksoisnapauttamalla.",dragStartedVirtual:"Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota napsauttamalla tai painamalla Enter-näppäintä.",dropCanceled:"Pudotus peruutettu.",dropComplete:"Pudotus suoritettu.",dropDescriptionKeyboard:"Pudota painamalla Enter-näppäintä. Peruuta vetäminen painamalla Escape-näppäintä.",dropDescriptionTouch:"Pudota kaksoisnapauttamalla.",dropDescriptionVirtual:"Pudota napsauttamalla.",dropIndicator:"pudotuksen ilmaisin",dropOnItem:t=>`Pudota kohteeseen ${t.itemText}`,dropOnRoot:"Pudota kohteeseen",endDragKeyboard:"Vedetään. Peruuta vetäminen painamalla Enter-näppäintä.",endDragTouch:"Vedetään. Peruuta vetäminen kaksoisnapauttamalla.",endDragVirtual:"Vedetään. Peruuta vetäminen napsauttamalla.",insertAfter:t=>`Lisää kohteen ${t.itemText} jälkeen`,insertBefore:t=>`Lisää ennen kohdetta ${t.itemText}`,insertBetween:t=>`Lisää kohteiden ${t.beforeItemText} ja ${t.afterItemText} väliin`};var oA={};oA={dragDescriptionKeyboard:"Appuyez sur Entrée pour commencer le déplacement.",dragDescriptionKeyboardAlt:"Appuyez sur Alt + Entrée pour commencer à faire glisser.",dragDescriptionLongPress:"Appuyez de manière prolongée pour commencer à faire glisser.",dragDescriptionTouch:"Touchez deux fois pour commencer le déplacement.",dragDescriptionVirtual:"Cliquez pour commencer le déplacement.",dragItem:t=>`Déplacer ${t.itemText}`,dragSelectedItems:(t,e)=>`Déplacer ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}`,dragSelectedKeyboard:(t,e)=>`Appuyez sur Entrée pour faire glisser ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Appuyez sur Alt + Entrée pour faire glisser ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,dragSelectedLongPress:(t,e)=>`Appuyez de manière prolongée pour faire glisser ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,dragStartedKeyboard:"Déplacement commencé. Appuyez sur Tabulation pour accéder à une cible de dépôt, puis appuyez sur Entrée pour déposer, ou appuyez sur Échap pour annuler.",dragStartedTouch:"Déplacement commencé. Accédez à une cible de dépôt, puis touchez deux fois pour déposer.",dragStartedVirtual:"Déplacement commencé. Accédez à une cible de dépôt, puis cliquez ou appuyez sur Entrée pour déposer.",dropCanceled:"Dépôt annulé.",dropComplete:"Dépôt terminé.",dropDescriptionKeyboard:"Appuyez sur Entrée pour déposer. Appuyez sur Échap pour annuler le déplacement.",dropDescriptionTouch:"Touchez deux fois pour déposer.",dropDescriptionVirtual:"Cliquez pour déposer.",dropIndicator:"indicateur de dépôt",dropOnItem:t=>`Déposer sur ${t.itemText}`,dropOnRoot:"Déposer sur",endDragKeyboard:"Déplacement. Appuyez sur Entrée pour annuler le déplacement.",endDragTouch:"Déplacement. Touchez deux fois pour annuler le déplacement.",endDragVirtual:"Déplacement. Cliquez pour annuler le déplacement.",insertAfter:t=>`Insérer après ${t.itemText}`,insertBefore:t=>`Insérer avant ${t.itemText}`,insertBetween:t=>`Insérer entre ${t.beforeItemText} et ${t.afterItemText}`};var aA={};aA={dragDescriptionKeyboard:"הקש על Enter כדי להתחיל לגרור.",dragDescriptionKeyboardAlt:"הקש Alt + Enter כדי להתחיל לגרור.",dragDescriptionLongPress:"לחץ לחיצה ארוכה כדי להתחיל לגרור.",dragDescriptionTouch:"הקש פעמיים כדי להתחיל בגרירה.",dragDescriptionVirtual:"לחץ כדי להתחיל לגרור.",dragItem:t=>`גרור את ${t.itemText}`,dragSelectedItems:(t,e)=>`גרור ${e.plural(t.count,{one:()=>`פריט נבחר ${e.number(t.count)}`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}`,dragSelectedKeyboard:(t,e)=>`הקש על Enter כדי לגרור ${e.plural(t.count,{one:()=>`${e.number(t.count)} פריט שנבחר`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}.`,dragSelectedKeyboardAlt:(t,e)=>`הקש Alt + Enter כדי לגרור ${e.plural(t.count,{one:()=>`${e.number(t.count)} פריט שנבחר`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}.`,dragSelectedLongPress:(t,e)=>`לחץ לחיצה ארוכה כדי לגרור ${e.plural(t.count,{one:()=>`${e.number(t.count)} פריט שנבחר`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}.`,dragStartedKeyboard:"התחלת לגרור. הקש על Tab כדי לנווט לנקודת הגרירה ולאחר מכן הקש על Enter כדי לשחרר או על Escape כדי לבטל.",dragStartedTouch:"התחלת לגרור. נווט לנקודת השחרור ולאחר מכן הקש פעמיים כדי לשחרר.",dragStartedVirtual:"התחלת לגרור. נווט לנקודת השחרור ולאחר מכן לחץ או הקש על Enter כדי לשחרר.",dropCanceled:"השחרור בוטל.",dropComplete:"השחרור הושלם.",dropDescriptionKeyboard:"הקש על Enter כדי לשחרר. הקש על Escape כדי לבטל את הגרירה.",dropDescriptionTouch:"הקש פעמיים כדי לשחרר.",dropDescriptionVirtual:"לחץ כדי לשחרר.",dropIndicator:"מחוון שחרור",dropOnItem:t=>`שחרר על ${t.itemText}`,dropOnRoot:"שחרר על",endDragKeyboard:"גורר. הקש על Enter כדי לבטל את הגרירה.",endDragTouch:"גורר. הקש פעמיים כדי לבטל את הגרירה.",endDragVirtual:"גורר. לחץ כדי לבטל את הגרירה.",insertAfter:t=>`הוסף אחרי ${t.itemText}`,insertBefore:t=>`הוסף לפני ${t.itemText}`,insertBetween:t=>`הוסף בין ${t.beforeItemText} לבין ${t.afterItemText}`};var lA={};lA={dragDescriptionKeyboard:"Pritisnite Enter da biste počeli povlačiti.",dragDescriptionKeyboardAlt:"Pritisnite Alt + Enter za početak povlačenja.",dragDescriptionLongPress:"Dugo pritisnite za početak povlačenja.",dragDescriptionTouch:"Dvaput dodirnite da biste počeli povlačiti.",dragDescriptionVirtual:"Kliknite da biste počeli povlačiti.",dragItem:t=>`Povucite stavku ${t.itemText}`,dragSelectedItems:(t,e)=>`Povucite ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabranu stavku`,other:()=>`ovoliko odabranih stavki: ${e.number(t.count)}`})}`,dragSelectedKeyboard:(t,e)=>`Pritisnite Enter za povlačenje ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabrana stavka`,other:()=>`${e.number(t.count)} odabrane stavke`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pritisnite Alt + Enter za povlačenje ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabrana stavka`,other:()=>`${e.number(t.count)} odabrane stavke`})}.`,dragSelectedLongPress:(t,e)=>`Dugo pritisnite za povlačenje ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabrana stavka`,other:()=>`${e.number(t.count)} odabrane stavke`})}.`,dragStartedKeyboard:"Počeli ste povlačiti. Pritisnite tipku tabulatora da biste došli do cilja ispuštanja, a zatim Enter da biste ispustili stavku ili Escape da biste prekinuli povlačenje.",dragStartedTouch:"Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim dvaput dodirnite da biste ispustili stavku.",dragStartedVirtual:"Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim kliknite ili pritisnite Enter da biste ispustili stavku.",dropCanceled:"Povlačenje je prekinuto.",dropComplete:"Ispuštanje je dovršeno.",dropDescriptionKeyboard:"Pritisnite Enter da biste ispustili stavku. Pritisnite Escape da biste prekinuli povlačenje.",dropDescriptionTouch:"Dvaput dodirnite da biste ispustili stavku.",dropDescriptionVirtual:"Kliknite da biste ispustili stavku.",dropIndicator:"pokazatelj ispuštanja",dropOnItem:t=>`Ispustite na stavku ${t.itemText}`,dropOnRoot:"Ispustite na",endDragKeyboard:"Povlačenje. Pritisnite Enter da biste prekinuli povlačenje.",endDragTouch:"Povlačenje. Dvaput dodirnite da biste prekinuli povlačenje.",endDragVirtual:"Povlačenje. Kliknite da biste prekinuli povlačenje.",insertAfter:t=>`Umetnite iza stavke ${t.itemText}`,insertBefore:t=>`Ispustite ispred stavke ${t.itemText}`,insertBetween:t=>`Umetnite između stavki ${t.beforeItemText} i ${t.afterItemText}`};var uA={};uA={dragDescriptionKeyboard:"Nyomja le az Enter billentyűt a húzás megkezdéséhez.",dragDescriptionKeyboardAlt:"Nyomja le az Alt + Enter billentyűket a húzás megkezdéséhez.",dragDescriptionLongPress:"Hosszan nyomja meg a húzás elindításához.",dragDescriptionTouch:"Koppintson duplán a húzás megkezdéséhez.",dragDescriptionVirtual:"Kattintson a húzás megkezdéséhez.",dragItem:t=>`${t.itemText} húzása`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzása`,dragSelectedKeyboard:(t,e)=>`Nyomja meg az Entert ${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzásához.`,dragSelectedKeyboardAlt:(t,e)=>`Nyomja meg az Alt + Enter billentyűket ${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzásához.`,dragSelectedLongPress:(t,e)=>`Tartsa lenyomva hosszan ${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzásához.`,dragStartedKeyboard:"Húzás megkezdve. Nyomja le a Tab billentyűt az elengedési célhoz navigálásához, majd nyomja le az Enter billentyűt az elengedéshez, vagy nyomja le az Escape billentyűt a megszakításhoz.",dragStartedTouch:"Húzás megkezdve. Navigáljon egy elengedési célhoz, majd koppintson duplán az elengedéshez.",dragStartedVirtual:"Húzás megkezdve. Navigáljon egy elengedési célhoz, majd kattintson vagy nyomja le az Enter billentyűt az elengedéshez.",dropCanceled:"Elengedés megszakítva.",dropComplete:"Elengedés teljesítve.",dropDescriptionKeyboard:"Nyomja le az Enter billentyűt az elengedéshez. Nyomja le az Escape billentyűt a húzás megszakításához.",dropDescriptionTouch:"Koppintson duplán az elengedéshez.",dropDescriptionVirtual:"Kattintson az elengedéshez.",dropIndicator:"elengedésjelző",dropOnItem:t=>`Elengedés erre: ${t.itemText}`,dropOnRoot:"Elengedés erre:",endDragKeyboard:"Húzás folyamatban. Nyomja le az Enter billentyűt a húzás megszakításához.",endDragTouch:"Húzás folyamatban. Koppintson duplán a húzás megszakításához.",endDragVirtual:"Húzás folyamatban. Kattintson a húzás megszakításához.",insertAfter:t=>`Beszúrás ${t.itemText} után`,insertBefore:t=>`Beszúrás ${t.itemText} elé`,insertBetween:t=>`Beszúrás ${t.beforeItemText} és ${t.afterItemText} közé`};var cA={};cA={dragDescriptionKeyboard:"Premi Invio per iniziare a trascinare.",dragDescriptionKeyboardAlt:"Premi Alt + Invio per iniziare a trascinare.",dragDescriptionLongPress:"Premi a lungo per iniziare a trascinare.",dragDescriptionTouch:"Tocca due volte per iniziare a trascinare.",dragDescriptionVirtual:"Fai clic per iniziare a trascinare.",dragItem:t=>`Trascina ${t.itemText}`,dragSelectedItems:(t,e)=>`Trascina ${e.plural(t.count,{one:()=>`${e.number(t.count)} altro elemento selezionato`,other:()=>`${e.number(t.count)} altri elementi selezionati`})}`,dragSelectedKeyboard:(t,e)=>`Premi Invio per trascinare ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Premi Alt + Invio per trascinare ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,dragSelectedLongPress:(t,e)=>`Premi a lungo per trascinare ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,dragStartedKeyboard:"Hai iniziato a trascinare. Premi Tab per arrivare sull’area di destinazione, quindi premi Invio per rilasciare o Esc per annullare.",dragStartedTouch:"Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi tocca due volte per rilasciare.",dragStartedVirtual:"Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi fai clic o premi Invio per rilasciare.",dropCanceled:"Rilascio annullato.",dropComplete:"Rilascio completato.",dropDescriptionKeyboard:"Premi Invio per rilasciare. Premi Esc per annullare.",dropDescriptionTouch:"Tocca due volte per rilasciare.",dropDescriptionVirtual:"Fai clic per rilasciare.",dropIndicator:"indicatore di rilascio",dropOnItem:t=>`Rilascia su ${t.itemText}`,dropOnRoot:"Rilascia su",endDragKeyboard:"Trascinamento. Premi Invio per annullare.",endDragTouch:"Trascinamento. Tocca due volte per annullare.",endDragVirtual:"Trascinamento. Fai clic per annullare.",insertAfter:t=>`Inserisci dopo ${t.itemText}`,insertBefore:t=>`Inserisci prima di ${t.itemText}`,insertBetween:t=>`Inserisci tra ${t.beforeItemText} e ${t.afterItemText}`};var dA={};dA={dragDescriptionKeyboard:"Enter キーを押してドラッグを開始してください。",dragDescriptionKeyboardAlt:"Alt+Enter キーを押してドラッグを開始します。",dragDescriptionLongPress:"長押ししてドラッグを開始します。",dragDescriptionTouch:"ダブルタップしてドラッグを開始します。",dragDescriptionVirtual:"クリックしてドラッグを開始します。",dragItem:t=>`${t.itemText} をドラッグ`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 個の選択項目`,other:()=>`${e.number(t.count)} 個の選択項目`})} をドラッグ`,dragSelectedKeyboard:(t,e)=>`Enter キーを押して、${e.plural(t.count,{one:()=>`${e.number(t.count)} 選択した項目`,other:()=>`${e.number(t.count)} 選択した項目`})}をドラッグします。`,dragSelectedKeyboardAlt:(t,e)=>`Alt+Enter キーを押して、${e.plural(t.count,{one:()=>`${e.number(t.count)} 選択した項目`,other:()=>`${e.number(t.count)} 選択した項目`})}をドラッグします。`,dragSelectedLongPress:(t,e)=>`長押しして、${e.plural(t.count,{one:()=>`${e.number(t.count)} 選択した項目`,other:()=>`${e.number(t.count)} 選択した項目`})}をドラッグします。`,dragStartedKeyboard:"ドラッグを開始します。Tab キーを押してドロップターゲットにいどうし、Enter キーを押してドロップするか、Esc キーを押してキャンセルします。",dragStartedTouch:"ドラッグを開始しました。ドロップのターゲットに移動し、ダブルタップしてドロップします。",dragStartedVirtual:"ドラッグを開始しました。ドロップのターゲットに移動し、クリックまたは Enter キーを押してドロップします。",dropCanceled:"ドロップがキャンセルされました。",dropComplete:"ドロップが完了しました。",dropDescriptionKeyboard:"Enter キーを押してドロップします。Esc キーを押してドラッグをキャンセルします。",dropDescriptionTouch:"ダブルタップしてドロップします。",dropDescriptionVirtual:"クリックしてドロップします。",dropIndicator:"ドロップインジケーター",dropOnItem:t=>`${t.itemText} にドロップ`,dropOnRoot:"ドロップ場所",endDragKeyboard:"ドラッグしています。Enter キーを押してドラッグをキャンセルします。",endDragTouch:"ドラッグしています。ダブルタップしてドラッグをキャンセルします。",endDragVirtual:"ドラッグしています。クリックしてドラッグをキャンセルします。",insertAfter:t=>`${t.itemText} の後に挿入`,insertBefore:t=>`${t.itemText} の前に挿入`,insertBetween:t=>`${t.beforeItemText} と ${t.afterItemText} の間に挿入`};var fA={};fA={dragDescriptionKeyboard:"드래그를 시작하려면 Enter를 누르세요.",dragDescriptionKeyboardAlt:"드래그를 시작하려면 Alt + Enter를 누르십시오.",dragDescriptionLongPress:"드래그를 시작하려면 길게 누르십시오.",dragDescriptionTouch:"드래그를 시작하려면 더블 탭하세요.",dragDescriptionVirtual:"드래그를 시작하려면 클릭하세요.",dragItem:t=>`${t.itemText} 드래그`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})} 드래그`,dragSelectedKeyboard:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})}을 드래그하려면 Enter를 누르십시오.`,dragSelectedKeyboardAlt:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})}을 드래그하려면 Alt + Enter를 누르십시오.`,dragSelectedLongPress:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})}을 드래그하려면 길게 누르십시오.`,dragStartedKeyboard:"드래그가 시작되었습니다. Tab을 눌러 드롭 대상으로 이동한 다음 Enter를 눌러 드롭하거나 Esc를 눌러 취소하세요.",dragStartedTouch:"드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 더블 탭하여 드롭하세요.",dragStartedVirtual:"드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 클릭하거나 Enter를 눌러 드롭하세요.",dropCanceled:"드롭이 취소되었습니다.",dropComplete:"드롭이 완료되었습니다.",dropDescriptionKeyboard:"드롭하려면 Enter를 누르세요. 드래그를 취소하려면 Esc를 누르세요.",dropDescriptionTouch:"더블 탭하여 드롭하세요.",dropDescriptionVirtual:"드롭하려면 클릭하세요.",dropIndicator:"드롭 표시기",dropOnItem:t=>`${t.itemText}에 드롭`,dropOnRoot:"드롭 대상",endDragKeyboard:"드래그 중입니다. 드래그를 취소하려면 Enter를 누르세요.",endDragTouch:"드래그 중입니다. 드래그를 취소하려면 더블 탭하세요.",endDragVirtual:"드래그 중입니다. 드래그를 취소하려면 클릭하세요.",insertAfter:t=>`${t.itemText} 이후에 삽입`,insertBefore:t=>`${t.itemText} 이전에 삽입`,insertBetween:t=>`${t.beforeItemText} 및 ${t.afterItemText} 사이에 삽입`};var hA={};hA={dragDescriptionKeyboard:"Paspauskite „Enter“, kad pradėtumėte vilkti.",dragDescriptionKeyboardAlt:"Paspauskite „Alt + Enter“, kad pradėtumėte vilkti.",dragDescriptionLongPress:"Palaikykite nuspaudę, kad pradėtumėte vilkti.",dragDescriptionTouch:"Palieskite dukart, kad pradėtumėte vilkti.",dragDescriptionVirtual:"Spustelėkite, kad pradėtumėte vilkti.",dragItem:t=>`Vilkti ${t.itemText}`,dragSelectedItems:(t,e)=>`Vilkti ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}`,dragSelectedKeyboard:(t,e)=>`Paspauskite „Enter“, jei norite nuvilkti ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Paspauskite „Alt + Enter“, kad nuvilktumėte ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}.`,dragSelectedLongPress:(t,e)=>`Nuspaudę palaikykite, kad nuvilktumėte ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}.`,dragStartedKeyboard:"Pradėta vilkti. Paspauskite „Tab“, kad pereitumėte į tiesioginę paskirties vietą, tada paspauskite „Enter“, kad numestumėte, arba „Escape“, kad atšauktumėte.",dragStartedTouch:"Pradėta vilkti. Eikite į tiesioginę paskirties vietą, tada palieskite dukart, kad numestumėte.",dragStartedVirtual:"Pradėta vilkti. Eikite į tiesioginę paskirties vietą ir spustelėkite arba paspauskite „Enter“, kad numestumėte.",dropCanceled:"Numetimas atšauktas.",dropComplete:"Numesta.",dropDescriptionKeyboard:"Paspauskite „Enter“, kad numestumėte. Paspauskite „Escape“, kad atšauktumėte vilkimą.",dropDescriptionTouch:"Palieskite dukart, kad numestumėte.",dropDescriptionVirtual:"Spustelėkite, kad numestumėte.",dropIndicator:"numetimo indikatorius",dropOnItem:t=>`Numesti ant ${t.itemText}`,dropOnRoot:"Numesti ant",endDragKeyboard:"Velkama. Paspauskite „Enter“, kad atšauktumėte vilkimą.",endDragTouch:"Velkama. Spustelėkite dukart, kad atšauktumėte vilkimą.",endDragVirtual:"Velkama. Spustelėkite, kad atšauktumėte vilkimą.",insertAfter:t=>`Įterpti po ${t.itemText}`,insertBefore:t=>`Įterpti prieš ${t.itemText}`,insertBetween:t=>`Įterpti tarp ${t.beforeItemText} ir ${t.afterItemText}`};var pA={};pA={dragDescriptionKeyboard:"Nospiediet Enter, lai sāktu vilkšanu.",dragDescriptionKeyboardAlt:"Nospiediet taustiņu kombināciju Alt+Enter, lai sāktu vilkšanu.",dragDescriptionLongPress:"Turiet nospiestu, lai sāktu vilkšanu.",dragDescriptionTouch:"Veiciet dubultskārienu, lai sāktu vilkšanu.",dragDescriptionVirtual:"Noklikšķiniet, lai sāktu vilkšanu.",dragItem:t=>`Velciet ${t.itemText}`,dragSelectedItems:(t,e)=>`Velciet ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}`,dragSelectedKeyboard:(t,e)=>`Nospiediet taustiņu Enter, lai vilktu ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Nospiediet taustiņu kombināciju Alt+Enter, lai vilktu ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}.`,dragSelectedLongPress:(t,e)=>`Turiet nospiestu, lai vilktu ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}.`,dragStartedKeyboard:"Uzsākta vilkšana. Nospiediet taustiņu Tab, lai pārietu uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu, vai nospiediet Escape, lai atceltu.",dragStartedTouch:"Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam veiciet dubultskārienu, lai nomestu.",dragStartedVirtual:"Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu.",dropCanceled:"Nomešana atcelta.",dropComplete:"Nomešana pabeigta.",dropDescriptionKeyboard:"Nospiediet Enter, lai nomestu. Nospiediet Escape, lai atceltu vilkšanu.",dropDescriptionTouch:"Veiciet dubultskārienu, lai nomestu.",dropDescriptionVirtual:"Noklikšķiniet, lai nomestu.",dropIndicator:"nomešanas indikators",dropOnItem:t=>`Nometiet uz ${t.itemText}`,dropOnRoot:"Nometiet uz",endDragKeyboard:"Notiek vilkšana. Nospiediet Enter, lai atceltu vilkšanu.",endDragTouch:"Notiek vilkšana. Veiciet dubultskārienu, lai atceltu vilkšanu.",endDragVirtual:"Notiek vilkšana. Noklikšķiniet, lai atceltu vilkšanu.",insertAfter:t=>`Ievietojiet pēc ${t.itemText}`,insertBefore:t=>`Ievietojiet pirms ${t.itemText}`,insertBetween:t=>`Ievietojiet starp ${t.beforeItemText} un ${t.afterItemText}`};var mA={};mA={dragDescriptionKeyboard:"Trykk på Enter for å begynne å dra.",dragDescriptionKeyboardAlt:"Trykk på Alt + Enter for å begynne å dra.",dragDescriptionLongPress:"Trykk lenge for å begynne å dra.",dragDescriptionTouch:"Dobbelttrykk for å begynne å dra.",dragDescriptionVirtual:"Klikk for å begynne å dra.",dragItem:t=>`Dra ${t.itemText}`,dragSelectedItems:(t,e)=>`Dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} merket element`,other:()=>`${e.number(t.count)} merkede elementer`})}`,dragSelectedKeyboard:(t,e)=>`Trykk Enter for å dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Trykk på Alt + Enter for å dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedLongPress:(t,e)=>`Trykk lenge for å dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragStartedKeyboard:"Begynte å dra. Trykk på Tab for å navigere til et mål, og trykk deretter på Enter for å slippe eller på Esc for å avbryte.",dragStartedTouch:"Begynte å dra. Naviger til et mål, og dobbelttrykk for å slippe.",dragStartedVirtual:"Begynte å dra. Naviger til et mål, og klikk eller trykk på Enter for å slippe.",dropCanceled:"Avbrøt slipping.",dropComplete:"Slippingen er fullført.",dropDescriptionKeyboard:"Trykk på Enter for å slippe. Trykk på Esc hvis du vil avbryte draingen.",dropDescriptionTouch:"Dobbelttrykk for å slippe.",dropDescriptionVirtual:"Klikk for å slippe.",dropIndicator:"slippeindikator",dropOnItem:t=>`Slipp på ${t.itemText}`,dropOnRoot:"Slipp på",endDragKeyboard:"Drar. Trykk på Enter hvis du vil avbryte.",endDragTouch:"Drar. Dobbelttrykk hvis du vil avbryte.",endDragVirtual:"Drar. Klikk hvis du vil avbryte.",insertAfter:t=>`Sett inn etter ${t.itemText}`,insertBefore:t=>`Sett inn før ${t.itemText}`,insertBetween:t=>`Sett inn mellom ${t.beforeItemText} og ${t.afterItemText}`};var gA={};gA={dragDescriptionKeyboard:"Druk op Enter om te slepen.",dragDescriptionKeyboardAlt:"Druk op Alt + Enter om te slepen.",dragDescriptionLongPress:"Houd lang ingedrukt om te slepen.",dragDescriptionTouch:"Dubbeltik om te slepen.",dragDescriptionVirtual:"Klik om met slepen te starten.",dragItem:t=>`${t.itemText} slepen`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} slepen`,dragSelectedKeyboard:(t,e)=>`Druk op Enter om ${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} te slepen.`,dragSelectedKeyboardAlt:(t,e)=>`Druk op Alt + Enter om ${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} te slepen.`,dragSelectedLongPress:(t,e)=>`Houd lang ingedrukt om ${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} te slepen.`,dragStartedKeyboard:"Begonnen met slepen. Druk op Tab om naar een locatie te gaan. Druk dan op Enter om neer te zetten, of op Esc om te annuleren.",dragStartedTouch:"Begonnen met slepen. Ga naar de gewenste locatie en dubbeltik om neer te zetten.",dragStartedVirtual:"Begonnen met slepen. Ga naar de gewenste locatie en klik of druk op Enter om neer te zetten.",dropCanceled:"Neerzetten geannuleerd.",dropComplete:"Neerzetten voltooid.",dropDescriptionKeyboard:"Druk op Enter om neer te zetten. Druk op Esc om het slepen te annuleren.",dropDescriptionTouch:"Dubbeltik om neer te zetten.",dropDescriptionVirtual:"Klik om neer te zetten.",dropIndicator:"aanwijzer voor neerzetten",dropOnItem:t=>`Neerzetten op ${t.itemText}`,dropOnRoot:"Neerzetten op",endDragKeyboard:"Bezig met slepen. Druk op Enter om te annuleren.",endDragTouch:"Bezig met slepen. Dubbeltik om te annuleren.",endDragVirtual:"Bezig met slepen. Klik om te annuleren.",insertAfter:t=>`Plaatsen na ${t.itemText}`,insertBefore:t=>`Plaatsen vóór ${t.itemText}`,insertBetween:t=>`Plaatsen tussen ${t.beforeItemText} en ${t.afterItemText}`};var bA={};bA={dragDescriptionKeyboard:"Naciśnij Enter, aby rozpocząć przeciąganie.",dragDescriptionKeyboardAlt:"Naciśnij Alt + Enter, aby rozpocząć przeciąganie.",dragDescriptionLongPress:"Naciśnij i przytrzymaj, aby rozpocząć przeciąganie.",dragDescriptionTouch:"Dotknij dwukrotnie, aby rozpocząć przeciąganie.",dragDescriptionVirtual:"Kliknij, aby rozpocząć przeciąganie.",dragItem:t=>`Przeciągnij ${t.itemText}`,dragSelectedItems:(t,e)=>`Przeciągnij ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybranych elementów`})}`,dragSelectedKeyboard:(t,e)=>`Naciśnij Enter, aby przeciągnąć ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybrane(-ych) elementy(-ów)`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Naciśnij Alt + Enter, aby przeciągnąć ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybrane(-ych) elementy(-ów)`})}.`,dragSelectedLongPress:(t,e)=>`Naciśnij i przytrzymaj, aby przeciągnąć ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybrane(-ych) elementy(-ów)`})}.`,dragStartedKeyboard:"Rozpoczęto przeciąganie. Naciśnij Tab, aby wybrać miejsce docelowe, a następnie naciśnij Enter, aby upuścić, lub Escape, aby anulować.",dragStartedTouch:"Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie dotknij dwukrotnie, aby upuścić.F",dragStartedVirtual:"Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie kliknij lub naciśnij Enter, aby upuścić.",dropCanceled:"Anulowano upuszczenie.",dropComplete:"Zakończono upuszczanie.",dropDescriptionKeyboard:"Naciśnij Enter, aby upuścić. Naciśnij Escape, aby anulować przeciągnięcie.",dropDescriptionTouch:"Dotknij dwukrotnie, aby upuścić.",dropDescriptionVirtual:"Kliknij, aby upuścić.",dropIndicator:"wskaźnik upuszczenia",dropOnItem:t=>`Upuść na ${t.itemText}`,dropOnRoot:"Upuść",endDragKeyboard:"Przeciąganie. Naciśnij Enter, aby anulować przeciągnięcie.",endDragTouch:"Przeciąganie. Kliknij dwukrotnie, aby anulować przeciągnięcie.",endDragVirtual:"Przeciąganie. Kliknij, aby anulować przeciąganie.",insertAfter:t=>`Umieść za ${t.itemText}`,insertBefore:t=>`Umieść przed ${t.itemText}`,insertBetween:t=>`Umieść między ${t.beforeItemText} i ${t.afterItemText}`};var yA={};yA={dragDescriptionKeyboard:"Pressione Enter para começar a arrastar.",dragDescriptionKeyboardAlt:"Pressione Alt + Enter para começar a arrastar.",dragDescriptionLongPress:"Pressione e segure para começar a arrastar.",dragDescriptionTouch:"Toque duas vezes para começar a arrastar.",dragDescriptionVirtual:"Clique para começar a arrastar.",dragItem:t=>`Arrastar ${t.itemText}`,dragSelectedItems:(t,e)=>`Arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}`,dragSelectedKeyboard:(t,e)=>`Pressione Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pressione Alt + Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedLongPress:(t,e)=>`Pressione e segure para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragStartedKeyboard:"Comece a arrastar. Pressione Tab para navegar até um alvo e, em seguida, pressione Enter para soltar ou pressione Escape para cancelar.",dragStartedTouch:"Comece a arrastar. Navegue até um alvo e toque duas vezes para soltar.",dragStartedVirtual:"Comece a arrastar. Navegue até um alvo e clique ou pressione Enter para soltar.",dropCanceled:"Liberação cancelada.",dropComplete:"Liberação concluída.",dropDescriptionKeyboard:"Pressione Enter para soltar. Pressione Escape para cancelar.",dropDescriptionTouch:"Toque duas vezes para soltar.",dropDescriptionVirtual:"Clique para soltar.",dropIndicator:"indicador de liberação",dropOnItem:t=>`Soltar em ${t.itemText}`,dropOnRoot:"Soltar",endDragKeyboard:"Arrastando. Pressione Enter para cancelar.",endDragTouch:"Arrastando. Toque duas vezes para cancelar.",endDragVirtual:"Arrastando. Clique para cancelar.",insertAfter:t=>`Inserir após ${t.itemText}`,insertBefore:t=>`Inserir antes de ${t.itemText}`,insertBetween:t=>`Inserir entre ${t.beforeItemText} e ${t.afterItemText}`};var vA={};vA={dragDescriptionKeyboard:"Prima Enter para iniciar o arrasto.",dragDescriptionKeyboardAlt:"Prima Alt + Enter para iniciar o arrasto.",dragDescriptionLongPress:"Prima longamente para começar a arrastar.",dragDescriptionTouch:"Faça duplo toque para começar a arrastar.",dragDescriptionVirtual:"Clique para iniciar o arrasto.",dragItem:t=>`Arrastar ${t.itemText}`,dragSelectedItems:(t,e)=>`Arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}`,dragSelectedKeyboard:(t,e)=>`Prima Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Prima Alt + Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedLongPress:(t,e)=>`Prima longamente para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragStartedKeyboard:"Arrasto iniciado. Prima a tecla de tabulação para navegar para um destino para largar, e em seguida prima Enter para largar ou prima Escape para cancelar.",dragStartedTouch:"Arrasto iniciado. Navegue para um destino para largar, e em seguida faça duplo toque para largar.",dragStartedVirtual:"Arrasto iniciado. Navegue para um destino para largar, e em seguida clique ou prima Enter para largar.",dropCanceled:"Largar cancelado.",dropComplete:"Largar completo.",dropDescriptionKeyboard:"Prima Enter para largar. Prima Escape para cancelar o arrasto.",dropDescriptionTouch:"Faça duplo toque para largar.",dropDescriptionVirtual:"Clique para largar.",dropIndicator:"Indicador de largar",dropOnItem:t=>`Largar em ${t.itemText}`,dropOnRoot:"Largar em",endDragKeyboard:"A arrastar. Prima Enter para cancelar o arrasto.",endDragTouch:"A arrastar. Faça duplo toque para cancelar o arrasto.",endDragVirtual:"A arrastar. Clique para cancelar o arrasto.",insertAfter:t=>`Inserir depois de ${t.itemText}`,insertBefore:t=>`Inserir antes de ${t.itemText}`,insertBetween:t=>`Inserir entre ${t.beforeItemText} e ${t.afterItemText}`};var xA={};xA={dragDescriptionKeyboard:"Apăsați pe Enter pentru a începe glisarea.",dragDescriptionKeyboardAlt:"Apăsați pe Alt + Enter pentru a începe glisarea.",dragDescriptionLongPress:"Apăsați lung pentru a începe glisarea.",dragDescriptionTouch:"Atingeți de două ori pentru a începe să glisați.",dragDescriptionVirtual:"Faceți clic pentru a începe glisarea.",dragItem:t=>`Glisați ${t.itemText}`,dragSelectedItems:(t,e)=>`Glisați ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}`,dragSelectedKeyboard:(t,e)=>`Apăsați pe Enter pentru a glisa ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Apăsați pe Alt + Enter pentru a glisa ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,dragSelectedLongPress:(t,e)=>`Apăsați lung pentru a glisa ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,dragStartedKeyboard:"A început glisarea. Apăsați pe Tab pentru a naviga la o țintă de fixare, apoi apăsați pe Enter pentru a fixa sau apăsați pe Escape pentru a anula glisarea.",dragStartedTouch:"A început glisarea. Navigați la o țintă de fixare, apoi atingeți de două ori pentru a fixa.",dragStartedVirtual:"A început glisarea. Navigați la o țintă de fixare, apoi faceți clic sau apăsați pe Enter pentru a fixa.",dropCanceled:"Fixare anulată.",dropComplete:"Fixare finalizată.",dropDescriptionKeyboard:"Apăsați pe Enter pentru a fixa. Apăsați pe Escape pentru a anula glisarea.",dropDescriptionTouch:"Atingeți de două ori pentru a fixa.",dropDescriptionVirtual:"Faceți clic pentru a fixa.",dropIndicator:"indicator de fixare",dropOnItem:t=>`Fixați pe ${t.itemText}`,dropOnRoot:"Fixare pe",endDragKeyboard:"Se glisează. Apăsați pe Enter pentru a anula glisarea.",endDragTouch:"Se glisează. Atingeți de două ori pentru a anula glisarea.",endDragVirtual:"Se glisează. Faceți clic pentru a anula glisarea.",insertAfter:t=>`Inserați după ${t.itemText}`,insertBefore:t=>`Inserați înainte de ${t.itemText}`,insertBetween:t=>`Inserați între ${t.beforeItemText} și ${t.afterItemText}`};var CA={};CA={dragDescriptionKeyboard:"Нажмите клавишу Enter для начала перетаскивания.",dragDescriptionKeyboardAlt:"Нажмите Alt + Enter, чтобы начать перетаскивать.",dragDescriptionLongPress:"Нажмите и удерживайте, чтобы начать перетаскивать.",dragDescriptionTouch:"Дважды нажмите для начала перетаскивания.",dragDescriptionVirtual:"Щелкните для начала перетаскивания.",dragItem:t=>`Перетащить ${t.itemText}`,dragSelectedItems:(t,e)=>`Перетащить ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранный элемент`,other:()=>`${e.number(t.count)} выбранных элем`})}`,dragSelectedKeyboard:(t,e)=>`Нажмите Enter для перетаскивания ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранного элемента`,other:()=>`${e.number(t.count)} выбранных элементов`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Нажмите Alt + Enter для перетаскивания ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранного элемента`,other:()=>`${e.number(t.count)} выбранных элементов`})}.`,dragSelectedLongPress:(t,e)=>`Нажмите и удерживайте для перетаскивания ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранного элемента`,other:()=>`${e.number(t.count)} выбранных элементов`})}.`,dragStartedKeyboard:"Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание, или клавишу Escape для отмены действия.",dragStartedTouch:"Начато перетаскивание. Выберите цель, затем дважды нажмите, чтобы применить перетаскивание.",dragStartedVirtual:"Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание.",dropCanceled:"Перетаскивание отменено.",dropComplete:"Перетаскивание завершено.",dropDescriptionKeyboard:"Нажмите клавишу Enter, чтобы применить перетаскивание. Нажмите клавишу Escape для отмены.",dropDescriptionTouch:"Дважды нажмите, чтобы применить перетаскивание.",dropDescriptionVirtual:"Щелкните, чтобы применить перетаскивание.",dropIndicator:"индикатор перетаскивания",dropOnItem:t=>`Перетащить на ${t.itemText}`,dropOnRoot:"Перетащить на",endDragKeyboard:"Перетаскивание. Нажмите клавишу Enter для отмены.",endDragTouch:"Перетаскивание. Дважды нажмите для отмены.",endDragVirtual:"Перетаскивание. Щелкните для отмены.",insertAfter:t=>`Вставить после ${t.itemText}`,insertBefore:t=>`Вставить перед ${t.itemText}`,insertBetween:t=>`Вставить между ${t.beforeItemText} и ${t.afterItemText}`};var EA={};EA={dragDescriptionKeyboard:"Stlačením klávesu Enter začnete presúvanie.",dragDescriptionKeyboardAlt:"Stlačením klávesov Alt + Enter začnete presúvanie.",dragDescriptionLongPress:"Dlhým stlačením začnete presúvanie.",dragDescriptionTouch:"Dvojitým kliknutím začnete presúvanie.",dragDescriptionVirtual:"Kliknutím začnete presúvanie.",dragItem:t=>`Presunúť položku ${t.itemText}`,dragSelectedItems:(t,e)=>`Presunúť ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybraté položky`})}`,dragSelectedKeyboard:(t,e)=>`Stlačením klávesu Enter presuniete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybratých položiek`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Stlačením klávesov Alt + Enter presuniete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybratých položiek`})}.`,dragSelectedLongPress:(t,e)=>`Dlhým stlačením presuniete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybratých položiek`})}.`,dragStartedKeyboard:"Presúvanie sa začalo. Do cieľového umiestnenia prejdete stlačením klávesu Tab. Ak chcete položku umiestniť, stlačte kláves Enter alebo stlačte kláves Esc, ak chcete presúvanie zrušiť.",dragStartedTouch:"Presúvanie sa začalo. Prejdite na cieľové umiestnenie a dvojitým kliknutím umiestnite položku.",dragStartedVirtual:"Presúvanie sa začalo. Prejdite na cieľové umiestnenie a kliknutím alebo stlačením klávesu Enter umiestnite položku.",dropCanceled:"Umiestnenie zrušené.",dropComplete:"Umiestnenie dokončené.",dropDescriptionKeyboard:"Stlačením klávesu Enter umiestnite položku. Stlačením klávesu Esc zrušíte presúvanie.",dropDescriptionTouch:"Dvojitým kliknutím umiestnite položku.",dropDescriptionVirtual:"Kliknutím umiestnite položku.",dropIndicator:"indikátor umiestnenia",dropOnItem:t=>`Umiestniť na položku ${t.itemText}`,dropOnRoot:"Umiestniť na",endDragKeyboard:"Prebieha presúvanie. Ak ho chcete zrušiť, stlačte kláves Enter.",endDragTouch:"Prebieha presúvanie. Dvojitým kliknutím ho môžete zrušiť.",endDragVirtual:"Prebieha presúvanie.",insertAfter:t=>`Vložiť za položku ${t.itemText}`,insertBefore:t=>`Vložiť pred položku ${t.itemText}`,insertBetween:t=>`Vložiť medzi položky ${t.beforeItemText} a ${t.afterItemText}`};var kA={};kA={dragDescriptionKeyboard:"Pritisnite tipko Enter za začetek vlečenja.",dragDescriptionKeyboardAlt:"Pritisnite tipki Alt + Enter za začetek vlečenja.",dragDescriptionLongPress:"Pritisnite in zadržite za začetek vlečenja.",dragDescriptionTouch:"Dvotapnite za začetek vlečenja.",dragDescriptionVirtual:"Kliknite za začetek vlečenja.",dragItem:t=>`Povleci ${t.itemText}`,dragSelectedItems:(t,e)=>`Povlecite ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbran element`,other:()=>`izbrane elemente (${e.number(t.count)})`})}`,dragSelectedKeyboard:(t,e)=>`Pritisnite tipko Enter, da povlečete ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbrani element`,other:()=>`${e.number(t.count)} izbranih elementov`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pritisnite tipki Alt + Enter, da povlečete ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbrani element`,other:()=>`${e.number(t.count)} izbranih elementov`})}.`,dragSelectedLongPress:(t,e)=>`Pritisnite in zadržite, da povlečete ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbrani element`,other:()=>`${e.number(t.count)} izbranih elementov`})}.`,dragStartedKeyboard:"Vlečenje se je začelo. Pritisnite tipko Tab za pomik na mesto, kamor želite spustiti elemente, in pritisnite tipko Enter, da jih spustite, ali tipko Escape, da prekličete postopek.",dragStartedTouch:"Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in dvotapnite, da jih spustite.",dragStartedVirtual:"Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in kliknite ali pritisnite tipko Enter, da jih spustite.",dropCanceled:"Spust je preklican.",dropComplete:"Spust je končan.",dropDescriptionKeyboard:"Pritisnite tipko Enter, da spustite. Pritisnite tipko Escape, da prekličete vlečenje.",dropDescriptionTouch:"Dvotapnite, da spustite.",dropDescriptionVirtual:"Kliknite, da spustite.",dropIndicator:"indikator spusta",dropOnItem:t=>`Spusti na mesto ${t.itemText}`,dropOnRoot:"Spusti na mesto",endDragKeyboard:"Vlečenje. Pritisnite tipko Enter za preklic vlečenja.",endDragTouch:"Vlečenje. Dvotapnite za preklic vlečenja.",endDragVirtual:"Vlečenje. Kliknite, da prekličete vlečenje.",insertAfter:t=>`Vstavi za ${t.itemText}`,insertBefore:t=>`Vstavi pred ${t.itemText}`,insertBetween:t=>`Vstavi med ${t.beforeItemText} in ${t.afterItemText}`};var DA={};DA={dragDescriptionKeyboard:"Pritisnite Enter da biste započeli prevlačenje.",dragDescriptionKeyboardAlt:"Pritisnite Alt + Enter da biste započeli prevlačenje.",dragDescriptionLongPress:"Pritisnite dugo da biste započeli prevlačenje.",dragDescriptionTouch:"Dvaput dodirnite da biste započeli prevlačenje.",dragDescriptionVirtual:"Kliknite da biste započeli prevlačenje.",dragItem:t=>`Prevucite ${t.itemText}`,dragSelectedItems:(t,e)=>`Prevucite ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabrane stavke`})}`,dragSelectedKeyboard:(t,e)=>`Pritisnite Enter da biste prevukli ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabranih stavki`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pritisnite Alt + Enter da biste prevukli ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabranih stavki`})}.`,dragSelectedLongPress:(t,e)=>`Pritisnite dugo da biste prevukli ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabranih stavki`})}.`,dragStartedKeyboard:"Prevlačenje je započeto. Pritisnite Tab da biste otišli do cilja za otpuštanje, zatim pritisnite Enter za ispuštanje ili pritisnite Escape za otkazivanje.",dragStartedTouch:"Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim dvaput dodirnite za otpuštanje.",dragStartedVirtual:"Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim kliknite ili pritinite Enter za otpuštanje.",dropCanceled:"Otpuštanje je otkazano.",dropComplete:"Prevlačenje je završeno.",dropDescriptionKeyboard:"Pritisnite Enter da biste otpustili. Pritisnite Escape da biste otkazali prevlačenje.",dropDescriptionTouch:"Dvaput dodirnite za otpuštanje.",dropDescriptionVirtual:"Kliknite za otpuštanje.",dropIndicator:"Indikator otpuštanja",dropOnItem:t=>`Otpusti na ${t.itemText}`,dropOnRoot:"Otpusti na",endDragKeyboard:"Prevlačenje u toku. Pritisnite Enter da biste otkazali prevlačenje.",endDragTouch:"Prevlačenje u toku. Dvaput dodirnite da biste otkazali prevlačenje.",endDragVirtual:"Prevlačenje u toku. Kliknite da biste otkazali prevlačenje.",insertAfter:t=>`Umetnite posle ${t.itemText}`,insertBefore:t=>`Umetnite ispred ${t.itemText}`,insertBetween:t=>`Umetnite između ${t.beforeItemText} i ${t.afterItemText}`};var SA={};SA={dragDescriptionKeyboard:"Tryck på enter för att börja dra.",dragDescriptionKeyboardAlt:"Tryck på Alt + Retur för att börja dra.",dragDescriptionLongPress:"Tryck länge för att börja dra.",dragDescriptionTouch:"Dubbeltryck för att börja dra.",dragDescriptionVirtual:"Klicka för att börja dra.",dragItem:t=>`Dra ${t.itemText}`,dragSelectedItems:(t,e)=>`Dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valt objekt`,other:()=>`${e.number(t.count)} valda objekt`})}`,dragSelectedKeyboard:(t,e)=>`Tryck på Retur för att dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Tryck på Alt + Retur för att dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,dragSelectedLongPress:(t,e)=>`Tryck länge för att dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,dragStartedKeyboard:"Börja dra. Tryck på tabb för att navigera till målet, tryck på enter för att släppa eller på escape för att avbryta.",dragStartedTouch:"Börja dra. Navigera till ett mål och dubbeltryck för att släppa.",dragStartedVirtual:"Börja dra. Navigera till ett mål och klicka eller tryck på enter för att släppa.",dropCanceled:"Släppåtgärd avbröts.",dropComplete:"Släppåtgärd klar.",dropDescriptionKeyboard:"Tryck på enter för att släppa. Tryck på escape för att avbryta dragåtgärd.",dropDescriptionTouch:"Dubbeltryck för att släppa.",dropDescriptionVirtual:"Klicka för att släppa.",dropIndicator:"släppindikator",dropOnItem:t=>`Släpp på ${t.itemText}`,dropOnRoot:"Släpp på",endDragKeyboard:"Drar. Tryck på enter för att avbryta dragåtgärd.",endDragTouch:"Drar. Dubbeltryck för att avbryta dragåtgärd.",endDragVirtual:"Drar. Klicka för att avbryta dragåtgärd.",insertAfter:t=>`Infoga efter ${t.itemText}`,insertBefore:t=>`Infoga före ${t.itemText}`,insertBetween:t=>`Infoga mellan ${t.beforeItemText} och ${t.afterItemText}`};var wA={};wA={dragDescriptionKeyboard:"Sürüklemeyi başlatmak için Enter'a basın.",dragDescriptionKeyboardAlt:"Sürüklemeyi başlatmak için Alt + Enter'a basın.",dragDescriptionLongPress:"Sürüklemeye başlamak için uzun basın.",dragDescriptionTouch:"Sürüklemeyi başlatmak için çift tıklayın.",dragDescriptionVirtual:"Sürüklemeyi başlatmak için tıklayın.",dragItem:t=>`${t.itemText}’i sürükle`,dragSelectedItems:(t,e)=>`Sürükle ${e.plural(t.count,{one:()=>`${e.number(t.count)} seçili öge`,other:()=>`${e.number(t.count)} seçili öge`})}`,dragSelectedKeyboard:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} seçilmiş öğe`,other:()=>`${e.number(t.count)} seçilmiş öğe`})} öğesini sürüklemek için Enter'a basın.`,dragSelectedKeyboardAlt:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} seçilmiş öğe`,other:()=>`${e.number(t.count)} seçilmiş öğe`})} öğesini sürüklemek için Alt + Enter tuşuna basın.`,dragSelectedLongPress:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} seçilmiş öğe`,other:()=>`${e.number(t.count)} seçilmiş öğe`})} öğesini sürüklemek için uzun basın.`,dragStartedKeyboard:"Sürükleme başlatıldı. Bir bırakma hedefine gitmek için Tab’a basın, ardından bırakmak için Enter’a basın veya iptal etmek için Escape’e basın.",dragStartedTouch:"Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için çift tıklayın.",dragStartedVirtual:"Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için Enter’a tıklayın veya basın.",dropCanceled:"Bırakma iptal edildi.",dropComplete:"Bırakma tamamlandı.",dropDescriptionKeyboard:"Bırakmak için Enter'a basın. Sürüklemeyi iptal etmek için Escape'e basın.",dropDescriptionTouch:"Bırakmak için çift tıklayın.",dropDescriptionVirtual:"Bırakmak için tıklayın.",dropIndicator:"bırakma göstergesi",dropOnItem:t=>`${t.itemText} üzerine bırak`,dropOnRoot:"Bırakın",endDragKeyboard:"Sürükleme. Sürüklemeyi iptal etmek için Enter'a basın.",endDragTouch:"Sürükleme. Sürüklemeyi iptal etmek için çift tıklayın.",endDragVirtual:"Sürükleme. Sürüklemeyi iptal etmek için tıklayın.",insertAfter:t=>`${t.itemText}’den sonra gir`,insertBefore:t=>`${t.itemText}’den önce gir`,insertBetween:t=>`${t.beforeItemText} ve ${t.afterItemText} arasına gir`};var $A={};$A={dragDescriptionKeyboard:"Натисніть Enter, щоб почати перетягування.",dragDescriptionKeyboardAlt:"Натисніть Alt + Enter, щоб почати перетягування.",dragDescriptionLongPress:"Натисніть і утримуйте, щоб почати перетягування.",dragDescriptionTouch:"Натисніть двічі, щоб почати перетягування.",dragDescriptionVirtual:"Натисніть, щоб почати перетягування.",dragItem:t=>`Перетягнути ${t.itemText}`,dragSelectedItems:(t,e)=>`Перетягніть ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елем`})}`,dragSelectedKeyboard:(t,e)=>`Натисніть Enter, щоб перетягнути ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елементи(-ів)`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Натисніть Alt + Enter, щоб перетягнути ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елементи(-ів)`})}.`,dragSelectedLongPress:(t,e)=>`Утримуйте, щоб перетягнути ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елементи(-ів)`})}.`,dragStartedKeyboard:"Перетягування почалося. Натисніть Tab, щоб перейти до цілі перетягування, потім натисніть Enter, щоб перетягнути, або Escape, щоб скасувати.",dragStartedTouch:"Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть двічі, щоб перетягнути.",dragStartedVirtual:"Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть Enter, щоб перетягнути.",dropCanceled:"Перетягування скасовано.",dropComplete:"Перетягування завершено.",dropDescriptionKeyboard:"Натисніть Enter, щоб перетягнути. Натисніть Escape, щоб скасувати перетягування.",dropDescriptionTouch:"Натисніть двічі, щоб перетягнути.",dropDescriptionVirtual:"Натисніть, щоб перетягнути.",dropIndicator:"індикатор перетягування",dropOnItem:t=>`Перетягнути на ${t.itemText}`,dropOnRoot:"Перетягнути на",endDragKeyboard:"Триває перетягування. Натисніть Enter, щоб скасувати перетягування.",endDragTouch:"Триває перетягування. Натисніть двічі, щоб скасувати перетягування.",endDragVirtual:"Триває перетягування. Натисніть, щоб скасувати перетягування.",insertAfter:t=>`Вставити після ${t.itemText}`,insertBefore:t=>`Вставити перед ${t.itemText}`,insertBetween:t=>`Вставити між ${t.beforeItemText} і ${t.afterItemText}`};var TA={};TA={dragDescriptionKeyboard:"按 Enter 开始拖动。",dragDescriptionKeyboardAlt:"按 Alt + Enter 开始拖动。",dragDescriptionLongPress:"长按以开始拖动。",dragDescriptionTouch:"双击开始拖动。",dragDescriptionVirtual:"单击开始拖动。",dragItem:t=>`拖动 ${t.itemText}`,dragSelectedItems:(t,e)=>`拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 选中项目`,other:()=>`${e.number(t.count)} 选中项目`})}`,dragSelectedKeyboard:(t,e)=>`按 Enter 以拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 个选定项`,other:()=>`${e.number(t.count)} 个选定项`})}。`,dragSelectedKeyboardAlt:(t,e)=>`按 Alt + Enter 以拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 个选定项`,other:()=>`${e.number(t.count)} 个选定项`})}。`,dragSelectedLongPress:(t,e)=>`长按以拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 个选定项`,other:()=>`${e.number(t.count)} 个选定项`})}。`,dragStartedKeyboard:"已开始拖动。按 Tab 导航到放置目标,然后按 Enter 放置或按 Escape 取消。",dragStartedTouch:"已开始拖动。导航到放置目标,然后双击放置。",dragStartedVirtual:"已开始拖动。导航到放置目标,然后单击或按 Enter 放置。",dropCanceled:"放置已取消。",dropComplete:"放置已完成。",dropDescriptionKeyboard:"按 Enter 放置。按 Escape 取消拖动。",dropDescriptionTouch:"双击放置。",dropDescriptionVirtual:"单击放置。",dropIndicator:"放置标记",dropOnItem:t=>`放置于 ${t.itemText}`,dropOnRoot:"放置于",endDragKeyboard:"正在拖动。按 Enter 取消拖动。",endDragTouch:"正在拖动。双击取消拖动。",endDragVirtual:"正在拖动。单击取消拖动。",insertAfter:t=>`插入到 ${t.itemText} 之后`,insertBefore:t=>`插入到 ${t.itemText} 之前`,insertBetween:t=>`插入到 ${t.beforeItemText} 和 ${t.afterItemText} 之间`};var AA={};AA={dragDescriptionKeyboard:"按 Enter 鍵以開始拖曳。",dragDescriptionKeyboardAlt:"按 Alt+Enter 鍵以開始拖曳。",dragDescriptionLongPress:"長按以開始拖曳。",dragDescriptionTouch:"輕點兩下以開始拖曳。",dragDescriptionVirtual:"按一下滑鼠以開始拖曳。",dragItem:t=>`拖曳「${t.itemText}」`,dragSelectedItems:(t,e)=>`拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}`,dragSelectedKeyboard:(t,e)=>`按 Enter 鍵以拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}。`,dragSelectedKeyboardAlt:(t,e)=>`按 Alt+Enter 鍵以拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}。`,dragSelectedLongPress:(t,e)=>`長按以拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}。`,dragStartedKeyboard:"已開始拖曳。按 Tab 鍵以瀏覽至放置目標,然後按 Enter 鍵以放置,或按 Escape 鍵以取消。",dragStartedTouch:"已開始拖曳。瀏覽至放置目標,然後輕點兩下以放置。",dragStartedVirtual:"已開始拖曳。瀏覽至放置目標,然後按一下滑鼠或按 Enter 鍵以放置。",dropCanceled:"放置已取消。",dropComplete:"放置已完成。",dropDescriptionKeyboard:"按 Enter 鍵以放置。按 Escape 鍵以取消拖曳。",dropDescriptionTouch:"輕點兩下以放置。",dropDescriptionVirtual:"按一下滑鼠以放置。",dropIndicator:"放置指示器",dropOnItem:t=>`放置在「${t.itemText}」上`,dropOnRoot:"放置在",endDragKeyboard:"拖曳中。按 Enter 鍵以取消拖曳。",endDragTouch:"拖曳中。輕點兩下以取消拖曳。",endDragVirtual:"拖曳中。按一下滑鼠以取消拖曳。",insertAfter:t=>`插入至「${t.itemText}」之後`,insertBefore:t=>`插入至「${t.itemText}」之前`,insertBetween:t=>`插入至「${t.beforeItemText}」和「${t.afterItemText}」之間`};var nd={};nd={"ar-AE":YT,"bg-BG":XT,"cs-CZ":JT,"da-DK":ZT,"de-DE":eA,"el-GR":tA,"en-US":nA,"es-ES":rA,"et-EE":iA,"fi-FI":sA,"fr-FR":oA,"he-IL":aA,"hr-HR":lA,"hu-HU":uA,"it-IT":cA,"ja-JP":dA,"ko-KR":fA,"lt-LT":hA,"lv-LV":pA,"nb-NO":mA,"nl-NL":gA,"pl-PL":bA,"pt-BR":yA,"pt-PT":vA,"ro-RO":xA,"ru-RU":CA,"sk-SK":EA,"sl-SI":kA,"sr-SP":DA,"sv-SE":SA,"tr-TR":wA,"uk-UA":$A,"zh-CN":TA,"zh-TW":AA};function qK(t){return t&&t.__esModule?t.default:t}const GK={keyboard:"dropDescriptionKeyboard",touch:"dropDescriptionTouch",virtual:"dropDescriptionVirtual"};function BA(){let t=mr(qK(nd),"@react-aria/dnd"),e=z3(),n=I3();return{dropProps:{...ed(n?t.format(GK[e]):""),onClick:()=>{}}}}const WK=800;function QK(t){let{hasDropButton:e,isDisabled:n}=t,[r,i]=D.useState(!1),s=D.useRef({x:0,y:0,dragOverElements:new Set,dropEffect:"none",allowedOperations:Mt.all,dropActivateTimer:void 0}).current,a=$=>{if(i(!0),typeof t.onDropEnter=="function"){let A=$.currentTarget.getBoundingClientRect();t.onDropEnter({type:"dropenter",x:$.clientX-A.x,y:$.clientY-A.y})}},u=$=>{if(i(!1),typeof t.onDropExit=="function"){let A=$.currentTarget.getBoundingClientRect();t.onDropExit({type:"dropexit",x:$.clientX-A.x,y:$.clientY-A.y})}},c=$=>{$.preventDefault(),$.stopPropagation();let A=O5($);if($.clientX===s.x&&$.clientY===s.y&&A===s.allowedOperations){$.dataTransfer.dropEffect=s.dropEffect;return}s.x=$.clientX,s.y=$.clientY;let B=s.dropEffect;if(A!==s.allowedOperations){let P=R0(A),M=P[0];if(typeof t.getDropOperation=="function"){let N=new Gf($.dataTransfer);M=Wf(A,t.getDropOperation(N,P))}s.dropEffect=B0[M]||"none"}if(typeof t.getDropOperationForPoint=="function"){let P=new Gf($.dataTransfer),M=$.currentTarget.getBoundingClientRect(),N=Wf(A,t.getDropOperationForPoint(P,R0(A),s.x-M.x,s.y-M.y));s.dropEffect=B0[N]||"none"}if(s.allowedOperations=A,$.dataTransfer.dropEffect=s.dropEffect,s.dropEffect==="none"&&B!=="none"?u($):s.dropEffect!=="none"&&B==="none"&&a($),typeof t.onDropMove=="function"&&s.dropEffect!=="none"){let P=$.currentTarget.getBoundingClientRect();t.onDropMove({type:"dropmove",x:s.x-P.x,y:s.y-P.y})}if(clearTimeout(s.dropActivateTimer),t.onDropActivate&&typeof t.onDropActivate=="function"&&s.dropEffect!=="none"){let P=t.onDropActivate,M=$.currentTarget.getBoundingClientRect();s.dropActivateTimer=setTimeout(()=>{P({type:"dropactivate",x:s.x-M.x,y:s.y-M.y})},WK)}},f=$=>{if($.preventDefault(),$.stopPropagation(),s.dragOverElements.add(de($)),s.dragOverElements.size>1)return;let A=O5($),B=R0(A),P=B[0];if(typeof t.getDropOperation=="function"){let M=new Gf($.dataTransfer);P=Wf(A,t.getDropOperation(M,B))}if(typeof t.getDropOperationForPoint=="function"){let M=new Gf($.dataTransfer),N=$.currentTarget.getBoundingClientRect();P=Wf(A,t.getDropOperationForPoint(M,B,$.clientX-N.x,$.clientY-N.y))}s.x=$.clientX,s.y=$.clientY,s.allowedOperations=A,s.dropEffect=B0[P]||"none",$.dataTransfer.dropEffect=s.dropEffect,P!=="cancel"&&a($)},h=$=>{$.preventDefault(),$.stopPropagation();let A=de($);if(s.dragOverElements.delete(A),A===$.currentTarget)for(let B of s.dragOverElements)we($.currentTarget,B)||s.dragOverElements.delete(B);s.dragOverElements.size>0||(s.dropEffect!=="none"&&u($),clearTimeout(s.dropActivateTimer))},m=$=>{if($.preventDefault(),$.stopPropagation(),ep(s.dropEffect),typeof t.onDrop=="function"){let B=uc[s.dropEffect],P=MK($.dataTransfer),M=$.currentTarget.getBoundingClientRect(),N={type:"drop",x:$.clientX-M.x,y:$.clientY-M.y,items:P,dropOperation:B};t.onDrop(N)}let A={...It};s.dragOverElements.clear(),u($),clearTimeout(s.dropActivateTimer),A.draggingCollectionRef==null?ep(void 0):zK(A)},g=Nt($=>{typeof t.onDropEnter=="function"&&t.onDropEnter($)}),b=Nt($=>{typeof t.onDropExit=="function"&&t.onDropExit($)}),v=Nt($=>{typeof t.onDropActivate=="function"&&t.onDropActivate($)}),C=Nt($=>{typeof t.onDrop=="function"&&t.onDrop($)}),E=Nt(($,A)=>t.getDropOperation?t.getDropOperation($,A):A[0]),{ref:k}=t;Le(()=>{if(!(n||!k.current))return QT({element:k.current,getDropOperation:E,onDropEnter($){i(!0),g($)},onDropExit($){i(!1),b($)},onDrop:C,onDropActivate:v})},[n,k]);let{dropProps:T}=BA();return n?{dropProps:{},dropButtonProps:{isDisabled:!0},isDropTarget:!1}:{dropProps:{...!e&&T,onDragEnter:f,onDragOver:c,onDragLeave:h,onDrop:m},dropButtonProps:{...e&&T},isDropTarget:r}}function O5(t){let e=jT[t.dataTransfer.effectAllowed];ty&&(e&=ty);let n=Mt.none;return Is()?(t.altKey&&(n|=Mt.copy),t.ctrlKey&&!d3()&&(n|=Mt.link),t.metaKey&&(n|=Mt.move)):(t.altKey&&(n|=Mt.link),t.shiftKey&&(n|=Mt.move),t.ctrlKey&&(n|=Mt.copy)),n?e&n:e}function R0(t){let e=[];return t&Mt.move&&e.push("move"),t&Mt.copy&&e.push("copy"),t&Mt.link&&e.push("link"),e}function Wf(t,e){let n=Mt[e];return t&n?e:"cancel"}const F3=new WeakMap;function ry(t,e){let{id:n}=F3.get(t)??{};if(!n)throw new Error("Unknown list");return`${n}-${YK(e)}`}function YK(t){return typeof t=="string"?t.replace(/\s*/g,""):""+t}var MA={};MA={deselectedItem:t=>`${t.item} غير المحدد`,longPressToSelect:"اضغط مطولًا للدخول إلى وضع التحديد.",select:"تحديد",selectedAll:"جميع العناصر المحددة.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"لم يتم تحديد عناصر",one:()=>`${e.number(t.count)} عنصر محدد`,other:()=>`${e.number(t.count)} عنصر محدد`})}.`,selectedItem:t=>`${t.item} المحدد`};var RA={};RA={deselectedItem:t=>`${t.item} не е избран.`,longPressToSelect:"Натиснете и задръжте за да влезете в избирателен режим.",select:"Изберете",selectedAll:"Всички елементи са избрани.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Няма избрани елементи",one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,selectedItem:t=>`${t.item} избран.`};var NA={};NA={deselectedItem:t=>`Položka ${t.item} není vybrána.`,longPressToSelect:"Dlouhým stisknutím přejdete do režimu výběru.",select:"Vybrat",selectedAll:"Vybrány všechny položky.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nevybrány žádné položky",one:()=>`Vybrána ${e.number(t.count)} položka`,other:()=>`Vybráno ${e.number(t.count)} položek`})}.`,selectedItem:t=>`Vybrána položka ${t.item}.`};var PA={};PA={deselectedItem:t=>`${t.item} ikke valgt.`,longPressToSelect:"Lav et langt tryk for at aktivere valgtilstand.",select:"Vælg",selectedAll:"Alle elementer valgt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ingen elementer valgt",one:()=>`${e.number(t.count)} element valgt`,other:()=>`${e.number(t.count)} elementer valgt`})}.`,selectedItem:t=>`${t.item} valgt.`};var OA={};OA={deselectedItem:t=>`${t.item} nicht ausgewählt.`,longPressToSelect:"Gedrückt halten, um Auswahlmodus zu öffnen.",select:"Auswählen",selectedAll:"Alle Elemente ausgewählt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Keine Elemente ausgewählt",one:()=>`${e.number(t.count)} Element ausgewählt`,other:()=>`${e.number(t.count)} Elemente ausgewählt`})}.`,selectedItem:t=>`${t.item} ausgewählt.`};var LA={};LA={deselectedItem:t=>`Δεν επιλέχθηκε το στοιχείο ${t.item}.`,longPressToSelect:"Πατήστε παρατεταμένα για να μπείτε σε λειτουργία επιλογής.",select:"Επιλογή",selectedAll:"Επιλέχθηκαν όλα τα στοιχεία.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Δεν επιλέχθηκαν στοιχεία",one:()=>`Επιλέχθηκε ${e.number(t.count)} στοιχείο`,other:()=>`Επιλέχθηκαν ${e.number(t.count)} στοιχεία`})}.`,selectedItem:t=>`Επιλέχθηκε το στοιχείο ${t.item}.`};var zA={};zA={deselectedItem:t=>`${t.item} not selected.`,select:"Select",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"No items selected",one:()=>`${e.number(t.count)} item selected`,other:()=>`${e.number(t.count)} items selected`})}.`,selectedAll:"All items selected.",selectedItem:t=>`${t.item} selected.`,longPressToSelect:"Long press to enter selection mode."};var IA={};IA={deselectedItem:t=>`${t.item} no seleccionado.`,longPressToSelect:"Mantenga pulsado para abrir el modo de selección.",select:"Seleccionar",selectedAll:"Todos los elementos seleccionados.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ningún elemento seleccionado",one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,selectedItem:t=>`${t.item} seleccionado.`};var FA={};FA={deselectedItem:t=>`${t.item} pole valitud.`,longPressToSelect:"Valikurežiimi sisenemiseks vajutage pikalt.",select:"Vali",selectedAll:"Kõik üksused valitud.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Üksusi pole valitud",one:()=>`${e.number(t.count)} üksus valitud`,other:()=>`${e.number(t.count)} üksust valitud`})}.`,selectedItem:t=>`${t.item} valitud.`};var KA={};KA={deselectedItem:t=>`Kohdetta ${t.item} ei valittu.`,longPressToSelect:"Siirry valintatilaan painamalla pitkään.",select:"Valitse",selectedAll:"Kaikki kohteet valittu.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ei yhtään kohdetta valittu",one:()=>`${e.number(t.count)} kohde valittu`,other:()=>`${e.number(t.count)} kohdetta valittu`})}.`,selectedItem:t=>`${t.item} valittu.`};var jA={};jA={deselectedItem:t=>`${t.item} non sélectionné.`,longPressToSelect:"Appuyez de manière prolongée pour passer en mode de sélection.",select:"Sélectionner",selectedAll:"Tous les éléments sélectionnés.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Aucun élément sélectionné",one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,selectedItem:t=>`${t.item} sélectionné.`};var _A={};_A={deselectedItem:t=>`${t.item} לא נבחר.`,longPressToSelect:"הקשה ארוכה לכניסה למצב בחירה.",select:"בחר",selectedAll:"כל הפריטים נבחרו.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"לא נבחרו פריטים",one:()=>`פריט ${e.number(t.count)} נבחר`,other:()=>`${e.number(t.count)} פריטים נבחרו`})}.`,selectedItem:t=>`${t.item} נבחר.`};var HA={};HA={deselectedItem:t=>`Stavka ${t.item} nije odabrana.`,longPressToSelect:"Dugo pritisnite za ulazak u način odabira.",select:"Odaberite",selectedAll:"Odabrane su sve stavke.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nije odabrana nijedna stavka",one:()=>`Odabrana je ${e.number(t.count)} stavka`,other:()=>`Odabrano je ${e.number(t.count)} stavki`})}.`,selectedItem:t=>`Stavka ${t.item} je odabrana.`};var VA={};VA={deselectedItem:t=>`${t.item} nincs kijelölve.`,longPressToSelect:"Nyomja hosszan a kijelöléshez.",select:"Kijelölés",selectedAll:"Az összes elem kijelölve.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Egy elem sincs kijelölve",one:()=>`${e.number(t.count)} elem kijelölve`,other:()=>`${e.number(t.count)} elem kijelölve`})}.`,selectedItem:t=>`${t.item} kijelölve.`};var UA={};UA={deselectedItem:t=>`${t.item} non selezionato.`,longPressToSelect:"Premi a lungo per passare alla modalità di selezione.",select:"Seleziona",selectedAll:"Tutti gli elementi selezionati.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nessun elemento selezionato",one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,selectedItem:t=>`${t.item} selezionato.`};var qA={};qA={deselectedItem:t=>`${t.item} が選択されていません。`,longPressToSelect:"長押しして選択モードを開きます。",select:"選択",selectedAll:"すべての項目を選択しました。",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"項目が選択されていません",one:()=>`${e.number(t.count)} 項目を選択しました`,other:()=>`${e.number(t.count)} 項目を選択しました`})}。`,selectedItem:t=>`${t.item} を選択しました。`};var GA={};GA={deselectedItem:t=>`${t.item}이(가) 선택되지 않았습니다.`,longPressToSelect:"선택 모드로 들어가려면 길게 누르십시오.",select:"선택",selectedAll:"모든 항목이 선택되었습니다.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"선택된 항목이 없습니다",one:()=>`${e.number(t.count)}개 항목이 선택되었습니다`,other:()=>`${e.number(t.count)}개 항목이 선택되었습니다`})}.`,selectedItem:t=>`${t.item}이(가) 선택되었습니다.`};var WA={};WA={deselectedItem:t=>`${t.item} nepasirinkta.`,longPressToSelect:"Norėdami įjungti pasirinkimo režimą, paspauskite ir palaikykite.",select:"Pasirinkti",selectedAll:"Pasirinkti visi elementai.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nepasirinktas nė vienas elementas",one:()=>`Pasirinktas ${e.number(t.count)} elementas`,other:()=>`Pasirinkta elementų: ${e.number(t.count)}`})}.`,selectedItem:t=>`Pasirinkta: ${t.item}.`};var QA={};QA={deselectedItem:t=>`Vienums ${t.item} nav atlasīts.`,longPressToSelect:"Ilgi turiet nospiestu. lai ieslēgtu atlases režīmu.",select:"Atlasīt",selectedAll:"Atlasīti visi vienumi.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nav atlasīts neviens vienums",one:()=>`Atlasīto vienumu skaits: ${e.number(t.count)}`,other:()=>`Atlasīto vienumu skaits: ${e.number(t.count)}`})}.`,selectedItem:t=>`Atlasīts vienums ${t.item}.`};var YA={};YA={deselectedItem:t=>`${t.item} er ikke valgt.`,longPressToSelect:"Bruk et langt trykk for å gå inn i valgmodus.",select:"Velg",selectedAll:"Alle elementer er valgt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ingen elementer er valgt",one:()=>`${e.number(t.count)} element er valgt`,other:()=>`${e.number(t.count)} elementer er valgt`})}.`,selectedItem:t=>`${t.item} er valgt.`};var XA={};XA={deselectedItem:t=>`${t.item} niet geselecteerd.`,longPressToSelect:"Druk lang om de selectiemodus te openen.",select:"Selecteren",selectedAll:"Alle items geselecteerd.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Geen items geselecteerd",one:()=>`${e.number(t.count)} item geselecteerd`,other:()=>`${e.number(t.count)} items geselecteerd`})}.`,selectedItem:t=>`${t.item} geselecteerd.`};var JA={};JA={deselectedItem:t=>`Nie zaznaczono ${t.item}.`,longPressToSelect:"Naciśnij i przytrzymaj, aby wejść do trybu wyboru.",select:"Zaznacz",selectedAll:"Wszystkie zaznaczone elementy.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nie zaznaczono żadnych elementów",one:()=>`${e.number(t.count)} zaznaczony element`,other:()=>`${e.number(t.count)} zaznaczonych elementów`})}.`,selectedItem:t=>`Zaznaczono ${t.item}.`};var ZA={};ZA={deselectedItem:t=>`${t.item} não selecionado.`,longPressToSelect:"Mantenha pressionado para entrar no modo de seleção.",select:"Selecionar",selectedAll:"Todos os itens selecionados.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nenhum item selecionado",one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}.`,selectedItem:t=>`${t.item} selecionado.`};var eB={};eB={deselectedItem:t=>`${t.item} não selecionado.`,longPressToSelect:"Prima continuamente para entrar no modo de seleção.",select:"Selecionar",selectedAll:"Todos os itens selecionados.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nenhum item selecionado",one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}.`,selectedItem:t=>`${t.item} selecionado.`};var tB={};tB={deselectedItem:t=>`${t.item} neselectat.`,longPressToSelect:"Apăsați lung pentru a intra în modul de selectare.",select:"Selectare",selectedAll:"Toate elementele selectate.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Niciun element selectat",one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,selectedItem:t=>`${t.item} selectat.`};var nB={};nB={deselectedItem:t=>`${t.item} не выбрано.`,longPressToSelect:"Нажмите и удерживайте для входа в режим выбора.",select:"Выбрать",selectedAll:"Выбраны все элементы.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Нет выбранных элементов",one:()=>`${e.number(t.count)} элемент выбран`,other:()=>`${e.number(t.count)} элементов выбрано`})}.`,selectedItem:t=>`${t.item} выбрано.`};var rB={};rB={deselectedItem:t=>`Nevybraté položky: ${t.item}.`,longPressToSelect:"Dlhším stlačením prejdite do režimu výberu.",select:"Vybrať",selectedAll:"Všetky vybraté položky.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Žiadne vybraté položky",one:()=>`${e.number(t.count)} vybratá položka`,other:()=>`Počet vybratých položiek:${e.number(t.count)}`})}.`,selectedItem:t=>`Vybraté položky: ${t.item}.`};var iB={};iB={deselectedItem:t=>`Element ${t.item} ni izbran.`,longPressToSelect:"Za izbirni način pritisnite in dlje časa držite.",select:"Izberite",selectedAll:"Vsi elementi so izbrani.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Noben element ni izbran",one:()=>`${e.number(t.count)} element je izbran`,other:()=>`${e.number(t.count)} elementov je izbranih`})}.`,selectedItem:t=>`Element ${t.item} je izbran.`};var sB={};sB={deselectedItem:t=>`${t.item} nije izabrano.`,longPressToSelect:"Dugo pritisnite za ulazak u režim biranja.",select:"Izaberite",selectedAll:"Izabrane su sve stavke.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nije izabrana nijedna stavka",one:()=>`Izabrana je ${e.number(t.count)} stavka`,other:()=>`Izabrano je ${e.number(t.count)} stavki`})}.`,selectedItem:t=>`${t.item} je izabrano.`};var oB={};oB={deselectedItem:t=>`${t.item} ej markerat.`,longPressToSelect:"Tryck länge när du vill öppna väljarläge.",select:"Markera",selectedAll:"Alla markerade objekt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Inga markerade objekt",one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,selectedItem:t=>`${t.item} markerat.`};var aB={};aB={deselectedItem:t=>`${t.item} seçilmedi.`,longPressToSelect:"Seçim moduna girmek için uzun basın.",select:"Seç",selectedAll:"Tüm ögeler seçildi.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Hiçbir öge seçilmedi",one:()=>`${e.number(t.count)} öge seçildi`,other:()=>`${e.number(t.count)} öge seçildi`})}.`,selectedItem:t=>`${t.item} seçildi.`};var lB={};lB={deselectedItem:t=>`${t.item} не вибрано.`,longPressToSelect:"Виконайте довге натиснення, щоб перейти в режим вибору.",select:"Вибрати",selectedAll:"Усі елементи вибрано.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Жодних елементів не вибрано",one:()=>`${e.number(t.count)} елемент вибрано`,other:()=>`Вибрано елементів: ${e.number(t.count)}`})}.`,selectedItem:t=>`${t.item} вибрано.`};var uB={};uB={deselectedItem:t=>`未选择 ${t.item}。`,longPressToSelect:"长按以进入选择模式。",select:"选择",selectedAll:"已选择所有项目。",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"未选择项目",one:()=>`已选择 ${e.number(t.count)} 个项目`,other:()=>`已选择 ${e.number(t.count)} 个项目`})}。`,selectedItem:t=>`已选择 ${t.item}。`};var cB={};cB={deselectedItem:t=>`未選取「${t.item}」。`,longPressToSelect:"長按以進入選擇模式。",select:"選取",selectedAll:"已選取所有項目。",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"未選取任何項目",one:()=>`已選取 ${e.number(t.count)} 個項目`,other:()=>`已選取 ${e.number(t.count)} 個項目`})}。`,selectedItem:t=>`已選取「${t.item}」。`};var mm={};mm={"ar-AE":MA,"bg-BG":RA,"cs-CZ":NA,"da-DK":PA,"de-DE":OA,"el-GR":LA,"en-US":zA,"es-ES":IA,"et-EE":FA,"fi-FI":KA,"fr-FR":jA,"he-IL":_A,"hr-HR":HA,"hu-HU":VA,"it-IT":UA,"ja-JP":qA,"ko-KR":GA,"lt-LT":WA,"lv-LV":QA,"nb-NO":YA,"nl-NL":XA,"pl-PL":JA,"pt-BR":ZA,"pt-PT":eB,"ro-RO":tB,"ru-RU":nB,"sk-SK":rB,"sl-SI":iB,"sr-SP":sB,"sv-SE":oB,"tr-TR":aB,"uk-UA":lB,"zh-CN":uB,"zh-TW":cB};function XK(t){return t&&t.__esModule?t.default:t}function JK(t,e){let{getRowText:n=u=>e.collection.getTextValue?.(u)??e.collection.getItem(u)?.textValue}=t,r=mr(XK(mm),"@react-aria/grid"),i=e.selectionManager.rawSelection,s=D.useRef(i),a=D.useCallback(()=>{if(!e.selectionManager.isFocused||i===s.current){s.current=i;return}let u=L5(i,s.current),c=L5(s.current,i),f=e.selectionManager.selectionBehavior==="replace",h=[];if(e.selectionManager.selectedKeys.size===1&&f){let m=e.selectionManager.selectedKeys.keys().next().value;if(m!=null&&e.collection.getItem(m)){let g=n(m);g&&h.push(r.format("selectedItem",{item:g}))}}else if(u.size===1&&c.size===0){let m=u.keys().next().value;if(m!=null){let g=n(m);g&&h.push(r.format("selectedItem",{item:g}))}}else if(c.size===1&&u.size===0){let m=c.keys().next().value;if(m!=null&&e.collection.getItem(m)){let g=n(m);g&&h.push(r.format("deselectedItem",{item:g}))}}e.selectionManager.selectionMode==="multiple"&&(h.length===0||i==="all"||i.size>1||s.current==="all"||s.current?.size>1)&&h.push(i==="all"?r.format("selectedAll"):r.format("selectedCount",{count:i.size})),h.length>0&&Po(h.join(" ")),s.current=i},[i,e.selectionManager.selectedKeys,e.selectionManager.isFocused,e.selectionManager.selectionBehavior,e.selectionManager.selectionMode,e.collection,n,r]);_I(()=>{if(e.selectionManager.isFocused)a();else{let u=requestAnimationFrame(a);return()=>cancelAnimationFrame(u)}},[i,e.selectionManager.isFocused])}function L5(t,e){let n=new Set;if(t==="all"||e==="all")return n;for(let r of t.keys())e.has(r)||n.add(r);return n}function ZK(t,e){let n=e?.isDisabled,[r,i]=D.useState(!1);return Le(()=>{if(t?.current&&!n){let s=()=>{if(t.current){let u=un(t.current,{tabbable:!0});i(!!u.nextNode())}};s();let a=new MutationObserver(s);return a.observe(t.current,{subtree:!0,childList:!0,attributes:!0,attributeFilter:["tabIndex","disabled"]}),()=>{a.disconnect()}}}),n?!1:r}function ej(t){return t&&t.__esModule?t.default:t}function tj(t){let e=mr(ej(mm),"@react-aria/grid"),n=sw(),r=(n==="pointer"||n==="virtual"||n==null)&&typeof window<"u"&&"ontouchstart"in window,i=D.useMemo(()=>{let a=t.selectionManager.selectionMode,u=t.selectionManager.selectionBehavior,c;return r&&(c=e.format("longPressToSelect")),u==="replace"&&a!=="none"&&t.hasItemActions?c:void 0},[t.selectionManager.selectionMode,t.selectionManager.selectionBehavior,t.hasItemActions,e,r]);return ed(i)}function nj(t,e,n){let{isVirtualized:r,keyboardDelegate:i,layoutDelegate:s,onAction:a,disallowTypeAhead:u,linkBehavior:c="action",keyboardNavigationBehavior:f="arrow",escapeKeyBehavior:h="clearSelection",shouldSelectOnPressUp:m}=t;!t["aria-label"]&&!t["aria-labelledby"]&&console.warn("An aria-label or aria-labelledby prop is required for accessibility.");let{listProps:g}=i6({selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,ref:n,keyboardDelegate:i,layoutDelegate:s,isVirtualized:r,selectOnFocus:e.selectionManager.selectionBehavior==="replace",shouldFocusWrap:t.shouldFocusWrap,linkBehavior:c,disallowTypeAhead:u,autoFocus:t.autoFocus,escapeKeyBehavior:h,UNSTABLE_focusOnEntry:t.UNSTABLE_focusOnEntry}),b=rn(t.id);F3.set(e,{id:b,onAction:a,linkBehavior:c,keyboardNavigationBehavior:f,shouldSelectOnPressUp:m});let v=tj({selectionManager:e.selectionManager,hasItemActions:!!a}),C=ZK(n,{isDisabled:e.collection.size!==0}),E=Ze(t,{labelable:!0}),k=$e(E,{role:"grid",id:b,"aria-multiselectable":e.selectionManager.selectionMode==="multiple"?"true":void 0},e.collection.size===0?{tabIndex:C?-1:0}:g,v);return r&&(k["aria-rowcount"]=e.collection.size,k["aria-colcount"]=1),JK({},e),{gridProps:k}}const z5={expand:{ltr:"ArrowRight",rtl:"ArrowLeft"},collapse:{ltr:"ArrowLeft",rtl:"ArrowRight"}};function rj(t,e,n){let{node:r,isVirtualized:i}=t,{direction:s}=Ii(),{onAction:a,linkBehavior:u,keyboardNavigationBehavior:c,shouldSelectOnPressUp:f}=F3.get(e),h=Uo(),m=D.useRef(null),g=()=>{n.current!==null&&(m.current!=null&&r.key!==m.current||!kl(n.current))&&bn(n.current)},b={},v=t.hasChildItems,C=e.selectionManager.isLink(r.key);if(r!=null&&"expandedKeys"in e){let q=e.collection.getChildren?.(r.key);v=v||[...q??[]].length>1,a==null&&!C&&e.selectionManager.selectionMode==="none"&&v&&(a=()=>e.toggleKey(r.key));let ie=v?e.expandedKeys.has(r.key):void 0,K=1,te=r.index;if(r.level>=0&&r?.parentKey!=null){let O=e.collection.getItem(r.parentKey);if(O){let j=ij(O,e.collection);K=[...j].filter(Y=>Y.type==="item").length,te>0&&j[0].type!=="item"&&(te-=1)}}else K=[...e.collection].filter(O=>O.level===0&&O.type==="item").length;b={"aria-expanded":ie,"aria-level":r.level+1,"aria-posinset":te+1,"aria-setsize":K}}let{itemProps:E,...k}=o6({selectionManager:e.selectionManager,key:r.key,ref:n,isVirtualized:i,shouldSelectOnPressUp:t.shouldSelectOnPressUp||f,onAction:a||r.props?.onAction?Gs(r.props?.onAction,a?()=>a(r.key):void 0):void 0,focus:g,linkBehavior:u}),T=q=>{let ie=je();if(!we(q.currentTarget,de(q))||!n.current||!ie)return;let K=un(n.current);if(K.currentNode=ie,!I5(q,e,r,v,s,ie,n.current))switch(q.key){case"ArrowLeft":if(c==="arrow"){let te=s==="rtl"?K.nextNode():K.previousNode();if(te)q.preventDefault(),q.stopPropagation(),bn(te),ys(te,{containingElement:Ur(n.current)});else if(q.preventDefault(),q.stopPropagation(),s==="rtl")bn(n.current),ys(n.current,{containingElement:Ur(n.current)});else{K.currentNode=n.current;let O=F5(K);O&&(bn(O),ys(O,{containingElement:Ur(n.current)}))}}break;case"ArrowRight":if(c==="arrow"){let te=s==="rtl"?K.previousNode():K.nextNode();if(te)q.preventDefault(),q.stopPropagation(),bn(te),ys(te,{containingElement:Ur(n.current)});else if(q.preventDefault(),q.stopPropagation(),s==="ltr")bn(n.current),ys(n.current,{containingElement:Ur(n.current)});else{K.currentNode=n.current;let O=F5(K);O&&(bn(O),ys(O,{containingElement:Ur(n.current)}))}}break;case"ArrowUp":case"ArrowDown":!q.altKey&&we(n.current,de(q))&&(q.stopPropagation(),q.preventDefault(),n.current.parentElement?.dispatchEvent(new KeyboardEvent(q.nativeEvent.type,q.nativeEvent)));break}},$=q=>{if(m.current=r.key,de(q)!==n.current){Dl()||e.selectionManager.setFocusedKey(r.key);return}},A=q=>{let ie=je();if(!(!we(q.currentTarget,de(q))||!n.current||!ie)){if(c==="tab"){if(de(q)!==n.current&&q.key!=="Tab"){q.stopPropagation();return}if(I5(q,e,r,v,s,ie,n.current))return}switch(q.key){case"Tab":if(c==="tab"){let K=un(n.current,{tabbable:!0});K.currentNode=ie,(q.shiftKey?K.previousNode():K.nextNode())&&q.stopPropagation()}}}},B=Tz(r.props),P=k.hasAction?B:{},M=$e(E,P,{role:"row",onKeyDownCapture:c==="arrow"?T:void 0,onFocus:$,"aria-label":r["aria-label"]||r.textValue||void 0,"aria-selected":e.selectionManager.canSelectItem(r.key)?e.selectionManager.isSelected(r.key):void 0,"aria-disabled":e.selectionManager.isDisabled(r.key)||void 0,"aria-labelledby":h&&(r["aria-label"]||r.textValue)?`${ry(e,r.key)} ${h}`:void 0,id:ry(e,r.key)}),N=M.onKeyDown;M.onKeyDown=q=>{A(q),q.isPropagationStopped()||N?.(q)};let I=M.onPointerDown;M.onPointerDown=q=>{let ie=de(q);if(ie&&ie!==n.current&&jh(ie)){q.stopPropagation();return}I?.(q)};let F=M.onMouseDown;if(M.onMouseDown=q=>{let ie=de(q);if(ie&&ie!==n.current&&jh(ie)){q.stopPropagation();return}F?.(q)},i){let{collection:q}=e,ie=[...q];M["aria-rowindex"]=ie.find(K=>K.type==="section")?[...q.getKeys()].filter(K=>q.getItem(K)?.type!=="section").findIndex(K=>K===r.key)+1:r.index+1}let J={role:"gridcell","aria-colindex":1};return{rowProps:{...$e(M,b)},gridCellProps:J,descriptionProps:{id:h},...k}}function I5(t,e,n,r,i,s,a){if(!("expandedKeys"in e)||s!==a)return!1;if(t.key===z5.expand[i]&&e.selectionManager.focusedKey===n.key&&r&&!e.expandedKeys.has(n.key))return e.toggleKey(n.key),t.stopPropagation(),!0;if(t.key===z5.collapse[i]&&e.selectionManager.focusedKey===n.key){if(r&&e.expandedKeys.has(n.key))return e.toggleKey(n.key),t.stopPropagation(),!0;if(!e.expandedKeys.has(n.key)&&n.parentKey&&e.collection.getItem(n.parentKey)?.type==="item")return e.selectionManager.setFocusedKey(n.parentKey),t.stopPropagation(),!0}return!1}function F5(t){let e=null,n=null;do n=t.lastChild(),n&&(e=n);while(n);return e}function ij(t,e){let n=e.getChildren?.(t.key),r=n?Array.from(n):[],i=r.length>0?r[0]:null,s=[];for(;i;)s.push(i),i=i.nextKey!=null?e.getItem(i.nextKey):null;return s}function sj(t){return t&&t.__esModule?t.default:t}function oj(t,e){let{key:n}=t,r=e.selectionManager,i=rn(),s=!e.selectionManager.canSelectItem(n),a=e.selectionManager.isSelected(n),u=()=>r.toggleSelection(n);const c=mr(sj(mm),"@react-aria/grid");return{checkboxProps:{id:i,"aria-label":c.format("select"),isSelected:a,isDisabled:s,onChange:u}}}function aj(t,e){let{key:n}=t;const{checkboxProps:r}=oj(t,e);return{checkboxProps:{...r,"aria-labelledby":`${r.id} ${ry(e,n)}`}}}const lj=D.createContext(null),uj=D.forwardRef(function(e,n){return[e,n]=Ct(e,n,lj),V.createElement(b3,{content:V.createElement(um,e)},r=>V.createElement(cj,{props:e,collection:r,gridListRef:n}))});function cj({props:t,collection:e,gridListRef:n}){[t,n]=Ct(t,n,Bc);let{shouldUseVirtualFocus:r,filter:i,disallowTypeAhead:s,UNSTABLE_focusOnEntry:a,...u}=t,{dragAndDropHooks:c,keyboardNavigationBehavior:f="arrow",layout:h="stack",orientation:m="vertical"}=t,{CollectionRoot:g,isVirtualized:b,layoutDelegate:v,dropTargetDelegate:C}=D.useContext(Fs),E=zF({...u,collection:e,children:void 0,layoutDelegate:v}),k=IF(E,i),T=w3({usage:"search",sensitivity:"base"}),{disabledBehavior:$,disabledKeys:A}=k.selectionManager,{direction:B}=Ii(),P=D.useMemo(()=>new r6({collection:k.collection,collator:T,ref:n,disabledKeys:A,disabledBehavior:$,layoutDelegate:v,layout:h,orientation:m,direction:B}),[k.collection,n,h,m,A,$,v,T,B]),{gridProps:M}=nj({...u,keyboardDelegate:P,keyboardNavigationBehavior:h==="grid"?"tab":f,isVirtualized:b,shouldSelectOnPressUp:t.shouldSelectOnPressUp,disallowTypeAhead:s,UNSTABLE_focusOnEntry:a},k,n),N=k.selectionManager,I=!!c?.useDraggableCollectionState,F=!!c?.useDroppableCollectionState;D.useRef(I),D.useRef(F),D.useEffect(()=>{},[I,F]);let J,q,ie,K=!1,te=null,O=D.useRef(null);if(I&&c){J=c.useDraggableCollectionState({collection:k.collection,selectionManager:N,preview:c.renderDragPreview?O:void 0}),c.useDraggableCollection({},J,n);let fe=c.DragPreview;te=c.renderDragPreview?V.createElement(fe,{ref:O},c.renderDragPreview):null}if(F&&c){q=c.useDroppableCollectionState({collection:k.collection,selectionManager:N});let fe=c.dropTargetDelegate||C||new c.ListDropTargetDelegate(e,n,{layout:h,direction:B,orientation:m});ie=c.useDroppableCollection({keyboardDelegate:P,dropTargetDelegate:fe},q,n),K=q.isDropTarget({type:"root"})}let{focusProps:j,isFocused:Y,isFocusVisible:Z}=Oi(),H=k.collection.size===0,L={isDropTarget:K,orientation:m,isEmpty:H,isFocused:Y,isFocusVisible:Z,layout:h,state:k},U=St({...t,children:void 0,defaultClassName:"react-aria-GridList",values:L}),ne=null,le=null;if(H&&t.renderEmptyState){let fe=t.renderEmptyState(L);ne=V.createElement("div",{role:"row","aria-rowindex":1,style:{display:"contents"}},V.createElement("div",{role:"gridcell",style:{display:"contents"}},fe))}let ue=Ze(t,{global:!0});return V.createElement(D3,null,V.createElement(st.div,{...$e(ue,U,M,j,ie?.collectionProps,le),ref:n,slot:t.slot||void 0,onScroll:t.onScroll,"data-drop-target":K||void 0,"data-empty":H||void 0,"data-focused":Y||void 0,"data-focus-visible":Z||void 0,"data-layout":h,"data-orientation":m},V.createElement(Br,{values:[[Nc,k],[fm,{dragAndDropHooks:c,dragState:J,dropState:q}],[Q$,{render:fj}]]},F&&V.createElement(mj,null),V.createElement(E3,null,V.createElement(g,{collection:k.collection,scrollRef:n,persistedKeys:cF(N,c,q),renderDropIndicator:uF(c,q)}))),ne,te))}const dj=ua(qh,function(e,n,r){let i=D.useContext(Nc),{dragAndDropHooks:s,dragState:a,dropState:u}=D.useContext(fm),c=Qs(n),{isVirtualized:f}=D.useContext(Fs),h=a&&!(a.isDisabled||a.selectionManager.isDisabled(r.key)),{rowProps:m,gridCellProps:g,descriptionProps:b,...v}=rj({node:r,shouldSelectOnPressUp:!!a,isVirtualized:f},i,c),{hoverProps:C,isHovered:E}=Fi({isDisabled:!v.allowsSelection&&!v.hasAction&&!h,onHoverStart:r.props.onHoverStart,onHoverChange:r.props.onHoverChange,onHoverEnd:r.props.onHoverEnd}),{isFocusVisible:k,focusProps:T}=Oi(),{isFocusVisible:$,focusProps:A}=Oi({within:!0}),{checkboxProps:B}=aj({key:r.key},i),P=i.selectionManager.disabledBehavior==="all"&&v.isDisabled?{isDisabled:!0}:{},M=null;a&&s&&(M=s.useDraggableItem({key:r.key,hasDragButton:!0},a));let N=null,I=D.useRef(null),{visuallyHiddenProps:F}=dm();u&&s&&(N=s.useDropIndicator({target:{type:"item",key:r.key,dropPosition:"on"}},u,I));let J=a&&a.isDragging(r.key),q=St({...e,id:void 0,children:r.rendered,defaultClassName:"react-aria-GridListItem",values:{...v,isHovered:E,isFocusVisible:k,isFocusVisibleWithin:$,selectionMode:i.selectionManager.selectionMode,selectionBehavior:i.selectionManager.selectionBehavior,allowsDragging:!!a,isDragging:J,isDropTarget:N?.isDropTarget,id:r.key,state:i}}),ie=D.useRef(null);D.useEffect(()=>{a&&!ie.current&&console.warn('Draggable items in a GridList must contain a <Button slot="drag"> element so that keyboard and screen reader users can drag them.')},[]),D.useEffect(()=>{r.textValue},[r.textValue]);let K=Ze(e,{global:!0});return delete K.id,delete K.onClick,V.createElement(V.Fragment,null,N&&!N.isHidden&&V.createElement("div",{role:"row",style:{position:"absolute"}},V.createElement("div",{role:"gridcell"},V.createElement("div",{role:"button",...F,...N?.dropIndicatorProps,ref:I}))),V.createElement(st.div,{...$e(K,q,m,T,A,C,M?.dragProps),ref:c,"data-selected":v.isSelected||void 0,"data-disabled":v.isDisabled||void 0,"data-hovered":E||void 0,"data-focused":v.isFocused||void 0,"data-focus-visible":k||void 0,"data-focus-visible-within":$||void 0,"data-pressed":v.isPressed||void 0,"data-allows-dragging":!!a||void 0,"data-dragging":J||void 0,"data-drop-target":N?.isDropTarget||void 0,"data-selection-mode":i.selectionManager.selectionMode==="none"?void 0:i.selectionManager.selectionMode},V.createElement("div",{...g,style:{display:"contents"}},V.createElement(Br,{values:[[iF,{slots:{[ws]:{},selection:B}}],[sF,{slots:{[ws]:{},selection:B}}],[cm,{slots:{[ws]:P,drag:{...M?.dragButtonProps,ref:ie,style:{pointerEvents:"none"}}}}],[C3,{slots:{[ws]:{},description:b}}],[Fs,e$],[Nc,null],[Bc,null],[om,null],[k3,{isSelected:v.isSelected}]]},q.children))))});function fj(t,e){e=Qs(e);let{dragAndDropHooks:n,dropState:r}=D.useContext(fm),i=D.useRef(null),{dropIndicatorProps:s,isHidden:a,isDropTarget:u}=n.useDropIndicator(t,r,i);return a?null:V.createElement(pj,{...t,dropIndicatorProps:s,isDropTarget:u,buttonRef:i,ref:e})}function hj(t,e){let{dropIndicatorProps:n,isDropTarget:r,buttonRef:i,...s}=t,{visuallyHiddenProps:a}=dm(),u=St({...s,defaultClassName:"react-aria-DropIndicator",values:{isDropTarget:r}});return V.createElement(st.div,{...u,role:"row",ref:e,"data-drop-target":r||void 0},V.createElement("div",{role:"gridcell"},V.createElement("div",{...a,role:"button",...n,ref:i}),u.children))}const pj=D.forwardRef(hj);function mj(){let{dragAndDropHooks:t,dropState:e}=D.useContext(fm),n=D.useRef(null),{dropIndicatorProps:r}=t.useDropIndicator({target:{type:"root"}},e,n),i=e.isDropTarget({type:"root"}),{visuallyHiddenProps:s}=dm();return!i&&r["aria-hidden"]?null:V.createElement("div",{role:"row","aria-hidden":r["aria-hidden"],style:{position:"absolute"}},V.createElement("div",{role:"gridcell"},V.createElement("div",{role:"button",...s,...r,ref:n})))}ua(Uh,function(e,n,r){let i=D.useContext(Nc),{isVirtualized:s}=D.useContext(Fs),{isLoading:a,onLoadMore:u,scrollOffset:c,...f}=e,h=D.useRef(null),m=D.useMemo(()=>({onLoadMore:u,collection:i?.collection,sentinelRef:h,scrollOffset:c}),[u,c,i?.collection]);d6(m,h);let g=St({...f,id:void 0,children:r.rendered,defaultClassName:"react-aria-GridListLoadingIndicator",values:void 0});return V.createElement(V.Fragment,null,V.createElement("div",{style:{position:"relative",width:0,height:0},inert:l6(!0)},V.createElement("div",{"data-testid":"loadMoreSentinel",ref:h,style:{position:"absolute",height:1,width:1}})),a&&g.children&&V.createElement(st.div,{...g,...Ze(e,{global:!0}),role:"row",ref:n},V.createElement("div",{"aria-colindex":s?1:void 0,role:"gridcell"},g.children)))});function gj(t,e,n){let{overlayProps:r,underlayProps:i}=p6({...t,isOpen:e.isOpen,onClose:e.close},n);return m6({isDisabled:!e.isOpen}),Z6(),D.useEffect(()=>{if(e.isOpen&&n.current)return T3([n.current],{shouldUseInert:!0})},[e.isOpen,n]),{modalProps:$e(r),underlayProps:i}}let Nn=typeof document<"u"&&window.visualViewport;function bj(){let t=Ws(),[e,n]=D.useState(()=>t?{width:0,height:0}:N0());return D.useEffect(()=>{let r=u=>{n(c=>u.width===c.width&&u.height===c.height?c:u)},i=()=>{Nn&&Nn.scale>1||r(N0())},s,a=u=>{Nn&&Nn.scale>1||ac(de(u))&&(s=requestAnimationFrame(()=>{let c=je();(!c||!ac(c))&&r({width:document.documentElement.clientWidth,height:document.documentElement.clientHeight})}))};return r(N0()),Ni()&&window.addEventListener("blur",a,!0),Nn?Nn.addEventListener("resize",i):window.addEventListener("resize",i),()=>{cancelAnimationFrame(s),Ni()&&window.removeEventListener("blur",a,!0),Nn?Nn.removeEventListener("resize",i):window.removeEventListener("resize",i)}},[]),e}function N0(){return{width:Nn?Math.min(Nn.width*Nn.scale,document.documentElement.clientWidth):document.documentElement.clientWidth,height:Nn?Nn.height*Nn.scale:document.documentElement.clientHeight}}const yj=D.createContext(null),K3=D.createContext(null),vj=D.forwardRef(function(e,n){if(D.useContext(K3))return V.createElement(K5,{...e,modalRef:n},e.children);let{isDismissable:i,isKeyboardDismissDisabled:s,isOpen:a,defaultOpen:u,onOpenChange:c,children:f,isEntering:h,isExiting:m,UNSTABLE_portalContainer:g,shouldCloseOnInteractOutside:b,...v}=e;return V.createElement(dB,{isDismissable:i,isKeyboardDismissDisabled:s,isOpen:a,defaultOpen:u,onOpenChange:c,isEntering:h,isExiting:m,UNSTABLE_portalContainer:g,shouldCloseOnInteractOutside:b},V.createElement(K5,{...v,modalRef:n},f))});function xj(t,e){[t,e]=Ct(t,e,yj);let n=D.useContext(ca),r=A3(t),i=t.isOpen!=null||t.defaultOpen!=null||!n?r:n,s=Qs(e),a=D.useRef(null),u=Z4(s,i.isOpen),c=Z4(a,i.isOpen),f=u||c||t.isExiting||!1,h=Ws();return!i.isOpen&&!f||h?null:V.createElement(Cj,{...t,state:i,isExiting:f,overlayRef:s,modalRef:a})}const dB=D.forwardRef(xj);function Cj({UNSTABLE_portalContainer:t,...e}){let n=e.modalRef,{state:r}=e,{modalProps:i,underlayProps:s}=gj(e,r,n),a=B3(e.overlayRef)||e.isEntering||!1,u=St({...e,defaultClassName:"react-aria-ModalOverlay",values:{isEntering:a,isExiting:e.isExiting,state:r}}),c=bj(),f,h;if(typeof document<"u"){let g=Ks(document.body)?document.body:document.scrollingElement||document.documentElement,b=g.getBoundingClientRect().width%1,v=g.getBoundingClientRect().height%1;f=g.scrollWidth-b,h=g.scrollHeight-v}let m={...u.style,"--visual-viewport-width":c.width+"px","--visual-viewport-height":c.height+"px","--page-width":f!==void 0?f+"px":void 0,"--page-height":h!==void 0?h+"px":void 0};return V.createElement(J4,{isExiting:e.isExiting,portalContainer:t},V.createElement(st.div,{...$e(Ze(e,{global:!0}),s),...u,style:m,ref:e.overlayRef,"data-entering":a||void 0,"data-exiting":e.isExiting||void 0},V.createElement(Br,{values:[[K3,{modalProps:i,modalRef:n,isExiting:e.isExiting,isDismissable:e.isDismissable}],[ca,r]]},u.children)))}function K5(t){let{modalProps:e,modalRef:n,isExiting:r,isDismissable:i}=D.useContext(K3),s=D.useContext(ca),a=D.useMemo(()=>Xc(t.modalRef,n),[t.modalRef,n]),u=Qs(a),c=B3(u),f=St({...t,defaultClassName:"react-aria-Modal",values:{isEntering:c,isExiting:r,state:s}});return V.createElement(st.div,{...$e(Ze(t,{global:!0}),e),...f,ref:u,"data-entering":c||void 0,"data-exiting":r||void 0},i&&V.createElement(X4,{onDismiss:s.close}),f.children)}var fB={};fB={"Clear search":"مسح البحث"};var hB={};hB={"Clear search":"Изчистване на търсене"};var pB={};pB={"Clear search":"Vymazat hledání"};var mB={};mB={"Clear search":"Ryd søgning"};var gB={};gB={"Clear search":"Suche zurücksetzen"};var bB={};bB={"Clear search":"Απαλοιφή αναζήτησης"};var yB={};yB={"Clear search":"Clear search"};var vB={};vB={"Clear search":"Borrar búsqueda"};var xB={};xB={"Clear search":"Tühjenda otsing"};var CB={};CB={"Clear search":"Tyhjennä haku"};var EB={};EB={"Clear search":"Effacer la recherche"};var kB={};kB={"Clear search":"נקה חיפוש"};var DB={};DB={"Clear search":"Obriši pretragu"};var SB={};SB={"Clear search":"Keresés törlése"};var wB={};wB={"Clear search":"Cancella ricerca"};var $B={};$B={"Clear search":"検索をクリア"};var TB={};TB={"Clear search":"검색 지우기"};var AB={};AB={"Clear search":"Išvalyti iešką"};var BB={};BB={"Clear search":"Notīrīt meklēšanu"};var MB={};MB={"Clear search":"Tøm søk"};var RB={};RB={"Clear search":"Zoekactie wissen"};var NB={};NB={"Clear search":"Wyczyść zawartość wyszukiwania"};var PB={};PB={"Clear search":"Limpar pesquisa"};var OB={};OB={"Clear search":"Limpar pesquisa"};var LB={};LB={"Clear search":"Ştergeţi căutarea"};var zB={};zB={"Clear search":"Очистить поиск"};var IB={};IB={"Clear search":"Vymazať vyhľadávanie"};var FB={};FB={"Clear search":"Počisti iskanje"};var KB={};KB={"Clear search":"Obriši pretragu"};var jB={};jB={"Clear search":"Rensa sökning"};var _B={};_B={"Clear search":"Aramayı temizle"};var HB={};HB={"Clear search":"Очистити пошук"};var VB={};VB={"Clear search":"清除搜索"};var UB={};UB={"Clear search":"清除搜尋條件"};var qB={};qB={"ar-AE":fB,"bg-BG":hB,"cs-CZ":pB,"da-DK":mB,"de-DE":gB,"el-GR":bB,"en-US":yB,"es-ES":vB,"et-EE":xB,"fi-FI":CB,"fr-FR":EB,"he-IL":kB,"hr-HR":DB,"hu-HU":SB,"it-IT":wB,"ja-JP":$B,"ko-KR":TB,"lt-LT":AB,"lv-LV":BB,"nb-NO":MB,"nl-NL":RB,"pl-PL":NB,"pt-BR":PB,"pt-PT":OB,"ro-RO":LB,"ru-RU":zB,"sk-SK":IB,"sl-SI":FB,"sr-SP":KB,"sv-SE":jB,"tr-TR":_B,"uk-UA":HB,"zh-CN":VB,"zh-TW":UB};function Ej(t){return t&&t.__esModule?t.default:t}function kj(t,e,n){let r=mr(Ej(qB),"@react-aria/searchfield"),{isDisabled:i,isReadOnly:s,onSubmit:a,onClear:u,type:c="search"}=t,f=k=>{const T=k.key;T==="Enter"&&(i||s)&&k.preventDefault(),!(i||s)&&(T==="Enter"&&a&&(k.preventDefault(),a(e.value)),T==="Escape"&&(e.value===""&&(!n.current||n.current.value==="")?k.continuePropagation():(k.preventDefault(),e.setValue(""),u&&u())))},h=()=>{e.setValue(""),u&&u()},m=()=>{n.current?.focus()},{labelProps:g,inputProps:b,descriptionProps:v,errorMessageProps:C,...E}=lF({...t,value:e.value,onChange:e.setValue,onKeyDown:s?t.onKeyDown:Gs(f,t.onKeyDown),type:c},n);return{labelProps:g,inputProps:{...b,defaultValue:void 0},clearButtonProps:{"aria-label":r.format("Clear search"),excludeFromTabOrder:!0,preventFocusOnPress:!0,isDisabled:i||s,onPress:h,onPressStart:m},descriptionProps:v,errorMessageProps:C,...E}}function Dj(t){let[e,n]=Ys(j5(t.value),j5(t.defaultValue)||"",t.onChange);return{value:e,setValue:n}}function j5(t){if(t!=null)return t.toString()}const Sj=D.createContext(null),wj=lm(function(e,n){[e,n]=Ct(e,n,Sj);let{validationBehavior:r}=Ol(YI)||{},i=e.validationBehavior??r??"native",s=D.useRef(null);[e,s]=Ct(e,s,om);let[a,u]=jS(!e["aria-label"]&&!e["aria-labelledby"]),c=Dj({...e,validationBehavior:i}),{labelProps:f,inputProps:h,clearButtonProps:m,descriptionProps:g,errorMessageProps:b,...v}=kj({..._S(e),label:u,validationBehavior:i},c,s),C=St({...e,values:{isEmpty:c.value==="",isDisabled:e.isDisabled||!1,isInvalid:v.isInvalid||!1,isReadOnly:e.isReadOnly||!1,isRequired:e.isRequired||!1,state:c},defaultClassName:"react-aria-SearchField"}),E=Ze(e,{global:!0});return delete E.id,V.createElement(st.div,{...E,...C,ref:n,slot:e.slot||void 0,"data-empty":c.value===""||void 0,"data-disabled":e.isDisabled||void 0,"data-invalid":v.isInvalid||void 0,"data-readonly":e.isReadOnly||void 0,"data-required":e.isRequired||void 0},V.createElement(Br,{values:[[x3,{...f,ref:a}],[G$,{...h,ref:s}],[cm,m],[C3,{slots:{description:g,errorMessage:b}}],[q$,{isInvalid:v.isInvalid,isDisabled:e.isDisabled||!1}],[UI,v]]},C.children))}),$j=D.createContext({});let Tj=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:r,...i}=t;return i};const Aj=D.forwardRef(function(e,n){[e,n]=Ct(e,n,$j);let{hoverProps:r,isHovered:i}=Fi(e),{isFocused:s,isFocusVisible:a,focusProps:u}=Oi({isTextInput:!0,autoFocus:e.autoFocus}),c=!!e["aria-invalid"]&&e["aria-invalid"]!=="false",f=St({...e,values:{isHovered:i,isFocused:s,isFocusVisible:a,isDisabled:e.disabled||!1,isInvalid:c},defaultClassName:"react-aria-TextArea"});return V.createElement(st.textarea,{...$e(Tj(e),u,r),...f,ref:n,"data-focused":s||void 0,"data-disabled":e.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":a||void 0,"data-invalid":c||void 0})});function GB(t,e,n){const{isSelected:r}=e,{isPressed:i,buttonProps:s}=j$({...t,onPress:Gs(e.toggle,t.onPress)},n);return{isPressed:i,isSelected:r,isDisabled:t.isDisabled||!1,buttonProps:$e(s,{"aria-pressed":r})}}function Bj(t,e){const{"aria-label":n,"aria-labelledby":r,orientation:i="horizontal"}=t;let[s,a]=D.useState(!1);Le(()=>{a(!!(e.current&&e.current.parentElement?.closest('[role="toolbar"]')))});const{direction:u}=Ii(),c=u==="rtl"&&i==="horizontal";let f=DF(e);const h=v=>{if(we(v.currentTarget,de(v))){if(i==="horizontal"&&v.key==="ArrowRight"||i==="vertical"&&v.key==="ArrowDown")c?f.focusPrevious():f.focusNext();else if(i==="horizontal"&&v.key==="ArrowLeft"||i==="vertical"&&v.key==="ArrowUp")c?f.focusNext():f.focusPrevious();else if(v.key==="Tab"){m.current=je(),v.shiftKey?f.focusFirst():f.focusLast();return}else return;v.stopPropagation(),v.preventDefault()}},m=D.useRef(null),g=v=>{!we(v.currentTarget,v.relatedTarget)&&!m.current&&(m.current=de(v))},b=v=>{m.current&&!we(v.currentTarget,v.relatedTarget)&&we(e.current,de(v))&&(m.current?.focus(),m.current=null)};return{toolbarProps:{...Ze(t,{labelable:!0}),role:s?"group":"toolbar","aria-orientation":i,"aria-label":n,"aria-labelledby":n==null?r:void 0,onKeyDownCapture:s?void 0:h,onFocusCapture:s?void 0:b,onBlurCapture:s?void 0:g}}}function Mj(t,e,n){let{isDisabled:r}=t,{toolbarProps:i}=Bj(t,n);return{groupProps:{...i,role:e.selectionMode==="single"?"radiogroup":i.role,"aria-disabled":r}}}function Rj(t,e,n){let r={isSelected:e.selectedKeys.has(t.id),defaultSelected:!1,setSelected(c){e.setSelected(t.id,c)},toggle(){e.toggleKey(t.id)}},{isPressed:i,isSelected:s,isDisabled:a,buttonProps:u}=GB({...t,id:void 0,isDisabled:t.isDisabled||e.isDisabled},r,n);return e.selectionMode==="single"&&(u.role="radio",u["aria-checked"]=r.isSelected,delete u["aria-pressed"]),{isPressed:i,isSelected:s,isDisabled:a,buttonProps:u}}function Nj(t){let{selectionMode:e="single",disallowEmptySelection:n,isDisabled:r=!1}=t,[i,s]=Ys(D.useMemo(()=>t.selectedKeys?new Set(t.selectedKeys):void 0,[t.selectedKeys]),D.useMemo(()=>t.defaultSelectedKeys?new Set(t.defaultSelectedKeys):new Set,[t.defaultSelectedKeys]),t.onSelectionChange);return{selectionMode:e,isDisabled:r,selectedKeys:i,setSelectedKeys:s,toggleKey(a){let u;e==="multiple"?(u=new Set(i),u.has(a)&&(!n||u.size>1)?u.delete(a):u.add(a)):u=new Set(i.has(a)&&!n?[]:[a]),s(u)},setSelected(a,u){u!==i.has(a)&&this.toggleKey(a)}}}const Pj=D.createContext({}),WB=D.createContext(null),Oj=D.forwardRef(function(e,n){[e,n]=Ct(e,n,Pj);let r=Nj(e),{groupProps:i}=Mj(e,r,n),s=St({...e,values:{orientation:e.orientation||"horizontal",isDisabled:r.isDisabled,state:r},defaultClassName:"react-aria-ToggleButtonGroup"}),a=Ze(e,{global:!0});return V.createElement(st.div,{...$e(a,s,i),ref:n,slot:e.slot||void 0,"data-orientation":e.orientation||"horizontal","data-disabled":e.isDisabled||void 0},V.createElement(WB.Provider,{value:r},V.createElement(E3,null,s.children)))}),Lj=D.createContext({}),zj=D.forwardRef(function(e,n){[e,n]=Ct(e,n,Lj);let r=D.useContext(WB),i=rF(r&&e.id!=null?{isSelected:r.selectedKeys.has(e.id),onChange(E){r.setSelected(e.id,E)}}:e),{buttonProps:s,isPressed:a,isSelected:u,isDisabled:c}=r&&e.id!=null?Rj({...e,id:e.id},r,n):GB({...e,id:e.id!=null?String(e.id):void 0},i,n),{focusProps:f,isFocused:h,isFocusVisible:m}=Oi(e),{hoverProps:g,isHovered:b}=Fi({...e,isDisabled:c}),v=St({...e,id:void 0,values:{isHovered:b,isPressed:a,isFocused:h,isSelected:i.isSelected,isFocusVisible:m,isDisabled:c,state:i},defaultClassName:"react-aria-ToggleButton"}),C=Ze(e,{global:!0});return delete C.id,delete C.onClick,V.createElement(st.button,{...$e(C,v,s,f,g),ref:n,slot:e.slot||void 0,"data-focused":h||void 0,"data-disabled":c||void 0,"data-pressed":a||void 0,"data-selected":u||void 0,"data-hovered":b||void 0,"data-focus-visible":m||void 0},V.createElement(k3.Provider,{value:{isSelected:u}},v.children))});function Ij(t,e,n,r,i=!1,s=!1){switch(r){case"left":return i?P0(t,e,n,s,"left"):O0(t,e,n,s,"left");case"right":return i?O0(t,e,n,s,"right"):P0(t,e,n,s,"right");case"up":return O0(t,e,n,s);case"down":return P0(t,e,n,s)}}function P0(t,e,n,r=!1,i=null){if(!n)return{type:"root"};if(n.type==="root"){let s=t.getFirstKey?.()??null;return s!=null?{type:"item",key:s,dropPosition:"before"}:null}if(n.type==="item"){let s=null;i?s=i==="right"?t.getKeyRightOf?.(n.key,{includeDisabled:!0}):t.getKeyLeftOf?.(n.key,{includeDisabled:!0}):s=t.getKeyBelow?.(n.key,{includeDisabled:!0});let a=j3(e,n.key,u=>e.getKeyAfter(u));if(s!=null&&s!==a)return{type:"item",key:s,dropPosition:n.dropPosition};switch(n.dropPosition){case"before":return{type:"item",key:n.key,dropPosition:"on"};case"on":{let u=e.getItem(n.key),c=s!=null?e.getItem(s):null;return u&&c&&c.level>=u.level?{type:"item",key:c.key,dropPosition:"before"}:{type:"item",key:n.key,dropPosition:"after"}}case"after":{let u=e.getItem(n.key),c=u?.nextKey!=null?e.getItem(u.nextKey):null;for(;c!=null&&c.type!=="item";)c=c.nextKey!=null?e.getItem(c.nextKey):null;if(u&&c==null&&u.parentKey!=null){let f=e.getItem(u.parentKey);const h=f?.nextKey!=null?e.getItem(f.nextKey):null;if(h?.type==="item")return{type:"item",key:h.key,dropPosition:"before"};if(f?.type==="item")return{type:"item",key:f.key,dropPosition:"after"}}if(c)return{type:"item",key:c.key,dropPosition:"on"}}}}return r?{type:"root"}:null}function O0(t,e,n,r=!1,i=null){if(!n||r&&n.type==="root"){let s=null,a=t.getLastKey?.();for(;a!=null;){let u=e.getItem(a);if(u?.type!=="item")break;s=a,a=u?.parentKey}return s!=null?{type:"item",key:s,dropPosition:"after"}:null}if(n.type==="item"){let s=null;i?s=i==="left"?t.getKeyLeftOf?.(n.key,{includeDisabled:!0}):t.getKeyRightOf?.(n.key,{includeDisabled:!0}):s=t.getKeyAbove?.(n.key,{includeDisabled:!0});let a=j3(e,n.key,u=>e.getKeyBefore(u));if(s!=null&&s!==a)return{type:"item",key:s,dropPosition:n.dropPosition};switch(n.dropPosition){case"before":{let u=e.getItem(n.key);if(u&&u.prevKey!=null){let c=_5(e,u.prevKey);if(c)return c}return s!=null?{type:"item",key:s,dropPosition:"on"}:{type:"root"}}case"on":return{type:"item",key:n.key,dropPosition:"before"};case"after":{let u=_5(e,n.key);return u||{type:"item",key:n.key,dropPosition:"on"}}}}return n.type!=="root"?{type:"root"}:null}function _5(t,e){let n=t.getItem(e),r=j3(t,e,s=>t.getKeyAfter(s)),i=r!=null?t.getItem(r):null;if(n&&i&&i.level>n.level){let s=null;if("lastChildKey"in n)for(s=n.lastChildKey!=null?t.getItem(n.lastChildKey):null;s&&s.type!=="item"&&s.prevKey!=null;)s=t.getItem(s.prevKey);else s=Array.from(n.childNodes).findLast(a=>a.type==="item")||null;if(s)return{type:"item",key:s.key,dropPosition:"after"}}return null}function j3(t,e,n){let r=n(e),i=r!=null?t.getItem(r):null;for(;i&&i.type!=="item";)r=n(i.key),i=r!=null?t.getItem(r):null;return r}const Qf=20;function Fj(t){let e=D.useRef(null),n=D.useRef(!0),r=D.useRef(!0);D.useEffect(()=>{if(t.current){e.current=Ks(t.current)?t.current:Ur(t.current);let a=window.getComputedStyle(e.current);n.current=/(auto|scroll)/.test(a.overflowX),r.current=/(auto|scroll)/.test(a.overflowY)}},[t]);let i=D.useRef({timer:void 0,dx:0,dy:0}).current;D.useEffect(()=>()=>{i.timer&&(cancelAnimationFrame(i.timer),i.timer=void 0)},[i]);let s=D.useCallback(()=>{n.current&&e.current&&(e.current.scrollLeft+=i.dx),r.current&&e.current&&(e.current.scrollTop+=i.dy),i.timer&&(i.timer=requestAnimationFrame(s))},[e,i]);return{move(a,u){if(!f3()||Ni()||!e.current)return;let c=e.current.getBoundingClientRect(),f=Qf,h=Qf,m=c.height-Qf,g=c.width-Qf;a<f||a>g||u<h||u>m?(a<f?i.dx=a-f:a>g&&(i.dx=a-g),u<h?i.dy=u-h:u>m&&(i.dy=u-m),i.timer||(i.timer=requestAnimationFrame(s))):this.stop()},stop(){i.timer&&(cancelAnimationFrame(i.timer),i.timer=void 0)}}}function Kj(t,e,n){let r=D.useRef({props:t,state:e,nextTarget:null,dropOperation:null}).current;r.props=t,r.state=e;let i=D.useCallback(async g=>{let{onInsert:b,onRootDrop:v,onItemDrop:C,onReorder:E,onMove:k,acceptedDragTypes:T="all",shouldAcceptItemDrop:$}=r.props,{draggingKeys:A}=It,B=Vr(n),{target:P,dropOperation:M,items:N}=g,I=N;(T!=="all"||$)&&(I=N.filter(F=>{let J;return F.kind==="directory"?J=new Set([VT]):J=F.kind==="file"?new Set([F.type]):F.types,T==="all"||T.some(q=>J.has(q))?P.type==="item"&&P.dropPosition==="on"&&$?$(P,J):!0:!1})),I.length>0&&(P.type==="root"&&v&&await v({items:I,dropOperation:M}),P.type==="item"&&(P.dropPosition==="on"&&C&&await C({items:I,dropOperation:M,isInternal:B,target:P}),k&&B&&await k({keys:A,dropOperation:M,target:P}),P.dropPosition!=="on"&&(!B&&b&&await b({items:I,dropOperation:M,target:P}),B&&E&&await E({keys:A,dropOperation:M,target:P}))))},[r,n]),s=Fj(n),{dropProps:a}=QK({ref:n,onDropEnter(){r.nextTarget!=null&&e.setTarget(r.nextTarget)},onDropMove(g){r.nextTarget!=null&&e.setTarget(r.nextTarget),s.move(g.x,g.y)},getDropOperationForPoint(g,b,v,C){let{draggingKeys:E,dropCollectionRef:k}=It,T=Vr(n),$=B=>e.getDropOperation({target:B,types:g,allowedOperations:b,isInternal:T,draggingKeys:E})!=="cancel",A=t.dropTargetDelegate.getDropTargetFromPoint(v,C,$);if(!A)return r.dropOperation="cancel",r.nextTarget=null,"cancel";if(r.dropOperation=e.getDropOperation({target:A,types:g,allowedOperations:b,isInternal:T,draggingKeys:E}),r.dropOperation==="cancel"){let B={type:"root"},P=e.getDropOperation({target:B,types:g,allowedOperations:b,isInternal:T,draggingKeys:E});P!=="cancel"&&(A=B,r.dropOperation=P)}return A&&r.dropOperation!=="cancel"&&n?.current!==k?.current&&sl(n),r.nextTarget=r.dropOperation==="cancel"?null:A,r.dropOperation},onDropExit(){sl(void 0),e.setTarget(null),s.stop()},onDropActivate(g){e.target?.type==="item"&&typeof t.onDropActivate=="function"&&t.onDropActivate({type:"dropactivate",x:g.x,y:g.y,target:e.target})},onDrop(g){sl(n),e.target&&f(g,e.target);let{draggingCollectionRef:b}=It;b==null&&WT()}}),u=D.useRef(null),c=D.useCallback(()=>{let{state:g}=r;if(u.current){let{target:b,collection:v,selectedKeys:C,focusedKey:E,isInternal:k,draggingKeys:T}=u.current;if(g.collection.size>v.size&&g.selectionManager.isSelectionEqual(C)){let $=new Set,A=g.collection.getFirstKey();for(;A!=null;){let B=g.collection.getItem(A);B?.type==="item"&&!v.getItem(B.key)&&$.add(B.key),B?.hasChildNodes&&g.collection.getItem(B.lastChildKey)?.type==="item"?A=B.firstChildKey:A=g.collection.getKeyAfter(A)}if(g.selectionManager.setSelectedKeys($),g.selectionManager.focusedKey===E){let B=$.keys().next().value;if(B!=null){let P=g.collection.getItem(B),M=u.current.target,N=g.collection.expandedKeys?g.collection.expandedKeys.has(P?.parentKey):!1;P&&(P?.type==="cell"||M.type==="item"&&M.dropPosition==="on"&&!N)&&(B=P.parentKey),B!=null&&g.selectionManager.setFocusedKey(B),g.selectionManager.selectionMode==="none"&&No("keyboard")}}}else E!=null&&g.selectionManager.focusedKey===E&&k&&b.type==="item"&&b.dropPosition!=="on"&&T.has(g.collection.getItem(E)?.parentKey)?(g.selectionManager.setFocusedKey(g.collection.getItem(E)?.parentKey??null),No("keyboard")):g.selectionManager.focusedKey===E&&b.type==="item"&&b.dropPosition==="on"&&g.collection.getItem(b.key)!=null?(g.selectionManager.setFocusedKey(b.key),No("keyboard")):g.selectionManager.focusedKey!=null&&!g.selectionManager.isSelected(g.selectionManager.focusedKey)&&No("keyboard");g.selectionManager.setFocused(!0)}},[r]),f=D.useCallback((g,b)=>{let{state:v}=r;u.current={timeout:void 0,focusedKey:v.selectionManager.focusedKey,collection:v.collection,selectedKeys:v.selectionManager.selectedKeys,draggingKeys:It.draggingKeys,isInternal:Vr(n),target:b},(r.props.onDrop||i)({type:"drop",x:g.x,y:g.y,target:b,items:g.items,dropOperation:g.dropOperation}),u.current.timeout=setTimeout(()=>{c(),u.current=null},50)},[r,i,n,c]);D.useEffect(()=>()=>{u.current&&clearTimeout(u.current.timeout)},[]),Le(()=>{u.current&&e.collection!==u.current.collection&&c()});let{direction:h}=Ii();D.useEffect(()=>{if(!n.current)return;let g=(C,E=!0,k="down")=>Ij(r.props.keyboardDelegate,r.state.collection,C,k,h==="rtl",E),b=(C,E=!0)=>g(C,E,"up"),v=(C,E,k,T,$=!0)=>{let A=0,B,{draggingKeys:P}=It,M=Vr(n);do{let N=T(C,$);if(!N)return null;C=N,B=r.state.getDropOperation({target:N,types:E,allowedOperations:k,isInternal:M,draggingKeys:P}),C.type==="root"&&A++}while(B==="cancel"&&!r.state.isDropTarget(C)&&A<2);return B==="cancel"?null:C};return QT({element:n.current,preventFocusOnDrop:!0,getDropOperation(C,E){if(r.state.target){let{draggingKeys:T}=It,$=Vr(n);return r.state.getDropOperation({target:r.state.target,types:C,allowedOperations:E,isInternal:$,draggingKeys:T})}return v(null,C,E,g)?"move":"cancel"},onDropEnter(C,E){let k=Go(E.items),T=r.state.selectionManager,$=null;sl(n);let A=T.focusedKey,B="after",P=A!=null?r.state.collection.getItem(A):null;if(P?.type==="cell"&&(A=P.parentKey),A!=null&&T.isSelected(A)&&(T.selectedKeys.size>1&&T.firstSelectedKey===A?B="before":A=T.lastSelectedKey),A!=null){$={type:"item",key:A,dropPosition:B};let{draggingKeys:M}=It,N=Vr(n);r.state.getDropOperation({target:$,types:k,allowedOperations:E.allowedDropOperations,isInternal:N,draggingKeys:M})==="cancel"&&($=v($,k,E.allowedDropOperations,g,!1)??v($,k,E.allowedDropOperations,b,!1))}$||($=v(null,k,E.allowedDropOperations,g)),r.state.setTarget($)},onDropExit(){sl(void 0),r.state.setTarget(null)},onDropTargetEnter(C){r.state.setTarget(C)},onDropActivate(C,E){E?.type==="item"&&E?.dropPosition==="on"&&typeof r.props.onDropActivate=="function"&&r.props.onDropActivate({type:"dropactivate",x:C.x,y:C.y,target:E})},onDrop(C,E){sl(n),r.state.target&&f(C,E||r.state.target)},onKeyDown(C,E){let{keyboardDelegate:k}=r.props,T=Go(E.items);switch(C.key){case"ArrowDown":if(k.getKeyBelow){let $=v(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"down"));r.state.setTarget($)}break;case"ArrowUp":if(k.getKeyAbove){let $=v(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"up"));r.state.setTarget($)}break;case"ArrowLeft":if(k.getKeyLeftOf){let $=v(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"left"));r.state.setTarget($)}break;case"ArrowRight":if(k.getKeyRightOf){let $=v(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"right"));r.state.setTarget($)}break;case"Home":if(k.getFirstKey){let $=v(null,T,E.allowedDropOperations,g);r.state.setTarget($)}break;case"End":if(k.getLastKey){let $=v(null,T,E.allowedDropOperations,b);r.state.setTarget($)}break;case"PageDown":if(k.getKeyPageBelow){let $=r.state.target;if(!$)$=v(null,T,E.allowedDropOperations,g);else{let A=k.getFirstKey?.();$.type==="item"&&(A=$.key);let B=null;A!=null&&(B=k.getKeyPageBelow(A));let P=$.type==="item"?$.dropPosition:"after";if((B==null||$.type==="item"&&$.key===k.getLastKey?.())&&(B=k.getLastKey?.()??null,P="after"),B==null)break;$={type:"item",key:B,dropPosition:P};let{draggingCollectionRef:M,draggingKeys:N}=It,I=M?.current===n?.current;r.state.getDropOperation({target:$,types:T,allowedOperations:E.allowedDropOperations,isInternal:I,draggingKeys:N})==="cancel"&&($=v($,T,E.allowedDropOperations,g,!1)??v($,T,E.allowedDropOperations,b,!1))}r.state.setTarget($??r.state.target)}break;case"PageUp":{if(!k.getKeyPageAbove)break;let $=r.state.target;if(!$)$=v(null,T,E.allowedDropOperations,b);else if($.type==="item"){if($.key===k.getFirstKey?.())$={type:"root"};else{let M=k.getKeyPageAbove($.key),N=$.dropPosition;if(M==null&&(M=k.getFirstKey?.(),N="before"),M==null)break;$={type:"item",key:M,dropPosition:N}}let{draggingKeys:A}=It,B=Vr(n);r.state.getDropOperation({target:$,types:T,allowedOperations:E.allowedDropOperations,isInternal:B,draggingKeys:A})==="cancel"&&($=v($,T,E.allowedDropOperations,b,!1)??v($,T,E.allowedDropOperations,g,!1))}r.state.setTarget($??r.state.target);break}}r.props.onKeyDown?.(C)}})},[r,n,f,h]);let m=rn();return L3.set(e,{id:m,ref:n}),{collectionProps:$e(a,{id:m,"aria-describedby":null})}}function QB(t,e,n){let{dropProps:r}=BA(),i=AK(e);D.useEffect(()=>{if(n.current)return IK({element:n.current,target:t.target,getDropOperation(h,m){let{draggingKeys:g}=It,b=Vr(i);return e.getDropOperation({target:t.target,types:h,allowedOperations:m,isInternal:b,draggingKeys:g})},activateButtonRef:t.activateButtonRef})},[n,t.target,e,i,t.activateButtonRef]);let s=I3(),{draggingKeys:a}=It,u=Vr(i),c=s&&e.getDropOperation({target:t.target,types:Go(s.dragTarget.items),allowedOperations:s.dragTarget.allowedDropOperations,isInternal:u,draggingKeys:a})!=="cancel",f=e.isDropTarget(t.target);return D.useEffect(()=>{s&&f&&n.current&&n.current.focus()},[f,s,n]),{dropProps:{...r,"aria-hidden":!s||c?void 0:"true"},isDropTarget:f}}function jj(t){return t&&t.__esModule?t.default:t}function _j(t,e,n){let{target:r}=t,{collection:i}=e,s=mr(jj(nd),"@react-aria/dnd"),a=I3(),{dropProps:u}=QB(t,e,n),c=rn(),f=v=>v==null?"":i.getTextValue?.(v)??i.getItem(v)?.textValue??"",h="",m;if(r.type==="root")h=s.format("dropOnRoot"),m=`${c} ${TK(e)}`;else if(r.dropPosition==="on")h=s.format("dropOnItem",{itemText:f(r.key)});else{let v,C;if(r.dropPosition==="before"){let E=i.getItem(r.key)?.prevKey,k=E!=null?i.getItem(E):null;v=k?.type==="item"?k.key:null}else v=r.key;if(r.dropPosition==="after"){let E=i.getItem(r.key)?.nextKey,k=E!=null?i.getItem(E):null;C=k?.type==="item"?k.key:null}else C=r.key;v!=null&&C!=null?h=s.format("insertBetween",{beforeItemText:f(v),afterItemText:f(C)}):v!=null?h=s.format("insertAfter",{itemText:f(v)}):C!=null&&(h=s.format("insertBefore",{itemText:f(C)}))}let g=e.isDropTarget(r),b=a?u["aria-hidden"]:"true";return{dropIndicatorProps:{...u,id:c,"aria-roledescription":s.format("dropIndicator"),"aria-label":h,"aria-labelledby":m,"aria-hidden":b,tabIndex:-1},isDropTarget:g,isHidden:!g&&!!b}}function Hj(t){return t&&t.__esModule?t.default:t}const H5={keyboard:{start:"dragDescriptionKeyboard",end:"endDragKeyboard"},touch:{start:"dragDescriptionTouch",end:"endDragTouch"},virtual:{start:"dragDescriptionVirtual",end:"endDragVirtual"}};function Vj(t){let{hasDragButton:e,isDisabled:n}=t,r=mr(Hj(nd),"@react-aria/dnd"),i=D.useRef({options:t,x:0,y:0}).current;i.options=t;let s=D.useRef(null),[a,u]=D.useState(!1),c=B=>{s.current=B,u(!!B)},{addGlobalListener:f,removeAllGlobalListeners:h}=Jc(),m=D.useRef(null),g=B=>{if(B.defaultPrevented)return;if(B.stopPropagation(),m.current==="virtual"){B.preventDefault(),E(de(B)),m.current=null;return}typeof t.onDragStart=="function"&&t.onDragStart({type:"dragstart",x:B.clientX,y:B.clientY});let P=t.getItems();B.dataTransfer.clearData?.(),BK(B.dataTransfer,P);let M=Mt.all;if(typeof t.getAllowedDropOperations=="function"){let F=t.getAllowedDropOperations();M=Mt.none;for(let J of F)M|=Mt[J]||Mt.none}M0(M);let N=_T[M]||"none";B.dataTransfer.effectAllowed=N==="cancel"?"none":N,typeof t.preview?.current=="function"&&t.preview.current(P,(F,J,q)=>{if(!F)return;let ie=F.getBoundingClientRect(),K=B.currentTarget.getBoundingClientRect(),te=B.clientX-K.x,O=B.clientY-K.y;(te>ie.width||O>ie.height)&&(te=ie.width/2,O=ie.height/2);let j=te,Y=O;typeof J=="number"&&typeof q=="number"&&(j=J,Y=q),j=Math.max(0,Math.min(j,ie.width)),Y=Math.max(0,Math.min(Y,ie.height));let Z=2*Math.round(ie.height/2);F.style.height=`${Z}px`,B.dataTransfer.setDragImage(F,j,Y)}),f(window,"drop",F=>{F.preventDefault(),F.stopPropagation(),console.warn("Drags initiated from the React Aria useDrag hook may only be dropped on a target created with useDrop. This ensures that a keyboard and screen reader accessible alternative is available.")},{once:!0}),i.x=B.clientX,i.y=B.clientY;let I=de(B);requestAnimationFrame(()=>{c(I)})},b=B=>{B.stopPropagation(),!(B.clientX===i.x&&B.clientY===i.y)&&(typeof t.onDragMove=="function"&&t.onDragMove({type:"dragmove",x:B.clientX,y:B.clientY}),i.x=B.clientX,i.y=B.clientY)},v=B=>{if(B.stopPropagation(),typeof t.onDragEnd=="function"){let P={type:"dragend",x:B.clientX,y:B.clientY,dropOperation:uc[B.dataTransfer.dropEffect]};Sh&&(P.dropOperation=uc[Sh]),t.onDragEnd(P)}c(null),h(),M0(Mt.none),ep(void 0)};D.useEffect(()=>()=>{if(s.current&&(!s.current.isConnected||parseInt(D.version,10)<17)){if(typeof i.options.onDragEnd=="function"){let B={type:"dragend",x:0,y:0,dropOperation:uc[Sh||"none"]};i.options.onDragEnd(B)}c(null),M0(Mt.none),ep(void 0)}},[i]);let C=B=>{B.pointerType!=="keyboard"&&B.pointerType!=="virtual"||E(B.target)},E=B=>{if(typeof i.options.onDragStart=="function"){let P=B.getBoundingClientRect();i.options.onDragStart({type:"dragstart",x:P.x+P.width/2,y:P.y+P.height/2})}FK({element:B,items:i.options.getItems(),allowedDropOperations:typeof i.options.getAllowedDropOperations=="function"?i.options.getAllowedDropOperations():["move","copy","link"],onDragEnd(P){c(null),typeof i.options.onDragEnd=="function"&&i.options.onDragEnd(P)}},r),c(B)},k=z3(),T=a?H5[k].end:H5[k].start,$=ed(r.format(T)),A={};return e||(A={...$,onPointerDown(B){if(m.current=h3(B.nativeEvent)?"virtual":B.pointerType,B.width<1&&B.height<1)m.current="virtual";else{let P=B.currentTarget.getBoundingClientRect(),M=B.clientX-P.x,N=B.clientY-P.y,I=P.width/2,F=P.height/2;Math.abs(M-I)<=.5&&Math.abs(N-F)<=.5?m.current="virtual":m.current=B.pointerType}},onKeyDownCapture(B){de(B)===B.currentTarget&&B.key==="Enter"&&(B.preventDefault(),B.stopPropagation())},onKeyUpCapture(B){de(B)===B.currentTarget&&B.key==="Enter"&&(B.preventDefault(),B.stopPropagation(),E(de(B)))},onClick(B){(rm(B.nativeEvent)||m.current==="virtual")&&(B.preventDefault(),B.stopPropagation(),E(de(B)))}}),n?{dragProps:{draggable:"false"},dragButtonProps:{},isDragging:!1}:{dragProps:{...A,draggable:"true",onDragStart:g,onDrag:b,onDragEnd:v},dragButtonProps:{...$,onPress:C},isDragging:a}}function Uj(t){return t&&t.__esModule?t.default:t}const qj={keyboard:{selected:"dragSelectedKeyboard",notSelected:"dragDescriptionKeyboard"},touch:{selected:"dragSelectedLongPress",notSelected:"dragDescriptionLongPress"},virtual:{selected:"dragDescriptionVirtual",notSelected:"dragDescriptionVirtual"}};function Gj(t,e){let n=mr(Uj(nd),"@react-aria/dnd"),r=e.isDisabled||e.selectionManager.isDisabled(t.key),{dragProps:i,dragButtonProps:s}=Vj({getItems(){return e.getItems(t.key)},preview:e.preview,getAllowedDropOperations:e.getAllowedDropOperations,hasDragButton:t.hasDragButton,onDragStart(b){e.startDrag(t.key,b),LK(e.draggingKeys)},onDragMove(b){e.moveDrag(b)},onDragEnd(b){let{dropOperation:v}=b,C=v==="cancel"?!1:Vr();e.endDrag({...b,keys:e.draggingKeys,isInternal:C}),WT()}}),a=e.collection.getItem(t.key),u=e.getKeysForDrag(t.key).size,c=u>1&&e.selectionManager.isSelected(t.key),f,h,m=z3();if(!t.hasDragButton&&e.selectionManager.selectionMode!=="none"){let b=qj[m][c?"selected":"notSelected"];t.hasAction&&m==="keyboard"&&(b+="Alt"),c?h=n.format(b,{count:u}):h=n.format(b),delete i.onClick}else if(c)f=n.format("dragSelectedItems",{count:u});else{let b=e.collection.getTextValue?.(t.key)??a?.textValue??"";f=n.format("dragItem",{itemText:b})}let g=ed(h);if(h&&Object.assign(i,g),!t.hasDragButton&&t.hasAction){let{onKeyDownCapture:b,onKeyUpCapture:v}=i;m==="touch"&&delete i["aria-describedby"],i.onKeyDownCapture=C=>{C.altKey&&b?.(C)},i.onKeyUpCapture=C=>{C.altKey&&v?.(C)}}return{dragProps:r?{}:i,dragButtonProps:{...s,isDisabled:r,"aria-label":f}}}function Wj(t,e,n){let{draggingCollectionRef:r}=It;e.draggingKeys.size>0&&r?.current!==n.current&&OK(n)}const Qj=V.forwardRef(function(e,n){let r=e.children,[i,s]=D.useState(null),a=D.useRef(null),u=D.useRef(void 0);return D.useImperativeHandle(n,()=>(c,f)=>{let h=r(c),m,g,b;h&&typeof h=="object"&&"element"in h?(m=h.element,g=h.x,b=h.y):m=h,aa.flushSync(()=>{s(m)}),f(a.current,g,b),u.current=requestAnimationFrame(()=>{s(null)})},[r]),D.useEffect(()=>()=>{u.current&&cancelAnimationFrame(u.current)},[]),i?V.createElement("div",{style:{zIndex:-100,position:"fixed",top:0,left:-1e5},ref:a},i):null});function Yj(t){let{getItems:e,isDisabled:n,collection:r,selectionManager:i,onDragStart:s,onDragMove:a,onDragEnd:u,preview:c,getAllowedDropOperations:f}=t,[,h]=D.useState(!1),m=D.useRef(new Set),g=D.useRef(null),b=v=>{let C=new Set;if(i.isSelected(v))for(let E of i.selectedKeys){let k=r.getItem(E);if(k){let T=!1,$=k.parentKey;for(;$!=null;){if(i.selectedKeys.has($)){T=!0;break}let A=r.getItem($);$=A?A.parentKey:null}T||C.add(E)}}else C.add(v);return C};return{collection:r,selectionManager:i,get draggedKey(){return g.current},get draggingKeys(){return m.current},isDragging(v){return m.current.has(v)},getKeysForDrag:b,getItems(v){let C=b(v),E=[];for(let k of C){let T=r.getItem(k)?.value;T!=null&&E.push(T)}return e(b(v),E)},isDisabled:n,preview:c,getAllowedDropOperations:f,startDrag(v,C){let E=b(v);m.current=E,g.current=v,i.setFocused(!1),h(!0),typeof s=="function"&&s({...C,keys:E})},moveDrag(v){typeof a=="function"&&a({...v,keys:m.current})},endDrag(v){let{isInternal:C}=v;typeof u=="function"&&u({...v,keys:m.current,isInternal:C}),m.current=new Set,g.current=null,h(!1)}}}function Xj(t){let{acceptedDragTypes:e="all",isDisabled:n,onInsert:r,onRootDrop:i,onItemDrop:s,onReorder:a,onMove:u,shouldAcceptItemDrop:c,collection:f,selectionManager:h,onDropEnter:m,getDropOperation:g,onDrop:b}=t,[v,C]=D.useState(null),E=D.useRef(null),k=$=>{if($.dropPosition==="before"){let A=f.getItem($.key);return A&&A.prevKey!=null?{type:"item",key:A.prevKey,dropPosition:"after"}:null}else if($.dropPosition==="after"){let A=f.getItem($.key);return A&&A.nextKey!=null?{type:"item",key:A.nextKey,dropPosition:"before"}:null}return null},T=D.useCallback($=>{let{target:A,types:B,allowedOperations:P,isInternal:M,draggingKeys:N}=$;if(n||!A)return"cancel";if(e==="all"||e.some(I=>B.has(I))){let I=r&&A.type==="item"&&!M&&(A.dropPosition==="before"||A.dropPosition==="after"),F=a&&A.type==="item"&&M&&(A.dropPosition==="before"||A.dropPosition==="after")&&Jj(f,A,N),J=A.type!=="item"||A.dropPosition!=="on"||!c||c(A,B),q=u&&A.type==="item"&&M&&J,ie=i&&A.type==="root"&&!M,K=s&&A.type==="item"&&A.dropPosition==="on"&&!(M&&A.key!=null&&N.has(A.key))&&J;if(b||I||F||q||ie||K)return g?g(A,B,P):P[0]}return"cancel"},[n,f,e,g,r,i,s,c,a,u,b]);return{collection:f,selectionManager:h,isDisabled:n,target:v,setTarget($){if(this.isDropTarget($))return;let A=E.current;A&&typeof t.onDropExit=="function"&&t.onDropExit({type:"dropexit",x:0,y:0,target:A}),$&&typeof m=="function"&&m({type:"dropenter",x:0,y:0,target:$}),E.current=$??null,C($??null)},isDropTarget($){let A=E.current;return!A||!$?!1:L0($,A)?!0:$?.type==="item"&&A?.type==="item"&&$.key!==A.key&&$.dropPosition!==A.dropPosition&&$.dropPosition!=="on"&&A.dropPosition!=="on"?L0(k($),A)||L0($,k(A)):!1},getDropOperation($){let{target:A,isInternal:B,draggingKeys:P}=$;if(B&&A.type==="item"&&P.size>0){if(P.has(A.key)&&A.dropPosition==="on")return"cancel";let M=A.key;for(;M!=null;){let I=f.getItem(M)?.parentKey;if(I!=null&&P.has(I))return"cancel";M=I??null}}return T($)}}}function L0(t,e){if(!t)return!e;switch(t.type){case"root":return e?.type==="root";case"item":return e?.type==="item"&&e?.key===t.key&&e?.dropPosition===t.dropPosition}}function Jj(t,e,n){let r=t.getItem(e.key);for(let i of n)if(t.getItem(i)?.parentKey!==r?.parentKey)return!1;return!0}class Zj{constructor(e,n,r){this.collection=e,this.ref=n,this.layout=r?.layout||"stack",this.orientation=r?.orientation||"vertical",this.direction=r?.direction||"ltr"}getPrimaryStart(e){return this.orientation==="horizontal"?e.left:e.top}getPrimaryEnd(e){return this.orientation==="horizontal"?e.right:e.bottom}getSecondaryStart(e){return this.orientation==="horizontal"?e.top:e.left}getSecondaryEnd(e){return this.orientation==="horizontal"?e.bottom:e.right}getFlowStart(e){return this.layout==="stack"?this.getPrimaryStart(e):this.getSecondaryStart(e)}getFlowEnd(e){return this.layout==="stack"?this.getPrimaryEnd(e):this.getSecondaryEnd(e)}getFlowSize(e){return this.getFlowEnd(e)-this.getFlowStart(e)}getDropTargetFromPoint(e,n,r){if(this.collection[Symbol.iterator]().next().done||!this.ref.current)return{type:"root"};let i=this.ref.current.getBoundingClientRect(),s=this.orientation==="horizontal"?e:n,a=this.orientation==="horizontal"?n:e;s+=this.getPrimaryStart(i),a+=this.getSecondaryStart(i);let u=this.layout==="stack"?s:a,c=this.orientation==="horizontal"&&this.direction==="rtl",f=this.layout==="grid"&&this.orientation==="vertical"&&this.direction==="rtl",h=this.layout==="stack"?c:f,m=this.ref.current?.dataset.collection,g=this.ref.current.querySelectorAll(m?`[data-collection="${CSS.escape(m)}"]`:"[data-key]"),b=new Map;for(let $ of g)$ instanceof HTMLElement&&$.dataset.key!=null&&b.set($.dataset.key,$);let v=[...this.collection].filter($=>$.type==="item");if(v.length<1)return{type:"root"};let C=0,E=v.length;for(;C<E;){let $=Math.floor((C+E)/2),A=v[$],B=b.get(String(A.key));if(!B)break;let P=B.getBoundingClientRect(),M=N=>{N?C=$+1:E=$};if(s<this.getPrimaryStart(P))M(c);else if(s>this.getPrimaryEnd(P))M(!c);else if(a<this.getSecondaryStart(P))M(f);else if(a>this.getSecondaryEnd(P))M(!f);else{let N={type:"item",key:A.key,dropPosition:"on"};if(r(N))u<=this.getFlowStart(P)+5&&r({...N,dropPosition:"before"})?N.dropPosition=h?"after":"before":u>=this.getFlowEnd(P)-5&&r({...N,dropPosition:"after"})&&(N.dropPosition=h?"before":"after");else{let I=this.getFlowStart(P)+this.getFlowSize(P)/2;u<=I&&r({...N,dropPosition:"before"})?N.dropPosition=h?"after":"before":u>=I&&r({...N,dropPosition:"after"})&&(N.dropPosition=h?"before":"after")}return N}}let k=v[Math.min(C,v.length-1)];return i=b.get(String(k.key))?.getBoundingClientRect(),i&&(s<this.getPrimaryStart(i)||Math.abs(u-this.getFlowStart(i))<Math.abs(u-this.getFlowEnd(i)))?{type:"item",key:k.key,dropPosition:h?"after":"before"}:{type:"item",key:k.key,dropPosition:h?"before":"after"}}}function e_(t){return{dragAndDropHooks:D.useMemo(()=>{let{onDrop:n,onInsert:r,onItemDrop:i,onReorder:s,onMove:a,onRootDrop:u,getItems:c,renderDragPreview:f,renderDropIndicator:h,dropTargetDelegate:m}=t,g=!!c,b=!!(n||r||i||s||a||u),v={};return g&&(v.useDraggableCollectionState=function(E){return Yj({...E,...t})},v.useDraggableCollection=Wj,v.useDraggableItem=Gj,v.DragPreview=Qj,v.renderDragPreview=f,v.isVirtualDragging=KK),b&&(v.useDroppableCollectionState=function(E){return Xj({...E,...t})},v.useDroppableItem=QB,v.useDroppableCollection=function(E,k,T){return Kj({...E,...t},k,T)},v.useDropIndicator=_j,v.renderDropIndicator=h,v.dropTargetDelegate=m,v.ListDropTargetDelegate=Zj),v},[t])}}function YB(t,e){const n=t&&t!=="/"?t.replace(/\/+$/,""):"";return!n||e===n||e.startsWith(`${n}/`)||e.startsWith(`${n}?`)?e:`${n}${e}`}const t_=new GP({defaultOptions:{queries:{staleTime:5e3,retry:1,refetchOnWindowFocus:!0}}});function n_({router:t}){return S.jsx(WP,{client:t_,children:S.jsx(wz,{navigate:e=>t.history.push(YB(t.basepath,e)),children:S.jsx(JL,{router:t})})})}const js=["backlog","todo","in_progress","done","canceled"];function XB(t,e){return t.blockedBy.some(n=>{const r=e.find(i=>i.number===n);return r&&r.status!=="done"&&r.status!=="canceled"})}const Ai={backlog:"Backlog",todo:"Todo",in_progress:"In Progress",done:"Done",canceled:"Canceled"};let JB="/api";class ZB extends Error{status;reason;constructor(e,n,r){super(n),this.name="ApiError",this.status=e,this.reason=r}}async function Yr(t,e){const n=await fetch(`${JB}${t}`,{headers:e?.body?{"Content-Type":"application/json"}:void 0,...e}),r=await n.json().catch(()=>({}));if(!n.ok)throw new ZB(n.status,r.error??`${n.status}`,r.reason??null);return r}let r_=()=>new URLSearchParams(location.search).get("board");function i_(t){const e=new EventSource(`${JB}/events`);return e.onmessage=n=>{try{const r=JSON.parse(n.data);t(r.board)}catch{t(void 0)}},()=>e.close()}let s_=i_;function o_(t){return s_(t)}function gm(){return r_()}function da(){return typeof location>"u"?null:new URLSearchParams(location.search).get("ref")}function Xr(t){const e=new URLSearchParams,n=gm();n&&e.set("board",n);const r=da();r&&e.set("ref",r);const i=e.toString();return i?`${t}${t.includes("?")?"&":"?"}${i}`:t}function a_(t){return Yr(Xr("/tasks"),{method:"POST",body:JSON.stringify(t)})}function eM(t,e){return Yr(Xr(`/tasks/${t}`),{method:"PATCH",body:JSON.stringify(e)})}function l_(t){return Yr(Xr(`/tasks/${t}`),{method:"DELETE"})}function u_(t){return Yr(Xr(`/tasks/${t}`))}function c_(t,e){return Yr(Xr(`/tasks/${t}/comments`),{method:"POST",body:JSON.stringify({body:e})})}function d_(t,e){return Yr(Xr(`/tasks/${t}/comments/${encodeURIComponent(e)}`),{method:"DELETE"})}const tM=t=>t;function f_(){return Yc({queryKey:["boards",da()],queryFn:()=>Yr(Xr("/boards")).then(t=>t.boards),placeholderData:tM})}function h_(t){return Yc({queryKey:["project",t,da()],queryFn:()=>Yr(Xr("/project")),placeholderData:tM})}function p_(t){return Yc({queryKey:["tasks",t,da()],queryFn:()=>Yr(Xr("/tasks")).then(e=>e.tasks)})}function m_(t,e){return Yc({queryKey:["task",t,da(),e],queryFn:()=>u_(e),enabled:Number.isFinite(e)})}function g_(t){return Yc({queryKey:["branches"],queryFn:()=>Yr(Xr("/branches")).then(e=>e.branches),enabled:t,retry:!1,staleTime:6e4})}const V5=t=>typeof t=="boolean"?`${t}`:t===0?"0":t,U5=s3,fa=(t,e)=>n=>{var r;if(e?.variants==null)return U5(t,n?.class,n?.className);const{variants:i,defaultVariants:s}=e,a=Object.keys(i).map(f=>{const h=n?.[f],m=s?.[f];if(h===null)return null;const g=V5(h)||V5(m);return i[f][g]}),u=n&&Object.entries(n).reduce((f,h)=>{let[m,g]=h;return g===void 0||(f[m]=g),f},{}),c=e==null||(r=e.compoundVariants)===null||r===void 0?void 0:r.reduce((f,h)=>{let{class:m,className:g,...b}=h;return Object.entries(b).every(v=>{let[C,E]=v;return Array.isArray(E)?E.includes({...s,...u}[C]):{...s,...u}[C]===E})?[...f,m,g]:f},[]);return U5(t,a,c,n?.class,n?.className)},b_=(t,e)=>{const n=new Array(t.length+e.length);for(let r=0;r<t.length;r++)n[r]=t[r];for(let r=0;r<e.length;r++)n[t.length+r]=e[r];return n},y_=(t,e)=>({classGroupId:t,validator:e}),nM=(t=new Map,e=null,n)=>({nextPart:t,validators:e,classGroupId:n}),np="-",q5=[],v_="arbitrary..",x_=t=>{const e=E_(t),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=t;return{getClassGroupId:a=>{if(a.startsWith("[")&&a.endsWith("]"))return C_(a);const u=a.split(np),c=u[0]===""&&u.length>1?1:0;return rM(u,c,e)},getConflictingClassGroupIds:(a,u)=>{if(u){const c=r[a],f=n[a];return c?f?b_(f,c):c:f||q5}return n[a]||q5}}},rM=(t,e,n)=>{if(t.length-e===0)return n.classGroupId;const i=t[e],s=n.nextPart.get(i);if(s){const f=rM(t,e+1,s);if(f)return f}const a=n.validators;if(a===null)return;const u=e===0?t.join(np):t.slice(e).join(np),c=a.length;for(let f=0;f<c;f++){const h=a[f];if(h.validator(u))return h.classGroupId}},C_=t=>t.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const e=t.slice(1,-1),n=e.indexOf(":"),r=e.slice(0,n);return r?v_+r:void 0})(),E_=t=>{const{theme:e,classGroups:n}=t;return k_(n,e)},k_=(t,e)=>{const n=nM();for(const r in t){const i=t[r];_3(i,n,r,e)}return n},_3=(t,e,n,r)=>{const i=t.length;for(let s=0;s<i;s++){const a=t[s];D_(a,e,n,r)}},D_=(t,e,n,r)=>{if(typeof t=="string"){S_(t,e,n);return}if(typeof t=="function"){w_(t,e,n,r);return}$_(t,e,n,r)},S_=(t,e,n)=>{const r=t===""?e:iM(e,t);r.classGroupId=n},w_=(t,e,n,r)=>{if(T_(t)){_3(t(r),e,n,r);return}e.validators===null&&(e.validators=[]),e.validators.push(y_(n,t))},$_=(t,e,n,r)=>{const i=Object.entries(t),s=i.length;for(let a=0;a<s;a++){const[u,c]=i[a];_3(c,iM(e,u),n,r)}},iM=(t,e)=>{let n=t;const r=e.split(np),i=r.length;for(let s=0;s<i;s++){const a=r[s];let u=n.nextPart.get(a);u||(u=nM(),n.nextPart.set(a,u)),n=u}return n},T_=t=>"isThemeGetter"in t&&t.isThemeGetter===!0,A_=t=>{if(t<1)return{get:()=>{},set:()=>{}};let e=0,n=Object.create(null),r=Object.create(null);const i=(s,a)=>{n[s]=a,e++,e>t&&(e=0,r=n,n=Object.create(null))};return{get(s){let a=n[s];if(a!==void 0)return a;if((a=r[s])!==void 0)return i(s,a),a},set(s,a){s in n?n[s]=a:i(s,a)}}},iy="!",G5=":",B_=[],W5=(t,e,n,r,i)=>({modifiers:t,hasImportantModifier:e,baseClassName:n,maybePostfixModifierPosition:r,isExternal:i}),M_=t=>{const{prefix:e,experimentalParseClassName:n}=t;let r=i=>{const s=[];let a=0,u=0,c=0,f;const h=i.length;for(let C=0;C<h;C++){const E=i[C];if(a===0&&u===0){if(E===G5){s.push(i.slice(c,C)),c=C+1;continue}if(E==="/"){f=C;continue}}E==="["?a++:E==="]"?a--:E==="("?u++:E===")"&&u--}const m=s.length===0?i:i.slice(c);let g=m,b=!1;m.endsWith(iy)?(g=m.slice(0,-1),b=!0):m.startsWith(iy)&&(g=m.slice(1),b=!0);const v=f&&f>c?f-c:void 0;return W5(s,b,g,v)};if(e){const i=e+G5,s=r;r=a=>a.startsWith(i)?s(a.slice(i.length)):W5(B_,!1,a,void 0,!0)}if(n){const i=r;r=s=>n({className:s,parseClassName:i})}return r},R_=t=>{const e=new Map;return t.orderSensitiveModifiers.forEach((n,r)=>{e.set(n,1e6+r)}),n=>{const r=[];let i=[];for(let s=0;s<n.length;s++){const a=n[s],u=a[0]==="[",c=e.has(a);u||c?(i.length>0&&(i.sort(),r.push(...i),i=[]),r.push(a)):i.push(a)}return i.length>0&&(i.sort(),r.push(...i)),r}},N_=t=>({cache:A_(t.cacheSize),parseClassName:M_(t),sortModifiers:R_(t),postfixLookupClassGroupIds:P_(t),...x_(t)}),P_=t=>{const e=Object.create(null),n=t.postfixLookupClassGroups;if(n)for(let r=0;r<n.length;r++)e[n[r]]=!0;return e},O_=/\s+/,L_=(t,e)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:i,sortModifiers:s,postfixLookupClassGroupIds:a}=e,u=[],c=t.trim().split(O_);let f="";for(let h=c.length-1;h>=0;h-=1){const m=c[h],{isExternal:g,modifiers:b,hasImportantModifier:v,baseClassName:C,maybePostfixModifierPosition:E}=n(m);if(g){f=m+(f.length>0?" "+f:f);continue}let k=!!E,T;if(k){const M=C.substring(0,E);T=r(M);const N=T&&a[T]?r(C):void 0;N&&N!==T&&(T=N,k=!1)}else T=r(C);if(!T){if(!k){f=m+(f.length>0?" "+f:f);continue}if(T=r(C),!T){f=m+(f.length>0?" "+f:f);continue}k=!1}const $=b.length===0?"":b.length===1?b[0]:s(b).join(":"),A=v?$+iy:$,B=A+T;if(u.indexOf(B)>-1)continue;u.push(B);const P=i(T,k);for(let M=0;M<P.length;++M){const N=P[M];u.push(A+N)}f=m+(f.length>0?" "+f:f)}return f},z_=(...t)=>{let e=0,n,r,i="";for(;e<t.length;)(n=t[e++])&&(r=sM(n))&&(i&&(i+=" "),i+=r);return i},sM=t=>{if(typeof t=="string")return t;let e,n="";for(let r=0;r<t.length;r++)t[r]&&(e=sM(t[r]))&&(n&&(n+=" "),n+=e);return n},I_=(t,...e)=>{let n,r,i,s;const a=c=>{const f=e.reduce((h,m)=>m(h),t());return n=N_(f),r=n.cache.get,i=n.cache.set,s=u,u(c)},u=c=>{const f=r(c);if(f)return f;const h=L_(c,n);return i(c,h),h};return s=a,(...c)=>s(z_(...c))},F_=[],zt=t=>{const e=n=>n[t]||F_;return e.isThemeGetter=!0,e},oM=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,aM=/^\((?:(\w[\w-]*):)?(.+)\)$/i,K_=/^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/,j_=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,__=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,H_=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,V_=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,U_=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,ps=t=>K_.test(t),Ne=t=>!!t&&!Number.isNaN(Number(t)),Ir=t=>!!t&&Number.isInteger(Number(t)),z0=t=>t.endsWith("%")&&Ne(t.slice(0,-1)),bi=t=>j_.test(t),lM=()=>!0,q_=t=>__.test(t)&&!H_.test(t),H3=()=>!1,G_=t=>V_.test(t),W_=t=>U_.test(t),Q_=t=>!me(t)&&!ge(t),Y_=t=>t.startsWith("@container")&&(t[10]==="/"&&t[11]!==void 0||t[11]==="s"&&t[16]!==void 0&&t.startsWith("-size/",10)||t[11]==="n"&&t[18]!==void 0&&t.startsWith("-normal/",10)),X_=t=>Xs(t,dM,H3),me=t=>oM.test(t),So=t=>Xs(t,fM,q_),Q5=t=>Xs(t,sH,Ne),J_=t=>Xs(t,pM,lM),Z_=t=>Xs(t,hM,H3),Y5=t=>Xs(t,uM,H3),eH=t=>Xs(t,cM,W_),Yf=t=>Xs(t,mM,G_),ge=t=>aM.test(t),Ku=t=>ha(t,fM),tH=t=>ha(t,hM),X5=t=>ha(t,uM),nH=t=>ha(t,dM),rH=t=>ha(t,cM),Xf=t=>ha(t,mM,!0),iH=t=>ha(t,pM,!0),Xs=(t,e,n)=>{const r=oM.exec(t);return r?r[1]?e(r[1]):n(r[2]):!1},ha=(t,e,n=!1)=>{const r=aM.exec(t);return r?r[1]?e(r[1]):n:!1},uM=t=>t==="position"||t==="percentage",cM=t=>t==="image"||t==="url",dM=t=>t==="length"||t==="size"||t==="bg-size",fM=t=>t==="length",sH=t=>t==="number",hM=t=>t==="family-name",pM=t=>t==="number"||t==="weight",mM=t=>t==="shadow",oH=()=>{const t=zt("color"),e=zt("font"),n=zt("text"),r=zt("font-weight"),i=zt("tracking"),s=zt("leading"),a=zt("breakpoint"),u=zt("container"),c=zt("spacing"),f=zt("radius"),h=zt("shadow"),m=zt("inset-shadow"),g=zt("text-shadow"),b=zt("drop-shadow"),v=zt("blur"),C=zt("perspective"),E=zt("aspect"),k=zt("ease"),T=zt("animate"),$=()=>["auto","avoid","all","avoid-page","page","left","right","column"],A=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],B=()=>[...A(),ge,me],P=()=>["auto","hidden","clip","visible","scroll"],M=()=>["auto","contain","none"],N=()=>[ge,me,c],I=()=>[ps,"full","auto",...N()],F=()=>[Ir,"none","subgrid",ge,me],J=()=>["auto",{span:["full",Ir,ge,me]},Ir,ge,me],q=()=>[Ir,"auto",ge,me],ie=()=>["auto","min","max","fr",ge,me],K=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],te=()=>["start","end","center","stretch","center-safe","end-safe"],O=()=>["auto",...N()],j=()=>[ps,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...N()],Y=()=>[ps,"screen","full","dvw","lvw","svw","min","max","fit",...N()],Z=()=>[ps,"screen","full","lh","dvh","lvh","svh","min","max","fit",...N()],H=()=>[t,ge,me],L=()=>[...A(),X5,Y5,{position:[ge,me]}],U=()=>["no-repeat",{repeat:["","x","y","space","round"]}],ne=()=>["auto","cover","contain",nH,X_,{size:[ge,me]}],le=()=>[z0,Ku,So],ue=()=>["","none","full",f,ge,me],fe=()=>["",Ne,Ku,So],Ee=()=>["solid","dashed","dotted","double"],Ve=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],Se=()=>[Ne,z0,X5,Y5],kn=()=>["","none",v,ge,me],sn=()=>["none",Ne,ge,me],mn=()=>["none",Ne,ge,me],gr=()=>[Ne,ge,me],jt=()=>[ps,"full",...N()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[bi],breakpoint:[bi],color:[lM],container:[bi],"drop-shadow":[bi],ease:["in","out","in-out"],font:[Q_],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[bi],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[bi],shadow:[bi],spacing:["px",Ne],text:[bi],"text-shadow":[bi],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",ps,me,ge,E]}],container:["container"],"container-type":[{"@container":["","normal","size",ge,me]}],"container-named":[Y_],columns:[{columns:[Ne,me,ge,u]}],"break-after":[{"break-after":$()}],"break-before":[{"break-before":$()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:B()}],overflow:[{overflow:P()}],"overflow-x":[{"overflow-x":P()}],"overflow-y":[{"overflow-y":P()}],overscroll:[{overscroll:M()}],"overscroll-x":[{"overscroll-x":M()}],"overscroll-y":[{"overscroll-y":M()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:I()}],"inset-x":[{"inset-x":I()}],"inset-y":[{"inset-y":I()}],start:[{"inset-s":I(),start:I()}],end:[{"inset-e":I(),end:I()}],"inset-bs":[{"inset-bs":I()}],"inset-be":[{"inset-be":I()}],top:[{top:I()}],right:[{right:I()}],bottom:[{bottom:I()}],left:[{left:I()}],visibility:["visible","invisible","collapse"],z:[{z:[Ir,"auto",ge,me]}],basis:[{basis:[ps,"full","auto",u,...N()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Ne,ps,"auto","initial","none",me]}],grow:[{grow:["",Ne,ge,me]}],shrink:[{shrink:["",Ne,ge,me]}],order:[{order:[Ir,"first","last","none",ge,me]}],"grid-cols":[{"grid-cols":F()}],"col-start-end":[{col:J()}],"col-start":[{"col-start":q()}],"col-end":[{"col-end":q()}],"grid-rows":[{"grid-rows":F()}],"row-start-end":[{row:J()}],"row-start":[{"row-start":q()}],"row-end":[{"row-end":q()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":ie()}],"auto-rows":[{"auto-rows":ie()}],gap:[{gap:N()}],"gap-x":[{"gap-x":N()}],"gap-y":[{"gap-y":N()}],"justify-content":[{justify:[...K(),"normal"]}],"justify-items":[{"justify-items":[...te(),"normal"]}],"justify-self":[{"justify-self":["auto",...te()]}],"align-content":[{content:["normal",...K()]}],"align-items":[{items:[...te(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...te(),{baseline:["","last"]}]}],"place-content":[{"place-content":K()}],"place-items":[{"place-items":[...te(),"baseline"]}],"place-self":[{"place-self":["auto",...te()]}],p:[{p:N()}],px:[{px:N()}],py:[{py:N()}],ps:[{ps:N()}],pe:[{pe:N()}],pbs:[{pbs:N()}],pbe:[{pbe:N()}],pt:[{pt:N()}],pr:[{pr:N()}],pb:[{pb:N()}],pl:[{pl:N()}],m:[{m:O()}],mx:[{mx:O()}],my:[{my:O()}],ms:[{ms:O()}],me:[{me:O()}],mbs:[{mbs:O()}],mbe:[{mbe:O()}],mt:[{mt:O()}],mr:[{mr:O()}],mb:[{mb:O()}],ml:[{ml:O()}],"space-x":[{"space-x":N()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":N()}],"space-y-reverse":["space-y-reverse"],size:[{size:j()}],"inline-size":[{inline:["auto",...Y()]}],"min-inline-size":[{"min-inline":["auto",...Y()]}],"max-inline-size":[{"max-inline":["none",...Y()]}],"block-size":[{block:["auto",...Z()]}],"min-block-size":[{"min-block":["auto",...Z()]}],"max-block-size":[{"max-block":["none",...Z()]}],w:[{w:[u,"screen",...j()]}],"min-w":[{"min-w":[u,"screen","none",...j()]}],"max-w":[{"max-w":[u,"screen","none","prose",{screen:[a]},...j()]}],h:[{h:["screen","lh",...j()]}],"min-h":[{"min-h":["screen","lh","none",...j()]}],"max-h":[{"max-h":["screen","lh",...j()]}],"font-size":[{text:["base",n,Ku,So]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,iH,J_]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",z0,me]}],"font-family":[{font:[tH,Z_,e]}],"font-features":[{"font-features":[me]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[i,ge,me]}],"line-clamp":[{"line-clamp":[Ne,"none",ge,Q5]}],leading:[{leading:[s,...N()]}],"list-image":[{"list-image":["none",ge,me]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",ge,me]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:H()}],"text-color":[{text:H()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...Ee(),"wavy"]}],"text-decoration-thickness":[{decoration:[Ne,"from-font","auto",ge,So]}],"text-decoration-color":[{decoration:H()}],"underline-offset":[{"underline-offset":[Ne,"auto",ge,me]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:N()}],"tab-size":[{tab:[Ir,ge,me]}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ge,me]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",ge,me]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:L()}],"bg-repeat":[{bg:U()}],"bg-size":[{bg:ne()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Ir,ge,me],radial:["",ge,me],conic:[Ir,ge,me]},rH,eH]}],"bg-color":[{bg:H()}],"gradient-from-pos":[{from:le()}],"gradient-via-pos":[{via:le()}],"gradient-to-pos":[{to:le()}],"gradient-from":[{from:H()}],"gradient-via":[{via:H()}],"gradient-to":[{to:H()}],rounded:[{rounded:ue()}],"rounded-s":[{"rounded-s":ue()}],"rounded-e":[{"rounded-e":ue()}],"rounded-t":[{"rounded-t":ue()}],"rounded-r":[{"rounded-r":ue()}],"rounded-b":[{"rounded-b":ue()}],"rounded-l":[{"rounded-l":ue()}],"rounded-ss":[{"rounded-ss":ue()}],"rounded-se":[{"rounded-se":ue()}],"rounded-ee":[{"rounded-ee":ue()}],"rounded-es":[{"rounded-es":ue()}],"rounded-tl":[{"rounded-tl":ue()}],"rounded-tr":[{"rounded-tr":ue()}],"rounded-br":[{"rounded-br":ue()}],"rounded-bl":[{"rounded-bl":ue()}],"border-w":[{border:fe()}],"border-w-x":[{"border-x":fe()}],"border-w-y":[{"border-y":fe()}],"border-w-s":[{"border-s":fe()}],"border-w-e":[{"border-e":fe()}],"border-w-bs":[{"border-bs":fe()}],"border-w-be":[{"border-be":fe()}],"border-w-t":[{"border-t":fe()}],"border-w-r":[{"border-r":fe()}],"border-w-b":[{"border-b":fe()}],"border-w-l":[{"border-l":fe()}],"divide-x":[{"divide-x":fe()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":fe()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...Ee(),"hidden","none"]}],"divide-style":[{divide:[...Ee(),"hidden","none"]}],"border-color":[{border:H()}],"border-color-x":[{"border-x":H()}],"border-color-y":[{"border-y":H()}],"border-color-s":[{"border-s":H()}],"border-color-e":[{"border-e":H()}],"border-color-bs":[{"border-bs":H()}],"border-color-be":[{"border-be":H()}],"border-color-t":[{"border-t":H()}],"border-color-r":[{"border-r":H()}],"border-color-b":[{"border-b":H()}],"border-color-l":[{"border-l":H()}],"divide-color":[{divide:H()}],"outline-style":[{outline:[...Ee(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Ne,ge,me]}],"outline-w":[{outline:["",Ne,Ku,So]}],"outline-color":[{outline:H()}],shadow:[{shadow:["","none",h,Xf,Yf]}],"shadow-color":[{shadow:H()}],"inset-shadow":[{"inset-shadow":["none",m,Xf,Yf]}],"inset-shadow-color":[{"inset-shadow":H()}],"ring-w":[{ring:fe()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:H()}],"ring-offset-w":[{"ring-offset":[Ne,So]}],"ring-offset-color":[{"ring-offset":H()}],"inset-ring-w":[{"inset-ring":fe()}],"inset-ring-color":[{"inset-ring":H()}],"text-shadow":[{"text-shadow":["none",g,Xf,Yf]}],"text-shadow-color":[{"text-shadow":H()}],opacity:[{opacity:[Ne,ge,me]}],"mix-blend":[{"mix-blend":[...Ve(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":Ve()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Ne]}],"mask-image-linear-from-pos":[{"mask-linear-from":Se()}],"mask-image-linear-to-pos":[{"mask-linear-to":Se()}],"mask-image-linear-from-color":[{"mask-linear-from":H()}],"mask-image-linear-to-color":[{"mask-linear-to":H()}],"mask-image-t-from-pos":[{"mask-t-from":Se()}],"mask-image-t-to-pos":[{"mask-t-to":Se()}],"mask-image-t-from-color":[{"mask-t-from":H()}],"mask-image-t-to-color":[{"mask-t-to":H()}],"mask-image-r-from-pos":[{"mask-r-from":Se()}],"mask-image-r-to-pos":[{"mask-r-to":Se()}],"mask-image-r-from-color":[{"mask-r-from":H()}],"mask-image-r-to-color":[{"mask-r-to":H()}],"mask-image-b-from-pos":[{"mask-b-from":Se()}],"mask-image-b-to-pos":[{"mask-b-to":Se()}],"mask-image-b-from-color":[{"mask-b-from":H()}],"mask-image-b-to-color":[{"mask-b-to":H()}],"mask-image-l-from-pos":[{"mask-l-from":Se()}],"mask-image-l-to-pos":[{"mask-l-to":Se()}],"mask-image-l-from-color":[{"mask-l-from":H()}],"mask-image-l-to-color":[{"mask-l-to":H()}],"mask-image-x-from-pos":[{"mask-x-from":Se()}],"mask-image-x-to-pos":[{"mask-x-to":Se()}],"mask-image-x-from-color":[{"mask-x-from":H()}],"mask-image-x-to-color":[{"mask-x-to":H()}],"mask-image-y-from-pos":[{"mask-y-from":Se()}],"mask-image-y-to-pos":[{"mask-y-to":Se()}],"mask-image-y-from-color":[{"mask-y-from":H()}],"mask-image-y-to-color":[{"mask-y-to":H()}],"mask-image-radial":[{"mask-radial":[ge,me]}],"mask-image-radial-from-pos":[{"mask-radial-from":Se()}],"mask-image-radial-to-pos":[{"mask-radial-to":Se()}],"mask-image-radial-from-color":[{"mask-radial-from":H()}],"mask-image-radial-to-color":[{"mask-radial-to":H()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":A()}],"mask-image-conic-pos":[{"mask-conic":[Ne]}],"mask-image-conic-from-pos":[{"mask-conic-from":Se()}],"mask-image-conic-to-pos":[{"mask-conic-to":Se()}],"mask-image-conic-from-color":[{"mask-conic-from":H()}],"mask-image-conic-to-color":[{"mask-conic-to":H()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:L()}],"mask-repeat":[{mask:U()}],"mask-size":[{mask:ne()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",ge,me]}],filter:[{filter:["","none",ge,me]}],blur:[{blur:kn()}],brightness:[{brightness:[Ne,ge,me]}],contrast:[{contrast:[Ne,ge,me]}],"drop-shadow":[{"drop-shadow":["","none",b,Xf,Yf]}],"drop-shadow-color":[{"drop-shadow":H()}],grayscale:[{grayscale:["",Ne,ge,me]}],"hue-rotate":[{"hue-rotate":[Ne,ge,me]}],invert:[{invert:["",Ne,ge,me]}],saturate:[{saturate:[Ne,ge,me]}],sepia:[{sepia:["",Ne,ge,me]}],"backdrop-filter":[{"backdrop-filter":["","none",ge,me]}],"backdrop-blur":[{"backdrop-blur":kn()}],"backdrop-brightness":[{"backdrop-brightness":[Ne,ge,me]}],"backdrop-contrast":[{"backdrop-contrast":[Ne,ge,me]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Ne,ge,me]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Ne,ge,me]}],"backdrop-invert":[{"backdrop-invert":["",Ne,ge,me]}],"backdrop-opacity":[{"backdrop-opacity":[Ne,ge,me]}],"backdrop-saturate":[{"backdrop-saturate":[Ne,ge,me]}],"backdrop-sepia":[{"backdrop-sepia":["",Ne,ge,me]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":N()}],"border-spacing-x":[{"border-spacing-x":N()}],"border-spacing-y":[{"border-spacing-y":N()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",ge,me]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Ne,"initial",ge,me]}],ease:[{ease:["linear","initial",k,ge,me]}],delay:[{delay:[Ne,ge,me]}],animate:[{animate:["none",T,ge,me]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[C,ge,me]}],"perspective-origin":[{"perspective-origin":B()}],rotate:[{rotate:sn()}],"rotate-x":[{"rotate-x":sn()}],"rotate-y":[{"rotate-y":sn()}],"rotate-z":[{"rotate-z":sn()}],scale:[{scale:mn()}],"scale-x":[{"scale-x":mn()}],"scale-y":[{"scale-y":mn()}],"scale-z":[{"scale-z":mn()}],"scale-3d":["scale-3d"],skew:[{skew:gr()}],"skew-x":[{"skew-x":gr()}],"skew-y":[{"skew-y":gr()}],transform:[{transform:[ge,me,"","none","gpu","cpu"]}],"transform-origin":[{origin:B()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:jt()}],"translate-x":[{"translate-x":jt()}],"translate-y":[{"translate-y":jt()}],"translate-z":[{"translate-z":jt()}],"translate-none":["translate-none"],zoom:[{zoom:[Ir,ge,me]}],accent:[{accent:H()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:H()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",ge,me]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scrollbar-thumb-color":[{"scrollbar-thumb":H()}],"scrollbar-track-color":[{"scrollbar-track":H()}],"scrollbar-gutter":[{"scrollbar-gutter":["auto","stable","both"]}],"scrollbar-w":[{scrollbar:["auto","thin","none"]}],"scroll-m":[{"scroll-m":N()}],"scroll-mx":[{"scroll-mx":N()}],"scroll-my":[{"scroll-my":N()}],"scroll-ms":[{"scroll-ms":N()}],"scroll-me":[{"scroll-me":N()}],"scroll-mbs":[{"scroll-mbs":N()}],"scroll-mbe":[{"scroll-mbe":N()}],"scroll-mt":[{"scroll-mt":N()}],"scroll-mr":[{"scroll-mr":N()}],"scroll-mb":[{"scroll-mb":N()}],"scroll-ml":[{"scroll-ml":N()}],"scroll-p":[{"scroll-p":N()}],"scroll-px":[{"scroll-px":N()}],"scroll-py":[{"scroll-py":N()}],"scroll-ps":[{"scroll-ps":N()}],"scroll-pe":[{"scroll-pe":N()}],"scroll-pbs":[{"scroll-pbs":N()}],"scroll-pbe":[{"scroll-pbe":N()}],"scroll-pt":[{"scroll-pt":N()}],"scroll-pr":[{"scroll-pr":N()}],"scroll-pb":[{"scroll-pb":N()}],"scroll-pl":[{"scroll-pl":N()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",ge,me]}],fill:[{fill:["none",...H()]}],"stroke-w":[{stroke:[Ne,Ku,So,Q5]}],stroke:[{stroke:["none",...H()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{"container-named":["container-type"],overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","inset-bs","inset-be","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pbs","pbe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mbs","mbe","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-bs","border-w-be","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-bs","border-color-be","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mbs","scroll-mbe","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pbs","scroll-pbe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},postfixLookupClassGroups:["container-type"],orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},aH=I_(oH);function pe(...t){return aH(s3(t))}const gM=fa("group/button inline-flex shrink-0 items-center justify-center rounded-4xl border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/80",outline:"border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:bg-transparent dark:hover:bg-input/30",secondary:"bg-secondary text-secondary-foreground hover:bg-[color-mix(in_oklch,var(--secondary),var(--foreground)_5%)] aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",ghost:"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",destructive:"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 gap-1.5 px-3 has-data-[icon=inline-end]:pr-2.5 has-data-[icon=inline-start]:pl-2.5",xs:"h-6 gap-1 px-2.5 text-xs has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 [&_svg:not([class*='size-'])]:size-3",sm:"h-8 gap-1 px-3 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",lg:"h-10 gap-1.5 px-4 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3",icon:"size-9","icon-xs":"size-6 [&_svg:not([class*='size-'])]:size-3","icon-sm":"size-8","icon-lg":"size-10"}},defaultVariants:{variant:"default",size:"default"}});function Xe({className:t,variant:e="default",size:n="default",...r}){return S.jsx(_$,{"data-slot":"button","data-variant":e,"data-size":n,className:pe(gM({variant:e,size:n,className:t})),...r})}function lH({className:t,variant:e="default",size:n="default",...r}){return S.jsx(i$,{"data-slot":"button","data-variant":e,"data-size":n,className:pe(gM({variant:e,size:n,className:t})),...r})}function uH({error:t}){const e=qs({strict:!1}),n=Li(),r=typeof e.ref=="string"?e.ref:null,i=t instanceof ZB?t.message:"Couldn't load this board. Check your connection and try again.";return S.jsx("div",{className:"flex flex-1 items-center justify-center px-6",children:S.jsxs("div",{className:"w-full max-w-sm text-center",children:[S.jsx("h1",{className:"text-lg font-medium",children:r?"Nothing to show on this branch":"Couldn't load this board"}),S.jsx("p",{className:"mt-2 text-sm text-muted-foreground",children:i}),r?S.jsx(Xe,{variant:"secondary",className:"mt-6",onPress:()=>{const{ref:s,...a}=e;n({to:"/",search:a})},children:"Go to the default branch"}):S.jsx(Xe,{variant:"secondary",className:"mt-6",onPress:()=>location.reload(),children:"Try again"})]})})}const bM=(...t)=>t.filter((e,n,r)=>!!e&&e.trim()!==""&&r.indexOf(e)===n).join(" ").trim();const cH=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const dH=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,r)=>r?r.toUpperCase():n.toLowerCase());const J5=t=>{const e=dH(t);return e.charAt(0).toUpperCase()+e.slice(1)};var I0={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const fH=t=>{for(const e in t)if(e.startsWith("aria-")||e==="role"||e==="title")return!0;return!1},hH=D.createContext({}),pH=()=>D.useContext(hH),mH=D.forwardRef(({color:t,size:e,strokeWidth:n,absoluteStrokeWidth:r,className:i="",children:s,iconNode:a,...u},c)=>{const{size:f=24,strokeWidth:h=2,absoluteStrokeWidth:m=!1,color:g="currentColor",className:b=""}=pH()??{},v=r??m?Number(n??h)*24/Number(e??f):n??h;return D.createElement("svg",{ref:c,...I0,width:e??f??I0.width,height:e??f??I0.height,stroke:t??g,strokeWidth:v,className:bM("lucide",b,i),...!s&&!fH(u)&&{"aria-hidden":"true"},...u},[...a.map(([C,E])=>D.createElement(C,E)),...Array.isArray(s)?s:[s]])});const gt=(t,e)=>{const n=D.forwardRef(({className:r,...i},s)=>D.createElement(mH,{ref:s,iconNode:e,className:bM(`lucide-${cH(J5(t))}`,`lucide-${t}`,r),...i}));return n.displayName=J5(t),n};const gH=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M4.929 4.929 19.07 19.071",key:"196cmz"}]],bH=gt("ban",gH);const yH=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],rd=gt("check",yH);const vH=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],xH=gt("chevron-down",vH);const CH=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],EH=gt("chevron-right",CH);const kH=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]],DH=gt("columns-3",kH);const SH=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",key:"1f1r0c"}]],sy=gt("diamond",SH);const wH=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],$H=gt("ellipsis",wH);const TH=[["path",{d:"M15 6a9 9 0 0 0-9 9V3",key:"1cii5b"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}]],AH=gt("git-branch",TH);const BH=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]],V3=gt("git-pull-request",BH);const MH=[["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}],["circle",{cx:"9",cy:"5",r:"1",key:"hp0tcf"}],["circle",{cx:"9",cy:"19",r:"1",key:"fkjjf6"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["circle",{cx:"15",cy:"19",r:"1",key:"f4zoj3"}]],RH=gt("grip-vertical",MH);const NH=[["line",{x1:"4",x2:"20",y1:"9",y2:"9",key:"4lhtct"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15",key:"vyu0kd"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21",key:"1ggp8o"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21",key:"weycgp"}]],PH=gt("hash",NH);const OH=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]],LH=gt("house",OH);const zH=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],yM=gt("link",zH);const IH=[["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M9 19h6",key:"456am0"}]],FH=gt("list-filter",IH);const KH=[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]],jH=gt("list",KH);const _H=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 8v6",key:"1ib9pf"}],["path",{d:"M9 11h6",key:"1fldmi"}]],HH=gt("message-square-plus",_H);const VH=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}]],UH=gt("message-square",VH);const qH=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],bm=gt("plus",qH);const GH=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],WH=gt("search",GH);const QH=[["path",{d:"M10 5H3",key:"1qgfaw"}],["path",{d:"M12 19H3",key:"yhmn1j"}],["path",{d:"M14 3v4",key:"1sua03"}],["path",{d:"M16 17v4",key:"1q0r14"}],["path",{d:"M21 12h-9",key:"1o4lsq"}],["path",{d:"M21 19h-5",key:"1rlt1p"}],["path",{d:"M21 5h-7",key:"1oszz2"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M8 12H3",key:"a7s4jb"}]],YH=gt("sliders-horizontal",QH);const XH=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]],rp=gt("tag",XH);const JH=[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]],Sl=gt("user-round",JH);const ZH=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],id=gt("x",ZH);function eV({className:t,...e}){return S.jsx("nav",{"aria-label":"breadcrumb","data-slot":"breadcrumb",className:pe("min-w-0",t),...e})}function tV({className:t,...e}){return S.jsx(NI,{"data-slot":"breadcrumb-list",className:pe("flex min-w-0 flex-nowrap items-center text-sm text-muted-foreground",t),...e})}function Z5({className:t,children:e,separatorClassName:n,...r}){return S.jsx(PI,{"data-slot":"breadcrumb-item",className:pe("inline-flex min-w-0 items-center",t),...r,children:zs(e,(i,{isCurrent:s})=>S.jsxs(S.Fragment,{children:[i,!s&&S.jsx("span",{"data-slot":"breadcrumb-separator",role:"presentation","aria-hidden":"true",className:pe("mx-2 shrink-0 [&>svg]:size-3.5",n),children:S.jsx(EH,{})})]}))})}function nV({className:t,...e}){return S.jsx("span",{"data-slot":"breadcrumb-page",role:"link","aria-disabled":"true","aria-current":"page",className:pe("truncate font-normal text-foreground",t),...e})}function vM({className:t,variant:e="outline",size:n="default",...r}){return S.jsx(Xe,{slot:"close","data-slot":"dialog-close",variant:e,size:n,className:pe(t),...r})}function rV({className:t,children:e,...n}){return S.jsx(dB,{"data-slot":"dialog-overlay",className:pe("fixed inset-0 isolate z-50 bg-black/30 duration-100 data-entering:animate-in data-entering:fade-in-0 data-exiting:animate-out data-exiting:fade-out-0 supports-backdrop-filter:backdrop-blur-sm",t),...n,children:e})}function iV({className:t,children:e,showCloseButton:n=!0,isDismissable:r=!0,...i}){return S.jsx(rV,{isDismissable:r,...i,children:S.jsx(vj,{"data-slot":"dialog-content",className:pe("fixed top-1/2 left-1/2 z-50 grid max-h-[calc(100dvh-2rem)] w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-6 overflow-y-auto overscroll-contain rounded-4xl bg-popover p-6 text-sm text-popover-foreground shadow-xl ring-1 ring-foreground/5 duration-100 outline-none data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:fade-out-0 data-exiting:zoom-out-95 sm:max-w-md dark:ring-foreground/10",t),children:S.jsxs(SK,{"data-slot":"dialog",className:"[display:inherit] [gap:inherit] outline-none",children:[e,n&&S.jsxs(vM,{variant:"ghost",className:"absolute top-4 right-4 bg-secondary",size:"icon-sm",children:[S.jsx(id,{}),S.jsx("span",{className:"sr-only",children:"Close"})]})]})})})}function sV({className:t,...e}){return S.jsx(jI,{slot:"title","data-slot":"dialog-title",className:pe("font-heading text-base leading-none font-medium",t),...e})}function xM({className:t,type:e,...n}){return S.jsx(W$,{type:e,"data-slot":"input",className:zs(t,r=>pe("h-9 w-full min-w-0 rounded-3xl border border-transparent bg-input/50 px-3 py-1 text-base transition-[color,box-shadow,background-color] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",r)),...n})}function oV({className:t,...e}){return S.jsx(Aj,{"data-slot":"textarea",className:zs(t,n=>pe("flex field-sizing-content min-h-16 w-full resize-none rounded-2xl border border-transparent bg-input/50 px-3 py-3 text-base transition-[color,box-shadow,background-color] outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",n)),...e})}function aV({className:t,...e}){return S.jsx(oF,{"data-slot":"input-group",className:pe("group/input-group relative flex h-9 w-full min-w-0 items-center rounded-4xl border border-transparent bg-input/50 transition-[color,box-shadow,background-color] outline-none in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-data-[align=block-end]:rounded-3xl has-data-[align=block-start]:rounded-3xl has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot=input-group-control]:focus-visible]:ring-ring/30 has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[textarea]:rounded-2xl has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>textarea]:h-auto dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5",t),...e})}const lV=fa("flex h-auto cursor-text items-center justify-center gap-2 py-2 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 **:data-[slot=kbd]:rounded-3xl **:data-[slot=kbd]:bg-muted-foreground/10 **:data-[slot=kbd]:px-1.5 [&>svg:not([class*='size-'])]:size-4",{variants:{align:{"inline-start":"order-first pl-3 has-[>button]:-ml-1 has-[>kbd]:-ml-1","inline-end":"order-last pr-3 has-[>button]:-mr-1 has-[>kbd]:-mr-1","block-start":"order-first w-full justify-start px-3 pt-3 group-has-[>input]/input-group:pt-3.5 [.border-b]:pb-3.5","block-end":"order-last w-full justify-start px-3 pb-3 group-has-[>input]/input-group:pb-3.5 [.border-t]:pt-3.5"}},defaultVariants:{align:"inline-start"}});function uV({className:t,align:e="inline-start",...n}){return S.jsx("div",{role:"group","data-slot":"input-group-addon","data-align":e,className:pe(lV({align:e}),t),onClick:r=>{r.target.closest("button")||r.currentTarget.parentElement?.querySelector("input")?.focus()},...n})}function sd({className:t,dir:e,style:n,...r}){const{contains:i}=wK({sensitivity:"base"});return S.jsx("div",{"data-slot":"command",dir:e,className:pe("flex size-full flex-col overflow-hidden rounded-4xl bg-popover p-1 text-popover-foreground",t),style:n,children:S.jsx(nI,{...r,filter:r.filter||i,children:r.children})})}function od({...t}){return S.jsx(N3,{"data-slot":"command-popover-trigger",...t})}function ad({className:t,placement:e="bottom start",offset:n=4,crossOffset:r=0,...i}){return S.jsx(pm,{"data-slot":"command-popover",placement:e,offset:n,crossOffset:r,className:pe("relative isolate z-50 w-(--trigger-width) min-w-64 origin-(--trigger-anchor-point) overflow-hidden rounded-3xl bg-popover text-popover-foreground shadow-lg ring-1 ring-foreground/5 outline-hidden duration-100 data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 dark:ring-foreground/10","*:data-[slot=command]:rounded-none *:data-[slot=command]:bg-transparent *:data-[slot=command]:p-0",t),...i})}function ld({className:t,flush:e=!1,...n}){return S.jsx(wj,{autoFocus:!0,"aria-label":n.placeholder||"Search","data-slot":"command-input-wrapper",className:e?"border-b border-border/60":"p-1 pb-0",children:S.jsxs(aV,{className:e?"h-10 rounded-none bg-transparent":"h-9 bg-input/50",children:[S.jsx(W$,{...n,"data-slot":"command-input",className:pe("w-full text-sm outline-hidden disabled:cursor-not-allowed disabled:opacity-50 [&::-webkit-search-cancel-button]:hidden",t)}),S.jsx(uV,{children:S.jsx(WH,{className:"size-4 shrink-0 opacity-50"})})]})})}function ud({className:t,...e}){return S.jsx(P3,{...e,"data-slot":"command-list",className:pe("no-scrollbar max-h-72 scroll-py-1 overflow-x-hidden overflow-y-auto outline-none",t)})}function wl({className:t,children:e,items:n,heading:r,...i}){return S.jsxs(EK,{"data-slot":"command-group",className:pe("overflow-hidden p-1.5 text-foreground **:[[cmdk-group-heading]]:px-3 **:[[cmdk-group-heading]]:py-2 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group-heading]]:text-muted-foreground",t),...i,children:[r&&S.jsx(dF,{"cmdk-group-heading":"",children:r}),S.jsx(um,{items:n,children:e})]})}function cV({className:t,...e}){return S.jsx(pF,{"data-slot":"command-separator",className:pe("my-1.5 h-px bg-border/50",t),...e})}function Wo({className:t,children:e,textValue:n,...r}){return S.jsx(O3,{...r,"data-slot":"command-item",className:pe("group/command-item relative flex cursor-default items-center gap-2 rounded-2xl px-3 py-2 text-sm font-medium outline-hidden select-none in-data-[slot=dialog-content]:rounded-3xl data-focused:bg-muted data-focused:text-foreground data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 data-selected:bg-muted data-selected:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-focused:*:[svg]:text-foreground data-selected:*:[svg]:text-foreground",t),textValue:n||(typeof e=="string"?e:void 0),children:zs(e,i=>S.jsxs(S.Fragment,{children:[i,S.jsx(rd,{className:"ml-auto opacity-0 group-has-data-[slot=command-shortcut]/command-item:hidden group-data-selected/command-item:opacity-100"})]}))})}const CM=D.createContext(null);function Mr(){const t=D.useContext(CM);if(!t)throw new Error("useTasksContext must be used inside the app shell");return t}function dV(){const{project:t,board:e,boards:n}=Mr(),r=qs({strict:!1}),i=Li(),[s,a]=D.useState(!1),[u,c]=D.useState(!1);t?.readOnly===!0&&!u&&c(!0);const f=g_(u).data;if(!u||!f||f.length===0||f.length<2&&!r.ref)return null;const h=f.find(b=>b.isDefault)?.name,m=r.ref??h??"default",g=b=>{a(!1),b!==m&&i({to:"/",search:{...e&&e!==n[0]?.id?{board:e}:{},...b===h?{}:{ref:b}}})};return S.jsxs(od,{isOpen:s,onOpenChange:a,children:[S.jsxs(Xe,{variant:"ghost",size:"sm","aria-label":"Preview a branch",className:`-ml-2 h-7 min-w-0 shrink rounded-md px-1.5 font-normal ${r.ref?"text-amber-600 dark:text-amber-500":"text-muted-foreground"}`,children:[S.jsx(AH,{"data-icon":"inline-start",className:"size-3.5"}),S.jsx("span",{className:"max-w-40 truncate",children:m})]}),S.jsx(ad,{className:"w-64",children:S.jsxs(sd,{children:[S.jsx(ld,{flush:!0,placeholder:"Preview a branch"}),S.jsx(ud,{selectionMode:"single",selectedKeys:[m],onAction:b=>g(String(b)),children:S.jsx(wl,{children:f.map(b=>S.jsx(Wo,{id:b.name,textValue:b.name,children:S.jsx("span",{className:"truncate",children:b.name})},b.name))})})]})})]})}function EM(){const t=dn();return e=>{const n=new URLSearchParams,r=gm();r&&n.set("board",r);const i=da();i&&n.set("ref",i);const s=n.size>0?`?${n.toString()}`:"",a=YB(t.basepath,`/task/${e.number}${s}`);return new URL(a,location.origin).href}}function oy(t){if(navigator.clipboard){navigator.clipboard.writeText(t).catch(()=>ek(t));return}ek(t)}function ek(t){const e=document.createElement("textarea");e.value=t,e.setAttribute("readonly",""),e.style.position="fixed",e.style.opacity="0",document.body.appendChild(e),e.select();try{document.execCommand("copy")}finally{e.remove()}}function fV(){const{project:t,boards:e,board:n,tasks:r}=Mr(),i=zS(),s=qs({strict:!1}),a=i({to:"/task/$number"}),u=a?Number(a.number):null,c=u!=null?r.find(g=>g.number===u):null,f=new URLSearchParams;n&&n!==e[0]?.id&&f.set("board",n),s.ref&&f.set("ref",s.ref);const h=f.size>0?`/?${f.toString()}`:"/",m=e.find(g=>g.id===n)?.prefix??t?.prefix;return S.jsxs("div",{className:"flex min-w-0 items-center gap-1",children:[S.jsx(lH,{href:h,variant:"ghost",size:"icon-sm","aria-label":"Board home",className:"text-muted-foreground",children:S.jsx(LH,{})}),S.jsx(dV,{}),S.jsx(eV,{children:S.jsxs(tV,{children:[S.jsx(Z5,{children:S.jsx(pV,{})}),a&&S.jsx(Z5,{children:S.jsx(nV,{children:c?.title??(m?`${m}-${u}`:`#${u}`)})})]})}),u!=null&&S.jsx(hV,{number:u})]})}function hV({number:t}){const e=EM(),[n,r]=D.useState(!1),i=D.useRef(null);return S.jsx(Xe,{variant:"ghost",size:"icon-xs","aria-label":"Copy link to task",onPress:()=>{oy(e({number:t})),r(!0),i.current&&clearTimeout(i.current),i.current=setTimeout(()=>r(!1),1500)},className:"ml-0.5 shrink-0 text-muted-foreground [&_svg]:size-3.5",children:n?S.jsx(rd,{className:"text-green-600 dark:text-green-500"}):S.jsx(yM,{})})}function pV(){const{project:t,boards:e,board:n,switchBoard:r,failed:i}=Mr(),[s,a]=D.useState(!1);if(i&&e.length===0)return null;const u=e.find(h=>h.id===n)?.name??t?.name??"…",c=new Map;for(const h of e)c.set(h.name,(c.get(h.name)??0)+1);const f=h=>(c.get(h.name)??0)>1?`${h.name} — ${h.id}`:h.name;return S.jsxs(od,{isOpen:s,onOpenChange:a,children:[S.jsx(Xe,{variant:"ghost",size:"sm","aria-label":"Switch board",className:"-mx-1.5 h-7 min-w-0 shrink rounded-md px-1.5 font-medium text-foreground",children:S.jsx("span",{className:"truncate",children:u})}),S.jsx(ad,{className:"w-60",children:S.jsxs(sd,{children:[S.jsx(ld,{flush:!0,placeholder:"Switch board"}),S.jsx(ud,{selectionMode:"single",selectedKeys:n?[n]:[],onAction:h=>{a(!1),r(String(h))},children:S.jsx(wl,{children:e.map(h=>S.jsx(Wo,{id:h.id,textValue:f(h),children:f(h)},h.id))})})]})})]})}const mV={backlog:"text-muted-foreground/60",todo:"text-muted-foreground",in_progress:"text-foreground/80",done:"text-foreground/80",canceled:"text-muted-foreground/60"};function Wr({status:t,className:e}){const n={viewBox:"0 0 14 14",className:pe("size-3.5 shrink-0",mV[t],e),"aria-hidden":!0};switch(t){case"backlog":return S.jsx("svg",{...n,children:S.jsx("circle",{cx:"7",cy:"7",r:"5.5",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeDasharray:"2.5 2.2"})});case"todo":return S.jsx("svg",{...n,children:S.jsx("circle",{cx:"7",cy:"7",r:"5.5",fill:"none",stroke:"currentColor",strokeWidth:"1.6"})});case"in_progress":return S.jsxs("svg",{...n,children:[S.jsx("circle",{cx:"7",cy:"7",r:"5.5",fill:"none",stroke:"currentColor",strokeWidth:"1.6"}),S.jsx("path",{d:"M7 3.4 A3.6 3.6 0 0 1 7 10.6 Z",fill:"currentColor"})]});case"done":return S.jsxs("svg",{...n,children:[S.jsx("circle",{cx:"7",cy:"7",r:"6.2",fill:"currentColor"}),S.jsx("path",{d:"M4.4 7.2l1.8 1.8 3.4-3.9",fill:"none",stroke:"var(--background)",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})]});case"canceled":return S.jsxs("svg",{...n,children:[S.jsx("circle",{cx:"7",cy:"7",r:"6.2",fill:"currentColor"}),S.jsx("path",{d:"M4.8 4.8l4.4 4.4M9.2 4.8l-4.4 4.4",stroke:"var(--background)",strokeWidth:"1.5",strokeLinecap:"round"})]})}}function kM({className:t}){return S.jsxs("span",{title:"Blocked by another task","aria-label":"Blocked by another task",className:pe("inline-flex shrink-0 items-center gap-1 rounded-full bg-red-500/15 px-1.5 py-0.5 text-[11px] font-medium text-red-700 dark:text-red-400",t),children:[S.jsx(bH,{className:"size-3","aria-hidden":!0}),"Blocked"]})}function DM({className:t}){return S.jsxs("span",{title:"Needs a human","aria-label":"Needs a human",className:pe("inline-flex shrink-0 items-center gap-1 rounded-full bg-amber-500/15 px-1.5 py-0.5 text-[11px] font-medium text-amber-700 dark:text-amber-400",t),children:[S.jsx(Sl,{className:"size-3","aria-hidden":!0}),"Human"]})}function wh({className:t,htmlFor:e,slot:n,...r}){const i=S.jsx(OI,{"data-slot":"label",className:pe("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50 peer-data-disabled:opacity-50",t),...r,htmlFor:e,slot:n});return e&&n===void 0?S.jsx(x3.Provider,{value:null,children:i}):i}function U3({children:t,...e}){return S.jsx(DK,{"data-slot":"popover-trigger",...e,children:t})}function q3({className:t,placement:e="bottom",offset:n=4,crossOffset:r=0,...i}){return S.jsx(pm,{"data-slot":"popover-content",placement:e,offset:n,crossOffset:r,className:pe("z-50 flex w-72 origin-(--trigger-anchor-point) flex-col gap-4 rounded-3xl bg-popover p-4 text-sm text-popover-foreground shadow-lg ring-1 ring-foreground/5 outline-hidden duration-100 data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 dark:ring-foreground/10",t),...i})}const gV=fa("group/toggle inline-flex items-center justify-center gap-1 rounded-3xl text-sm font-medium whitespace-nowrap transition-colors outline-none hover:bg-muted hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/30 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 aria-pressed:bg-muted dark:aria-invalid:ring-destructive/40 data-selected:bg-muted [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-transparent",outline:"border border-input bg-transparent hover:bg-muted"},size:{default:"h-9 min-w-9 px-3 has-data-[icon=inline-end]:pr-2.5 has-data-[icon=inline-start]:pl-2.5",sm:"h-8 min-w-8 px-3 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",lg:"h-10 min-w-10 px-4 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3"}},defaultVariants:{variant:"default",size:"default"}}),SM=D.createContext({size:"default",variant:"default",spacing:2,orientation:"horizontal"});function bV({className:t,variant:e,size:n,spacing:r=2,orientation:i="horizontal",children:s,...a}){return S.jsx(Oj,{"data-slot":"toggle-group","data-variant":e,"data-size":n,"data-spacing":r,orientation:i,style:{"--gap":`calc(var(--spacing) * ${r})`},className:pe("group/toggle-group flex w-fit flex-row items-center gap-(--gap) data-[spacing=0]:data-[variant=outline]:rounded-3xl data-vertical:flex-col data-vertical:items-stretch",t),...a,children:S.jsx(SM.Provider,{value:{variant:e,size:n,spacing:r,orientation:i},children:s})})}function tk({className:t,children:e,variant:n="default",size:r="default",...i}){const s=D.useContext(SM);return S.jsx(zj,{"data-slot":"toggle-group-item","data-variant":s.variant||n,"data-size":s.size||r,"data-spacing":s.spacing,className:pe("shrink-0 group-data-[spacing=0]/toggle-group:rounded-none group-data-[spacing=0]/toggle-group:px-3 group-data-[spacing=0]/toggle-group:shadow-none focus:z-10 focus-visible:z-10 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-end]:pr-2.5 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-start]:pl-2.5 group-data-horizontal/toggle-group:data-[spacing=0]:first:rounded-l-3xl group-data-vertical/toggle-group:data-[spacing=0]:first:rounded-t-3xl group-data-horizontal/toggle-group:data-[spacing=0]:last:rounded-r-3xl group-data-vertical/toggle-group:data-[spacing=0]:last:rounded-b-3xl data-[state=on]:bg-muted group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:border-l-0 group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:border-t-0 group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-l group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-t",gV({variant:s.variant||n,size:s.size||r}),t),...i,children:e})}function yV(){const{settings:t,setSettings:e}=Mr();return S.jsxs(U3,{children:[S.jsx(Xe,{variant:"ghost",size:"icon-sm","aria-label":"Display options",children:S.jsx(YH,{})}),S.jsxs(q3,{placement:"bottom end",className:"w-64 gap-3 p-3",children:[S.jsxs(bV,{variant:"outline",spacing:0,selectionMode:"single",disallowEmptySelection:!0,selectedKeys:[t.view],onSelectionChange:n=>{const r=[...n][0];(r==="board"||r==="list")&&e({...t,view:r})},"aria-label":"View",className:"w-full",children:[S.jsxs(tk,{id:"list",className:"flex-1",children:[S.jsx(jH,{"data-icon":"inline-start"}),"List"]}),S.jsxs(tk,{id:"board",className:"flex-1",children:[S.jsx(DH,{"data-icon":"inline-start"}),"Board"]})]}),t.view==="board"&&S.jsxs("div",{className:"flex flex-col gap-1",children:[S.jsx(wh,{className:"px-1 pb-1 text-xs text-muted-foreground",children:"Columns"}),js.map(n=>{const r=t.boardColumns.includes(n);return S.jsxs(Xe,{variant:"ghost",size:"sm","aria-pressed":r,onPress:()=>e({...t,boardColumns:js.filter(i=>i===n?!r:t.boardColumns.includes(i))}),className:"w-full justify-start gap-2 font-normal",children:[S.jsx(Wr,{status:n}),Ai[n],S.jsx(rd,{"data-icon":"inline-end",className:r?"ml-auto":"ml-auto opacity-0"})]},n)})]})]})]})}const vV=fa("flex w-fit items-stretch *:focus-visible:relative *:focus-visible:z-10 has-[>[data-slot=button-group]]:gap-2 has-[>[data-variant=outline]]:*:data-[slot=input-group]:border-border has-[>[data-variant=outline]]:*:data-[slot=select-trigger]:border-border has-[>[data-variant=outline]]:[&>[data-slot=input-group]:has(:focus-visible)]:border-ring has-[>[data-variant=outline]]:[&>[data-slot=select-trigger]:focus-visible]:border-ring has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-4xl [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1 has-[>[data-variant=outline]]:[&>input]:border-border has-[>[data-variant=outline]]:[&>input:focus-visible]:border-ring",{variants:{orientation:{horizontal:"**:data-slot:rounded-r-none [&_[data-slot]~[data-slot]]:rounded-l-none [&_[data-slot]~[data-slot]]:border-l-0 [&>[data-slot]:not(:has(~[data-slot]))]:rounded-r-4xl!",vertical:"flex-col **:data-slot:rounded-b-none [&_[data-slot]~[data-slot]]:rounded-t-none [&_[data-slot]~[data-slot]]:border-t-0 [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-4xl!"}},defaultVariants:{orientation:"horizontal"}});function xV({className:t,orientation:e,...n}){return S.jsx("div",{role:"group","data-slot":"button-group","data-orientation":e,className:pe(vV({orientation:e}),t),...n})}function nk({className:t,render:e,...n}){if(e){const r={"data-slot":"button-group-text",className:pe("flex items-center gap-2 rounded-4xl border bg-muted px-2.5 text-sm font-medium [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",t),...n};return e(r)}return S.jsx("div",{"data-slot":"button-group-text",className:pe("flex items-center gap-2 rounded-4xl border bg-muted px-2.5 text-sm font-medium [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",t),...n})}const F0="__none__",rk="__create__";function qr({label:t,options:e,value:n,onChange:r,mode:i,placeholder:s,allowCreate:a=!0,renderValue:u,size:c="sm",variant:f="outline",chevron:h=!0,className:m}){const[g,b]=D.useState(!1),[v,C]=D.useState(""),E=[...new Set([...e,...n])].sort(),k=v.trim(),T=a&&k.length>0&&!E.some(P=>P.toLowerCase()===k.toLowerCase());function $(P){const M=String(P);if(M===rk){r(i==="single"?[k]:[...n,k]),C(""),i==="single"&&A();return}if(M===F0){r([]),A();return}if(i==="single"){r([M]),A();return}r(n.includes(M)?n.filter(N=>N!==M):[...n,M])}function A(){b(!1),C("")}const B=u?.(n)??S.jsx("span",{className:"truncate",children:n.length>0?n.join(", "):s});return S.jsxs(od,{isOpen:g,onOpenChange:P=>P?b(!0):A(),children:[S.jsxs(Xe,{variant:f,size:c,"aria-label":t,className:pe("justify-between gap-1.5 font-normal",m),children:[B,h&&S.jsx(xH,{className:"text-muted-foreground"})]}),S.jsx(ad,{className:"w-60",children:S.jsxs(sd,{inputValue:v,onInputChange:C,children:[S.jsx(ld,{flush:!0,placeholder:`Search ${t.toLowerCase()}`}),S.jsxs(ud,{selectionMode:i,selectedKeys:i==="single"?[n[0]??F0]:n,onAction:$,disallowEmptySelection:i==="single",renderEmptyState:()=>T?null:S.jsx("p",{className:"px-3 py-6 text-center text-sm text-muted-foreground",children:"Nothing here yet"}),children:[S.jsxs(wl,{children:[i==="single"?S.jsx(Wo,{id:F0,textValue:s,children:s}):null,E.map(P=>S.jsx(Wo,{id:P,textValue:P,children:P},P))]}),T?S.jsx(cV,{}):null,T?S.jsx(wl,{children:S.jsxs(Wo,{id:rk,textValue:v,children:[S.jsx(bm,{}),S.jsx("span",{className:"truncate",children:k})]})}):null]})]})})]})}const wM={statuses:[],tags:[],milestone:null,needsHuman:!1};function CV(t,e){return t.filter(n=>!(e.statuses.length>0&&!e.statuses.includes(n.status)||e.tags.length>0&&!n.tags.some(r=>e.tags.includes(r))||e.milestone!==null&&n.milestone!==e.milestone||e.needsHuman&&!n.needsHuman))}function $M(t){return t.statuses.length>0||t.tags.length>0||t.milestone!==null||t.needsHuman}function ym(t){return[...new Set(t.flatMap(e=>e.tags))].sort()}function vm(t){return[...new Set(t.map(e=>e.milestone).filter(e=>!!e))].sort()}function EV(){const{tasks:t,filters:e,setFilters:n}=Mr();return S.jsxs("div",{className:"flex shrink-0 flex-wrap items-center gap-2 border-b px-4 py-2",children:[e.statuses.length>0&&S.jsx(Jf,{icon:S.jsx(Wr,{status:e.statuses[0],className:"size-3.5"}),name:"Status",operator:e.statuses.length>1?"is any of":"is",onRemove:()=>n({...e,statuses:[]}),children:S.jsx(qr,{label:"Status",mode:"multiple",allowCreate:!1,options:[...js],value:e.statuses,onChange:r=>n({...e,statuses:r}),placeholder:"Status",renderValue:r=>S.jsx("span",{className:"truncate",children:r.map(i=>Ai[i]).join(", ")}),size:"sm",className:"max-w-56 border-l-0 font-normal"})}),e.tags.length>0&&S.jsx(Jf,{icon:S.jsx(rp,{className:"size-3.5"}),name:"Tag",operator:e.tags.length>1?"is any of":"is",onRemove:()=>n({...e,tags:[]}),children:S.jsx(qr,{label:"Tags",mode:"multiple",allowCreate:!1,options:ym(t),value:e.tags,onChange:r=>n({...e,tags:r}),placeholder:"Tags",size:"sm",className:"max-w-56 border-l-0 font-normal"})}),e.milestone!==null&&S.jsx(Jf,{name:"Milestone",operator:"is",onRemove:()=>n({...e,milestone:null}),children:S.jsx(qr,{label:"Milestone",mode:"single",allowCreate:!1,options:vm(t),value:[e.milestone],onChange:r=>n({...e,milestone:r[0]??null}),placeholder:"Milestone",size:"sm",className:"max-w-56 border-l-0 font-normal"})}),e.needsHuman&&S.jsx(Jf,{icon:S.jsx(Sl,{className:"size-3.5"}),name:"Needs a human",onRemove:()=>n({...e,needsHuman:!1})}),S.jsx(Xe,{size:"sm",variant:"ghost",onPress:()=>n(wM),children:"Clear"})]})}function Jf({icon:t,name:e,operator:n,onRemove:r,children:i}){return S.jsxs(xV,{children:[S.jsxs(nk,{className:"h-8 gap-1.5 bg-transparent text-sm font-normal",children:[t,e]}),n&&S.jsx(nk,{className:"h-8 border-l-0 bg-transparent text-sm font-normal text-muted-foreground",children:n}),i,S.jsx(Xe,{variant:"outline",size:"icon-sm","aria-label":`Remove ${e.toLowerCase()} filter`,onPress:r,className:"border-l-0 text-muted-foreground",children:S.jsx(id,{})})]})}function kV(){const{tasks:t,filters:e,setFilters:n}=Mr(),r=$M(e);return S.jsxs(U3,{children:[S.jsxs(Xe,{variant:"ghost",size:"icon-sm","aria-label":"Filter",className:"relative",children:[S.jsx(FH,{}),r&&S.jsx("span",{className:"absolute top-1 right-1 size-1.5 rounded-full bg-primary"})]}),S.jsxs(q3,{placement:"bottom end",className:"w-64 gap-3 p-3",children:[S.jsxs("div",{className:"grid gap-1.5",children:[S.jsx(wh,{className:"px-1 text-xs text-muted-foreground",children:"Status"}),S.jsx(qr,{label:"Status",mode:"multiple",allowCreate:!1,options:[...js],value:e.statuses,onChange:i=>n({...e,statuses:i}),placeholder:"Any status",renderValue:i=>S.jsx("span",{className:"truncate",children:i.length===0?"Any status":i.map(s=>Ai[s]).join(", ")}),className:"w-full"})]}),S.jsxs("div",{className:"grid gap-1.5",children:[S.jsx(wh,{className:"px-1 text-xs text-muted-foreground",children:"Tags"}),S.jsx(qr,{label:"Tags",mode:"multiple",allowCreate:!1,options:ym(t),value:e.tags,onChange:i=>n({...e,tags:i}),placeholder:"Any tag",className:"w-full"})]}),S.jsxs("div",{className:"grid gap-1.5",children:[S.jsx(wh,{className:"px-1 text-xs text-muted-foreground",children:"Milestone"}),S.jsx(qr,{label:"Milestone",mode:"single",allowCreate:!1,options:vm(t),value:e.milestone?[e.milestone]:[],onChange:i=>n({...e,milestone:i[0]??null}),placeholder:"Any milestone",className:"w-full"})]}),S.jsxs(Xe,{size:"sm",variant:e.needsHuman?"secondary":"outline","aria-pressed":e.needsHuman,onPress:()=>n({...e,needsHuman:!e.needsHuman}),className:pe("justify-start font-normal",e.needsHuman&&"text-amber-700 dark:text-amber-400"),children:[S.jsx(Sl,{"data-icon":"inline-start"}),"Needs a human"]})]})]})}function Jt(t){this.content=t}Jt.prototype={constructor:Jt,find:function(t){for(var e=0;e<this.content.length;e+=2)if(this.content[e]===t)return e;return-1},get:function(t){var e=this.find(t);return e==-1?void 0:this.content[e+1]},update:function(t,e,n){var r=n&&n!=t?this.remove(n):this,i=r.find(t),s=r.content.slice();return i==-1?s.push(n||t,e):(s[i+1]=e,n&&(s[i]=n)),new Jt(s)},remove:function(t){var e=this.find(t);if(e==-1)return this;var n=this.content.slice();return n.splice(e,2),new Jt(n)},addToStart:function(t,e){return new Jt([t,e].concat(this.remove(t).content))},addToEnd:function(t,e){var n=this.remove(t).content.slice();return n.push(t,e),new Jt(n)},addBefore:function(t,e,n){var r=this.remove(e),i=r.content.slice(),s=r.find(t);return i.splice(s==-1?i.length:s,0,e,n),new Jt(i)},forEach:function(t){for(var e=0;e<this.content.length;e+=2)t(this.content[e],this.content[e+1])},prepend:function(t){return t=Jt.from(t),t.size?new Jt(t.content.concat(this.subtract(t).content)):this},append:function(t){return t=Jt.from(t),t.size?new Jt(this.subtract(t).content.concat(t.content)):this},subtract:function(t){var e=this;t=Jt.from(t);for(var n=0;n<t.content.length;n+=2)e=e.remove(t.content[n]);return e},toObject:function(){var t={};return this.forEach(function(e,n){t[e]=n}),t},get size(){return this.content.length>>1}};Jt.from=function(t){if(t instanceof Jt)return t;var e=[];if(t)for(var n in t)e.push(n,t[n]);return new Jt(e)};function TM(t,e,n){for(let r=0;;r++){if(r==t.childCount||r==e.childCount)return t.childCount==e.childCount?null:n;let i=t.child(r),s=e.child(r);if(i==s){n+=i.nodeSize;continue}if(!i.sameMarkup(s))return n;if(i.isText&&i.text!=s.text){let a=i.text,u=s.text,c=0;for(;a[c]==u[c];c++)n++;return c&&c<a.length&&c<u.length&&MM(a.charCodeAt(c-1))&&BM(a.charCodeAt(c))&&n--,n}if(i.content.size||s.content.size){let a=TM(i.content,s.content,n+1);if(a!=null)return a}n+=i.nodeSize}}function AM(t,e,n,r){for(let i=t.childCount,s=e.childCount;;){if(i==0||s==0)return i==s?null:{a:n,b:r};let a=t.child(--i),u=e.child(--s),c=a.nodeSize;if(a==u){n-=c,r-=c;continue}if(!a.sameMarkup(u))return{a:n,b:r};if(a.isText&&a.text!=u.text){let f=a.text,h=u.text,m=f.length,g=h.length;for(;m>0&&g>0&&f[m-1]==h[g-1];)m--,g--,n--,r--;return m&&g&&m<f.length&&MM(f.charCodeAt(m-1))&&BM(f.charCodeAt(m))&&(n++,r++),{a:n,b:r}}if(a.content.size||u.content.size){let f=AM(a.content,u.content,n-1,r-1);if(f)return f}n-=c,r-=c}}function BM(t){return t>=56320&&t<57344}function MM(t){return t>=55296&&t<56320}class ae{constructor(e,n){if(this.content=e,this.size=n||0,n==null)for(let r=0;r<e.length;r++)this.size+=e[r].nodeSize}nodesBetween(e,n,r,i=0,s){for(let a=0,u=0;u<n;a++){let c=this.content[a],f=u+c.nodeSize;if(f>e&&r(c,i+u,s||null,a)!==!1&&c.content.size){let h=u+1;c.nodesBetween(Math.max(0,e-h),Math.min(c.content.size,n-h),r,i+h)}u=f}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,r,i){let s="",a=!0;return this.nodesBetween(e,n,(u,c)=>{let f=u.isText?u.text.slice(Math.max(e,c)-c,n-c):u.isLeaf?i?typeof i=="function"?i(u):i:u.type.spec.leafText?u.type.spec.leafText(u):"":"";u.isBlock&&(u.isLeaf&&f||u.isTextblock)&&r&&(a?a=!1:s+=r),s+=f},0),s}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,r=e.firstChild,i=this.content.slice(),s=0;for(n.isText&&n.sameMarkup(r)&&(i[i.length-1]=n.withText(n.text+r.text),s=1);s<e.content.length;s++)i.push(e.content[s]);return new ae(i,this.size+e.size)}cut(e,n=this.size){if(e==0&&n==this.size)return this;let r=[],i=0;if(n>e)for(let s=0,a=0;a<n;s++){let u=this.content[s],c=a+u.nodeSize;c>e&&((a<e||c>n)&&(u.isText?u=u.cut(Math.max(0,e-a),Math.min(u.text.length,n-a)):u=u.cut(Math.max(0,e-a-1),Math.min(u.content.size,n-a-1))),r.push(u),i+=u.nodeSize),a=c}return new ae(r,i)}cutByIndex(e,n){return e==n?ae.empty:e==0&&n==this.content.length?this:new ae(this.content.slice(e,n))}replaceChild(e,n){let r=this.content[e];if(r==n)return this;let i=this.content.slice(),s=this.size+n.nodeSize-r.nodeSize;return i[e]=n,new ae(i,s)}addToStart(e){return new ae([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new ae(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1;for(let n=0;n<this.content.length;n++)if(!this.content[n].eq(e.content[n]))return!1;return!0}get firstChild(){return this.content.length?this.content[0]:null}get lastChild(){return this.content.length?this.content[this.content.length-1]:null}get childCount(){return this.content.length}child(e){let n=this.content[e];if(!n)throw new RangeError("Index "+e+" out of range for "+this);return n}maybeChild(e){return this.content[e]||null}forEach(e){for(let n=0,r=0;n<this.content.length;n++){let i=this.content[n];e(i,r,n),r+=i.nodeSize}}findDiffStart(e,n=0){return TM(this,e,n)}findDiffEnd(e,n=this.size,r=e.size){return AM(this,e,n,r)}findIndex(e){if(e==0)return Zf(0,e);if(e==this.size)return Zf(this.content.length,e);if(e>this.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`);for(let n=0,r=0;;n++){let i=this.child(n),s=r+i.nodeSize;if(s>=e)return s==e?Zf(n+1,s):Zf(n,r);r=s}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(e=>e.toJSON()):null}static fromJSON(e,n){if(!n)return ae.empty;if(!Array.isArray(n))throw new RangeError("Invalid input for Fragment.fromJSON");return ae.fromArray(n.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return ae.empty;let n,r=0;for(let i=0;i<e.length;i++){let s=e[i];r+=s.nodeSize,i&&s.isText&&e[i-1].sameMarkup(s)?(n||(n=e.slice(0,i)),n[n.length-1]=s.withText(n[n.length-1].text+s.text)):n&&n.push(s)}return new ae(n||e,r)}static from(e){if(!e)return ae.empty;if(e instanceof ae)return e;if(Array.isArray(e))return this.fromArray(e);if(e.attrs)return new ae([e],e.nodeSize);throw new RangeError("Can not convert "+e+" to a Fragment"+(e.nodesBetween?" (looks like multiple versions of prosemirror-model were loaded)":""))}}ae.empty=new ae([],0);const K0={index:0,offset:0};function Zf(t,e){return K0.index=t,K0.offset=e,K0}function ip(t,e){if(t===e)return!0;if(!(t&&typeof t=="object")||!(e&&typeof e=="object"))return!1;let n=Array.isArray(t);if(Array.isArray(e)!=n)return!1;if(n){if(t.length!=e.length)return!1;for(let r=0;r<t.length;r++)if(!ip(t[r],e[r]))return!1}else{for(let r in t)if(!(r in e)||!ip(t[r],e[r]))return!1;for(let r in e)if(!(r in t))return!1}return!0}let it=class ay{constructor(e,n){this.type=e,this.attrs=n}addToSet(e){let n,r=!1;for(let i=0;i<e.length;i++){let s=e[i];if(this.eq(s))return e;if(this.type.excludes(s.type))n||(n=e.slice(0,i));else{if(s.type.excludes(this.type))return e;!r&&s.type.rank>this.type.rank&&(n||(n=e.slice(0,i)),n.push(this),r=!0),n&&n.push(s)}}return n||(n=e.slice()),r||n.push(this),n}removeFromSet(e){for(let n=0;n<e.length;n++)if(this.eq(e[n]))return e.slice(0,n).concat(e.slice(n+1));return e}isInSet(e){for(let n=0;n<e.length;n++)if(this.eq(e[n]))return!0;return!1}eq(e){return this==e||this.type==e.type&&ip(this.attrs,e.attrs)}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Mark.fromJSON");let r=e.marks[n.type];if(!r)throw new RangeError(`There is no mark type ${n.type} in this schema`);let i=r.create(n.attrs);return r.checkAttrs(i.attrs),i}static sameSet(e,n){if(e==n)return!0;if(e.length!=n.length)return!1;for(let r=0;r<e.length;r++)if(!e[r].eq(n[r]))return!1;return!0}static setFrom(e){if(!e||Array.isArray(e)&&e.length==0)return ay.none;if(e instanceof ay)return[e];let n=e.slice();return n.sort((r,i)=>r.type.rank-i.type.rank),n}};it.none=[];class zc extends Error{}class he{constructor(e,n,r){this.content=e,this.openStart=n,this.openEnd=r}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let r=NM(this.content,e+this.openStart,n,this.openStart+1,this.openEnd+1);return r&&new he(r,this.openStart,this.openEnd)}removeBetween(e,n){return new he(RM(this.content,e+this.openStart,n+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let e={content:this.content.toJSON()};return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,n){if(!n)return he.empty;let r=n.openStart||0,i=n.openEnd||0;if(typeof r!="number"||typeof i!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new he(ae.fromJSON(e,n.content),r,i)}static maxOpen(e,n=!0){let r=0,i=0;for(let s=e.firstChild;s&&!s.isLeaf&&(n||!s.type.spec.isolating);s=s.firstChild)r++;for(let s=e.lastChild;s&&!s.isLeaf&&(n||!s.type.spec.isolating);s=s.lastChild)i++;return new he(e,r,i)}}he.empty=new he(ae.empty,0,0);function RM(t,e,n){let{index:r,offset:i}=t.findIndex(e),s=t.maybeChild(r),{index:a,offset:u}=t.findIndex(n);if(i==e||s.isText){if(u!=n&&!t.child(a).isText)throw new RangeError("Removing non-flat range");return t.cut(0,e).append(t.cut(n))}if(r!=a)throw new RangeError("Removing non-flat range");return t.replaceChild(r,s.copy(RM(s.content,e-i-1,n-i-1)))}function NM(t,e,n,r,i,s){let{index:a,offset:u}=t.findIndex(e),c=t.maybeChild(a);if(u==e||c.isText)return s&&r<=0&&i<=0&&!s.canReplace(a,a,n)?null:t.cut(0,e).append(n).append(t.cut(e));let f=NM(c.content,e-u-1,n,a==0?r-1:0,a==t.childCount-1?i-1:0,c);return f&&t.replaceChild(a,c.copy(f))}function DV(t,e,n){if(n.openStart>t.depth)throw new zc("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new zc("Inconsistent open depths");return PM(t,e,n,0)}function PM(t,e,n,r){let i=t.index(r),s=t.node(r);if(i==e.index(r)&&r<t.depth-n.openStart){let a=PM(t,e,n,r+1);return s.copy(s.content.replaceChild(i,a))}else if(n.content.size)if(!n.openStart&&!n.openEnd&&t.depth==r&&e.depth==r){let a=t.parent,u=a.content;return Yo(a,u.cut(0,t.parentOffset).append(n.content).append(u.cut(e.parentOffset)))}else{let{start:a,end:u}=SV(n,t);return Yo(s,LM(t,a,u,e,r))}else return Yo(s,sp(t,e,r))}function OM(t,e){if(!e.type.compatibleContent(t.type))throw new zc("Cannot join "+e.type.name+" onto "+t.type.name)}function ly(t,e,n){let r=t.node(n);return OM(r,e.node(n)),r}function Qo(t,e){let n=e.length-1;n>=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function dc(t,e,n,r){let i=(e||t).node(n),s=0,a=e?e.index(n):i.childCount;t&&(s=t.index(n),t.depth>n?s++:t.textOffset&&(Qo(t.nodeAfter,r),s++));for(let u=s;u<a;u++)Qo(i.child(u),r);e&&e.depth==n&&e.textOffset&&Qo(e.nodeBefore,r)}function Yo(t,e){if(!t.type.validContent(e))throw new zc("Invalid content for node "+t.type.name);return t.copy(e)}function LM(t,e,n,r,i){let s=t.depth>i&&ly(t,e,i+1),a=r.depth>i&&ly(n,r,i+1),u=[];return dc(null,t,i,u),s&&a&&e.index(i)==n.index(i)?(OM(s,a),Qo(Yo(s,LM(t,e,n,r,i+1)),u)):(s&&Qo(Yo(s,sp(t,e,i+1)),u),dc(e,n,i,u),a&&Qo(Yo(a,sp(n,r,i+1)),u)),dc(r,null,i,u),new ae(u)}function sp(t,e,n){let r=[];if(dc(null,t,n,r),t.depth>n){let i=ly(t,e,n+1);Qo(Yo(i,sp(t,e,n+1)),r)}return dc(e,null,n,r),new ae(r)}function SV(t,e){let n=e.depth-t.openStart,i=e.node(n).copy(t.content);for(let s=n-1;s>=0;s--)i=e.node(s).copy(ae.from(i));return{start:i.resolveNoCache(t.openStart+n),end:i.resolveNoCache(i.content.size-t.openEnd-n)}}class Ic{constructor(e,n,r){this.pos=e,this.path=n,this.parentOffset=r,this.depth=n.length/3-1}resolveDepth(e){return e==null?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[this.resolveDepth(e)*3]}index(e){return this.path[this.resolveDepth(e)*3+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e==this.depth&&!this.textOffset?0:1)}start(e){return e=this.resolveDepth(e),e==0?0:this.path[e*3-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position before the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]}after(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position after the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]+this.path[e*3].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,n=this.index(this.depth);if(n==e.childCount)return null;let r=this.pos-this.path[this.path.length-1],i=e.child(n);return r?e.child(n).cut(r):i}get nodeBefore(){let e=this.index(this.depth),n=this.pos-this.path[this.path.length-1];return n?this.parent.child(e).cut(0,n):e==0?null:this.parent.child(e-1)}posAtIndex(e,n){n=this.resolveDepth(n);let r=this.path[n*3],i=n==0?0:this.path[n*3-1]+1;for(let s=0;s<e;s++)i+=r.child(s).nodeSize;return i}marks(){let e=this.parent,n=this.index();if(e.content.size==0)return it.none;if(this.textOffset)return e.child(n).marks;let r=e.maybeChild(n-1),i=e.maybeChild(n);if(!r){let u=r;r=i,i=u}let s=r.marks;for(var a=0;a<s.length;a++)s[a].type.spec.inclusive===!1&&(!i||!s[a].isInSet(i.marks))&&(s=s[a--].removeFromSet(s));return s}marksAcross(e){let n=this.parent.maybeChild(this.index());if(!n||!n.isInline)return null;let r=n.marks,i=e.parent.maybeChild(e.index());for(var s=0;s<r.length;s++)r[s].type.spec.inclusive===!1&&(!i||!r[s].isInSet(i.marks))&&(r=r[s--].removeFromSet(r));return r}sharedDepth(e){for(let n=this.depth;n>0;n--)if(this.start(n)<=e&&this.end(n)>=e)return n;return 0}blockRange(e=this,n){if(e.pos<this.pos)return e.blockRange(this);for(let r=this.depth-(this.parent.inlineContent||this.pos==e.pos?1:0);r>=0;r--)if(e.pos<=this.end(r)&&(!n||n(this.node(r))))return new op(this,e,r);return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos<this.pos?e:this}toString(){let e="";for(let n=1;n<=this.depth;n++)e+=(e?"/":"")+this.node(n).type.name+"_"+this.index(n-1);return e+":"+this.parentOffset}static resolve(e,n){if(!(n>=0&&n<=e.content.size))throw new RangeError("Position "+n+" out of range");let r=[],i=0,s=n;for(let a=e;;){let{index:u,offset:c}=a.content.findIndex(s),f=s-c;if(r.push(a,u,i+c),!f||(a=a.child(u),a.isText))break;s=f-1,i+=c+1}return new Ic(n,r,s)}static resolveCached(e,n){let r=ik.get(e);if(r)for(let s=0;s<r.elts.length;s++){let a=r.elts[s];if(a.pos==n)return a}else ik.set(e,r=new wV);let i=r.elts[r.i]=Ic.resolve(e,n);return r.i=(r.i+1)%$V,i}}class wV{constructor(){this.elts=[],this.i=0}}const $V=12,ik=new WeakMap;class op{constructor(e,n,r){this.$from=e,this.$to=n,this.depth=r}get start(){return this.$from.before(this.depth+1)}get end(){return this.$to.after(this.depth+1)}get parent(){return this.$from.node(this.depth)}get startIndex(){return this.$from.index(this.depth)}get endIndex(){return this.$to.indexAfter(this.depth)}}const TV=Object.create(null);let Rs=class uy{constructor(e,n,r,i=it.none){this.type=e,this.attrs=n,this.marks=i,this.content=r||ae.empty}get children(){return this.content.content}get nodeSize(){return this.isLeaf?1:2+this.content.size}get childCount(){return this.content.childCount}child(e){return this.content.child(e)}maybeChild(e){return this.content.maybeChild(e)}forEach(e){this.content.forEach(e)}nodesBetween(e,n,r,i=0){this.content.nodesBetween(e,n,r,i,this)}descendants(e){this.nodesBetween(0,this.content.size,e)}get textContent(){return this.isLeaf&&this.type.spec.leafText?this.type.spec.leafText(this):this.textBetween(0,this.content.size,"")}textBetween(e,n,r,i){return this.content.textBetween(e,n,r,i)}get firstChild(){return this.content.firstChild}get lastChild(){return this.content.lastChild}eq(e){return this==e||this.sameMarkup(e)&&this.content.eq(e.content)}sameMarkup(e){return this.hasMarkup(e.type,e.attrs,e.marks)}hasMarkup(e,n,r){return this.type==e&&ip(this.attrs,n||e.defaultAttrs||TV)&&it.sameSet(this.marks,r||it.none)}copy(e=null){return e==this.content?this:new uy(this.type,this.attrs,e,this.marks)}mark(e){return e==this.marks?this:new uy(this.type,this.attrs,this.content,e)}cut(e,n=this.content.size){return e==0&&n==this.content.size?this:this.copy(this.content.cut(e,n))}slice(e,n=this.content.size,r=!1){if(e==n)return he.empty;let i=this.resolve(e),s=this.resolve(n),a=r?0:i.sharedDepth(n),u=i.start(a),f=i.node(a).content.cut(i.pos-u,s.pos-u);return new he(f,i.depth-a,s.depth-a)}replace(e,n,r){return DV(this.resolve(e),this.resolve(n),r)}nodeAt(e){for(let n=this;;){let{index:r,offset:i}=n.content.findIndex(e);if(n=n.maybeChild(r),!n)return null;if(i==e||n.isText)return n;e-=i+1}}childAfter(e){let{index:n,offset:r}=this.content.findIndex(e);return{node:this.content.maybeChild(n),index:n,offset:r}}childBefore(e){if(e==0)return{node:null,index:0,offset:0};let{index:n,offset:r}=this.content.findIndex(e);if(r<e)return{node:this.content.child(n),index:n,offset:r};let i=this.content.child(n-1);return{node:i,index:n-1,offset:r-i.nodeSize}}resolve(e){return Ic.resolveCached(this,e)}resolveNoCache(e){return Ic.resolve(this,e)}rangeHasMark(e,n,r){let i=!1;return n>e&&this.nodesBetween(e,n,s=>(r.isInSet(s.marks)&&(i=!0),!i)),i}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let e=this.type.name;return this.content.size&&(e+="("+this.content.toStringInner()+")"),zM(this.marks,e)}contentMatchAt(e){let n=this.type.contentMatch.matchFragment(this.content,0,e);if(!n)throw new Error("Called contentMatchAt on a node with invalid content");return n}canReplace(e,n,r=ae.empty,i=0,s=r.childCount){let a=this.contentMatchAt(e).matchFragment(r,i,s),u=a&&a.matchFragment(this.content,n);if(!u||!u.validEnd)return!1;for(let c=i;c<s;c++)if(!this.type.allowsMarks(r.child(c).marks))return!1;return!0}canReplaceWith(e,n,r,i){if(i&&!this.type.allowsMarks(i))return!1;let s=this.contentMatchAt(e).matchType(r),a=s&&s.matchFragment(this.content,n);return a?a.validEnd:!1}canAppend(e){return e.content.size?this.canReplace(this.childCount,this.childCount,e.content):this.type.compatibleContent(e.type)}check(){this.type.checkContent(this.content),this.type.checkAttrs(this.attrs);let e=it.none;for(let n=0;n<this.marks.length;n++){let r=this.marks[n];r.type.checkAttrs(r.attrs),e=r.addToSet(e)}if(!it.sameSet(e,this.marks))throw new RangeError(`Invalid collection of marks for node ${this.type.name}: ${this.marks.map(n=>n.type.name)}`);this.content.forEach(n=>n.check())}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map(n=>n.toJSON())),e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Node.fromJSON");let r;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");r=n.marks.map(e.markFromJSON)}if(n.type=="text"){if(typeof n.text!="string")throw new RangeError("Invalid text node in JSON");return e.text(n.text,r)}let i=ae.fromJSON(e,n.content),s=e.nodeType(n.type).create(n.attrs,i,r);return s.type.checkAttrs(s.attrs),s}};Rs.prototype.text=void 0;class ap extends Rs{constructor(e,n,r,i){if(super(e,n,null,i),!r)throw new RangeError("Empty text nodes are not allowed");this.text=r}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):zM(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,n){return this.text.slice(e,n)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new ap(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new ap(this.type,this.attrs,e,this.marks)}cut(e=0,n=this.text.length){return e==0&&n==this.text.length?this:this.withText(this.text.slice(e,n))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON();return e.text=this.text,e}}function zM(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}class na{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let r=new AV(e,n);if(r.next==null)return na.empty;let i=IM(r);r.next&&r.err("Unexpected trailing text");let s=LV(OV(i));return zV(s,r),s}matchType(e){for(let n=0;n<this.next.length;n++)if(this.next[n].type==e)return this.next[n].next;return null}matchFragment(e,n=0,r=e.childCount){let i=this;for(let s=n;i&&s<r;s++)i=i.matchType(e.child(s).type);return i}get inlineContent(){return this.next.length!=0&&this.next[0].type.isInline}get defaultType(){for(let e=0;e<this.next.length;e++){let{type:n}=this.next[e];if(!(n.isText||n.hasRequiredAttrs()))return n}return null}compatible(e){for(let n=0;n<this.next.length;n++)for(let r=0;r<e.next.length;r++)if(this.next[n].type==e.next[r].type)return!0;return!1}fillBefore(e,n=!1,r=0){let i=[this];function s(a,u){let c=a.matchFragment(e,r);if(c&&(!n||c.validEnd))return ae.from(u.map(f=>f.createAndFill()));for(let f=0;f<a.next.length;f++){let{type:h,next:m}=a.next[f];if(!(h.isText||h.hasRequiredAttrs())&&i.indexOf(m)==-1){i.push(m);let g=s(m,u.concat(h));if(g)return g}}return null}return s(this,[])}findWrapping(e){for(let r=0;r<this.wrapCache.length;r+=2)if(this.wrapCache[r]==e)return this.wrapCache[r+1];let n=this.computeWrapping(e);return this.wrapCache.push(e,n),n}computeWrapping(e){let n=Object.create(null),r=[{match:this,type:null,via:null}];for(;r.length;){let i=r.shift(),s=i.match;if(s.matchType(e)){let a=[];for(let u=i;u.type;u=u.via)a.push(u.type);return a.reverse()}for(let a=0;a<s.next.length;a++){let{type:u,next:c}=s.next[a];!u.isLeaf&&!u.hasRequiredAttrs()&&!(u.name in n)&&(!i.type||c.validEnd)&&(r.push({match:u.contentMatch,type:u,via:i}),n[u.name]=!0)}}return null}get edgeCount(){return this.next.length}edge(e){if(e>=this.next.length)throw new RangeError(`There's no ${e}th edge in this content match`);return this.next[e]}toString(){let e=[];function n(r){e.push(r);for(let i=0;i<r.next.length;i++)e.indexOf(r.next[i].next)==-1&&n(r.next[i].next)}return n(this),e.map((r,i)=>{let s=i+(r.validEnd?"*":" ")+" ";for(let a=0;a<r.next.length;a++)s+=(a?", ":"")+r.next[a].type.name+"->"+e.indexOf(r.next[a].next);return s}).join(`
|
|
22
|
-
`)}}na.empty=new na(!0);class AV{constructor(e,n){this.string=e,this.nodeTypes=n,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),this.tokens[this.tokens.length-1]==""&&this.tokens.pop(),this.tokens[0]==""&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}}function IM(t){let e=[];do e.push(BV(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function BV(t){let e=[];do e.push(MV(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function MV(t){let e=PV(t);for(;;)if(t.eat("+"))e={type:"plus",expr:e};else if(t.eat("*"))e={type:"star",expr:e};else if(t.eat("?"))e={type:"opt",expr:e};else if(t.eat("{"))e=RV(t,e);else break;return e}function sk(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function RV(t,e){let n=sk(t),r=n;return t.eat(",")&&(t.next!="}"?r=sk(t):r=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:r,expr:e}}function NV(t,e){let n=t.nodeTypes,r=n[e];if(r)return[r];let i=[];for(let s in n){let a=n[s];a.isInGroup(e)&&i.push(a)}return i.length==0&&t.err("No node type or group '"+e+"' found"),i}function PV(t){if(t.eat("(")){let e=IM(t);return t.eat(")")||t.err("Missing closing paren"),e}else if(/\W/.test(t.next))t.err("Unexpected token '"+t.next+"'");else{let e=NV(t,t.next).map(n=>(t.inline==null?t.inline=n.isInline:t.inline!=n.isInline&&t.err("Mixing inline and block content"),{type:"name",value:n}));return t.pos++,e.length==1?e[0]:{type:"choice",exprs:e}}}function OV(t){let e=[[]];return i(s(t,0),n()),e;function n(){return e.push([])-1}function r(a,u,c){let f={term:c,to:u};return e[a].push(f),f}function i(a,u){a.forEach(c=>c.to=u)}function s(a,u){if(a.type=="choice")return a.exprs.reduce((c,f)=>c.concat(s(f,u)),[]);if(a.type=="seq")for(let c=0;;c++){let f=s(a.exprs[c],u);if(c==a.exprs.length-1)return f;i(f,u=n())}else if(a.type=="star"){let c=n();return r(u,c),i(s(a.expr,c),c),[r(c)]}else if(a.type=="plus"){let c=n();return i(s(a.expr,u),c),i(s(a.expr,c),c),[r(c)]}else{if(a.type=="opt")return[r(u)].concat(s(a.expr,u));if(a.type=="range"){let c=u;for(let f=0;f<a.min;f++){let h=n();i(s(a.expr,c),h),c=h}if(a.max==-1)i(s(a.expr,c),c);else for(let f=a.min;f<a.max;f++){let h=n();r(c,h),i(s(a.expr,c),h),c=h}return[r(c)]}else{if(a.type=="name")return[r(u,void 0,a.value)];throw new Error("Unknown expr type")}}}}function FM(t,e){return e-t}function ok(t,e){let n=[];return r(e),n.sort(FM);function r(i){let s=t[i];if(s.length==1&&!s[0].term)return r(s[0].to);n.push(i);for(let a=0;a<s.length;a++){let{term:u,to:c}=s[a];!u&&n.indexOf(c)==-1&&r(c)}}}function LV(t){let e=Object.create(null);return n(ok(t,0));function n(r){let i=[];r.forEach(a=>{t[a].forEach(({term:u,to:c})=>{if(!u)return;let f;for(let h=0;h<i.length;h++)i[h][0]==u&&(f=i[h][1]);ok(t,c).forEach(h=>{f||i.push([u,f=[]]),f.indexOf(h)==-1&&f.push(h)})})});let s=e[r.join(",")]=new na(r.indexOf(t.length-1)>-1);for(let a=0;a<i.length;a++){let u=i[a][1].sort(FM);s.next.push({type:i[a][0],next:e[u.join(",")]||n(u)})}return s}}function zV(t,e){for(let n=0,r=[t];n<r.length;n++){let i=r[n],s=!i.validEnd,a=[];for(let u=0;u<i.next.length;u++){let{type:c,next:f}=i.next[u];a.push(c.name),s&&!(c.isText||c.hasRequiredAttrs())&&(s=!1),r.indexOf(f)==-1&&r.push(f)}s&&e.err("Only non-generatable nodes ("+a.join(", ")+") in a required position (see https://prosemirror.net/docs/guide/#generatable)")}}function KM(t){let e=Object.create(null);for(let n in t){let r=t[n];if(!r.hasDefault)return null;e[n]=r.default}return e}function jM(t,e){let n=Object.create(null);for(let r in t){let i=e&&e[r];if(i===void 0){let s=t[r];if(s.hasDefault)i=s.default;else throw new RangeError("No value supplied for attribute "+r)}n[r]=i}return n}function _M(t,e,n,r){for(let i in e)if(!(i in t))throw new RangeError(`Unsupported attribute ${i} for ${n} of type ${r}`);for(let i in t)t[i].validate&&t[i].validate(e[i])}function HM(t,e){let n=Object.create(null);if(e)for(let r in e)n[r]=new FV(t,r,e[r]);return n}let ak=class VM{constructor(e,n,r){this.name=e,this.schema=n,this.spec=r,this.markSet=null,this.groups=r.group?r.group.split(" "):[],this.attrs=HM(e,r.attrs),this.defaultAttrs=KM(this.attrs),this.contentMatch=null,this.inlineContent=null,this.isBlock=!(r.inline||e=="text"),this.isText=e=="text"}get isInline(){return!this.isBlock}get isTextblock(){return this.isBlock&&this.inlineContent}get isLeaf(){return this.contentMatch==na.empty}get isAtom(){return this.isLeaf||!!this.spec.atom}isInGroup(e){return this.groups.indexOf(e)>-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0;return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:jM(this.attrs,e)}create(e=null,n,r){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new Rs(this,this.computeAttrs(e),ae.from(n),it.setFrom(r))}createChecked(e=null,n,r){return n=ae.from(n),this.checkContent(n),new Rs(this,this.computeAttrs(e),n,it.setFrom(r))}createAndFill(e=null,n,r){if(e=this.computeAttrs(e),n=ae.from(n),n.size){let a=this.contentMatch.fillBefore(n);if(!a)return null;n=a.append(n)}let i=this.contentMatch.matchFragment(n),s=i&&i.fillBefore(ae.empty,!0);return s?new Rs(this,e,n.append(s),it.setFrom(r)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let r=0;r<e.childCount;r++)if(!this.allowsMarks(e.child(r).marks))return!1;return!0}checkContent(e){if(!this.validContent(e))throw new RangeError(`Invalid content for node ${this.name}: ${e.toString().slice(0,50)}`)}checkAttrs(e){_M(this.attrs,e,"node",this.name)}allowsMarkType(e){return this.markSet==null||this.markSet.indexOf(e)>-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;n<e.length;n++)if(!this.allowsMarkType(e[n].type))return!1;return!0}allowedMarks(e){if(this.markSet==null)return e;let n;for(let r=0;r<e.length;r++)this.allowsMarkType(e[r].type)?n&&n.push(e[r]):n||(n=e.slice(0,r));return n?n.length?n:it.none:e}static compile(e,n){let r=Object.create(null);e.forEach((s,a)=>r[s]=new VM(s,n,a));let i=n.spec.topNode||"doc";if(!r[i])throw new RangeError("Schema is missing its top node type ('"+i+"')");if(!r.text)throw new RangeError("Every schema needs a 'text' type");for(let s in r.text.attrs)throw new RangeError("The text node type should not have attributes");return r}};function IV(t,e,n){let r=n.split("|");return i=>{let s=i===null?"null":typeof i;if(r.indexOf(s)<0)throw new RangeError(`Expected value of type ${r} for attribute ${e} on type ${t}, got ${s}`)}}class FV{constructor(e,n,r){this.hasDefault=Object.prototype.hasOwnProperty.call(r,"default"),this.default=r.default,this.validate=typeof r.validate=="string"?IV(e,n,r.validate):r.validate}get isRequired(){return!this.hasDefault}}class xm{constructor(e,n,r,i){this.name=e,this.rank=n,this.schema=r,this.spec=i,this.attrs=HM(e,i.attrs),this.excluded=null;let s=KM(this.attrs);this.instance=s?new it(this,s):null}create(e=null){return!e&&this.instance?this.instance:new it(this,jM(this.attrs,e))}static compile(e,n){let r=Object.create(null),i=0;return e.forEach((s,a)=>r[s]=new xm(s,i++,n,a)),r}removeFromSet(e){for(var n=0;n<e.length;n++)e[n].type==this&&(e=e.slice(0,n).concat(e.slice(n+1)),n--);return e}isInSet(e){for(let n=0;n<e.length;n++)if(e[n].type==this)return e[n]}checkAttrs(e){_M(this.attrs,e,"mark",this.name)}excludes(e){return this.excluded.indexOf(e)>-1}}class UM{constructor(e){this.linebreakReplacement=null,this.cached=Object.create(null);let n=this.spec={};for(let i in e)n[i]=e[i];n.nodes=Jt.from(e.nodes),n.marks=Jt.from(e.marks||{}),this.nodes=ak.compile(this.spec.nodes,this),this.marks=xm.compile(this.spec.marks,this);let r=Object.create(null);for(let i in this.nodes){if(i in this.marks)throw new RangeError(i+" can not be both a node and a mark");let s=this.nodes[i],a=s.spec.content||"",u=s.spec.marks;if(s.contentMatch=r[a]||(r[a]=na.parse(a,this.nodes)),s.inlineContent=s.contentMatch.inlineContent,s.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!s.isInline||!s.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=s}s.markSet=u=="_"?null:u?lk(this,u.split(" ")):u==""||!s.inlineContent?[]:null}for(let i in this.marks){let s=this.marks[i],a=s.spec.excludes;s.excluded=a==null?[s]:a==""?[]:lk(this,a.split(" "))}this.nodeFromJSON=i=>Rs.fromJSON(this,i),this.markFromJSON=i=>it.fromJSON(this,i),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,r,i){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof ak){if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}else throw new RangeError("Invalid node type: "+e);return e.createChecked(n,r,i)}text(e,n){let r=this.nodes.text;return new ap(r,r.defaultAttrs,e,it.setFrom(n))}mark(e,n){return typeof e=="string"&&(e=this.marks[e]),e.create(n)}nodeType(e){let n=this.nodes[e];if(!n)throw new RangeError("Unknown node type: "+e);return n}}function lk(t,e){let n=[];for(let r=0;r<e.length;r++){let i=e[r],s=t.marks[i],a=s;if(s)n.push(s);else for(let u in t.marks){let c=t.marks[u];(i=="_"||c.spec.group&&c.spec.group.split(" ").indexOf(i)>-1)&&n.push(a=c)}if(!a)throw new SyntaxError("Unknown mark type: '"+e[r]+"'")}return n}function KV(t){return t.tag!=null}function jV(t){return t.style!=null}class Bi{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let r=this.matchedStyles=[];n.forEach(i=>{if(KV(i))this.tags.push(i);else if(jV(i)){let s=/[^=]*/.exec(i.style)[0];r.indexOf(s)<0&&r.push(s),this.styles.push(i)}}),this.normalizeLists=!this.tags.some(i=>{if(!/^(ul|ol)\b/.test(i.tag)||!i.node)return!1;let s=e.nodes[i.node];return s.contentMatch.matchType(s)})}parse(e,n={}){let r=new ck(this,n,!1);return r.addAll(e,it.none,n.from,n.to),r.finish()}parseSlice(e,n={}){let r=new ck(this,n,!0);return r.addAll(e,it.none,n.from,n.to),he.maxOpen(r.finish())}matchTag(e,n,r){for(let i=r?this.tags.indexOf(r)+1:0;i<this.tags.length;i++){let s=this.tags[i];if(VV(e,s.tag)&&(s.namespace===void 0||e.namespaceURI==s.namespace)&&(!s.context||n.matchesContext(s.context))){if(s.getAttrs){let a=s.getAttrs(e);if(a===!1)continue;s.attrs=a||void 0}return s}}}matchStyle(e,n,r,i){for(let s=i?this.styles.indexOf(i)+1:0;s<this.styles.length;s++){let a=this.styles[s],u=a.style;if(!(u.indexOf(e)!=0||a.context&&!r.matchesContext(a.context)||u.length>e.length&&(u.charCodeAt(e.length)!=61||u.slice(e.length+1)!=n))){if(a.getAttrs){let c=a.getAttrs(n);if(c===!1)continue;a.attrs=c||void 0}return a}}}static schemaRules(e){let n=[];function r(i){let s=i.priority==null?50:i.priority,a=0;for(;a<n.length;a++){let u=n[a];if((u.priority==null?50:u.priority)<s)break}n.splice(a,0,i)}for(let i in e.marks){let s=e.marks[i].spec.parseDOM;s&&s.forEach(a=>{r(a=dk(a)),a.mark||a.ignore||a.clearMark||(a.mark=i)})}for(let i in e.nodes){let s=e.nodes[i].spec.parseDOM;s&&s.forEach(a=>{r(a=dk(a)),a.node||a.ignore||a.mark||(a.node=i)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new Bi(e,Bi.schemaRules(e)))}}const qM={address:!0,article:!0,aside:!0,blockquote:!0,body:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},_V={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},GM={ol:!0,ul:!0},Fc=1,cy=2,fc=4;function uk(t,e,n){return e!=null?(e?Fc:0)|(e==="full"?cy:0):t&&t.whitespace=="pre"?Fc|cy:n&~fc}class eh{constructor(e,n,r,i,s,a){this.type=e,this.attrs=n,this.marks=r,this.solid=i,this.options=a,this.content=[],this.activeMarks=it.none,this.match=s||(a&fc?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let n=this.type.contentMatch.fillBefore(ae.from(e));if(n)this.match=this.type.contentMatch.matchFragment(n);else{let r=this.type.contentMatch,i;return(i=r.findWrapping(e.type))?(this.match=r,i):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&Fc)){let r=this.content[this.content.length-1],i;if(r&&r.isText&&(i=/[ \t\r\n\u000c]+$/.exec(r.text))){let s=r;r.text.length==i[0].length?this.content.pop():this.content[this.content.length-1]=s.withText(s.text.slice(0,s.text.length-i[0].length))}}let n=ae.from(this.content);return!e&&this.match&&(n=n.append(this.match.fillBefore(ae.empty,!0))),this.type?this.type.create(this.attrs,n,this.marks):n}inlineContext(e){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:e.parentNode&&!qM.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class ck{constructor(e,n,r){this.parser=e,this.options=n,this.isOpen=r,this.open=0,this.localPreserveWS=!1;let i=n.topNode,s,a=uk(null,n.preserveWhitespace,0)|(r?fc:0);i?s=new eh(i.type,i.attrs,it.none,!0,n.topMatch||i.type.contentMatch,a):r?s=new eh(null,null,it.none,!0,null,a):s=new eh(e.schema.topNodeType,null,it.none,!0,null,a),this.nodes=[s],this.find=n.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(e,n){e.nodeType==3?this.addTextNode(e,n):e.nodeType==1&&this.addElement(e,n)}addTextNode(e,n){let r=e.nodeValue,i=this.top,s=i.options&cy?"full":this.localPreserveWS||(i.options&Fc)>0,{schema:a}=this.parser;if(s==="full"||i.inlineContext(e)||/[^ \t\r\n\u000c]/.test(r)){if(s)if(s==="full")r=r.replace(/\r\n?/g,`
|
|
23
|
-
`);else if(a.linebreakReplacement&&/[\r\n]/.test(r)&&this.top.findWrapping(a.linebreakReplacement.create())){let u=r.split(/\r?\n|\r/);for(let c=0;c<u.length;c++)c&&this.insertNode(a.linebreakReplacement.create(),n,!0),u[c]&&this.insertNode(a.text(u[c]),n,!/\S/.test(u[c]));r=""}else r=r.replace(/\r?\n|\r/g," ");else if(r=r.replace(/[ \t\r\n\u000c]+/g," "),/^[ \t\r\n\u000c]/.test(r)&&this.open==this.nodes.length-1){let u=i.content[i.content.length-1],c=e.previousSibling;(!u||c&&c.nodeName=="BR"||u.isText&&/[ \t\r\n\u000c]$/.test(u.text))&&(r=r.slice(1))}r&&this.insertNode(a.text(r),n,!/\S/.test(r)),this.findInText(e)}else this.findInside(e)}addElement(e,n,r){let i=this.localPreserveWS,s=this.top;(e.tagName=="PRE"||/pre/.test(e.style&&e.style.whiteSpace))&&(this.localPreserveWS=!0);let a=e.nodeName.toLowerCase(),u;GM.hasOwnProperty(a)&&this.parser.normalizeLists&&HV(e);let c=this.options.ruleFromNode&&this.options.ruleFromNode(e)||(u=this.parser.matchTag(e,this,r));e:if(c?c.ignore:_V.hasOwnProperty(a))this.findInside(e),this.ignoreFallback(e,n);else if(!c||c.skip||c.closeParent){c&&c.closeParent?this.open=Math.max(0,this.open-1):c&&c.skip.nodeType&&(e=c.skip);let f,h=this.needsBlock;if(qM.hasOwnProperty(a))s.content.length&&s.content[0].isInline&&this.open&&(this.open--,s=this.top),f=!0,s.type||(this.needsBlock=!0);else if(!e.firstChild){this.leafFallback(e,n);break e}let m=c&&c.skip?n:this.readStyles(e,n);m&&this.addAll(e,m),f&&this.sync(s),this.needsBlock=h}else{let f=this.readStyles(e,n);f&&this.addElementByRule(e,c,f,c.consuming===!1?u:void 0)}this.localPreserveWS=i}leafFallback(e,n){e.nodeName=="BR"&&this.top.type&&this.top.type.inlineContent&&this.addTextNode(e.ownerDocument.createTextNode(`
|
|
24
|
-
`),n)}ignoreFallback(e,n){e.nodeName=="BR"&&(!this.top.type||!this.top.type.inlineContent)&&this.findPlace(this.parser.schema.text("-"),n,!0)}readStyles(e,n){let r=e.style;if(r&&r.length)for(let i=0;i<this.parser.matchedStyles.length;i++){let s=this.parser.matchedStyles[i],a=r.getPropertyValue(s);if(a)for(let u=void 0;;){let c=this.parser.matchStyle(s,a,this,u);if(!c)break;if(c.ignore)return null;if(c.clearMark?n=n.filter(f=>!c.clearMark(f)):n=n.concat(this.parser.schema.marks[c.mark].create(c.attrs)),c.consuming===!1)u=c;else break}}return n}addElementByRule(e,n,r,i){let s,a;if(n.node)if(a=this.parser.schema.nodes[n.node],a.isLeaf)this.insertNode(a.create(n.attrs),r,e.nodeName=="BR")||this.leafFallback(e,r);else{let c=this.enter(a,n.attrs||null,r,n.preserveWhitespace);c&&(s=!0,r=c)}else{let c=this.parser.schema.marks[n.mark];r=r.concat(c.create(n.attrs))}let u=this.top;if(a&&a.isLeaf)this.findInside(e);else if(i)this.addElement(e,r,i);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(c=>this.insertNode(c,r,!1));else{let c=e;typeof n.contentElement=="string"?c=e.querySelector(n.contentElement):typeof n.contentElement=="function"?c=n.contentElement(e):n.contentElement&&(c=n.contentElement),this.findAround(e,c,!0),this.addAll(c,r),this.findAround(e,c,!1)}s&&this.sync(u)&&this.open--}addAll(e,n,r,i){let s=r||0;for(let a=r?e.childNodes[r]:e.firstChild,u=i==null?null:e.childNodes[i];a!=u;a=a.nextSibling,++s)this.findAtPoint(e,s),this.addDOM(a,n);this.findAtPoint(e,s)}findPlace(e,n,r){let i,s;for(let a=this.open,u=0;a>=0;a--){let c=this.nodes[a],f=c.findWrapping(e);if(f&&(!i||i.length>f.length+u)&&(i=f,s=c,!f.length))break;if(c.solid){if(r)break;u+=2}}if(!i)return null;this.sync(s);for(let a=0;a<i.length;a++)n=this.enterInner(i[a],null,n,!1);return n}insertNode(e,n,r){if(e.isInline&&this.needsBlock&&!this.top.type){let s=this.textblockFromContext();s&&(n=this.enterInner(s,null,n))}let i=this.findPlace(e,n,r);if(i){this.closeExtra();let s=this.top;s.match&&(s.match=s.match.matchType(e.type));let a=it.none;for(let u of i.concat(e.marks))(s.type?s.type.allowsMarkType(u.type):fk(u.type,e.type))&&(a=u.addToSet(a));return s.content.push(e.mark(a)),!0}return!1}enter(e,n,r,i){let s=this.findPlace(e.create(n),r,!1);return s&&(s=this.enterInner(e,n,r,!0,i)),s}enterInner(e,n,r,i=!1,s){this.closeExtra();let a=this.top;a.match=a.match&&a.match.matchType(e);let u=uk(e,s,a.options);a.options&fc&&a.content.length==0&&(u|=fc);let c=it.none;return r=r.filter(f=>(a.type?a.type.allowsMarkType(f.type):fk(f.type,e))?(c=f.addToSet(c),!1):!0),this.nodes.push(new eh(e,n,c,i,null,u)),this.open++,r}closeExtra(e=!1){let n=this.nodes.length-1;if(n>this.open){for(;n>this.open;n--)this.nodes[n-1].content.push(this.nodes[n].finish(e));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!!(this.isOpen||this.options.topOpen))}sync(e){for(let n=this.open;n>=0;n--){if(this.nodes[n]==e)return this.open=n,!0;this.localPreserveWS&&(this.nodes[n].options|=Fc)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let r=this.nodes[n].content;for(let i=r.length-1;i>=0;i--)e+=r[i].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let r=0;r<this.find.length;r++)this.find[r].node==e&&this.find[r].offset==n&&(this.find[r].pos=this.currentPos)}findInside(e){if(this.find)for(let n=0;n<this.find.length;n++)this.find[n].pos==null&&e.nodeType==1&&e.contains(this.find[n].node)&&(this.find[n].pos=this.currentPos)}findAround(e,n,r){if(e!=n&&this.find)for(let i=0;i<this.find.length;i++)this.find[i].pos==null&&e.nodeType==1&&e.contains(this.find[i].node)&&n.compareDocumentPosition(this.find[i].node)&(r?2:4)&&(this.find[i].pos=this.currentPos)}findInText(e){if(this.find)for(let n=0;n<this.find.length;n++)this.find[n].node==e&&(this.find[n].pos=this.currentPos-(e.nodeValue.length-this.find[n].offset))}matchesContext(e){if(e.indexOf("|")>-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),r=this.options.context,i=!this.isOpen&&(!r||r.parent.type==this.nodes[0].type),s=-(r?r.depth+1:0)+(i?0:1),a=(u,c)=>{for(;u>=0;u--){let f=n[u];if(f==""){if(u==n.length-1||u==0)continue;for(;c>=s;c--)if(a(u-1,c))return!0;return!1}else{let h=c>0||c==0&&i?this.nodes[c].type:r&&c>=s?r.node(c-s).type:null;if(!h||h.name!=f&&!h.isInGroup(f))return!1;c--}}return!0};return a(n.length-1,this.open)}textblockFromContext(){let e=this.options.context;if(e)for(let n=e.depth;n>=0;n--){let r=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(r&&r.isTextblock&&r.defaultAttrs)return r}for(let n in this.parser.schema.nodes){let r=this.parser.schema.nodes[n];if(r.isTextblock&&r.defaultAttrs)return r}}}function HV(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let r=e.nodeType==1?e.nodeName.toLowerCase():null;r&&GM.hasOwnProperty(r)&&n?(n.appendChild(e),e=n):r=="li"?n=e:r&&(n=null)}}function VV(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function dk(t){let e={};for(let n in t)e[n]=t[n];return e}function fk(t,e){let n=e.schema.nodes;for(let r in n){let i=n[r];if(!i.allowsMarkType(t))continue;let s=[],a=u=>{s.push(u);for(let c=0;c<u.edgeCount;c++){let{type:f,next:h}=u.edge(c);if(f==e||s.indexOf(h)<0&&a(h))return!0}};if(a(i.contentMatch))return!0}}class pa{constructor(e,n){this.nodes=e,this.marks=n}serializeFragment(e,n={},r){r||(r=th(n).createDocumentFragment());let i=r,s=[];return e.forEach(a=>{if(s.length||a.marks.length){let u=0,c=0;for(;u<s.length&&c<a.marks.length;){let f=a.marks[c];if(!this.marks[f.type.name]){c++;continue}if(!f.eq(s[u][0])||f.type.spec.spanning===!1)break;u++,c++}for(;u<s.length;)i=s.pop()[1];for(;c<a.marks.length;){let f=a.marks[c++],h=this.serializeMark(f,a.isInline,n);h&&(s.push([f,i]),i.appendChild(h.dom),i=h.contentDOM||h.dom)}}i.appendChild(this.serializeNodeInner(a,n))}),r}serializeNodeInner(e,n){if(e.isText)return th(n).createTextNode(e.text);let{dom:r,contentDOM:i}=$h(th(n),this.nodes[e.type.name](e),null,e.attrs);if(i){if(e.isLeaf)throw new RangeError("Content hole not allowed in a leaf node spec");this.serializeFragment(e.content,n,i)}return r}serializeNode(e,n={}){let r=this.serializeNodeInner(e,n);for(let i=e.marks.length-1;i>=0;i--){let s=this.serializeMark(e.marks[i],e.isInline,n);s&&((s.contentDOM||s.dom).appendChild(r),r=s.dom)}return r}serializeMark(e,n,r={}){let i=this.marks[e.type.name];return i&&$h(th(r),i(e,n),null,e.attrs)}static renderSpec(e,n,r=null,i){return typeof n=="string"?{dom:e.createTextNode(n)}:$h(e,n,r,i)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new pa(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=hk(e.nodes);return n.text||(n.text=r=>r.text),n}static marksFromSchema(e){return hk(e.marks)}}function hk(t){let e={};for(let n in t){let r=t[n].spec.toDOM;r&&(e[n]=r)}return e}function th(t){return t.document||window.document}const pk=new WeakMap;function UV(t){let e=pk.get(t);return e===void 0&&pk.set(t,e=qV(t)),e}function qV(t){let e=null;function n(r){if(r&&typeof r=="object")if(Array.isArray(r))if(typeof r[0]=="string")e||(e=[]),e.push(r);else for(let i=0;i<r.length;i++)n(r[i]);else for(let i in r)n(r[i])}return n(t),e}function $h(t,e,n,r){if(e.nodeType==1)return{dom:e};if(e.dom&&e.dom.nodeType==1)return e;let i=e[0],s;if(typeof i!="string")throw new RangeError("Invalid array passed to renderSpec");if(r&&(s=UV(r))&&s.indexOf(e)>-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let a=i.indexOf(" ");a>0&&(n=i.slice(0,a),i=i.slice(a+1));let u,c=n?t.createElementNS(n,i):t.createElement(i),f=e[1],h=1;if(f&&typeof f=="object"&&f.nodeType==null&&!Array.isArray(f)){h=2;for(let m in f)if(f[m]!=null){let g=m.indexOf(" ");g>0?c.setAttributeNS(m.slice(0,g),m.slice(g+1),f[m]):m=="style"&&c.style?c.style.cssText=f[m]:c.setAttribute(m,f[m])}}for(let m=h;m<e.length;m++){let g=e[m];if(g===0){if(m<e.length-1||m>h)throw new RangeError("Content hole must be the only child of its parent node");return{dom:c,contentDOM:c}}else if(typeof g=="string")c.appendChild(t.createTextNode(g));else{let{dom:b,contentDOM:v}=$h(t,g,n,r);if(c.appendChild(b),v){if(u)throw new RangeError("Multiple content holes");u=v}}}return{dom:c,contentDOM:u}}const WM=65535,QM=Math.pow(2,16);function GV(t,e){return t+e*QM}function mk(t){return t&WM}function WV(t){return(t-(t&WM))/QM}const YM=1,XM=2,Th=4,JM=8;class dy{constructor(e,n,r){this.pos=e,this.delInfo=n,this.recover=r}get deleted(){return(this.delInfo&JM)>0}get deletedBefore(){return(this.delInfo&(YM|Th))>0}get deletedAfter(){return(this.delInfo&(XM|Th))>0}get deletedAcross(){return(this.delInfo&Th)>0}}class Wn{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&Wn.empty)return Wn.empty}recover(e){let n=0,r=mk(e);if(!this.inverted)for(let i=0;i<r;i++)n+=this.ranges[i*3+2]-this.ranges[i*3+1];return this.ranges[r*3]+n+WV(e)}mapResult(e,n=1){return this._map(e,n,!1)}map(e,n=1){return this._map(e,n,!0)}_map(e,n,r){let i=0,s=this.inverted?2:1,a=this.inverted?1:2;for(let u=0;u<this.ranges.length;u+=3){let c=this.ranges[u]-(this.inverted?i:0);if(c>e)break;let f=this.ranges[u+s],h=this.ranges[u+a],m=c+f;if(e<=m){let g=f?e==c?-1:e==m?1:n:n,b=c+i+(g<0?0:h);if(r)return b;let v=e==(n<0?c:m)?null:GV(u/3,e-c),C=e==c?XM:e==m?YM:Th;return(n<0?e!=c:e!=m)&&(C|=JM),new dy(b,C,v)}i+=h-f}return r?e+i:new dy(e+i,0,null)}touches(e,n){let r=0,i=mk(n),s=this.inverted?2:1,a=this.inverted?1:2;for(let u=0;u<this.ranges.length;u+=3){let c=this.ranges[u]-(this.inverted?r:0);if(c>e)break;let f=this.ranges[u+s],h=c+f;if(e<=h&&u==i*3)return!0;r+=this.ranges[u+a]-f}return!1}forEach(e){let n=this.inverted?2:1,r=this.inverted?1:2;for(let i=0,s=0;i<this.ranges.length;i+=3){let a=this.ranges[i],u=a-(this.inverted?s:0),c=a+(this.inverted?0:s),f=this.ranges[i+n],h=this.ranges[i+r];e(u,u+f,c,c+h),s+=h-f}}invert(){return new Wn(this.ranges,!this.inverted)}toString(){return(this.inverted?"-":"")+JSON.stringify(this.ranges)}static offset(e){return e==0?Wn.empty:new Wn(e<0?[0,-e,0]:[0,0,e])}}Wn.empty=new Wn([]);class Kc{constructor(e,n,r=0,i=e?e.length:0){this.mirror=n,this.from=r,this.to=i,this._maps=e||[],this.ownData=!(e||n)}get maps(){return this._maps}slice(e=0,n=this.maps.length){return new Kc(this._maps,this.mirror,e,n)}appendMap(e,n){this.ownData||(this._maps=this._maps.slice(),this.mirror=this.mirror&&this.mirror.slice(),this.ownData=!0),this.to=this._maps.push(e),n!=null&&this.setMirror(this._maps.length-1,n)}appendMapping(e){for(let n=0,r=this._maps.length;n<e._maps.length;n++){let i=e.getMirror(n);this.appendMap(e._maps[n],i!=null&&i<n?r+i:void 0)}}getMirror(e){if(this.mirror){for(let n=0;n<this.mirror.length;n++)if(this.mirror[n]==e)return this.mirror[n+(n%2?-1:1)]}}setMirror(e,n){this.mirror||(this.mirror=[]),this.mirror.push(e,n)}appendMappingInverted(e){for(let n=e.maps.length-1,r=this._maps.length+e._maps.length;n>=0;n--){let i=e.getMirror(n);this.appendMap(e._maps[n].invert(),i!=null&&i>n?r-i-1:void 0)}}invert(){let e=new Kc;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let r=this.from;r<this.to;r++)e=this._maps[r].map(e,n);return e}mapResult(e,n=1){return this._map(e,n,!1)}_map(e,n,r){let i=0;for(let s=this.from;s<this.to;s++){let a=this._maps[s],u=a.mapResult(e,n);if(u.recover!=null){let c=this.getMirror(s);if(c!=null&&c>s&&c<this.to){s=c,e=this._maps[c].recover(u.recover);continue}}i|=u.delInfo,e=u.pos}return r?e:new dy(e,i,null)}}const j0=Object.create(null);class pn{getMap(){return Wn.empty}merge(e){return null}static fromJSON(e,n){if(!n||!n.stepType)throw new RangeError("Invalid input for Step.fromJSON");let r=j0[n.stepType];if(!r)throw new RangeError(`No step type ${n.stepType} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in j0)throw new RangeError("Duplicate use of step JSON ID "+e);return j0[e]=n,n.prototype.jsonID=e,n}}class Pt{constructor(e,n){this.doc=e,this.failed=n}static ok(e){return new Pt(e,null)}static fail(e){return new Pt(null,e)}static fromReplace(e,n,r,i){try{return Pt.ok(e.replace(n,r,i))}catch(s){if(s instanceof zc)return Pt.fail(s.message);throw s}}}function G3(t,e,n){let r=[];for(let i=0;i<t.childCount;i++){let s=t.child(i);s.content.size&&(s=s.copy(G3(s.content,e,s))),s.isInline&&(s=e(s,n,i)),r.push(s)}return ae.fromArray(r)}class Ts extends pn{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=e.resolve(this.from),i=r.node(r.sharedDepth(this.to)),s=new he(G3(n.content,(a,u)=>!a.isAtom||!u.type.allowsMarkType(this.mark.type)?a:a.mark(this.mark.addToSet(a.marks)),i),n.openStart,n.openEnd);return Pt.fromReplace(e,this.from,this.to,s)}invert(){return new $r(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new Ts(n.pos,r.pos,this.mark)}merge(e){return e instanceof Ts&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new Ts(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new Ts(n.from,n.to,e.markFromJSON(n.mark))}}pn.jsonID("addMark",Ts);class $r extends pn{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=new he(G3(n.content,i=>i.mark(this.mark.removeFromSet(i.marks)),e),n.openStart,n.openEnd);return Pt.fromReplace(e,this.from,this.to,r)}invert(){return new Ts(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new $r(n.pos,r.pos,this.mark)}merge(e){return e instanceof $r&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new $r(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new $r(n.from,n.to,e.markFromJSON(n.mark))}}pn.jsonID("removeMark",$r);class As extends pn{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return Pt.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return Pt.fromReplace(e,this.pos,this.pos+1,new he(ae.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let r=this.mark.addToSet(n.marks);if(r.length==n.marks.length){for(let i=0;i<n.marks.length;i++)if(!n.marks[i].isInSet(r))return new As(this.pos,n.marks[i]);return new As(this.pos,this.mark)}}return new ra(this.pos,this.mark)}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new As(n.pos,this.mark)}toJSON(){return{stepType:"addNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for AddNodeMarkStep.fromJSON");return new As(n.pos,e.markFromJSON(n.mark))}}pn.jsonID("addNodeMark",As);class ra extends pn{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return Pt.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.removeFromSet(n.marks));return Pt.fromReplace(e,this.pos,this.pos+1,new he(ae.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);return!n||!this.mark.isInSet(n.marks)?this:new As(this.pos,this.mark)}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new ra(n.pos,this.mark)}toJSON(){return{stepType:"removeNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for RemoveNodeMarkStep.fromJSON");return new ra(n.pos,e.markFromJSON(n.mark))}}pn.jsonID("removeNodeMark",ra);class Rt extends pn{constructor(e,n,r,i=!1){super(),this.from=e,this.to=n,this.slice=r,this.structure=i}apply(e){return this.structure&&fy(e,this.from,this.to)?Pt.fail("Structure replace would overwrite content"):Pt.fromReplace(e,this.from,this.to,this.slice)}getMap(){return new Wn([this.from,this.to-this.from,this.slice.size])}invert(e){return new Rt(this.from,this.from+this.slice.size,e.slice(this.from,this.to))}map(e){let n=e.mapResult(this.to,-1),r=this.from==this.to&&Rt.MAP_BIAS<0?n:e.mapResult(this.from,1);return r.deletedAcross&&n.deletedAcross?null:new Rt(r.pos,Math.max(r.pos,n.pos),this.slice,this.structure)}merge(e){if(!(e instanceof Rt)||e.structure||this.structure)return null;if(this.from+this.slice.size==e.from&&!this.slice.openEnd&&!e.slice.openStart){let n=this.slice.size+e.slice.size==0?he.empty:new he(this.slice.content.append(e.slice.content),this.slice.openStart,e.slice.openEnd);return new Rt(this.from,this.to+(e.to-e.from),n,this.structure)}else if(e.to==this.from&&!this.slice.openStart&&!e.slice.openEnd){let n=this.slice.size+e.slice.size==0?he.empty:new he(e.slice.content.append(this.slice.content),e.slice.openStart,this.slice.openEnd);return new Rt(e.from,this.to,n,this.structure)}else return null}toJSON(){let e={stepType:"replace",from:this.from,to:this.to};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for ReplaceStep.fromJSON");return new Rt(n.from,n.to,he.fromJSON(e,n.slice),!!n.structure)}}Rt.MAP_BIAS=1;pn.jsonID("replace",Rt);class Vt extends pn{constructor(e,n,r,i,s,a,u=!1){super(),this.from=e,this.to=n,this.gapFrom=r,this.gapTo=i,this.slice=s,this.insert=a,this.structure=u}apply(e){if(this.structure&&(fy(e,this.from,this.gapFrom)||fy(e,this.gapTo,this.to)))return Pt.fail("Structure gap-replace would overwrite content");let n=e.slice(this.gapFrom,this.gapTo);if(n.openStart||n.openEnd)return Pt.fail("Gap is not a flat range");let r=this.slice.insertAt(this.insert,n.content);return r?Pt.fromReplace(e,this.from,this.to,r):Pt.fail("Content does not fit in gap")}getMap(){return new Wn([this.from,this.gapFrom-this.from,this.insert,this.gapTo,this.to-this.gapTo,this.slice.size-this.insert])}invert(e){let n=this.gapTo-this.gapFrom;return new Vt(this.from,this.from+this.slice.size+n,this.from+this.insert,this.from+this.insert+n,e.slice(this.from,this.to).removeBetween(this.gapFrom-this.from,this.gapTo-this.from),this.gapFrom-this.from,this.structure)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1),i=this.from==this.gapFrom?n.pos:e.map(this.gapFrom,-1),s=this.to==this.gapTo?r.pos:e.map(this.gapTo,1);return n.deletedAcross&&r.deletedAcross||i<n.pos||s>r.pos?null:new Vt(n.pos,r.pos,i,s,this.slice,this.insert,this.structure)}toJSON(){let e={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number"||typeof n.gapFrom!="number"||typeof n.gapTo!="number"||typeof n.insert!="number")throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new Vt(n.from,n.to,n.gapFrom,n.gapTo,he.fromJSON(e,n.slice),n.insert,!!n.structure)}}pn.jsonID("replaceAround",Vt);function fy(t,e,n){let r=t.resolve(e),i=n-e,s=r.depth;for(;i>0&&s>0&&r.indexAfter(s)==r.node(s).childCount;)s--,i--;if(i>0){let a=r.node(s).maybeChild(r.indexAfter(s));for(;i>0;){if(!a||a.isLeaf)return!0;a=a.firstChild,i--}}return!1}function QV(t,e,n,r){let i=[],s=[],a,u;t.doc.nodesBetween(e,n,(c,f,h)=>{if(!c.isInline)return;let m=c.marks;if(!r.isInSet(m)&&h.type.allowsMarkType(r.type)){let g=Math.max(f,e),b=Math.min(f+c.nodeSize,n),v=r.addToSet(m);for(let C=0;C<m.length;C++)m[C].isInSet(v)||(a&&a.to==g&&a.mark.eq(m[C])?a.to=b:i.push(a=new $r(g,b,m[C])));u&&u.to==g?u.to=b:s.push(u=new Ts(g,b,r))}}),i.forEach(c=>t.step(c)),s.forEach(c=>t.step(c))}function YV(t,e,n,r){let i=[],s=0;t.doc.nodesBetween(e,n,(a,u)=>{if(!a.isInline)return;s++;let c=null;if(r instanceof xm){let f=a.marks,h;for(;h=r.isInSet(f);)(c||(c=[])).push(h),f=h.removeFromSet(f)}else r?r.isInSet(a.marks)&&(c=[r]):c=a.marks;if(c&&c.length){let f=Math.min(u+a.nodeSize,n);for(let h=0;h<c.length;h++){let m=c[h],g;for(let b=0;b<i.length;b++){let v=i[b];v.step==s-1&&m.eq(i[b].style)&&(g=v)}g?(g.to=f,g.step=s):i.push({style:m,from:Math.max(u,e),to:f,step:s})}}}),i.forEach(a=>t.step(new $r(a.from,a.to,a.style)))}function W3(t,e,n,r=n.contentMatch,i=!0){let s=t.doc.nodeAt(e),a=[],u=e+1;for(let c=0;c<s.childCount;c++){let f=s.child(c),h=u+f.nodeSize,m=r.matchType(f.type);if(!m)a.push(new Rt(u,h,he.empty));else{r=m;for(let g=0;g<f.marks.length;g++)n.allowsMarkType(f.marks[g].type)||t.step(new $r(u,h,f.marks[g]));if(i&&f.isText&&n.whitespace!="pre"){let g,b=/\r?\n|\r/g,v;for(;g=b.exec(f.text);)v||(v=new he(ae.from(n.schema.text(" ",n.allowedMarks(f.marks))),0,0)),a.push(new Rt(u+g.index,u+g.index+g[0].length,v))}}u=h}if(!r.validEnd){let c=r.fillBefore(ae.empty,!0);t.replace(u,u,new he(c,0,0))}for(let c=a.length-1;c>=0;c--)t.step(a[c])}function XV(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function Il(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let r=t.depth,i=0,s=0;;--r){let a=t.$from.node(r),u=t.$from.index(r)+i,c=t.$to.indexAfter(r)-s;if(r<t.depth&&a.canReplace(u,c,n))return r;if(r==0||a.type.spec.isolating||!XV(a,u,c))break;u&&(i=1),c<a.childCount&&(s=1)}return null}function JV(t,e,n){let{$from:r,$to:i,depth:s}=e,a=r.before(s+1),u=i.after(s+1),c=a,f=u,h=ae.empty,m=0;for(let v=s,C=!1;v>n;v--)C||r.index(v)>0?(C=!0,h=ae.from(r.node(v).copy(h)),m++):c--;let g=ae.empty,b=0;for(let v=s,C=!1;v>n;v--)C||i.after(v+1)<i.end(v)?(C=!0,g=ae.from(i.node(v).copy(g)),b++):f++;t.step(new Vt(c,f,a,u,new he(h.append(g),m,b),h.size-m,!0))}function Q3(t,e,n=null,r=t){let i=ZV(t,e),s=i&&eU(r,e);return s?i.map(gk).concat({type:e,attrs:n}).concat(s.map(gk)):null}function gk(t){return{type:t,attrs:null}}function ZV(t,e){let{parent:n,startIndex:r,endIndex:i}=t,s=n.contentMatchAt(r).findWrapping(e);if(!s)return null;let a=s.length?s[0]:e;return n.canReplaceWith(r,i,a)?s:null}function eU(t,e){let{parent:n,startIndex:r,endIndex:i}=t,s=n.child(r),a=e.contentMatch.findWrapping(s.type);if(!a)return null;let c=(a.length?a[a.length-1]:e).contentMatch;for(let f=r;c&&f<i;f++)c=c.matchType(n.child(f).type);return!c||!c.validEnd?null:a}function tU(t,e,n){let r=ae.empty;for(let a=n.length-1;a>=0;a--){if(r.size){let u=n[a].type.contentMatch.matchFragment(r);if(!u||!u.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}r=ae.from(n[a].type.create(n[a].attrs,r))}let i=e.start,s=e.end;t.step(new Vt(i,s,i,s,new he(r,0,0),n.length,!0))}function nU(t,e,n,r,i){if(!r.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let s=t.steps.length;t.doc.nodesBetween(e,n,(a,u)=>{let c=typeof i=="function"?i(a):i;if(a.isTextblock&&!a.hasMarkup(r,c)&&rU(t.doc,t.mapping.slice(s).map(u),r)){let f=null;if(r.schema.linebreakReplacement){let b=r.whitespace=="pre",v=!!r.contentMatch.matchType(r.schema.linebreakReplacement);b&&!v?f=!1:!b&&v&&(f=!0)}f===!1&&e9(t,a,u,s),W3(t,t.mapping.slice(s).map(u,1),r,void 0,f===null);let h=t.mapping.slice(s),m=h.map(u,1),g=h.map(u+a.nodeSize,1);return t.step(new Vt(m,g,m+1,g-1,new he(ae.from(r.create(c,null,a.marks)),0,0),1,!0)),f===!0&&ZM(t,a,u,s),!1}})}function ZM(t,e,n,r){e.forEach((i,s)=>{if(i.isText){let a,u=/\r?\n|\r/g;for(;a=u.exec(i.text);){let c=t.mapping.slice(r).map(n+1+s+a.index);t.replaceWith(c,c+1,e.type.schema.linebreakReplacement.create())}}})}function e9(t,e,n,r){e.forEach((i,s)=>{if(i.type==i.type.schema.linebreakReplacement){let a=t.mapping.slice(r).map(n+1+s);t.replaceWith(a,a+1,e.type.schema.text(`
|
|
25
|
-
`))}})}function rU(t,e,n){let r=t.resolve(e),i=r.index();return r.parent.canReplaceWith(i,i+1,n)}function iU(t,e,n,r,i){let s=t.doc.nodeAt(e);if(!s)throw new RangeError("No node at given position");n||(n=s.type);let a=n.create(r,null,i||s.marks);if(s.isLeaf)return t.replaceWith(e,e+s.nodeSize,a);if(!n.validContent(s.content))throw new RangeError("Invalid content for node type "+n.name);t.step(new Vt(e,e+s.nodeSize,e+1,e+s.nodeSize-1,new he(ae.from(a),0,0),1,!0))}function Mi(t,e,n=1,r){let i=t.resolve(e),s=i.depth-n,a=r&&r[r.length-1]||i.parent;if(s<0||i.parent.type.spec.isolating||!i.parent.canReplace(i.index(),i.parent.childCount)||!a.type.validContent(i.parent.content.cutByIndex(i.index(),i.parent.childCount)))return!1;for(let f=i.depth-1,h=n-2;f>s;f--,h--){let m=i.node(f),g=i.index(f);if(m.type.spec.isolating)return!1;let b=m.content.cutByIndex(g,m.childCount),v=r&&r[h+1];v&&(b=b.replaceChild(0,v.type.create(v.attrs)));let C=r&&r[h]||m;if(!m.canReplace(g+1,m.childCount)||!C.type.validContent(b))return!1}let u=i.indexAfter(s),c=r&&r[0];return i.node(s).canReplaceWith(u,u,c?c.type:i.node(s+1).type)}function sU(t,e,n=1,r){let i=t.doc.resolve(e),s=ae.empty,a=ae.empty;for(let u=i.depth,c=i.depth-n,f=n-1;u>c;u--,f--){s=ae.from(i.node(u).copy(s));let h=r&&r[f];a=ae.from(h?h.type.create(h.attrs,a):i.node(u).copy(a))}t.step(new Rt(e,e,new he(s.append(a),n,n),!0))}function Js(t,e){let n=t.resolve(e),r=n.index();return t9(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(r,r+1)}function oU(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:r}=t.type.schema;for(let i=0;i<e.childCount;i++){let s=e.child(i),a=s.type==r?t.type.schema.nodes.text:s.type;if(n=n.matchType(a),!n||!t.type.allowsMarks(s.marks))return!1}return n.validEnd}function t9(t,e){return!!(t&&e&&!t.isLeaf&&oU(t,e))}function Cm(t,e,n=-1){let r=t.resolve(e);for(let i=r.depth;;i--){let s,a,u=r.index(i);if(i==r.depth?(s=r.nodeBefore,a=r.nodeAfter):n>0?(s=r.node(i+1),u++,a=r.node(i).maybeChild(u)):(s=r.node(i).maybeChild(u-1),a=r.node(i+1)),s&&!s.isTextblock&&t9(s,a)&&r.node(i).canReplace(u,u+1))return e;if(i==0)break;e=n<0?r.before(i):r.after(i)}}function aU(t,e,n){let r=null,{linebreakReplacement:i}=t.doc.type.schema,s=t.doc.resolve(e-n),a=s.node().type;if(i&&a.inlineContent){let h=a.whitespace=="pre",m=!!a.contentMatch.matchType(i);h&&!m?r=!1:!h&&m&&(r=!0)}let u=t.steps.length;if(r===!1){let h=t.doc.resolve(e+n);e9(t,h.node(),h.before(),u)}a.inlineContent&&W3(t,e+n-1,a,s.node().contentMatchAt(s.index()),r==null);let c=t.mapping.slice(u),f=c.map(e-n);if(t.step(new Rt(f,c.map(e+n,-1),he.empty,!0)),r===!0){let h=t.doc.resolve(f);ZM(t,h.node(),h.before(),t.steps.length)}return t}function lU(t,e,n){let r=t.resolve(e);if(r.parent.canReplaceWith(r.index(),r.index(),n))return e;if(r.parentOffset==0)for(let i=r.depth-1;i>=0;i--){let s=r.index(i);if(r.node(i).canReplaceWith(s,s,n))return r.before(i+1);if(s>0)return null}if(r.parentOffset==r.parent.content.size)for(let i=r.depth-1;i>=0;i--){let s=r.indexAfter(i);if(r.node(i).canReplaceWith(s,s,n))return r.after(i+1);if(s<r.node(i).childCount)return null}return null}function n9(t,e,n){let r=t.resolve(e);if(!n.content.size)return e;let i=n.content;for(let s=0;s<n.openStart;s++)i=i.firstChild.content;for(let s=1;s<=(n.openStart==0&&n.size?2:1);s++)for(let a=r.depth;a>=0;a--){let u=a==r.depth?0:r.pos<=(r.start(a+1)+r.end(a+1))/2?-1:1,c=r.index(a)+(u>0?1:0),f=r.node(a),h=!1;if(s==1)h=f.canReplace(c,c,i);else{let m=f.contentMatchAt(c).findWrapping(i.firstChild.type);h=m&&f.canReplaceWith(c,c,m[0])}if(h)return u==0?r.pos:u<0?r.before(a+1):r.after(a+1)}return null}function Em(t,e,n=e,r=he.empty){if(e==n&&!r.size)return null;let i=t.resolve(e),s=t.resolve(n);return r9(i,s,r)?new Rt(e,n,r):new uU(i,s,r).fit()}function r9(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}class uU{constructor(e,n,r){this.$from=e,this.$to=n,this.unplaced=r,this.frontier=[],this.placed=ae.empty;for(let i=0;i<=e.depth;i++){let s=e.node(i);this.frontier.push({type:s.type,match:s.contentMatchAt(e.indexAfter(i))})}for(let i=e.depth;i>0;i--)this.placed=ae.from(e.node(i).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let f=this.findFittable();f?this.placeNodes(f):this.openMore()||this.dropNode()}let e=this.mustMoveInline(),n=this.placed.size-this.depth-this.$from.depth,r=this.$from,i=this.close(e<0?this.$to:r.doc.resolve(e));if(!i)return null;let s=this.placed,a=r.depth,u=i.depth;for(;a&&u&&s.childCount==1;)s=s.firstChild.content,a--,u--;let c=new he(s,a,u);return e>-1?new Vt(r.pos,e,this.$to.pos,this.$to.end(),c,n):c.size||r.pos!=this.$to.pos?new Rt(r.pos,i.pos,c):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,r=0,i=this.unplaced.openEnd;r<e;r++){let s=n.firstChild;if(n.childCount>1&&(i=0),s.type.spec.isolating&&i<=r){e=r;break}n=s.content}for(let n=1;n<=2;n++)for(let r=n==1?e:this.unplaced.openStart;r>=0;r--){let i,s=null;r?(s=_0(this.unplaced.content,r-1).firstChild,i=s.content):i=this.unplaced.content;let a=i.firstChild;for(let u=this.depth;u>=0;u--){let{type:c,match:f}=this.frontier[u],h,m=null;if(n==1&&(a?f.matchType(a.type)||(m=f.fillBefore(ae.from(a),!1)):s&&c.compatibleContent(s.type)))return{sliceDepth:r,frontierDepth:u,parent:s,inject:m};if(n==2&&a&&(h=f.findWrapping(a.type)))return{sliceDepth:r,frontierDepth:u,parent:s,wrap:h};if(s&&f.matchType(s.type))break}}}openMore(){let{content:e,openStart:n,openEnd:r}=this.unplaced,i=_0(e,n);return!i.childCount||i.firstChild.isLeaf?!1:(this.unplaced=new he(e,n+1,Math.max(r,i.size+n>=e.size-r?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:r}=this.unplaced,i=_0(e,n);if(i.childCount<=1&&n>0){let s=e.size-n<=n+i.size;this.unplaced=new he(Ju(e,n-1,1),n-1,s?n-1:r)}else this.unplaced=new he(Ju(e,n,1),n,r)}placeNodes({sliceDepth:e,frontierDepth:n,parent:r,inject:i,wrap:s}){for(;this.depth>n;)this.closeFrontierNode();if(s)for(let C=0;C<s.length;C++)this.openFrontierNode(s[C]);let a=this.unplaced,u=r?r.content:a.content,c=a.openStart-e,f=0,h=[],{match:m,type:g}=this.frontier[n];if(i){for(let C=0;C<i.childCount;C++)h.push(i.child(C));m=m.matchFragment(i)}let b=u.size+e-(a.content.size-a.openEnd);for(;f<u.childCount;){let C=u.child(f),E=m.matchType(C.type);if(!E)break;f++,(f>1||c==0||C.content.size)&&(m=E,h.push(i9(C.mark(g.allowedMarks(C.marks)),f==1?c:0,f==u.childCount?b:-1)))}let v=f==u.childCount;v||(b=-1),this.placed=Zu(this.placed,n,ae.from(h)),this.frontier[n].match=m,v&&b<0&&r&&r.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let C=0,E=u;C<b;C++){let k=E.lastChild;this.frontier.push({type:k.type,match:k.contentMatchAt(k.childCount)}),E=k.content}this.unplaced=v?e==0?he.empty:new he(Ju(a.content,e-1,1),e-1,b<0?a.openEnd:e-1):new he(Ju(a.content,e,f),a.openStart,a.openEnd)}mustMoveInline(){if(!this.$to.parent.isTextblock)return-1;let e=this.frontier[this.depth],n;if(!e.type.isTextblock||!H0(this.$to,this.$to.depth,e.type,e.match,!1)||this.$to.depth==this.depth&&(n=this.findCloseLevel(this.$to))&&n.depth==this.depth)return-1;let{depth:r}=this.$to,i=this.$to.after(r);for(;r>1&&i==this.$to.end(--r);)++i;return i}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:r,type:i}=this.frontier[n],s=n<e.depth&&e.end(n+1)==e.pos+(e.depth-(n+1)),a=H0(e,n,i,r,s);if(a){for(let u=n-1;u>=0;u--){let{match:c,type:f}=this.frontier[u],h=H0(e,u,f,c,!0);if(!h||h.childCount)continue e}return{depth:n,fit:a,move:s?e.doc.resolve(e.after(n+1)):e}}}}close(e){let n=this.findCloseLevel(e);if(!n)return null;for(;this.depth>n.depth;)this.closeFrontierNode();n.fit.childCount&&(this.placed=Zu(this.placed,n.depth,n.fit)),e=n.move;for(let r=n.depth+1;r<=e.depth;r++){let i=e.node(r),s=i.type.contentMatch.fillBefore(i.content,!0,e.index(r));this.openFrontierNode(i.type,i.attrs,s)}return e}openFrontierNode(e,n=null,r){let i=this.frontier[this.depth];i.match=i.match.matchType(e),this.placed=Zu(this.placed,this.depth,ae.from(e.create(n,r))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(ae.empty,!0);n.childCount&&(this.placed=Zu(this.placed,this.frontier.length,n))}}function Ju(t,e,n){return e==0?t.cutByIndex(n,t.childCount):t.replaceChild(0,t.firstChild.copy(Ju(t.firstChild.content,e-1,n)))}function Zu(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(Zu(t.lastChild.content,e-1,n)))}function _0(t,e){for(let n=0;n<e;n++)t=t.firstChild.content;return t}function i9(t,e,n){if(e<=0)return t;let r=t.content;return e>1&&(r=r.replaceChild(0,i9(r.firstChild,e-1,r.childCount==1?n-1:0))),e>0&&(r=t.type.contentMatch.fillBefore(r).append(r),n<=0&&(r=r.append(t.type.contentMatch.matchFragment(r).fillBefore(ae.empty,!0)))),t.copy(r)}function H0(t,e,n,r,i){let s=t.node(e),a=i?t.indexAfter(e):t.index(e);if(a==s.childCount&&!n.compatibleContent(s.type))return null;let u=r.fillBefore(s.content,!0,a);return u&&!cU(n,s.content,a)?u:null}function cU(t,e,n){for(let r=n;r<e.childCount;r++)if(!t.allowsMarks(e.child(r).marks))return!0;return!1}function dU(t){return t.spec.defining||t.spec.definingForContent}function fU(t,e,n,r){if(!r.size)return t.deleteRange(e,n);let i=t.doc.resolve(e),s=t.doc.resolve(n);if(r9(i,s,r))return t.step(new Rt(e,n,r));let a=o9(i,s);a[a.length-1]==0&&a.pop();let u=-(i.depth+1);a.unshift(u);for(let g=i.depth,b=i.pos-1;g>0;g--,b--){let v=i.node(g).type.spec;if(v.defining||v.definingAsContext||v.isolating)break;a.indexOf(g)>-1?u=g:i.before(g)==b&&a.splice(1,0,-g)}let c=a.indexOf(u),f=[],h=r.openStart;for(let g=r.content,b=0;;b++){let v=g.firstChild;if(f.push(v),b==r.openStart)break;g=v.content}for(let g=h-1;g>=0;g--){let b=f[g],v=dU(b.type);if(v&&!b.sameMarkup(i.node(Math.abs(u)-1)))h=g;else if(v||!b.type.isTextblock)break}for(let g=r.openStart;g>=0;g--){let b=(g+h+1)%(r.openStart+1),v=f[b];if(v)for(let C=0;C<a.length;C++){let E=a[(C+c)%a.length],k=!0;E<0&&(k=!1,E=-E);let T=i.node(E-1),$=i.index(E-1);if(T.canReplaceWith($,$,v.type,v.marks))return t.replace(i.before(E),k?s.after(E):n,new he(s9(r.content,0,r.openStart,b),b,r.openEnd))}}let m=t.steps.length;for(let g=a.length-1;g>=0&&(t.replace(e,n,r),!(t.steps.length>m));g--){let b=a[g];b<0||(e=i.before(b),n=s.after(b))}}function s9(t,e,n,r,i){if(e<n){let s=t.firstChild;t=t.replaceChild(0,s.copy(s9(s.content,e+1,n,r,s)))}if(e>r){let s=i.contentMatchAt(0),a=s.fillBefore(t).append(t);t=a.append(s.matchFragment(a).fillBefore(ae.empty,!0))}return t}function hU(t,e,n,r){if(!r.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let i=lU(t.doc,e,r.type);i!=null&&(e=n=i)}t.replaceRange(e,n,new he(ae.from(r),0,0))}function pU(t,e,n){let r=t.doc.resolve(e),i=t.doc.resolve(n);if(r.parent.isTextblock&&i.parent.isTextblock&&r.start()!=i.start()&&r.parentOffset==0&&i.parentOffset==0){let a=r.sharedDepth(n),u=!1;for(let c=r.depth;c>a;c--)r.node(c).type.spec.isolating&&(u=!0);for(let c=i.depth;c>a;c--)i.node(c).type.spec.isolating&&(u=!0);if(!u){for(let c=r.depth;c>0&&e==r.start(c);c--)e=r.before(c);for(let c=i.depth;c>0&&n==i.start(c);c--)n=i.before(c);r=t.doc.resolve(e),i=t.doc.resolve(n)}}let s=o9(r,i);for(let a=0;a<s.length;a++){let u=s[a],c=a==s.length-1;if(c&&u==0||r.node(u).type.contentMatch.validEnd)return t.delete(r.start(u),i.end(u));if(u>0&&(c||r.node(u-1).canReplace(r.index(u-1),i.indexAfter(u-1))))return t.delete(r.before(u),i.after(u))}for(let a=1;a<=r.depth&&a<=i.depth;a++)if(e-r.start(a)==r.depth-a&&n>r.end(a)&&i.end(a)-n!=i.depth-a&&r.start(a-1)==i.start(a-1)&&r.node(a-1).canReplace(r.index(a-1),i.index(a-1)))return t.delete(r.before(a),n);t.delete(e,n)}function o9(t,e){let n=[],r=Math.min(t.depth,e.depth);for(let i=r;i>=0;i--){let s=t.start(i);if(s<t.pos-(t.depth-i)||e.end(i)>e.pos+(e.depth-i)||t.node(i).type.spec.isolating||e.node(i).type.spec.isolating)break;(s==e.start(i)||i==t.depth&&i==e.depth&&t.parent.inlineContent&&e.parent.inlineContent&&i&&e.start(i-1)==s-1)&&n.push(i)}return n}class yl extends pn{constructor(e,n,r){super(),this.pos=e,this.attr=n,this.value=r}apply(e){let n=e.nodeAt(this.pos);if(!n)return Pt.fail("No node at attribute step's position");let r=Object.create(null);for(let s in n.attrs)r[s]=n.attrs[s];r[this.attr]=this.value;let i=n.type.create(r,null,n.marks);return Pt.fromReplace(e,this.pos,this.pos+1,new he(ae.from(i),0,n.isLeaf?0:1))}getMap(){return Wn.empty}invert(e){return new yl(this.pos,this.attr,e.nodeAt(this.pos).attrs[this.attr])}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new yl(n.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.pos!="number"||typeof n.attr!="string")throw new RangeError("Invalid input for AttrStep.fromJSON");return new yl(n.pos,n.attr,n.value)}}pn.jsonID("attr",yl);class jc extends pn{constructor(e,n){super(),this.attr=e,this.value=n}apply(e){let n=Object.create(null);for(let i in e.attrs)n[i]=e.attrs[i];n[this.attr]=this.value;let r=e.type.create(n,e.content,e.marks);return Pt.ok(r)}getMap(){return Wn.empty}invert(e){return new jc(this.attr,e.attrs[this.attr])}map(e){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.attr!="string")throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new jc(n.attr,n.value)}}pn.jsonID("docAttr",jc);let $l=class extends Error{};$l=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};$l.prototype=Object.create(Error.prototype);$l.prototype.constructor=$l;$l.prototype.name="TransformError";class a9{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new Kc}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new $l(n.failed);return this}maybeStep(e){let n=e.apply(this.doc);return n.failed||this.addStep(e,n.doc),n}get docChanged(){return this.steps.length>0}changedRange(){let e=1e9,n=-1e9;for(let r=0;r<this.mapping.maps.length;r++){let i=this.mapping.maps[r];r&&(e=i.map(e,1),n=i.map(n,-1)),i.forEach((s,a,u,c)=>{e=Math.min(e,u),n=Math.max(n,c)})}return e==1e9?null:{from:e,to:n}}addStep(e,n){this.docs.push(this.doc),this.steps.push(e),this.mapping.appendMap(e.getMap()),this.doc=n}replace(e,n=e,r=he.empty){let i=Em(this.doc,e,n,r);return i&&this.step(i),this}replaceWith(e,n,r){return this.replace(e,n,new he(ae.from(r),0,0))}delete(e,n){return this.replace(e,n,he.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,r){return fU(this,e,n,r),this}replaceRangeWith(e,n,r){return hU(this,e,n,r),this}deleteRange(e,n){return pU(this,e,n),this}lift(e,n){return JV(this,e,n),this}join(e,n=1){return aU(this,e,n),this}wrap(e,n){return tU(this,e,n),this}setBlockType(e,n=e,r,i=null){return nU(this,e,n,r,i),this}setNodeMarkup(e,n,r=null,i){return iU(this,e,n,r,i),this}setNodeAttribute(e,n,r){return this.step(new yl(e,n,r)),this}setDocAttribute(e,n){return this.step(new jc(e,n)),this}addNodeMark(e,n){return this.step(new As(e,n)),this}removeNodeMark(e,n){let r=this.doc.nodeAt(e);if(!r)throw new RangeError("No node at position "+e);if(n instanceof it)n.isInSet(r.marks)&&this.step(new ra(e,n));else{let i=r.marks,s,a=[];for(;s=n.isInSet(i);)a.push(new ra(e,s)),i=s.removeFromSet(i);for(let u=a.length-1;u>=0;u--)this.step(a[u])}return this}split(e,n=1,r){return sU(this,e,n,r),this}addMark(e,n,r){return QV(this,e,n,r),this}removeMark(e,n,r){return YV(this,e,n,r),this}clearIncompatible(e,n,r){return W3(this,e,n,r),this}}const V0=Object.create(null);class Me{constructor(e,n,r){this.$anchor=e,this.$head=n,this.ranges=r||[new mU(e.min(n),e.max(n))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let e=this.ranges;for(let n=0;n<e.length;n++)if(e[n].$from.pos!=e[n].$to.pos)return!1;return!0}content(){return this.$from.doc.slice(this.from,this.to,!0)}replace(e,n=he.empty){let r=n.content.lastChild,i=null;for(let u=0;u<n.openEnd;u++)i=r,r=r.lastChild;let s=e.steps.length,a=this.ranges;for(let u=0;u<a.length;u++){let{$from:c,$to:f}=a[u],h=e.mapping.slice(s);e.replaceRange(h.map(c.pos),h.map(f.pos),u?he.empty:n),u==0&&vk(e,s,(r?r.isInline:i&&i.isTextblock)?-1:1)}}replaceWith(e,n){let r=e.steps.length,i=this.ranges;for(let s=0;s<i.length;s++){let{$from:a,$to:u}=i[s],c=e.mapping.slice(r),f=c.map(a.pos),h=c.map(u.pos);s?e.deleteRange(f,h):(e.replaceRangeWith(f,h,n),vk(e,r,n.isInline?-1:1))}}static findFrom(e,n,r=!1){let i=e.parent.inlineContent?new De(e):cl(e.node(0),e.parent,e.pos,e.index(),n,r);if(i)return i;for(let s=e.depth-1;s>=0;s--){let a=n<0?cl(e.node(0),e.node(s),e.before(s+1),e.index(s),n,r):cl(e.node(0),e.node(s),e.after(s+1),e.index(s)+1,n,r);if(a)return a}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new Qn(e.node(0))}static atStart(e){return cl(e,e,0,0,1)||new Qn(e)}static atEnd(e){return cl(e,e,e.content.size,e.childCount,-1)||new Qn(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let r=V0[n.type];if(!r)throw new RangeError(`No selection type ${n.type} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in V0)throw new RangeError("Duplicate use of selection JSON ID "+e);return V0[e]=n,n.prototype.jsonID=e,n}getBookmark(){return De.between(this.$anchor,this.$head).getBookmark()}}Me.prototype.visible=!0;class mU{constructor(e,n){this.$from=e,this.$to=n}}let bk=!1;function yk(t){!bk&&!t.parent.inlineContent&&(bk=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}class De extends Me{constructor(e,n=e){yk(e),yk(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let r=e.resolve(n.map(this.head));if(!r.parent.inlineContent)return Me.near(r);let i=e.resolve(n.map(this.anchor));return new De(i.parent.inlineContent?i:r,r)}replace(e,n=he.empty){if(super.replace(e,n),n==he.empty){let r=this.$from.marksAcross(this.$to);r&&e.ensureMarks(r)}}eq(e){return e instanceof De&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new km(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(e,n){if(typeof n.anchor!="number"||typeof n.head!="number")throw new RangeError("Invalid input for TextSelection.fromJSON");return new De(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,r=n){let i=e.resolve(n);return new this(i,r==n?i:e.resolve(r))}static between(e,n,r){let i=e.pos-n.pos;if((!r||i)&&(r=i>=0?1:-1),!n.parent.inlineContent){let s=Me.findFrom(n,r,!0)||Me.findFrom(n,-r,!0);if(s)n=s.$head;else return Me.near(n,r)}return e.parent.inlineContent||(i==0?e=n:(e=(Me.findFrom(e,-r,!0)||Me.findFrom(e,r,!0)).$anchor,e.pos<n.pos!=i<0&&(e=n))),new De(e,n)}}Me.jsonID("text",De);class km{constructor(e,n){this.anchor=e,this.head=n}map(e){return new km(e.map(this.anchor),e.map(this.head))}resolve(e){return De.between(e.resolve(this.anchor),e.resolve(this.head))}}class Ce extends Me{constructor(e){let n=e.nodeAfter,r=e.node(0).resolve(e.pos+n.nodeSize);super(e,r),this.node=n}map(e,n){let{deleted:r,pos:i}=n.mapResult(this.anchor),s=e.resolve(i);return r?Me.near(s):new Ce(s)}content(){return new he(ae.from(this.node),0,0)}eq(e){return e instanceof Ce&&e.anchor==this.anchor}toJSON(){return{type:"node",anchor:this.anchor}}getBookmark(){return new Y3(this.anchor)}static fromJSON(e,n){if(typeof n.anchor!="number")throw new RangeError("Invalid input for NodeSelection.fromJSON");return new Ce(e.resolve(n.anchor))}static create(e,n){return new Ce(e.resolve(n))}static isSelectable(e){return!e.isText&&e.type.spec.selectable!==!1}}Ce.prototype.visible=!1;Me.jsonID("node",Ce);class Y3{constructor(e){this.anchor=e}map(e){let{deleted:n,pos:r}=e.mapResult(this.anchor);return n?new km(r,r):new Y3(r)}resolve(e){let n=e.resolve(this.anchor),r=n.nodeAfter;return r&&Ce.isSelectable(r)?new Ce(n):Me.near(n)}}class Qn extends Me{constructor(e){super(e.resolve(0),e.resolve(e.content.size))}replace(e,n=he.empty){if(n==he.empty){e.delete(0,e.doc.content.size);let r=Me.atStart(e.doc);r.eq(e.selection)||e.setSelection(r)}else super.replace(e,n)}toJSON(){return{type:"all"}}static fromJSON(e){return new Qn(e)}map(e){return new Qn(e)}eq(e){return e instanceof Qn}getBookmark(){return gU}}Me.jsonID("all",Qn);const gU={map(){return this},resolve(t){return new Qn(t)}};function cl(t,e,n,r,i,s=!1){if(e.inlineContent)return De.create(t,n);for(let a=r-(i>0?0:1);i>0?a<e.childCount:a>=0;a+=i){let u=e.child(a);if(u.isAtom){if(!s&&Ce.isSelectable(u))return Ce.create(t,n-(i<0?u.nodeSize:0))}else{let c=cl(t,u,n+i,i<0?u.childCount:0,i,s);if(c)return c}n+=u.nodeSize*i}return null}function vk(t,e,n){let r=t.steps.length-1;if(r<e)return;let i=t.steps[r];if(!(i instanceof Rt||i instanceof Vt))return;let s=t.mapping.maps[r],a;s.forEach((u,c,f,h)=>{a==null&&(a=h)}),t.setSelection(Me.near(t.doc.resolve(a),n))}const xk=1,nh=2,Ck=4;class bU extends a9{constructor(e){super(e.doc),this.curSelectionFor=0,this.updated=0,this.meta=Object.create(null),this.time=Date.now(),this.curSelection=e.selection,this.storedMarks=e.storedMarks}get selection(){return this.curSelectionFor<this.steps.length&&(this.curSelection=this.curSelection.map(this.doc,this.mapping.slice(this.curSelectionFor)),this.curSelectionFor=this.steps.length),this.curSelection}setSelection(e){if(e.$from.doc!=this.doc)throw new RangeError("Selection passed to setSelection must point at the current document");return this.curSelection=e,this.curSelectionFor=this.steps.length,this.updated=(this.updated|xk)&~nh,this.storedMarks=null,this}get selectionSet(){return(this.updated&xk)>0}setStoredMarks(e){return this.storedMarks=e,this.updated|=nh,this}ensureMarks(e){return it.sameSet(this.storedMarks||this.selection.$from.marks(),e)||this.setStoredMarks(e),this}addStoredMark(e){return this.ensureMarks(e.addToSet(this.storedMarks||this.selection.$head.marks()))}removeStoredMark(e){return this.ensureMarks(e.removeFromSet(this.storedMarks||this.selection.$head.marks()))}get storedMarksSet(){return(this.updated&nh)>0}addStep(e,n){super.addStep(e,n),this.updated=this.updated&~nh,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,n=!0){let r=this.selection;return n&&(e=e.mark(this.storedMarks||(r.empty?r.$from.marks():r.$from.marksAcross(r.$to)||it.none))),r.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,r){let i=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(i.text(e),!0):this.deleteSelection();{if(r==null&&(r=n),!e)return this.deleteRange(n,r);let s=this.storedMarks;if(!s){let a=this.doc.resolve(n);s=r==n?a.marks():a.marksAcross(this.doc.resolve(r))}return this.replaceRangeWith(n,r,i.text(e,s)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(Me.near(this.selection.$to)),this}}setMeta(e,n){return this.meta[typeof e=="string"?e:e.key]=n,this}getMeta(e){return this.meta[typeof e=="string"?e:e.key]}get isGeneric(){for(let e in this.meta)return!1;return!0}scrollIntoView(){return this.updated|=Ck,this}get scrolledIntoView(){return(this.updated&Ck)>0}}function Ek(t,e){return!e||!t?t:t.bind(e)}class ec{constructor(e,n,r){this.name=e,this.init=Ek(n.init,r),this.apply=Ek(n.apply,r)}}const yU=[new ec("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new ec("selection",{init(t,e){return t.selection||Me.atStart(e.doc)},apply(t){return t.selection}}),new ec("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,r){return r.selection.$cursor?t.storedMarks:null}}),new ec("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})];class U0{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=yU.slice(),n&&n.forEach(r=>{if(this.pluginsByKey[r.key])throw new RangeError("Adding different instances of a keyed plugin ("+r.key+")");this.plugins.push(r),this.pluginsByKey[r.key]=r,r.spec.state&&this.fields.push(new ec(r.key,r.spec.state,r))})}}class Lo{constructor(e){this.config=e}get schema(){return this.config.schema}get plugins(){return this.config.plugins}apply(e){return this.applyTransaction(e).state}filterTransaction(e,n=-1){for(let r=0;r<this.config.plugins.length;r++)if(r!=n){let i=this.config.plugins[r];if(i.spec.filterTransaction&&!i.spec.filterTransaction.call(i,e,this))return!1}return!0}applyTransaction(e){if(!this.filterTransaction(e))return{state:this,transactions:[]};let n=[e],r=this.applyInner(e),i=null;for(;;){let s=!1;for(let a=0;a<this.config.plugins.length;a++){let u=this.config.plugins[a];if(u.spec.appendTransaction){let c=i?i[a].n:0,f=i?i[a].state:this,h=c<n.length&&u.spec.appendTransaction.call(u,c?n.slice(c):n,f,r);if(h&&r.filterTransaction(h,a)){if(h.setMeta("appendedTransaction",e),!i){i=[];for(let m=0;m<this.config.plugins.length;m++)i.push(m<a?{state:r,n:n.length}:{state:this,n:0})}n.push(h),r=r.applyInner(h),s=!0}i&&(i[a]={state:r,n:n.length})}}if(!s)return{state:r,transactions:n}}}applyInner(e){if(!e.before.eq(this.doc))throw new RangeError("Applying a mismatched transaction");let n=new Lo(this.config),r=this.config.fields;for(let i=0;i<r.length;i++){let s=r[i];n[s.name]=s.apply(e,this[s.name],this,n)}return n}get tr(){return new bU(this)}static create(e){let n=new U0(e.doc?e.doc.type.schema:e.schema,e.plugins),r=new Lo(n);for(let i=0;i<n.fields.length;i++)r[n.fields[i].name]=n.fields[i].init(e,r);return r}reconfigure(e){let n=new U0(this.schema,e.plugins),r=n.fields,i=new Lo(n);for(let s=0;s<r.length;s++){let a=r[s].name;i[a]=this.hasOwnProperty(a)?this[a]:r[s].init(e,i)}return i}toJSON(e){let n={doc:this.doc.toJSON(),selection:this.selection.toJSON()};if(this.storedMarks&&(n.storedMarks=this.storedMarks.map(r=>r.toJSON())),e&&typeof e=="object")for(let r in e){if(r=="doc"||r=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let i=e[r],s=i.spec.state;s&&s.toJSON&&(n[r]=s.toJSON.call(i,this[i.key]))}return n}static fromJSON(e,n,r){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let i=new U0(e.schema,e.plugins),s=new Lo(i);return i.fields.forEach(a=>{if(a.name=="doc")s.doc=Rs.fromJSON(e.schema,n.doc);else if(a.name=="selection")s.selection=Me.fromJSON(s.doc,n.selection);else if(a.name=="storedMarks")n.storedMarks&&(s.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(r)for(let u in r){let c=r[u],f=c.spec.state;if(c.key==a.name&&f&&f.fromJSON&&Object.prototype.hasOwnProperty.call(n,u)){s[a.name]=f.fromJSON.call(c,e,n[u],s);return}}s[a.name]=a.init(e,s)}}),s}}function l9(t,e,n){for(let r in t){let i=t[r];i instanceof Function?i=i.bind(e):r=="handleDOMEvents"&&(i=l9(i,e,{})),n[r]=i}return n}class pt{constructor(e){this.spec=e,this.props={},e.props&&l9(e.props,this,this.props),this.key=e.key?e.key.key:u9("plugin")}getState(e){return e[this.key]}}const q0=Object.create(null);function u9(t){return t in q0?t+"$"+ ++q0[t]:(q0[t]=0,t+"$")}class Kt{constructor(e="key"){this.key=u9(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const c9=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function d9(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}const f9=(t,e,n)=>{let r=d9(t,n);if(!r)return!1;let i=X3(r);if(!i){let a=r.blockRange(),u=a&&Il(a);return u==null?!1:(e&&e(t.tr.lift(a,u).scrollIntoView()),!0)}let s=i.nodeBefore;if(C9(t,i,e,-1))return!0;if(r.parent.content.size==0&&(Tl(s,"end")||Ce.isSelectable(s)))for(let a=r.depth;;a--){let u=Em(t.doc,r.before(a),r.after(a),he.empty);if(u&&u.slice.size<u.to-u.from){if(e){let c=t.tr.step(u);c.setSelection(Tl(s,"end")?Me.findFrom(c.doc.resolve(c.mapping.map(i.pos,-1)),-1):Ce.create(c.doc,i.pos-s.nodeSize)),e(c.scrollIntoView())}return!0}if(a==1||r.node(a-1).childCount>1)break}return s.isAtom&&i.depth==r.depth-1?(e&&e(t.tr.delete(i.pos-s.nodeSize,i.pos).scrollIntoView()),!0):!1},vU=(t,e,n)=>{let r=d9(t,n);if(!r)return!1;let i=X3(r);return i?h9(t,i,e):!1},xU=(t,e,n)=>{let r=m9(t,n);if(!r)return!1;let i=J3(r);return i?h9(t,i,e):!1};function h9(t,e,n){let r=e.nodeBefore,i=r,s=e.pos-1;for(;!i.isTextblock;s--){if(i.type.spec.isolating)return!1;let h=i.lastChild;if(!h)return!1;i=h}let a=e.nodeAfter,u=a,c=e.pos+1;for(;!u.isTextblock;c++){if(u.type.spec.isolating)return!1;let h=u.firstChild;if(!h)return!1;u=h}let f=Em(t.doc,s,c,he.empty);if(!f||f.from!=s||f instanceof Rt&&f.slice.size>=c-s)return!1;if(n){let h=t.tr.step(f);h.setSelection(De.create(h.doc,s)),n(h.scrollIntoView())}return!0}function Tl(t,e,n=!1){for(let r=t;r;r=e=="start"?r.firstChild:r.lastChild){if(r.isTextblock)return!0;if(n&&r.childCount!=1)return!1}return!1}const p9=(t,e,n)=>{let{$head:r,empty:i}=t.selection,s=r;if(!i)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):r.parentOffset>0)return!1;s=X3(r)}let a=s&&s.nodeBefore;return!a||!Ce.isSelectable(a)?!1:(e&&e(t.tr.setSelection(Ce.create(t.doc,s.pos-a.nodeSize)).scrollIntoView()),!0)};function X3(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){if(t.index(e)>0)return t.doc.resolve(t.before(e+1));if(t.node(e).type.spec.isolating)break}return null}function m9(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset<n.parent.content.size)?null:n}const g9=(t,e,n)=>{let r=m9(t,n);if(!r)return!1;let i=J3(r);if(!i)return!1;let s=i.nodeAfter;if(C9(t,i,e,1))return!0;if(r.parent.content.size==0&&(Tl(s,"start")||Ce.isSelectable(s))){let a=Em(t.doc,r.before(),r.after(),he.empty);if(a&&a.slice.size<a.to-a.from){if(e){let u=t.tr.step(a);u.setSelection(Tl(s,"start")?Me.findFrom(u.doc.resolve(u.mapping.map(i.pos)),1):Ce.create(u.doc,u.mapping.map(i.pos))),e(u.scrollIntoView())}return!0}}return s.isAtom&&i.depth==r.depth-1?(e&&e(t.tr.delete(i.pos,i.pos+s.nodeSize).scrollIntoView()),!0):!1},b9=(t,e,n)=>{let{$head:r,empty:i}=t.selection,s=r;if(!i)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):r.parentOffset<r.parent.content.size)return!1;s=J3(r)}let a=s&&s.nodeAfter;return!a||!Ce.isSelectable(a)?!1:(e&&e(t.tr.setSelection(Ce.create(t.doc,s.pos)).scrollIntoView()),!0)};function J3(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){let n=t.node(e);if(t.index(e)+1<n.childCount)return t.doc.resolve(t.after(e+1));if(n.type.spec.isolating)break}return null}const CU=(t,e)=>{let n=t.selection,r=n instanceof Ce,i;if(r){if(n.node.isTextblock||!Js(t.doc,n.from))return!1;i=n.from}else if(i=Cm(t.doc,n.from,-1),i==null)return!1;if(e){let s=t.tr.join(i);r&&s.setSelection(Ce.create(s.doc,i-t.doc.resolve(i).nodeBefore.nodeSize)),e(s.scrollIntoView())}return!0},EU=(t,e)=>{let n=t.selection,r;if(n instanceof Ce){if(n.node.isTextblock||!Js(t.doc,n.to))return!1;r=n.to}else if(r=Cm(t.doc,n.to,1),r==null)return!1;return e&&e(t.tr.join(r).scrollIntoView()),!0},kU=(t,e)=>{let{$from:n,$to:r}=t.selection,i=n.blockRange(r),s=i&&Il(i);return s==null?!1:(e&&e(t.tr.lift(i,s).scrollIntoView()),!0)},y9=(t,e)=>{let{$head:n,$anchor:r}=t.selection;return!n.parent.type.spec.code||!n.sameParent(r)?!1:(e&&e(t.tr.insertText(`
|
|
26
|
-
`).scrollIntoView()),!0)};function Z3(t){for(let e=0;e<t.edgeCount;e++){let{type:n}=t.edge(e);if(n.isTextblock&&!n.hasRequiredAttrs())return n}return null}const DU=(t,e)=>{let{$head:n,$anchor:r}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(r))return!1;let i=n.node(-1),s=n.indexAfter(-1),a=Z3(i.contentMatchAt(s));if(!a||!i.canReplaceWith(s,s,a))return!1;if(e){let u=n.after(),c=t.tr.replaceWith(u,u,a.createAndFill());c.setSelection(Me.near(c.doc.resolve(u),1)),e(c.scrollIntoView())}return!0},v9=(t,e)=>{let n=t.selection,{$from:r,$to:i}=n;if(n instanceof Qn||r.parent.inlineContent||i.parent.inlineContent)return!1;let s=Z3(i.parent.contentMatchAt(i.indexAfter()));if(!s||!s.isTextblock)return!1;if(e){let a=(!r.parentOffset&&i.index()<i.parent.childCount?r:i).pos,u=t.tr.insert(a,s.createAndFill());u.setSelection(De.create(u.doc,a+1)),e(u.scrollIntoView())}return!0},x9=(t,e)=>{let{$cursor:n}=t.selection;if(!n||n.parent.content.size)return!1;if(n.depth>1&&n.after()!=n.end(-1)){let s=n.before();if(Mi(t.doc,s))return e&&e(t.tr.split(s).scrollIntoView()),!0}let r=n.blockRange(),i=r&&Il(r);return i==null?!1:(e&&e(t.tr.lift(r,i).scrollIntoView()),!0)};function SU(t){return(e,n)=>{if(e.selection instanceof Ce&&e.selection.node.isBlock){let{$from:b}=e.selection;return!b.parentOffset||!Mi(e.doc,b.pos)?!1:(n&&n(e.tr.split(b.pos).scrollIntoView()),!0)}if(!e.selection.$from.depth)return!1;let r=e.tr;!e.selection.empty&&(e.selection instanceof De||e.selection instanceof Qn)&&r.deleteSelection();let{$from:i}=r.selection,s=r.steps.length,a=[],u,c,f=!1,h=!1;for(let b=i.depth;;b--)if(i.node(b).isBlock){f=i.end(b)==i.pos+(i.depth-b),h=i.start(b)==i.pos-(i.depth-b),c=Z3(i.node(b-1).contentMatchAt(i.indexAfter(b-1))),a.unshift(f&&c?{type:c}:null),u=b;break}else{if(b==1)return!1;a.unshift(null)}let m=i.pos,g=Mi(r.doc,m,a.length,a);if(g||(a[0]=c?{type:c}:null,g=Mi(r.doc,m,a.length,a)),!g)return!1;if(r.split(m,a.length,a),!f&&h&&i.node(u).type!=c){let b=r.mapping.slice(s),v=b.map(i.before(u)),C=r.doc.resolve(v);c&&i.node(u-1).canReplaceWith(C.index(),C.index()+1,c)&&r.setNodeMarkup(b.map(i.before(u)),c)}return n&&n(r.scrollIntoView()),!0}}const wU=SU(),$U=(t,e)=>{let{$from:n,to:r}=t.selection,i,s=n.sharedDepth(r);return s==0?!1:(i=n.before(s),e&&e(t.tr.setSelection(Ce.create(t.doc,i))),!0)};function TU(t,e,n){let r=e.nodeBefore,i=e.nodeAfter,s=e.index();return!r||!i||!r.type.compatibleContent(i.type)?!1:!r.content.size&&e.parent.canReplace(s-1,s)?(n&&n(t.tr.delete(e.pos-r.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(s,s+1)||!(i.isTextblock||Js(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function C9(t,e,n,r){let i=e.nodeBefore,s=e.nodeAfter,a,u,c=i.type.spec.isolating||s.type.spec.isolating;if(!c&&TU(t,e,n))return!0;let f=!c&&e.parent.canReplace(e.index(),e.index()+1);if(f&&(a=(u=i.contentMatchAt(i.childCount)).findWrapping(s.type))&&u.matchType(a[0]||s.type).validEnd){if(n){let b=e.pos+s.nodeSize,v=ae.empty;for(let k=a.length-1;k>=0;k--)v=ae.from(a[k].create(null,v));v=ae.from(i.copy(v));let C=t.tr.step(new Vt(e.pos-1,b,e.pos,b,new he(v,1,0),a.length,!0)),E=C.doc.resolve(b+2*a.length);E.nodeAfter&&E.nodeAfter.type==i.type&&Js(C.doc,E.pos)&&C.join(E.pos),n(C.scrollIntoView())}return!0}let h=s.type.spec.isolating||r>0&&c?null:Me.findFrom(e,1),m=h&&h.$from.blockRange(h.$to),g=m&&Il(m);if(g!=null&&g>=e.depth)return n&&n(t.tr.lift(m,g).scrollIntoView()),!0;if(f&&Tl(s,"start",!0)&&Tl(i,"end")){let b=i,v=[];for(;v.push(b),!b.isTextblock;)b=b.lastChild;let C=s,E=1;for(;!C.isTextblock;C=C.firstChild)E++;if(b.canReplace(b.childCount,b.childCount,C.content)){if(n){let k=ae.empty;for(let $=v.length-1;$>=0;$--)k=ae.from(v[$].copy(k));let T=t.tr.step(new Vt(e.pos-v.length,e.pos+s.nodeSize,e.pos+E,e.pos+s.nodeSize-E,new he(k,v.length,0),0,!0));n(T.scrollIntoView())}return!0}}return!1}function E9(t){return function(e,n){let r=e.selection,i=t<0?r.$from:r.$to,s=i.depth;for(;i.node(s).isInline;){if(!s)return!1;s--}return i.node(s).isTextblock?(n&&n(e.tr.setSelection(De.create(e.doc,t<0?i.start(s):i.end(s)))),!0):!1}}const AU=E9(-1),BU=E9(1);function MU(t,e=null){return function(n,r){let{$from:i,$to:s}=n.selection,a=i.blockRange(s),u=a&&Q3(a,t,e);return u?(r&&r(n.tr.wrap(a,u).scrollIntoView()),!0):!1}}function kk(t,e=null){return function(n,r){let i=!1;for(let s=0;s<n.selection.ranges.length&&!i;s++){let{$from:{pos:a},$to:{pos:u}}=n.selection.ranges[s];n.doc.nodesBetween(a,u,(c,f)=>{if(i)return!1;if(!(!c.isTextblock||c.hasMarkup(t,e)))if(c.type==t)i=!0;else{let h=n.doc.resolve(f),m=h.index();i=h.parent.canReplaceWith(m,m+1,t)}})}if(!i)return!1;if(r){let s=n.tr;for(let a=0;a<n.selection.ranges.length;a++){let{$from:{pos:u},$to:{pos:c}}=n.selection.ranges[a];s.setBlockType(u,c,t,e)}r(s.scrollIntoView())}return!0}}function e1(...t){return function(e,n,r){for(let i=0;i<t.length;i++)if(t[i](e,n,r))return!0;return!1}}e1(c9,f9,p9);e1(c9,g9,b9);e1(y9,v9,x9,wU);typeof navigator<"u"?/Mac|iP(hone|[oa]d)/.test(navigator.platform):typeof os<"u"&&os.platform&&os.platform()=="darwin";function RU(t,e=null){return function(n,r){let{$from:i,$to:s}=n.selection,a=i.blockRange(s);if(!a)return!1;let u=r?n.tr:null;return NU(u,a,t,e)?(r&&r(u.scrollIntoView()),!0):!1}}function NU(t,e,n,r=null){let i=!1,s=e,a=e.$from.doc;if(e.depth>=2&&e.$from.node(e.depth-1).type.compatibleContent(n)&&e.startIndex==0){if(e.$from.index(e.depth-1)==0)return!1;let c=a.resolve(e.start-2);s=new op(c,c,e.depth),e.endIndex<e.parent.childCount&&(e=new op(e.$from,a.resolve(e.$to.end(e.depth)),e.depth)),i=!0}let u=Q3(s,n,r,e);return u?(t&&PU(t,e,u,i,n),!0):!1}function PU(t,e,n,r,i){let s=ae.empty;for(let h=n.length-1;h>=0;h--)s=ae.from(n[h].type.create(n[h].attrs,s));t.step(new Vt(e.start-(r?2:0),e.end,e.start,e.end,new he(s,0,0),n.length,!0));let a=0;for(let h=0;h<n.length;h++)n[h].type==i&&(a=h+1);let u=n.length-a,c=e.start+n.length-(r?2:0),f=e.parent;for(let h=e.startIndex,m=e.endIndex,g=!0;h<m;h++,g=!1)!g&&Mi(t.doc,c,u)&&(t.split(c,u),c+=2*u),c+=f.child(h).nodeSize;return t}function OU(t){return function(e,n){let{$from:r,$to:i}=e.selection,s=r.blockRange(i,a=>a.childCount>0&&a.firstChild.type==t);return s?n?r.node(s.depth-1).type==t?LU(e,n,t,s):zU(e,n,s):!0:!1}}function LU(t,e,n,r){let i=t.tr,s=r.end,a=r.$to.end(r.depth);s<a&&(i.step(new Vt(s-1,a,s,a,new he(ae.from(n.create(null,r.parent.copy())),1,0),1,!0)),r=new op(i.doc.resolve(r.$from.pos),i.doc.resolve(a),r.depth));const u=Il(r);if(u==null)return!1;i.lift(r,u);let c=i.doc.resolve(i.mapping.map(s,-1)-1);return Js(i.doc,c.pos)&&c.nodeBefore.type==c.nodeAfter.type&&i.join(c.pos),e(i.scrollIntoView()),!0}function zU(t,e,n){let r=t.tr,i=n.parent;for(let b=n.end,v=n.endIndex-1,C=n.startIndex;v>C;v--)b-=i.child(v).nodeSize,r.delete(b-1,b+1);let s=r.doc.resolve(n.start),a=s.nodeAfter;if(r.mapping.map(n.end)!=n.start+s.nodeAfter.nodeSize)return!1;let u=n.startIndex==0,c=n.endIndex==i.childCount,f=s.node(-1),h=s.index(-1);if(!f.canReplace(h+(u?0:1),h+1,a.content.append(c?ae.empty:ae.from(i))))return!1;let m=s.pos,g=m+a.nodeSize;return r.step(new Vt(m-(u?1:0),g+(c?1:0),m+1,g-1,new he((u?ae.empty:ae.from(i.copy(ae.empty))).append(c?ae.empty:ae.from(i.copy(ae.empty))),u?0:1,c?0:1),u?0:1)),e(r.scrollIntoView()),!0}function IU(t){return function(e,n){let{$from:r,$to:i}=e.selection,s=r.blockRange(i,f=>f.childCount>0&&f.firstChild.type==t);if(!s)return!1;let a=s.startIndex;if(a==0)return!1;let u=s.parent,c=u.child(a-1);if(c.type!=t)return!1;if(n){let f=c.lastChild&&c.lastChild.type==u.type,h=ae.from(f?t.create():null),m=new he(ae.from(t.create(null,ae.from(u.type.create(null,h)))),f?3:1,0),g=s.start,b=s.end;n(e.tr.step(new Vt(g-(f?3:1),b,g,b,m,1,!0)).scrollIntoView())}return!0}}const en=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},Al=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e};let hy=null;const ki=function(t,e,n){let r=hy||(hy=document.createRange());return r.setEnd(t,n??t.nodeValue.length),r.setStart(t,e||0),r},FU=function(){hy=null},ia=function(t,e,n,r){return n&&(Dk(t,e,n,r,-1)||Dk(t,e,n,r,1))},KU=/^(img|br|input|textarea|hr)$/i;function Dk(t,e,n,r,i){for(var s;;){if(t==n&&e==r)return!0;if(e==(i<0?0:dr(t))){let a=t.parentNode;if(!a||a.nodeType!=1||cd(t)||KU.test(t.nodeName)||t.contentEditable=="false")return!1;e=en(t)+(i<0?0:1),t=a}else if(t.nodeType==1){let a=t.childNodes[e+(i<0?-1:0)];if(a.nodeType==1&&a.contentEditable=="false")if(!((s=a.pmViewDesc)===null||s===void 0)&&s.ignoreForSelection)e+=i;else return!1;else t=a,e=i<0?dr(t):0}else return!1}}function dr(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function jU(t,e){for(;;){if(t.nodeType==3&&e)return t;if(t.nodeType==1&&e>0){if(t.contentEditable=="false")return null;t=t.childNodes[e-1],e=dr(t)}else if(t.parentNode&&!cd(t))e=en(t),t=t.parentNode;else return null}}function _U(t,e){for(;;){if(t.nodeType==3&&e<t.nodeValue.length)return t;if(t.nodeType==1&&e<t.childNodes.length){if(t.contentEditable=="false")return null;t=t.childNodes[e],e=0}else if(t.parentNode&&!cd(t))e=en(t)+1,t=t.parentNode;else return null}}function HU(t,e,n){for(let r=e==0,i=e==dr(t);r||i;){if(t==n)return!0;let s=en(t);if(t=t.parentNode,!t)return!1;r=r&&s==0,i=i&&s==dr(t)}}function cd(t){let e;for(let n=t;n&&!(e=n.pmViewDesc);n=n.parentNode);return e&&e.node&&e.node.isBlock&&(e.dom==t||e.contentDOM==t)}const Dm=function(t){return t.focusNode&&ia(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)};function $o(t,e){let n=document.createEvent("Event");return n.initEvent("keydown",!0,!0),n.keyCode=t,n.key=n.code=e,n}function VU(t){let e=t.activeElement;for(;e&&e.shadowRoot;)e=e.shadowRoot.activeElement;return e}function UU(t,e,n){if(t.caretPositionFromPoint)try{let r=t.caretPositionFromPoint(e,n);if(r)return{node:r.offsetNode,offset:Math.min(dr(r.offsetNode),r.offset)}}catch{}if(t.caretRangeFromPoint){let r=t.caretRangeFromPoint(e,n);if(r)return{node:r.startContainer,offset:Math.min(dr(r.startContainer),r.startOffset)}}}const Qr=typeof navigator<"u"?navigator:null,Sk=typeof document<"u"?document:null,Zs=Qr&&Qr.userAgent||"",py=/Edge\/(\d+)/.exec(Zs),k9=/MSIE \d/.exec(Zs),my=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(Zs),zn=!!(k9||my||py),Ns=k9?document.documentMode:my?+my[1]:py?+py[1]:0,fr=!zn&&/gecko\/(\d+)/i.test(Zs);fr&&+(/Firefox\/(\d+)/.exec(Zs)||[0,0])[1];const gy=!zn&&/Chrome\/(\d+)/.exec(Zs),nn=!!gy,D9=gy?+gy[1]:0,hn=!zn&&!!Qr&&/Apple Computer/.test(Qr.vendor),Bl=hn&&(/Mobile\/\w+/.test(Zs)||!!Qr&&Qr.maxTouchPoints>2),ur=Bl||(Qr?/Mac/.test(Qr.platform):!1),S9=Qr?/Win/.test(Qr.platform):!1,wi=/Android \d/.test(Zs),dd=!!Sk&&"webkitFontSmoothing"in Sk.documentElement.style,qU=dd?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function GU(t){let e=t.defaultView&&t.defaultView.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.documentElement.clientWidth,top:0,bottom:t.documentElement.clientHeight}}function yi(t,e){return typeof t=="number"?t:t[e]}function WU(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,r=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*r}}function wk(t,e,n){if(!by(e)&&e.left==0)return;let r=t.someProp("scrollThreshold")||0,i=t.someProp("scrollMargin")||5,s=t.dom.ownerDocument;for(let a=n||t.dom;a;){if(a.nodeType!=1){a=Al(a);continue}let u=a,c=u==s.body,f=c?GU(s):WU(u),h=0,m=0;if(e.top<f.top+yi(r,"top")?m=-(f.top-e.top+yi(i,"top")):e.bottom>f.bottom-yi(r,"bottom")&&(m=e.bottom-e.top>f.bottom-f.top?e.top+yi(i,"top")-f.top:e.bottom-f.bottom+yi(i,"bottom")),e.left<f.left+yi(r,"left")?h=-(f.left-e.left+yi(i,"left")):e.right>f.right-yi(r,"right")&&(h=e.right-f.right+yi(i,"right")),h||m)if(c)s.defaultView.scrollBy(h,m);else{let b=u.scrollLeft,v=u.scrollTop;m&&(u.scrollTop+=m),h&&(u.scrollLeft+=h);let C=u.scrollLeft-b,E=u.scrollTop-v;e={left:e.left-C,top:e.top-E,right:e.right-C,bottom:e.bottom-E}}let g=c?"fixed":getComputedStyle(a).position;if(/^(fixed|sticky)$/.test(g))break;a=g=="absolute"?a.offsetParent:Al(a)}}function QU(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),r,i;for(let s=(e.left+e.right)/2,a=n+1;a<Math.min(innerHeight,e.bottom);a+=5){let u=t.root.elementFromPoint(s,a);if(!u||u==t.dom||!t.dom.contains(u))continue;let c=u.getBoundingClientRect();if(c.top>=n-20){r=u,i=c.top;break}}return{refDOM:r,refTop:i,stack:w9(t.dom)}}function w9(t){let e=[],n=t.ownerDocument;for(let r=t;r&&(e.push({dom:r,top:r.scrollTop,left:r.scrollLeft}),t!=n);r=Al(r));return e}function YU({refDOM:t,refTop:e,stack:n}){let r=t?t.getBoundingClientRect().top:0;$9(n,r==0?0:r-e)}function $9(t,e){for(let n=0;n<t.length;n++){let{dom:r,top:i,left:s}=t[n];r.scrollTop!=i+e&&(r.scrollTop=i+e),r.scrollLeft!=s&&(r.scrollLeft=s)}}let ol=null;function XU(t){if(t.setActive)return t.setActive();if(ol)return t.focus(ol);let e=w9(t);t.focus(ol==null?{get preventScroll(){return ol={preventScroll:!0},!0}}:void 0),ol||(ol=!1,$9(e,0))}function T9(t,e){let n,r=2e8,i,s=0,a=e.top,u=e.top,c,f;for(let h=t.firstChild,m=0;h;h=h.nextSibling,m++){let g;if(h.nodeType==1)g=h.getClientRects();else if(h.nodeType==3)g=ki(h).getClientRects();else continue;for(let b=0;b<g.length;b++){let v=g[b];if(v.top<=a&&v.bottom>=u){a=Math.max(v.bottom,a),u=Math.min(v.top,u);let C=v.left>e.left?v.left-e.left:v.right<e.left?e.left-v.right:0;if(C<r){n=h,r=C,i=C&&n.nodeType==3?{left:v.right<e.left?v.right:v.left,top:e.top}:e,h.nodeType==1&&C&&(s=m+(e.left>=(v.left+v.right)/2?1:0));continue}}else v.top>e.top&&!c&&v.left<=e.left&&v.right>=e.left&&(c=h,f={left:Math.max(v.left,Math.min(v.right,e.left)),top:v.top});!n&&(e.left>=v.right&&e.top>=v.top||e.left>=v.left&&e.top>=v.bottom)&&(s=m+1)}}return!n&&c&&(n=c,i=f,r=0),n&&n.nodeType==3?JU(n,i):!n||r&&n.nodeType==1?{node:t,offset:s}:T9(n,i)}function JU(t,e){let n=t.nodeValue.length,r=document.createRange(),i;for(let s=0;s<n;s++){r.setEnd(t,s+1),r.setStart(t,s);let a=gs(r,1);if(a.top!=a.bottom&&t1(e,a)){i={node:t,offset:s+(e.left>=(a.left+a.right)/2?1:0)};break}}return r.detach(),i||{node:t,offset:0}}function t1(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function ZU(t,e){let n=t.parentNode;return n&&/^li$/i.test(n.nodeName)&&e.left<t.getBoundingClientRect().left?n:t}function eq(t,e,n){let{node:r,offset:i}=T9(e,n),s=-1;if(r.nodeType==1&&!r.firstChild){let a=r.getBoundingClientRect();s=a.left!=a.right&&n.left>(a.left+a.right)/2?1:-1}return t.docView.posFromDOM(r,i,s)}function tq(t,e,n,r){let i=-1;for(let s=e,a=!1;s!=t.dom;){let u=t.docView.nearestDesc(s,!0),c;if(!u)return null;if(u.dom.nodeType==1&&(u.node.isBlock&&u.parent||!u.contentDOM)&&((c=u.dom.getBoundingClientRect()).width||c.height)&&(u.node.isBlock&&u.parent&&!/^T(R|BODY|HEAD|FOOT)$/.test(u.dom.nodeName)&&(!a&&c.left>r.left||c.top>r.top?i=u.posBefore:(!a&&c.right<r.left||c.bottom<r.top)&&(i=u.posAfter),a=!0),!u.contentDOM&&i<0&&!u.node.isText))return(u.node.isBlock?r.top<(c.top+c.bottom)/2:r.left<(c.left+c.right)/2)?u.posBefore:u.posAfter;s=u.dom.parentNode}return i>-1?i:t.docView.posFromDOM(e,n,-1)}function A9(t,e,n){let r=t.childNodes.length;if(r&&n.top<n.bottom)for(let i=Math.max(0,Math.min(r-1,Math.floor(r*(e.top-n.top)/(n.bottom-n.top))-2)),s=i;;){let a=t.childNodes[s];if(a.nodeType==1){let u=a.getClientRects();for(let c=0;c<u.length;c++){let f=u[c];if(t1(e,f))return A9(a,e,f)}}if((s=(s+1)%r)==i)break}return t}function nq(t,e){let n=t.dom.ownerDocument,r,i=0,s=UU(n,e.left,e.top);s&&({node:r,offset:i}=s);let a=(t.root.elementFromPoint?t.root:n).elementFromPoint(e.left,e.top),u;if(!a||!t.dom.contains(a.nodeType!=1?a.parentNode:a)){let f=t.dom.getBoundingClientRect();if(!t1(e,f)||(a=A9(t.dom,e,f),!a))return null}if(hn)for(let f=a;r&&f;f=Al(f))f.draggable&&(r=void 0);if(a=ZU(a,e),r){if(fr&&r.nodeType==1&&(i=Math.min(i,r.childNodes.length),i<r.childNodes.length)){let h=r.childNodes[i],m;h.nodeName=="IMG"&&(m=h.getBoundingClientRect()).right<=e.left&&m.bottom>e.top&&i++}let f;dd&&i&&r.nodeType==1&&(f=r.childNodes[i-1]).nodeType==1&&f.contentEditable=="false"&&f.getBoundingClientRect().top>=e.top&&i--,r==t.dom&&i==r.childNodes.length-1&&r.lastChild.nodeType==1&&e.top>r.lastChild.getBoundingClientRect().bottom?u=t.state.doc.content.size:(i==0||r.nodeType!=1||r.childNodes[i-1].nodeName!="BR")&&(u=tq(t,r,i,e))}u==null&&(u=eq(t,a,e));let c=t.docView.nearestDesc(a,!0);return{pos:u,inside:c?c.posAtStart-c.border:-1}}function by(t){return t.top<t.bottom||t.left<t.right}function gs(t,e){let n=t.getClientRects();if(n.length){let r=n[e<0?0:n.length-1];if(by(r))return r}return Array.prototype.find.call(n,by)||t.getBoundingClientRect()}const rq=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;function B9(t,e,n){let{node:r,offset:i,atom:s}=t.docView.domFromPos(e,n<0?-1:1),a=dd||fr;if(r.nodeType==3)if(a&&(rq.test(r.nodeValue)||(n<0?!i:i==r.nodeValue.length))){let c=gs(ki(r,i,i),n);if(fr&&i&&/\s/.test(r.nodeValue[i-1])&&i<r.nodeValue.length){let f=gs(ki(r,i-1,i-1),-1);if(f.top==c.top){let h=gs(ki(r,i,i+1),-1);if(h.top!=c.top)return ju(h,h.left<f.left)}}return c}else{let c=i,f=i,h=n<0?1:-1;return n<0&&!i?(f++,h=-1):n>=0&&i==r.nodeValue.length?(c--,h=1):n<0?c--:f++,ju(gs(ki(r,c,f),h),h<0)}if(!t.state.doc.resolve(e-(s||0)).parent.inlineContent){if(s==null&&i&&(n<0||i==dr(r))){let c=r.childNodes[i-1];if(c.nodeType==1)return G0(c.getBoundingClientRect(),!1)}if(s==null&&i<dr(r)){let c=r.childNodes[i];if(c.nodeType==1)return G0(c.getBoundingClientRect(),!0)}return G0(r.getBoundingClientRect(),n>=0)}if(s==null&&i&&(n<0||i==dr(r))){let c=r.childNodes[i-1],f=c.nodeType==3?ki(c,dr(c)-(a?0:1)):c.nodeType==1&&(c.nodeName!="BR"||!c.nextSibling)?c:null;if(f)return ju(gs(f,1),!1)}if(s==null&&i<dr(r)){let c=r.childNodes[i];for(;c.pmViewDesc&&c.pmViewDesc.ignoreForCoords;)c=c.nextSibling;let f=c?c.nodeType==3?ki(c,0,a?0:1):c.nodeType==1?c:null:null;if(f)return ju(gs(f,-1),!0)}return ju(gs(r.nodeType==3?ki(r):r,-n),n>=0)}function ju(t,e){if(t.width==0)return t;let n=e?t.left:t.right;return{top:t.top,bottom:t.bottom,left:n,right:n}}function G0(t,e){if(t.height==0)return t;let n=e?t.top:t.bottom;return{top:n,bottom:n,left:t.left,right:t.right}}function M9(t,e,n){let r=t.state,i=t.root.activeElement;r!=e&&t.updateState(e),i!=t.dom&&t.focus();try{return n()}finally{r!=e&&t.updateState(r),i!=t.dom&&i&&i.focus()}}function iq(t,e,n){let r=e.selection,i=n=="up"?r.$from:r.$to;return M9(t,e,()=>{let{node:s}=t.docView.domFromPos(i.pos,n=="up"?-1:1);for(;;){let u=t.docView.nearestDesc(s,!0);if(!u)break;if(u.node.isBlock){s=u.contentDOM||u.dom;break}s=u.dom.parentNode}let a=B9(t,i.pos,1);for(let u=s.firstChild;u;u=u.nextSibling){let c;if(u.nodeType==1)c=u.getClientRects();else if(u.nodeType==3)c=ki(u,0,u.nodeValue.length).getClientRects();else continue;for(let f=0;f<c.length;f++){let h=c[f];if(h.bottom>h.top+1&&(n=="up"?a.top-h.top>(h.bottom-a.top)*2:h.bottom-a.bottom>(a.bottom-h.top)*2))return!1}}return!0})}const sq=/[\u0590-\u08ac]/;function oq(t,e,n){let{$head:r}=e.selection;if(!r.parent.isTextblock)return!1;let i=r.parentOffset,s=!i,a=i==r.parent.content.size,u=t.domSelection();return u?!sq.test(r.parent.textContent)||!u.modify?n=="left"||n=="backward"?s:a:M9(t,e,()=>{let{focusNode:c,focusOffset:f,anchorNode:h,anchorOffset:m}=t.domSelectionRange(),g=u.caretBidiLevel;u.modify("move",n,"character");let b=r.depth?t.docView.domAfterPos(r.before()):t.dom,{focusNode:v,focusOffset:C}=t.domSelectionRange(),E=v&&!b.contains(v.nodeType==1?v:v.parentNode)||c==v&&f==C;try{u.collapse(h,m),c&&(c!=h||f!=m)&&u.extend&&u.extend(c,f)}catch{}return g!=null&&(u.caretBidiLevel=g),E}):r.pos==r.start()||r.pos==r.end()}let $k=null,Tk=null,Ak=!1;function aq(t,e,n){return $k==e&&Tk==n?Ak:($k=e,Tk=n,Ak=n=="up"||n=="down"?iq(t,e,n):oq(t,e,n))}const hr=0,Bk=1,zo=2,Tr=3;class fd{constructor(e,n,r,i){this.parent=e,this.children=n,this.dom=r,this.contentDOM=i,this.dirty=hr,r.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,r){return!1}matchesHack(e){return!1}parseRule(e){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;n<this.children.length;n++)e+=this.children[n].size;return e}get border(){return 0}destroy(){this.parent=void 0,this.dom.pmViewDesc==this&&(this.dom.pmViewDesc=void 0);for(let e=0;e<this.children.length;e++)this.children[e].destroy()}posBeforeChild(e){for(let n=0,r=this.posAtStart;;n++){let i=this.children[n];if(i==e)return r;r+=i.size}}get posBefore(){return this.parent.posBeforeChild(this)}get posAtStart(){return this.parent?this.parent.posBeforeChild(this)+this.border:0}get posAfter(){return this.posBefore+this.size}get posAtEnd(){return this.posAtStart+this.size-2*this.border}localPosFromDOM(e,n,r){if(this.contentDOM&&this.contentDOM.contains(e.nodeType==1?e:e.parentNode))if(r<0){let s,a;if(e==this.contentDOM)s=e.childNodes[n-1];else{for(;e.parentNode!=this.contentDOM;)e=e.parentNode;s=e.previousSibling}for(;s&&!((a=s.pmViewDesc)&&a.parent==this);)s=s.previousSibling;return s?this.posBeforeChild(a)+a.size:this.posAtStart}else{let s,a;if(e==this.contentDOM)s=e.childNodes[n];else{for(;e.parentNode!=this.contentDOM;)e=e.parentNode;s=e.nextSibling}for(;s&&!((a=s.pmViewDesc)&&a.parent==this);)s=s.nextSibling;return s?this.posBeforeChild(a):this.posAtEnd}let i;if(e==this.dom&&this.contentDOM)i=n>en(this.contentDOM);else if(this.contentDOM&&this.contentDOM!=this.dom&&this.dom.contains(this.contentDOM))i=e.compareDocumentPosition(this.contentDOM)&2;else if(this.dom.firstChild){if(n==0)for(let s=e;;s=s.parentNode){if(s==this.dom){i=!1;break}if(s.previousSibling)break}if(i==null&&n==e.childNodes.length)for(let s=e;;s=s.parentNode){if(s==this.dom){i=!0;break}if(s.nextSibling)break}}return i??r>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let r=!0,i=e;i;i=i.parentNode){let s=this.getDesc(i),a;if(s&&(!n||s.node))if(r&&(a=s.nodeDOM)&&!(a.nodeType==1?a.contains(e.nodeType==1?e:e.parentNode):a==e))r=!1;else return s}}getDesc(e){let n=e.pmViewDesc;for(let r=n;r;r=r.parent)if(r==this)return n}posFromDOM(e,n,r){for(let i=e;i;i=i.parentNode){let s=this.getDesc(i);if(s)return s.localPosFromDOM(e,n,r)}return-1}descAt(e){for(let n=0,r=0;n<this.children.length;n++){let i=this.children[n],s=r+i.size;if(r==e&&s!=r){for(;!i.border&&i.children.length;)for(let a=0;a<i.children.length;a++){let u=i.children[a];if(u.size){i=u;break}}return i}if(e<s)return i.descAt(e-r-i.border);r=s}}domFromPos(e,n){if(!this.contentDOM)return{node:this.dom,offset:0,atom:e+1};let r=0,i=0;for(let s=0;r<this.children.length;r++){let a=this.children[r],u=s+a.size;if(u>e||a instanceof N9){i=e-s;break}s=u}if(i)return this.children[r].domFromPos(i-this.children[r].border,n);for(let s;r&&!(s=this.children[r-1]).size&&s instanceof R9&&s.side>=0;r--);if(n<=0){let s,a=!0;for(;s=r?this.children[r-1]:null,!(!s||s.dom.parentNode==this.contentDOM);r--,a=!1);return s&&n&&a&&!s.border&&!s.domAtom?s.domFromPos(s.size,n):{node:this.contentDOM,offset:s?en(s.dom)+1:0}}else{let s,a=!0;for(;s=r<this.children.length?this.children[r]:null,!(!s||s.dom.parentNode==this.contentDOM);r++,a=!1);return s&&a&&!s.border&&!s.domAtom?s.domFromPos(0,n):{node:this.contentDOM,offset:s?en(s.dom):this.contentDOM.childNodes.length}}}parseRange(e,n,r=0){if(this.children.length==0)return{node:this.contentDOM,from:e,to:n,fromOffset:0,toOffset:this.contentDOM.childNodes.length};let i=-1,s=-1;for(let a=r,u=0;;u++){let c=this.children[u],f=a+c.size;if(i==-1&&e<=f){let h=a+c.border;if(e>=h&&n<=f-c.border&&c.node&&c.contentDOM&&this.contentDOM.contains(c.contentDOM))return c.parseRange(e,n,h);e=a;for(let m=u;m>0;m--){let g=this.children[m-1];if(g.size&&g.dom.parentNode==this.contentDOM&&!g.emptyChildAt(1)){i=en(g.dom)+1;break}e-=g.size}i==-1&&(i=0)}if(i>-1&&(f>n||u==this.children.length-1)){n=f;for(let h=u+1;h<this.children.length;h++){let m=this.children[h];if(m.size&&m.dom.parentNode==this.contentDOM&&!m.emptyChildAt(-1)){s=en(m.dom);break}n+=m.size}s==-1&&(s=this.contentDOM.childNodes.length);break}a=f}return{node:this.contentDOM,from:e,to:n,fromOffset:i,toOffset:s}}emptyChildAt(e){if(this.border||!this.contentDOM||!this.children.length)return!1;let n=this.children[e<0?0:this.children.length-1];return n.size==0||n.emptyChildAt(e)}domAfterPos(e){let{node:n,offset:r}=this.domFromPos(e,0);if(n.nodeType!=1||r==n.childNodes.length)throw new RangeError("No node after pos "+e);return n.childNodes[r]}setSelection(e,n,r,i=!1){let s=Math.min(e,n),a=Math.max(e,n);for(let b=0,v=0;b<this.children.length;b++){let C=this.children[b],E=v+C.size;if(s>v&&a<E)return C.setSelection(e-v-C.border,n-v-C.border,r,i);v=E}let u=this.domFromPos(e,e?-1:1),c=n==e?u:this.domFromPos(n,n?-1:1),f=r.root.getSelection(),h=r.domSelectionRange(),m=!1;if((fr||hn)&&e==n){let{node:b,offset:v}=u;if(b.nodeType==3){if(m=!!(v&&b.nodeValue[v-1]==`
|
|
27
|
-
`),m&&v==b.nodeValue.length)for(let C=b,E;C;C=C.parentNode){if(E=C.nextSibling){E.nodeName=="BR"&&(u=c={node:E.parentNode,offset:en(E)+1});break}let k=C.pmViewDesc;if(k&&k.node&&k.node.isBlock)break}}else{let C=b.childNodes[v-1];m=C&&(C.nodeName=="BR"||C.contentEditable=="false")}}if(fr&&h.focusNode&&h.focusNode!=c.node&&h.focusNode.nodeType==1){let b=h.focusNode.childNodes[h.focusOffset];b&&b.contentEditable=="false"&&(i=!0)}if(!(i||m&&hn)&&ia(u.node,u.offset,h.anchorNode,h.anchorOffset)&&ia(c.node,c.offset,h.focusNode,h.focusOffset))return;let g=!1;if((f.extend||e==n)&&!(m&&fr)){f.collapse(u.node,u.offset);try{e!=n&&f.extend(c.node,c.offset),g=!0}catch{}}if(!g){if(e>n){let v=u;u=c,c=v}let b=document.createRange();b.setEnd(c.node,c.offset),b.setStart(u.node,u.offset),f.removeAllRanges(),f.addRange(b)}}ignoreMutation(e){return!this.contentDOM&&e.type!="selection"}get contentLost(){return this.contentDOM&&this.contentDOM!=this.dom&&!this.dom.contains(this.contentDOM)}markDirty(e,n){for(let r=0,i=0;i<this.children.length;i++){let s=this.children[i],a=r+s.size;if(r==a?e<=a&&n>=r:e<a&&n>r){let u=r+s.border,c=a-s.border;if(e>=u&&n<=c){this.dirty=e==r||n==a?zo:Bk,e==u&&n==c&&(s.contentLost||s.dom.parentNode!=this.contentDOM)?s.dirty=Tr:s.markDirty(e-u,n-u);return}else s.dirty=s.dom==s.contentDOM&&s.dom.parentNode==this.contentDOM&&!s.children.length?zo:Tr}r=a}this.dirty=zo}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let r=e==1?zo:Bk;n.dirty<r&&(n.dirty=r)}}get domAtom(){return!1}get ignoreForCoords(){return!1}get ignoreForSelection(){return!1}isText(e){return!1}}class R9 extends fd{constructor(e,n,r,i){let s,a=n.type.toDOM;if(typeof a=="function"&&(a=a(r,()=>{if(!s)return i;if(s.parent)return s.parent.posBeforeChild(s)})),!n.type.spec.raw){if(a.nodeType!=1){let u=document.createElement("span");u.appendChild(a),a=u}a.contentEditable="false",a.classList.add("ProseMirror-widget")}super(e,[],a,null),this.widget=n,this.widget=n,s=this}matchesWidget(e){return this.dirty==hr&&e.type.eq(this.widget.type)}parseRule(){return{ignore:!0}}stopEvent(e){let n=this.widget.spec.stopEvent;return n?n(e):!1}ignoreMutation(e){return e.type!="selection"||this.widget.spec.ignoreSelection}destroy(){this.widget.type.destroy(this.dom),super.destroy()}get domAtom(){return!0}get ignoreForSelection(){return!!this.widget.type.spec.relaxedSide}get side(){return this.widget.type.side}}class lq extends fd{constructor(e,n,r,i){super(e,[],n,null),this.textDOM=r,this.text=i}get size(){return this.text.length}localPosFromDOM(e,n){return e!=this.textDOM?this.posAtStart+(n?this.size:0):this.posAtStart+n}domFromPos(e){return{node:this.textDOM,offset:e}}ignoreMutation(e){return e.type==="characterData"&&e.target.nodeValue==e.oldValue}}class Ps extends fd{constructor(e,n,r,i,s){super(e,[],r,i),this.mark=n,this.spec=s}static create(e,n,r,i){let s=i.nodeViews[n.type.name],a=s&&s(n,i,r);return(!a||!a.dom)&&(a=pa.renderSpec(document,n.type.spec.toDOM(n,r),null,n.attrs)),new Ps(e,n,a.dom,a.contentDOM||a.dom,a)}parseRule(){return this.dirty&Tr||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=Tr&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=hr){let r=this.parent;for(;!r.node;)r=r.parent;r.dirty<this.dirty&&(r.dirty=this.dirty),this.dirty=hr}}slice(e,n,r){let i=Ps.create(this.parent,this.mark,!0,r),s=this.children,a=this.size;n<a&&(s=vy(s,n,a,r)),e>0&&(s=vy(s,0,e,r));for(let u=0;u<s.length;u++)s[u].parent=i;return i.children=s,i}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}}class Os extends fd{constructor(e,n,r,i,s,a,u){super(e,[],s,a),this.node=n,this.outerDeco=r,this.innerDeco=i,this.nodeDOM=u}static create(e,n,r,i,s,a){let u=s.nodeViews[n.type.name],c,f=u&&u(n,s,()=>{if(!c)return a;if(c.parent)return c.parent.posBeforeChild(c)},r,i),h=f&&f.dom,m=f&&f.contentDOM;if(n.isText){if(!h)h=document.createTextNode(n.text);else if(h.nodeType!=3)throw new RangeError("Text must be rendered as a DOM text node")}else h||({dom:h,contentDOM:m}=pa.renderSpec(document,n.type.spec.toDOM(n),null,n.attrs));!m&&!n.isText&&h.nodeName!="BR"&&(h.hasAttribute("contenteditable")||(h.contentEditable="false"),n.type.spec.draggable&&(h.draggable=!0));let g=h;return h=L9(h,r,n),f?c=new uq(e,n,r,i,h,m||null,g,f):n.isText?new Sm(e,n,r,i,h,g):new Os(e,n,r,i,h,m||null,g)}parseRule(e){if(this.node.type.spec.reparseInView)return null;let n={node:this.node.type.name,attrs:this.node.attrs};if(this.node.type.whitespace=="pre"&&(n.preserveWhitespace="full"),!this.contentDOM)n.getContent=()=>this.node.content;else if(!this.contentLost)n.contentElement=this.contentDOM;else{for(let r=this.children.length-1;r>=0;r--){let i=this.children[r];if(this.dom.contains(i.dom.parentNode)){n.contentElement=i.dom.parentNode;break}}if(!n.contentElement){let r=e&&e.find(i=>i.nodeType==1&&e.indexOf(i.parentNode)<0&&this.dom.contains(i));r?n.contentElement=r:n.getContent=()=>ae.empty}}return n}matchesNode(e,n,r){return this.dirty==hr&&e.eq(this.node)&&lp(n,this.outerDeco)&&r.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let r=this.node.inlineContent,i=n,s=e.composing?this.localCompositionInfo(e,n):null,a=s&&s.pos>-1?s:null,u=s&&s.pos<0,c=new dq(this,a&&a.node,e);pq(this.node,this.innerDeco,(f,h,m)=>{f.spec.marks?c.syncToMarks(f.spec.marks,r,e,h):f.type.side>=0&&!m&&c.syncToMarks(h==this.node.childCount?it.none:this.node.child(h).marks,r,e,h),c.placeWidget(f,e,i)},(f,h,m,g)=>{c.syncToMarks(f.marks,r,e,g);let b;c.findNodeMatch(f,h,m,g)||u&&e.state.selection.from>i&&e.state.selection.to<i+f.nodeSize&&(b=c.findIndexWithChild(s.node))>-1&&c.updateNodeAt(f,h,m,b,e)||c.updateNextNode(f,h,m,e,g,i)||c.addNode(f,h,m,e,i),i+=f.nodeSize}),c.syncToMarks([],r,e,0),this.node.isTextblock&&c.addTextblockHacks(),c.destroyRest(),(c.changed||this.dirty==zo)&&(a&&this.protectLocalComposition(e,a),P9(this.contentDOM,this.children,e),Bl&&mq(this.dom))}localCompositionInfo(e,n){let{from:r,to:i}=e.state.selection;if(!(e.state.selection instanceof De)||r<n||i>n+this.node.content.size)return null;let s=e.input.compositionNode;if(!s||!this.dom.contains(s.parentNode))return null;if(this.node.inlineContent){let a=s.nodeValue,u=gq(this.node.content,a,r-n,i-n);return u<0?null:{node:s,pos:u,text:a}}else return{node:s,pos:-1,text:""}}protectLocalComposition(e,{node:n,pos:r,text:i}){if(this.getDesc(n))return;let s=n;for(;s.parentNode!=this.contentDOM;s=s.parentNode){for(;s.previousSibling;)s.parentNode.removeChild(s.previousSibling);for(;s.nextSibling;)s.parentNode.removeChild(s.nextSibling);s.pmViewDesc&&(s.pmViewDesc=void 0)}let a=new lq(this,s,n,i);e.input.compositionNodes.push(a),this.children=vy(this.children,r,r+i.length,e,a)}update(e,n,r,i){return this.dirty==Tr||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,r,i),!0)}updateInner(e,n,r,i){this.updateOuterDeco(n),this.node=e,this.innerDeco=r,this.contentDOM&&this.updateChildren(i,this.posAtStart),this.dirty=hr}updateOuterDeco(e){if(lp(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,r=this.dom;this.dom=O9(this.dom,this.nodeDOM,yy(this.outerDeco,this.node,n),yy(e,this.node,n)),this.dom!=r&&(r.pmViewDesc=void 0,this.dom.pmViewDesc=this),this.outerDeco=e}selectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.add("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&(this.nodeDOM.draggable=!0))}deselectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.remove("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&this.nodeDOM.removeAttribute("draggable"))}get domAtom(){return this.node.isAtom}}function Mk(t,e,n,r,i){L9(r,e,t);let s=new Os(void 0,t,e,n,r,r,r);return s.contentDOM&&s.updateChildren(i,0),s}class Sm extends Os{constructor(e,n,r,i,s,a){super(e,n,r,i,s,null,a)}parseRule(){let e=this.nodeDOM.parentNode;for(;e&&e!=this.dom&&!e.pmIsDeco;)e=e.parentNode;return{skip:e||!0}}update(e,n,r,i){return this.dirty==Tr||this.dirty!=hr&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=hr||e.text!=this.node.text)&&e.text!=this.nodeDOM.nodeValue&&(this.nodeDOM.nodeValue=e.text,i.trackWrites==this.nodeDOM&&(i.trackWrites=null)),this.node=e,this.dirty=hr,!0)}inParent(){let e=this.parent.contentDOM;for(let n=this.nodeDOM;n;n=n.parentNode)if(n==e)return!0;return!1}domFromPos(e){return{node:this.nodeDOM,offset:e}}localPosFromDOM(e,n,r){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,r)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,r){let i=this.node.cut(e,n),s=document.createTextNode(i.text);return new Sm(this.parent,i,this.outerDeco,this.innerDeco,s,s)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=Tr)}get domAtom(){return!1}isText(e){return this.node.text==e}}class N9 extends fd{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==hr&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}}class uq extends Os{constructor(e,n,r,i,s,a,u,c){super(e,n,r,i,s,a,u),this.spec=c}update(e,n,r,i){if(this.dirty==Tr)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let s=this.spec.update(e,n,r);return s&&this.updateInner(e,n,r,i),s}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,r,i)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,r,i){this.spec.setSelection?this.spec.setSelection(e,n,r.root):super.setSelection(e,n,r,i)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}stopEvent(e){return this.spec.stopEvent?this.spec.stopEvent(e):!1}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}}function P9(t,e,n){let r=t.firstChild,i=!1;for(let s=0;s<e.length;s++){let a=e[s],u=a.dom;if(u.parentNode==t){for(;u!=r;)r=Rk(r),i=!0;r=r.nextSibling}else i=!0,t.insertBefore(u,r);if(a instanceof Ps){let c=r?r.previousSibling:t.lastChild;P9(a.contentDOM,a.children,n),r=c?c.nextSibling:t.firstChild}}for(;r;)r=Rk(r),i=!0;i&&n.trackWrites==t&&(n.trackWrites=null)}const hc=function(t){t&&(this.nodeName=t)};hc.prototype=Object.create(null);const Io=[new hc];function yy(t,e,n){if(t.length==0)return Io;let r=n?Io[0]:new hc,i=[r];for(let s=0;s<t.length;s++){let a=t[s].type.attrs;if(a){a.nodeName&&i.push(r=new hc(a.nodeName));for(let u in a){let c=a[u];c!=null&&(n&&i.length==1&&i.push(r=new hc(e.isInline?"span":"div")),u=="class"?r.class=(r.class?r.class+" ":"")+c:u=="style"?r.style=(r.style?r.style+";":"")+c:u!="nodeName"&&(r[u]=c))}}}return i}function O9(t,e,n,r){if(n==Io&&r==Io)return e;let i=e;for(let s=0;s<r.length;s++){let a=r[s],u=n[s];if(s){let c;u&&u.nodeName==a.nodeName&&i!=t&&(c=i.parentNode)&&c.nodeName.toLowerCase()==a.nodeName||(c=document.createElement(a.nodeName),c.pmIsDeco=!0,c.appendChild(i),u=Io[0]),i=c}cq(i,u||Io[0],a)}return i}function cq(t,e,n){for(let r in e)r!="class"&&r!="style"&&r!="nodeName"&&!(r in n)&&t.removeAttribute(r);for(let r in n)r!="class"&&r!="style"&&r!="nodeName"&&n[r]!=e[r]&&t.setAttribute(r,n[r]);if(e.class!=n.class){let r=e.class?e.class.split(" ").filter(Boolean):[],i=n.class?n.class.split(" ").filter(Boolean):[];for(let s=0;s<r.length;s++)i.indexOf(r[s])==-1&&t.classList.remove(r[s]);for(let s=0;s<i.length;s++)r.indexOf(i[s])==-1&&t.classList.add(i[s]);t.classList.length==0&&t.removeAttribute("class")}if(e.style!=n.style){if(e.style){let r=/\s*([\w\-\xa1-\uffff]+)\s*:(?:"(?:\\.|[^"])*"|'(?:\\.|[^'])*'|\(.*?\)|[^;])*/g,i;for(;i=r.exec(e.style);)t.style.removeProperty(i[1])}n.style&&(t.style.cssText+=n.style)}}function L9(t,e,n){return O9(t,t,Io,yy(e,n,t.nodeType!=1))}function lp(t,e){if(t.length!=e.length)return!1;for(let n=0;n<t.length;n++)if(!t[n].type.eq(e[n].type))return!1;return!0}function Rk(t){let e=t.nextSibling;return t.parentNode.removeChild(t),e}class dq{constructor(e,n,r){this.lock=n,this.view=r,this.index=0,this.stack=[],this.changed=!1,this.top=e,this.preMatch=fq(e.node.content,e)}destroyBetween(e,n){if(e!=n){for(let r=e;r<n;r++)this.top.children[r].destroy();this.top.children.splice(e,n-e),this.changed=!0}}destroyRest(){this.destroyBetween(this.index,this.top.children.length)}syncToMarks(e,n,r,i){let s=0,a=this.stack.length>>1,u=Math.min(a,e.length);for(;s<u&&(s==a-1?this.top:this.stack[s+1<<1]).matchesMark(e[s])&&e[s].type.spec.spanning!==!1;)s++;for(;s<a;)this.destroyRest(),this.top.dirty=hr,this.index=this.stack.pop(),this.top=this.stack.pop(),a--;for(;a<e.length;){this.stack.push(this.top,this.index+1);let c=-1,f=this.top.children.length;i<this.preMatch.index&&(f=Math.min(this.index+3,f));for(let h=this.index;h<f;h++){let m=this.top.children[h];if(m.matchesMark(e[a])&&!this.isLocked(m.dom)){c=h;break}}if(c<0&&this.index<this.top.children.length){let h=this.top.children[this.index];h instanceof Ps&&h.dirty!=Tr&&h.mark.type==e[a].type&&h.spec.update&&!this.isLocked(h.dom)&&h.spec.update(e[a])&&(h.mark=e[a],c=this.index,this.changed=!0)}if(c>-1)c>this.index&&(this.changed=!0,this.destroyBetween(this.index,c)),this.top=this.top.children[this.index];else{let h=Ps.create(this.top,e[a],n,r);this.top.children.splice(this.index,0,h),this.top=h,this.changed=!0}this.index=0,a++}}findNodeMatch(e,n,r,i){let s=-1,a;if(i>=this.preMatch.index&&(a=this.preMatch.matches[i-this.preMatch.index]).parent==this.top&&a.matchesNode(e,n,r))s=this.top.children.indexOf(a,this.index);else for(let u=this.index,c=Math.min(this.top.children.length,u+5);u<c;u++){let f=this.top.children[u];if(f.matchesNode(e,n,r)&&!this.preMatch.matched.has(f)){s=u;break}}return s<0?!1:(this.destroyBetween(this.index,s),this.index++,!0)}updateNodeAt(e,n,r,i,s){let a=this.top.children[i];return a.dirty==Tr&&a.dom==a.contentDOM&&(a.dirty=zo),a.update(e,n,r,s)?(this.destroyBetween(this.index,i),this.index++,!0):!1}findIndexWithChild(e){for(;;){let n=e.parentNode;if(!n)return-1;if(n==this.top.contentDOM){let r=e.pmViewDesc;if(r){for(let i=this.index;i<this.top.children.length;i++)if(this.top.children[i]==r)return i}return-1}e=n}}updateNextNode(e,n,r,i,s,a){for(let u=this.index;u<this.top.children.length;u++){let c=this.top.children[u];if(c instanceof Os){let f=this.preMatch.matched.get(c);if(f!=null&&f!=s)return!1;let h=c.dom,m,g=this.isLocked(h)&&!(e.isText&&c.node&&c.node.isText&&c.nodeDOM.nodeValue==e.text&&c.dirty!=Tr&&lp(n,c.outerDeco));if(!g&&c.update(e,n,r,i))return this.destroyBetween(this.index,u),c.dom!=h&&(this.changed=!0),this.index++,!0;if(!g&&(m=this.recreateWrapper(c,e,n,r,i,a)))return this.destroyBetween(this.index,u),this.top.children[this.index]=m,m.contentDOM&&(m.dirty=zo,m.updateChildren(i,a+1),m.dirty=hr),this.changed=!0,this.index++,!0;break}}return!1}recreateWrapper(e,n,r,i,s,a){if(e.dirty||n.isAtom||!e.children.length||!e.node.content.eq(n.content)||!lp(r,e.outerDeco)||!i.eq(e.innerDeco))return null;let u=Os.create(this.top,n,r,i,s,a);if(u.contentDOM){u.children=e.children,e.children=[];for(let c of u.children)c.parent=u}return e.destroy(),u}addNode(e,n,r,i,s){let a=Os.create(this.top,e,n,r,i,s);a.contentDOM&&a.updateChildren(i,s+1),this.top.children.splice(this.index++,0,a),this.changed=!0}placeWidget(e,n,r){let i=this.index<this.top.children.length?this.top.children[this.index]:null;if(i&&i.matchesWidget(e)&&(e==i.widget||!i.widget.type.toDOM.parentNode))this.index++;else{let s=new R9(this.top,e,n,r);this.top.children.splice(this.index++,0,s),this.changed=!0}}addTextblockHacks(){let e=this.top.children[this.index-1],n=this.top;for(;e instanceof Ps;)n=e,e=n.children[n.children.length-1];(!e||!(e instanceof Sm)||/\n$/.test(e.node.text)||this.view.requiresGeckoHackNode&&/\s$/.test(e.node.text))&&((hn||nn)&&e&&e.dom.contentEditable=="false"&&this.addHackNode("IMG",n),this.addHackNode("BR",this.top))}addHackNode(e,n){if(n==this.top&&this.index<n.children.length&&n.children[this.index].matchesHack(e))this.index++;else{let r=document.createElement(e);e=="IMG"&&(r.className="ProseMirror-separator",r.alt=""),e=="BR"&&(r.className="ProseMirror-trailingBreak");let i=new N9(this.top,[],r,null);n!=this.top?n.children.push(i):n.children.splice(this.index++,0,i),this.changed=!0}}isLocked(e){return this.lock&&(e==this.lock||e.nodeType==1&&e.contains(this.lock.parentNode))}}function fq(t,e){let n=e,r=n.children.length,i=t.childCount,s=new Map,a=[];e:for(;i>0;){let u;for(;;)if(r){let f=n.children[r-1];if(f instanceof Ps)n=f,r=f.children.length;else{u=f,r--;break}}else{if(n==e)break e;r=n.parent.children.indexOf(n),n=n.parent}let c=u.node;if(c){if(c!=t.child(i-1))break;--i,s.set(u,i),a.push(u)}}return{index:i,matched:s,matches:a.reverse()}}function hq(t,e){return t.type.side-e.type.side}function pq(t,e,n,r){let i=e.locals(t),s=0;if(i.length==0){for(let f=0;f<t.childCount;f++){let h=t.child(f);r(h,i,e.forChild(s,h),f),s+=h.nodeSize}return}let a=0,u=[],c=null;for(let f=0;;){let h,m;for(;a<i.length&&i[a].to==s;){let E=i[a++];E.widget&&(h?(m||(m=[h])).push(E):h=E)}if(h)if(m){m.sort(hq);for(let E=0;E<m.length;E++)n(m[E],f,!!c)}else n(h,f,!!c);let g,b;if(c)b=-1,g=c,c=null;else if(f<t.childCount)b=f,g=t.child(f++);else break;for(let E=0;E<u.length;E++)u[E].to<=s&&u.splice(E--,1);for(;a<i.length&&i[a].from<=s&&i[a].to>s;)u.push(i[a++]);let v=s+g.nodeSize;if(g.isText){let E=v;a<i.length&&i[a].from<E&&(E=i[a].from);for(let k=0;k<u.length;k++)u[k].to<E&&(E=u[k].to);E<v&&(c=g.cut(E-s),g=g.cut(0,E-s),v=E,b=-1)}else for(;a<i.length&&i[a].to<v;)a++;let C=g.isInline&&!g.isLeaf?u.filter(E=>!E.inline):u.slice();r(g,C,e.forChild(s,g),b),s=v}}function mq(t){if(t.nodeName=="UL"||t.nodeName=="OL"){let e=t.style.cssText;t.style.cssText=e+"; list-style: square !important",window.getComputedStyle(t).listStyle,t.style.cssText=e}}function gq(t,e,n,r){for(let i=0,s=0;i<t.childCount&&s<=r;){let a=t.child(i++),u=s;if(s+=a.nodeSize,!a.isText)continue;let c=a.text;for(;i<t.childCount;){let f=t.child(i++);if(s+=f.nodeSize,!f.isText)break;c+=f.text}if(s>=n){if(s>=r&&c.slice(r-e.length-u,r-u)==e)return r-e.length;let f=u<r?c.lastIndexOf(e,r-u-1):-1;if(f>=0&&f+e.length+u>=n)return u+f;if(n==r&&c.length>=r+e.length-u&&c.slice(r-u,r-u+e.length)==e)return r}}return-1}function vy(t,e,n,r,i){let s=[];for(let a=0,u=0;a<t.length;a++){let c=t[a],f=u,h=u+=c.size;f>=n||h<=e?s.push(c):(f<e&&s.push(c.slice(0,e-f,r)),i&&(s.push(i),i=void 0),h>n&&s.push(c.slice(n-f,c.size,r)))}return s}function n1(t,e=null){let n=t.domSelectionRange(),r=t.state.doc;if(!n.focusNode)return null;let i=t.docView.nearestDesc(n.focusNode),s=i&&i.size==0,a=t.docView.posFromDOM(n.focusNode,n.focusOffset,1);if(a<0)return null;let u=r.resolve(a),c,f;if(Dm(n)){for(c=a;i&&!i.node;)i=i.parent;let m=i.node;if(i&&m.isAtom&&Ce.isSelectable(m)&&i.parent&&!(m.isInline&&HU(n.focusNode,n.focusOffset,i.dom))){let g=i.posBefore;f=new Ce(a==g?u:r.resolve(g))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let m=a,g=a;for(let b=0;b<n.rangeCount;b++){let v=n.getRangeAt(b);m=Math.min(m,t.docView.posFromDOM(v.startContainer,v.startOffset,1)),g=Math.max(g,t.docView.posFromDOM(v.endContainer,v.endOffset,-1))}if(m<0)return null;[c,a]=g==t.state.selection.anchor?[g,m]:[m,g],u=r.resolve(a)}else c=t.docView.posFromDOM(n.anchorNode,n.anchorOffset,1);if(c<0)return null}let h=r.resolve(c);if(!f){let m=e=="pointer"||t.state.selection.head<u.pos&&!s?1:-1;f=r1(t,h,u,m)}return f}function z9(t){return t.editable?t.hasFocus():F9(t)&&document.activeElement&&document.activeElement.contains(t.dom)}function Ri(t,e=!1){let n=t.state.selection;if(I9(t,n),!z9(t))return;let r=t.input.mouseDown;if(!e&&nn&&r){let i=t.domSelectionRange(),s=t.domObserver.currentSelection;if(i.anchorNode&&s.anchorNode&&ia(i.anchorNode,i.anchorOffset,s.anchorNode,s.anchorOffset)&&r.delaySelUpdate()){t.domObserver.setCurSelection();return}}if(t.domObserver.disconnectSelection(),t.cursorWrapper)yq(t);else{let{anchor:i,head:s}=n,a,u;Nk&&!(n instanceof De)&&(n.$from.parent.inlineContent||(a=Pk(t,n.from)),!n.empty&&!n.$from.parent.inlineContent&&(u=Pk(t,n.to))),t.docView.setSelection(i,s,t,e),Nk&&(a&&Ok(a),u&&Ok(u)),n.visible?t.dom.classList.remove("ProseMirror-hideselection"):(t.dom.classList.add("ProseMirror-hideselection"),"onselectionchange"in document&&bq(t))}t.domObserver.setCurSelection(),t.domObserver.connectSelection()}const Nk=hn||nn&&D9<63;function Pk(t,e){let{node:n,offset:r}=t.docView.domFromPos(e,0),i=r<n.childNodes.length?n.childNodes[r]:null,s=r?n.childNodes[r-1]:null;if(hn&&i&&i.contentEditable=="false")return W0(i);if((!i||i.contentEditable=="false")&&(!s||s.contentEditable=="false")){if(i)return W0(i);if(s)return W0(s)}}function W0(t){return t.contentEditable="true",hn&&t.draggable&&(t.draggable=!1,t.wasDraggable=!0),t}function Ok(t){t.contentEditable="false",t.wasDraggable&&(t.draggable=!0,t.wasDraggable=null)}function bq(t){let e=t.dom.ownerDocument;e.removeEventListener("selectionchange",t.input.hideSelectionGuard);let n=t.domSelectionRange(),r=n.anchorNode,i=n.anchorOffset;e.addEventListener("selectionchange",t.input.hideSelectionGuard=()=>{(n.anchorNode!=r||n.anchorOffset!=i)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!z9(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function yq(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,r=n.nodeName=="IMG";r?e.collapse(n.parentNode,en(n)+1):e.collapse(n,0),!r&&!t.state.selection.visible&&zn&&Ns<=11&&(n.disabled=!0,n.disabled=!1)}function I9(t,e){if(e instanceof Ce){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(Lk(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else Lk(t)}function Lk(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function r1(t,e,n,r){return t.someProp("createSelectionBetween",i=>i(t,e,n))||De.between(e,n,r)}function zk(t){return t.editable&&!t.hasFocus()?!1:F9(t)}function F9(t){let e=t.domSelectionRange();if(!e.anchorNode)return!1;try{return t.dom.contains(e.anchorNode.nodeType==3?e.anchorNode.parentNode:e.anchorNode)&&(t.editable||t.dom.contains(e.focusNode.nodeType==3?e.focusNode.parentNode:e.focusNode))}catch{return!1}}function vq(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return ia(e.node,e.offset,n.anchorNode,n.anchorOffset)}function xy(t,e){let{$anchor:n,$head:r}=t.selection,i=e>0?n.max(r):n.min(r),s=i.parent.inlineContent?i.depth?t.doc.resolve(e>0?i.after():i.before()):null:i;return s&&Me.findFrom(s,e)}function vs(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function Ik(t,e,n){let r=t.state.selection;if(r instanceof De)if(n.indexOf("s")>-1){let{$head:i}=r,s=i.textOffset?null:e<0?i.nodeBefore:i.nodeAfter;if(!s||s.isText||!s.isLeaf)return!1;let a=t.state.doc.resolve(i.pos+s.nodeSize*(e<0?-1:1));return vs(t,new De(r.$anchor,a))}else if(r.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let i=xy(t.state,e);return i&&i instanceof Ce?vs(t,i):!1}else if(!(ur&&n.indexOf("m")>-1)){let i=r.$head,s=i.textOffset?null:e<0?i.nodeBefore:i.nodeAfter,a;if(!s||s.isText)return!1;let u=e<0?i.pos-s.nodeSize:i.pos;return s.isAtom||(a=t.docView.descAt(u))&&!a.contentDOM?Ce.isSelectable(s)?vs(t,new Ce(e<0?t.state.doc.resolve(i.pos-s.nodeSize):i)):dd?vs(t,new De(t.state.doc.resolve(e<0?u:u+s.nodeSize))):!1:!1}}else return!1;else{if(r instanceof Ce&&r.node.isInline)return vs(t,new De(e>0?r.$to:r.$from));{let i=xy(t.state,e);return i?vs(t,i):!1}}}function up(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function pc(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function al(t,e){return e<0?xq(t):Cq(t)}function xq(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let i,s,a=!1;for(fr&&n.nodeType==1&&r<up(n)&&pc(n.childNodes[r],-1)&&(a=!0);;)if(r>0){if(n.nodeType!=1)break;{let u=n.childNodes[r-1];if(pc(u,-1))i=n,s=--r;else if(u.nodeType==3)n=u,r=n.nodeValue.length;else break}}else{if(K9(n))break;{let u=n.previousSibling;for(;u&&pc(u,-1);)i=n.parentNode,s=en(u),u=u.previousSibling;if(u)n=u,r=up(n);else{if(n=n.parentNode,n==t.dom)break;r=0}}}a?Cy(t,n,r):i&&Cy(t,i,s)}function Cq(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let i=up(n),s,a;for(;;)if(r<i){if(n.nodeType!=1)break;let u=n.childNodes[r];if(pc(u,1))s=n,a=++r;else break}else{if(K9(n))break;{let u=n.nextSibling;for(;u&&pc(u,1);)s=u.parentNode,a=en(u)+1,u=u.nextSibling;if(u)n=u,r=0,i=up(n);else{if(n=n.parentNode,n==t.dom)break;r=i=0}}}s&&Cy(t,s,a)}function K9(t){let e=t.pmViewDesc;return e&&e.node&&e.node.isBlock}function Eq(t,e){for(;t&&e==t.childNodes.length&&!cd(t);)e=en(t)+1,t=t.parentNode;for(;t&&e<t.childNodes.length;){let n=t.childNodes[e];if(n.nodeType==3)return n;if(n.nodeType==1&&n.contentEditable=="false")break;t=n,e=0}}function kq(t,e){for(;t&&!e&&!cd(t);)e=en(t),t=t.parentNode;for(;t&&e;){let n=t.childNodes[e-1];if(n.nodeType==3)return n;if(n.nodeType==1&&n.contentEditable=="false")break;t=n,e=t.childNodes.length}}function Cy(t,e,n){if(e.nodeType!=3){let s,a;(a=Eq(e,n))?(e=a,n=0):(s=kq(e,n))&&(e=s,n=s.nodeValue.length)}let r=t.domSelection();if(!r)return;if(Dm(r)){let s=document.createRange();s.setEnd(e,n),s.setStart(e,n),r.removeAllRanges(),r.addRange(s)}else r.extend&&r.extend(e,n);t.domObserver.setCurSelection();let{state:i}=t;setTimeout(()=>{t.state==i&&Ri(t)},50)}function Fk(t,e){let n=t.state.doc.resolve(e);if(!(nn||S9)&&n.parent.inlineContent){let i=t.coordsAtPos(e);if(e>n.start()){let s=t.coordsAtPos(e-1),a=(s.top+s.bottom)/2;if(a>i.top&&a<i.bottom&&Math.abs(s.left-i.left)>1)return s.left<i.left?"ltr":"rtl"}if(e<n.end()){let s=t.coordsAtPos(e+1),a=(s.top+s.bottom)/2;if(a>i.top&&a<i.bottom&&Math.abs(s.left-i.left)>1)return s.left>i.left?"ltr":"rtl"}}return getComputedStyle(t.dom).direction=="rtl"?"rtl":"ltr"}function Kk(t,e,n){let r=t.state.selection;if(r instanceof De&&!r.empty||n.indexOf("s")>-1||ur&&n.indexOf("m")>-1)return!1;let{$from:i,$to:s}=r;if(!i.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let a=xy(t.state,e);if(a&&a instanceof Ce)return vs(t,a)}if(!i.parent.inlineContent){let a=e<0?i:s,u=r instanceof Qn?Me.near(a,e):Me.findFrom(a,e);return u?vs(t,u):!1}return!1}function jk(t,e){if(!(t.state.selection instanceof De))return!0;let{$head:n,$anchor:r,empty:i}=t.state.selection;if(!n.sameParent(r))return!0;if(!i)return!1;if(t.endOfTextblock(e>0?"forward":"backward"))return!0;let s=!n.textOffset&&(e<0?n.nodeBefore:n.nodeAfter);if(s&&!s.isText){let a=t.state.tr;return e<0?a.delete(n.pos-s.nodeSize,n.pos):a.delete(n.pos,n.pos+s.nodeSize),t.dispatch(a),!0}return!1}function _k(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function Dq(t){if(!hn||t.state.selection.$head.parentOffset>0)return!1;let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(e&&e.nodeType==1&&n==0&&e.firstChild&&e.firstChild.contentEditable=="false"){let r=e.firstChild;_k(t,r,"true"),setTimeout(()=>_k(t,r,"false"),20)}return!1}function Sq(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function wq(t,e){let n=e.keyCode,r=Sq(e);if(n==8||ur&&n==72&&r=="c")return jk(t,-1)||al(t,-1);if(n==46&&!e.shiftKey||ur&&n==68&&r=="c")return jk(t,1)||al(t,1);if(n==13||n==27)return!0;if(n==37||ur&&n==66&&r=="c"){let i=n==37?Fk(t,t.state.selection.from)=="ltr"?-1:1:-1;return Ik(t,i,r)||al(t,i)}else if(n==39||ur&&n==70&&r=="c"){let i=n==39?Fk(t,t.state.selection.from)=="ltr"?1:-1:1;return Ik(t,i,r)||al(t,i)}else{if(n==38||ur&&n==80&&r=="c")return Kk(t,-1,r)||al(t,-1);if(n==40||ur&&n==78&&r=="c")return Dq(t)||Kk(t,1,r)||al(t,1);if(r==(ur?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function i1(t,e){t.someProp("transformCopied",b=>{e=b(e,t)});let n=[],{content:r,openStart:i,openEnd:s}=e;for(;i>1&&s>1&&r.childCount==1&&r.firstChild.childCount==1;){i--,s--;let b=r.firstChild;n.push(b.type.name,b.attrs!=b.type.defaultAttrs?b.attrs:null),r=b.content}let a=t.someProp("clipboardSerializer")||pa.fromSchema(t.state.schema),u=q9(),c=u.createElement("div");c.appendChild(a.serializeFragment(r,{document:u}));let f=c.firstChild,h,m=0;for(;f&&f.nodeType==1&&(h=U9[f.nodeName.toLowerCase()]);){for(let b=h.length-1;b>=0;b--){let v=u.createElement(h[b]);for(;c.firstChild;)v.appendChild(c.firstChild);c.appendChild(v),m++}f=c.firstChild}f&&f.nodeType==1&&f.setAttribute("data-pm-slice",`${i} ${s}${m?` -${m}`:""} ${JSON.stringify(n)}`);let g=t.someProp("clipboardTextSerializer",b=>b(e,t))||e.content.textBetween(0,e.content.size,`
|
|
28
|
-
|
|
29
|
-
`);return{dom:c,text:g,slice:e}}function j9(t,e,n,r,i){let s=i.parent.type.spec.code,a,u;if(!n&&!e)return null;let c=!!e&&(r||s||!n);if(c){if(t.someProp("transformPastedText",g=>{e=g(e,s||r,t)}),s)return u=new he(ae.from(t.state.schema.text(e.replace(/\r\n?/g,`
|
|
30
|
-
`))),0,0),t.someProp("transformPasted",g=>{u=g(u,t,!0)}),u;let m=t.someProp("clipboardTextParser",g=>g(e,i,r,t));if(m)u=m;else{let g=i.marks(),{schema:b}=t.state,v=pa.fromSchema(b);a=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(C=>{let E=a.appendChild(document.createElement("p"));C&&E.appendChild(v.serializeNode(b.text(C,g)))})}}else t.someProp("transformPastedHTML",m=>{n=m(n,t)}),a=Bq(n),dd&&Mq(a);let f=a&&a.querySelector("[data-pm-slice]"),h=f&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(f.getAttribute("data-pm-slice")||"");if(h&&h[3])for(let m=+h[3];m>0;m--){let g=a.firstChild;for(;g&&g.nodeType!=1;)g=g.nextSibling;if(!g)break;a=g}if(u||(u=(t.someProp("clipboardParser")||t.someProp("domParser")||Bi.fromSchema(t.state.schema)).parseSlice(a,{preserveWhitespace:!!(c||h),context:i,ruleFromNode(g){return g.nodeName=="BR"&&!g.nextSibling&&g.parentNode&&!$q.test(g.parentNode.nodeName)?{ignore:!0}:null}})),h)u=Rq(Hk(u,+h[1],+h[2]),h[4]);else if(u=he.maxOpen(Tq(u.content,i),!0),u.openStart||u.openEnd){let m=0,g=0;for(let b=u.content.firstChild;m<u.openStart&&!b.type.spec.isolating;m++,b=b.firstChild);for(let b=u.content.lastChild;g<u.openEnd&&!b.type.spec.isolating;g++,b=b.lastChild);u=Hk(u,m,g)}return t.someProp("transformPasted",m=>{u=m(u,t,c)}),u}const $q=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function Tq(t,e){if(t.childCount<2)return t;for(let n=e.depth;n>=0;n--){let i=e.node(n).contentMatchAt(e.index(n)),s,a=[];if(t.forEach(u=>{if(!a)return;let c=i.findWrapping(u.type),f;if(!c)return a=null;if(f=a.length&&s.length&&H9(c,s,u,a[a.length-1],0))a[a.length-1]=f;else{a.length&&(a[a.length-1]=V9(a[a.length-1],s.length));let h=_9(u,c);a.push(h),i=i.matchType(h.type),s=c}}),a)return ae.from(a)}return t}function _9(t,e,n=0){for(let r=e.length-1;r>=n;r--)t=e[r].create(null,ae.from(t));return t}function H9(t,e,n,r,i){if(i<t.length&&i<e.length&&t[i]==e[i]){let s=H9(t,e,n,r.lastChild,i+1);if(s)return r.copy(r.content.replaceChild(r.childCount-1,s));if(r.contentMatchAt(r.childCount).matchType(i==t.length-1?n.type:t[i+1]))return r.copy(r.content.append(ae.from(_9(n,t,i+1))))}}function V9(t,e){if(e==0)return t;let n=t.content.replaceChild(t.childCount-1,V9(t.lastChild,e-1)),r=t.contentMatchAt(t.childCount).fillBefore(ae.empty,!0);return t.copy(n.append(r))}function Ey(t,e,n,r,i,s){let a=e<0?t.firstChild:t.lastChild,u=a.content;return t.childCount>1&&(s=0),i<r-1&&(u=Ey(u,e,n,r,i+1,s)),i>=n&&(u=e<0?a.contentMatchAt(0).fillBefore(u,s<=i).append(u):u.append(a.contentMatchAt(a.childCount).fillBefore(ae.empty,!0))),t.replaceChild(e<0?0:t.childCount-1,a.copy(u))}function Hk(t,e,n){return e<t.openStart&&(t=new he(Ey(t.content,-1,e,t.openStart,0,t.openEnd),e,t.openEnd)),n<t.openEnd&&(t=new he(Ey(t.content,1,n,t.openEnd,0,0),t.openStart,n)),t}const U9={thead:["table"],tbody:["table"],tfoot:["table"],caption:["table"],colgroup:["table"],col:["table","colgroup"],tr:["table","tbody"],td:["table","tbody","tr"],th:["table","tbody","tr"]};function q9(){return document.implementation.createHTMLDocument("title")}let Q0=null;function Aq(t){let e=window.trustedTypes;return e?(Q0||(Q0=e.defaultPolicy||e.createPolicy("ProseMirrorClipboard",{createHTML:n=>n})),Q0.createHTML(t)):t}function Bq(t){let e=/^(\s*<meta [^>]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=q9(),r=n.body,i=/<([a-z][^>\s]+)/i.exec(t),s;if((s=i&&U9[i[1].toLowerCase()])&&(t=s.map(a=>"<"+a+">").join("")+t+s.map(a=>"</"+a+">").reverse().join("")),r.innerHTML=Aq(t),s)for(let a=0;a<s.length;a++)r=r.querySelector(s[a])||r;for(let a=0;a<n.styleSheets.length;a++){let u=n.styleSheets[a];for(let c=0;c<u.rules.length;c++){let f=u.rules[c];if(f instanceof CSSStyleRule){let h=r.querySelectorAll(f.selectorText);for(let m=0;m<h.length;m++)h[m].style.cssText+=f.style.cssText}}}return r}function Mq(t){let e=t.querySelectorAll(nn?"span:not([class]):not([style])":"span.Apple-converted-space");for(let n=0;n<e.length;n++){let r=e[n];r.childNodes.length==1&&r.textContent==" "&&r.parentNode&&r.parentNode.replaceChild(t.ownerDocument.createTextNode(" "),r)}}function Rq(t,e){if(!t.size)return t;let n=t.content.firstChild.type.schema,r;try{r=JSON.parse(e)}catch{return t}let{content:i,openStart:s,openEnd:a}=t;for(let u=r.length-2;u>=0;u-=2){let c=n.nodes[r[u]];if(!c||c.hasRequiredAttrs())break;i=ae.from(c.create(r[u+1],i)),s++,a++}return new he(i,s,a)}const Cn={},En={},Nq={touchstart:!0,touchmove:!0};class Pq{constructor(){this.shiftKey=!1,this.mouseDown=null,this.lastKeyCode=null,this.lastKeyCodeTime=0,this.lastClick={time:0,x:0,y:0,type:"",button:0},this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastIOSEnter=0,this.lastIOSEnterFallbackTimeout=-1,this.lastFocus=0,this.lastTouch=0,this.lastChromeDelete=0,this.composing=!1,this.compositionNode=null,this.composingTimeout=-1,this.compositionNodes=[],this.compositionEndedAt=-2e8,this.compositionID=1,this.badSafariComposition=!1,this.compositionPendingChanges=0,this.domChangeCount=0,this.eventHandlers=Object.create(null),this.hideSelectionGuard=null}}function Oq(t){for(let e in Cn){let n=Cn[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=r=>{zq(t,r)&&!s1(t,r)&&(t.editable||!(r.type in En))&&n(t,r)},Nq[e]?{passive:!0}:void 0)}hn&&t.dom.addEventListener("input",()=>null),ky(t)}function $i(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function Lq(t){t.input.mouseDown&&t.input.mouseDown.done(),t.domObserver.stop();for(let e in t.input.eventHandlers)t.dom.removeEventListener(e,t.input.eventHandlers[e]);clearTimeout(t.input.composingTimeout),clearTimeout(t.input.lastIOSEnterFallbackTimeout)}function ky(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=r=>s1(t,r))})}function s1(t,e){return t.someProp("handleDOMEvents",n=>{let r=n[e.type];return r?r(t,e)||e.defaultPrevented:!1})}function zq(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let n=e.target;n!=t.dom;n=n.parentNode)if(!n||n.nodeType==11||n.pmViewDesc&&n.pmViewDesc.stopEvent(e))return!1;return!0}function Iq(t,e){!s1(t,e)&&Cn[e.type]&&(t.editable||!(e.type in En))&&Cn[e.type](t,e)}En.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!Y9(t)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!(wi&&nn&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),Bl&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let r=Date.now();t.input.lastIOSEnter=r,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==r&&(t.someProp("handleKeyDown",i=>i(t,$o(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",r=>r(t,n))||wq(t,n)?n.preventDefault():$i(t,"key")};En.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};En.keypress=(t,e)=>{let n=e;if(Y9(t)||!n.charCode||n.ctrlKey&&!n.altKey||ur&&n.metaKey)return;if(t.someProp("handleKeyPress",i=>i(t,n))){n.preventDefault();return}let r=t.state.selection;if(!(r instanceof De)||!r.$from.sameParent(r.$to)){let i=String.fromCharCode(n.charCode),s=()=>t.state.tr.insertText(i).scrollIntoView();!/[\r\n]/.test(i)&&!t.someProp("handleTextInput",a=>a(t,r.$from.pos,r.$to.pos,i,s))&&t.dispatch(s()),n.preventDefault()}};function hd(t){return{left:t.clientX,top:t.clientY}}function Fq(t,e){let n=e.x-t.clientX,r=e.y-t.clientY;return n*n+r*r<100}function o1(t,e,n,r,i){if(r==-1)return!1;let s=t.state.doc.resolve(r);for(let a=s.depth+1;a>0;a--)if(t.someProp(e,u=>a>s.depth?u(t,n,s.nodeAfter,s.before(a),i,!0):u(t,n,s.node(a),s.before(a),i,!1)))return!0;return!1}function pd(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let r=t.state.tr.setSelection(e);r.setMeta("pointer",!0),t.dispatch(r)}function Kq(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),r=n.nodeAfter;return r&&r.isAtom&&Ce.isSelectable(r)?(pd(t,new Ce(n)),!0):!1}function jq(t,e){if(e==-1)return!1;let n=t.state.selection,r,i;n instanceof Ce&&(r=n.node);let s=t.state.doc.resolve(e);for(let a=s.depth+1;a>0;a--){let u=a>s.depth?s.nodeAfter:s.node(a);if(Ce.isSelectable(u)){r&&n.$from.depth>0&&a>=n.$from.depth&&s.before(n.$from.depth+1)==n.$from.pos?i=s.before(n.$from.depth):i=s.before(a);break}}return i!=null?(pd(t,Ce.create(t.state.doc,i)),!0):!1}function _q(t,e,n,r,i){return o1(t,"handleClickOn",e,n,r)||t.someProp("handleClick",s=>s(t,e,r))||(i?jq(t,n):Kq(t,n))}function Hq(t,e,n,r){return o1(t,"handleDoubleClickOn",e,n,r)||t.someProp("handleDoubleClick",i=>i(t,e,r))}function Vq(t,e,n,r){return o1(t,"handleTripleClickOn",e,n,r)||t.someProp("handleTripleClick",i=>i(t,e,r))||Uq(t,n,r)}function Uq(t,e,n){if(n.button!=0)return!1;let r=G9(t,e,!0),i=t.state.doc;return r?(pd(t,r),r instanceof De&&i.eq(t.state.doc)&&(t.input.mouseDown=new Gq(t,r)),!0):!1}function G9(t,e,n){let r=t.state.doc;if(e==-1)return r.inlineContent?De.create(r,0,r.content.size):null;let i=r.resolve(e);for(let s=i.depth+1;s>0;s--){let a=s>i.depth?i.nodeAfter:i.node(s),u=i.before(s);if(a.inlineContent)return De.create(r,u+1,u+1+a.content.size);if(n&&Ce.isSelectable(a))return Ce.create(r,u)}return null}function a1(t){return cp(t)}const W9=ur?"metaKey":"ctrlKey";Cn.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let r=a1(t),i=Date.now(),s="singleClick";i-t.input.lastClick.time<500&&Fq(n,t.input.lastClick)&&!n[W9]&&t.input.lastClick.button==n.button&&(t.input.lastClick.type=="singleClick"?s="doubleClick":t.input.lastClick.type=="doubleClick"&&(s="tripleClick")),t.input.lastClick={time:i,x:n.clientX,y:n.clientY,type:s,button:n.button},t.input.mouseDown&&t.input.mouseDown.done();let a=t.posAtCoords(hd(n));a&&(s=="singleClick"?t.input.mouseDown=new qq(t,a,n,!!r):(s=="doubleClick"?Hq:Vq)(t,a.pos,a.inside,n)?n.preventDefault():$i(t,"pointer"))};class Q9{constructor(e){this.view=e,this.mightDrag=null,e.root.addEventListener("mouseup",this.up=this.up.bind(this)),e.root.addEventListener("mousemove",this.move=this.move.bind(this))}up(e){this.done()}move(e){e.buttons==0&&this.done()}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.view.input.mouseDown==this&&(this.view.input.mouseDown=null)}delaySelUpdate(){return!1}}class qq extends Q9{constructor(e,n,r,i){super(e),this.pos=n,this.event=r,this.flushed=i,this.delayedSelectionSync=!1,this.startDoc=e.state.doc,this.selectNode=!!r[W9],this.allowDefault=r.shiftKey;let s,a;if(n.inside>-1)s=e.state.doc.nodeAt(n.inside),a=n.inside;else{let h=e.state.doc.resolve(n.pos);s=h.parent,a=h.depth?h.before():0}const u=i?null:r.target,c=u?e.docView.nearestDesc(u,!0):null;this.target=c&&c.nodeDOM.nodeType==1?c.nodeDOM:null;let{selection:f}=e.state;r.button==0&&(s.type.spec.draggable&&s.type.spec.selectable!==!1||f instanceof Ce&&f.from<=a&&f.to>a)&&(this.mightDrag={node:s,pos:a,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&fr&&!this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),$i(e,"pointer")}done(){super.done(),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>{this.view.isDestroyed||Ri(this.view)})}up(e){if(this.done(),!this.view.dom.contains(e.target))return;let n=this.pos;this.view.state.doc!=this.startDoc&&(n=this.view.posAtCoords(hd(e))),this.updateAllowDefault(e),this.allowDefault||!n?$i(this.view,"pointer"):_q(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||hn&&this.mightDrag&&!this.mightDrag.node.isAtom||nn&&!this.view.state.selection.visible&&Math.min(Math.abs(n.pos-this.view.state.selection.from),Math.abs(n.pos-this.view.state.selection.to))<=2)?(pd(this.view,Me.near(this.view.state.doc.resolve(n.pos))),e.preventDefault()):$i(this.view,"pointer")}move(e){this.updateAllowDefault(e),$i(this.view,"pointer"),super.move(e)}updateAllowDefault(e){!this.allowDefault&&(Math.abs(this.event.x-e.clientX)>4||Math.abs(this.event.y-e.clientY)>4)&&(this.allowDefault=!0)}delaySelUpdate(){return this.allowDefault?(this.delayedSelectionSync=!0,!0):!1}}class Gq extends Q9{constructor(e,n){super(e),this.startSelection=n,this.startDoc=e.state.doc}move(e){if(e.buttons==0||this.view.isDestroyed||!this.view.state.doc.eq(this.startDoc)){this.done();return}e.preventDefault(),$i(this.view,"pointer");let n=this.view.posAtCoords(hd(e)),r=n&&G9(this.view,n.inside,!1);if(!r)return;let{doc:i}=this.view.state,s=this.startSelection,[a,u]=r.from<s.from?[s.to,r.from]:[s.from,r.to];pd(this.view,De.create(i,a,u))}}Cn.touchstart=t=>{t.input.lastTouch=Date.now(),a1(t),$i(t,"pointer")};Cn.touchmove=t=>{t.input.lastTouch=Date.now(),$i(t,"pointer")};Cn.contextmenu=t=>a1(t);function Y9(t,e){return t.composing?!0:hn&&Math.abs(Date.now()-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}const Wq=wi?5e3:-1;En.compositionstart=En.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof De&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(r=>r.type.spec.inclusive===!1)||nn&&S9&&Qq(t)))t.markCursor=t.state.storedMarks||n.marks(),cp(t,!0),t.markCursor=null;else if(cp(t,!e.selection.empty),fr&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let r=t.domSelectionRange();for(let i=r.focusNode,s=r.focusOffset;i&&i.nodeType==1&&s!=0;){let a=s<0?i.lastChild:i.childNodes[s-1];if(!a)break;if(a.nodeType==3){let u=t.domSelection();u&&u.collapse(a,a.nodeValue.length);break}else i=a,s=-1}}t.input.composing=!0}X9(t,Wq)};function Qq(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let r=e.childNodes[n];return r.nodeType==1&&r.contentEditable=="false"}En.compositionend=(t,e)=>{t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=Date.now(),t.input.compositionPendingChanges=t.domObserver.pendingRecords().length?t.input.compositionID:0,t.input.compositionNode=null,t.input.badSafariComposition?t.domObserver.forceFlush():t.input.compositionPendingChanges&&Promise.resolve().then(()=>t.domObserver.flush()),t.input.compositionID++,X9(t,20))};function X9(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>cp(t),e))}function J9(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=Date.now());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function Yq(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=jU(e.focusNode,e.focusOffset),r=_U(e.focusNode,e.focusOffset);if(n&&r&&n!=r){let i=r.pmViewDesc,s=t.domObserver.lastChangedTextNode;if(n==s||r==s)return s;if(!i||!i.isText(r.nodeValue))return r;if(t.input.compositionNode==r){let a=n.pmViewDesc;if(!(!a||!a.isText(n.nodeValue)))return r}}return n||r}function cp(t,e=!1){if(!(wi&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),J9(t),e||t.docView&&t.docView.dirty){let n=n1(t),r=t.state.selection;return n&&!n.eq(r)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!r.$from.node(r.$from.sharedDepth(r.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function Xq(t,e){if(!t.dom.parentNode)return;let n=t.dom.parentNode.appendChild(document.createElement("div"));n.appendChild(e),n.style.cssText="position: fixed; left: -10000px; top: 10px";let r=getSelection(),i=document.createRange();i.selectNodeContents(e),t.dom.blur(),r.removeAllRanges(),r.addRange(i),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}const _c=zn&&Ns<15||Bl&&qU<604;Cn.copy=En.cut=(t,e)=>{let n=e,r=t.state.selection,i=n.type=="cut";if(r.empty)return;let s=_c?null:n.clipboardData,a=r.content(),{dom:u,text:c}=i1(t,a);s?(n.preventDefault(),s.clearData(),s.setData("text/html",u.innerHTML),s.setData("text/plain",c)):Xq(t,u),i&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function Jq(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function Zq(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,r=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(r.contentEditable="true"),r.style.cssText="position: fixed; left: -10000px; top: 10px",r.focus();let i=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),r.parentNode&&r.parentNode.removeChild(r),n?Hc(t,r.value,null,i,e):Hc(t,r.textContent,r.innerHTML,i,e)},50)}function Hc(t,e,n,r,i){let s=j9(t,e,n,r,t.state.selection.$from);if(t.someProp("handlePaste",c=>c(t,i,s||he.empty)))return!0;if(!s)return!1;let a=Jq(s),u=a?t.state.tr.replaceSelectionWith(a,r):t.state.tr.replaceSelection(s);return t.dispatch(u.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function Z9(t){let e=t.getData("text/plain")||t.getData("Text");if(e)return e;let n=t.getData("text/uri-list");return n?n.replace(/\r?\n/g," "):""}En.paste=(t,e)=>{let n=e;if(t.composing&&!wi)return;let r=_c?null:n.clipboardData,i=t.input.shiftKey&&t.input.lastKeyCode!=45;r&&Hc(t,Z9(r),r.getData("text/html"),i,n)?n.preventDefault():Zq(t,n)};class e7{constructor(e,n,r){this.slice=e,this.move=n,this.node=r}}const eG=ur?"altKey":"ctrlKey";function t7(t,e){let n;return t.someProp("dragCopies",r=>{n=n||r(e)}),n!=null?!n:!e[eG]}Cn.dragstart=(t,e)=>{let n=e,r=t.input.mouseDown;if(r&&r.done(),!n.dataTransfer)return;let i=t.state.selection,s=i.empty?null:t.posAtCoords(hd(n)),a;if(!(s&&s.pos>=i.from&&s.pos<=(i instanceof Ce?i.to-1:i.to))){if(r&&r.mightDrag)a=Ce.create(t.state.doc,r.mightDrag.pos);else if(n.target&&n.target.nodeType==1){let m=t.docView.nearestDesc(n.target,!0);m&&m.node.type.spec.draggable&&m!=t.docView&&(a=Ce.create(t.state.doc,m.posBefore))}}let u=(a||t.state.selection).content(),{dom:c,text:f,slice:h}=i1(t,u);(!n.dataTransfer.files.length||!nn||D9>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(_c?"Text":"text/html",c.innerHTML),n.dataTransfer.effectAllowed="copyMove",_c||n.dataTransfer.setData("text/plain",f),t.dragging=new e7(h,t7(t,n),a)};Cn.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};En.dragover=En.dragenter=(t,e)=>e.preventDefault();En.drop=(t,e)=>{try{tG(t,e,t.dragging)}finally{t.dragging=null}};function tG(t,e,n){if(!e.dataTransfer)return;let r=t.posAtCoords(hd(e));if(!r)return;let i=t.state.doc.resolve(r.pos),s=n&&n.slice;s?t.someProp("transformPasted",b=>{s=b(s,t,!1)}):s=j9(t,Z9(e.dataTransfer),_c?null:e.dataTransfer.getData("text/html"),!1,i);let a=!!(n&&t7(t,e));if(t.someProp("handleDrop",b=>b(t,e,s||he.empty,a))){e.preventDefault();return}if(!s)return;e.preventDefault();let u=s?n9(t.state.doc,i.pos,s):i.pos;u==null&&(u=i.pos);let c=t.state.tr;if(a){let{node:b}=n;b?b.replace(c):c.deleteSelection()}let f=c.mapping.map(u),h=s.openStart==0&&s.openEnd==0&&s.content.childCount==1,m=c.doc;if(h?c.replaceRangeWith(f,f,s.content.firstChild):c.replaceRange(f,f,s),c.doc.eq(m))return;let g=c.doc.resolve(f);if(h&&Ce.isSelectable(s.content.firstChild)&&g.nodeAfter&&g.nodeAfter.sameMarkup(s.content.firstChild))c.setSelection(new Ce(g));else{let b=c.mapping.map(u);c.mapping.maps[c.mapping.maps.length-1].forEach((v,C,E,k)=>b=k),c.setSelection(r1(t,g,c.doc.resolve(b)))}t.focus(),t.dispatch(c.setMeta("uiEvent","drop"))}Cn.focus=t=>{t.input.lastFocus=Date.now(),t.focused||(t.domObserver.stop(),t.dom.classList.add("ProseMirror-focused"),t.domObserver.start(),t.focused=!0,setTimeout(()=>{t.docView&&t.hasFocus()&&!t.domObserver.currentSelection.eq(t.domSelectionRange())&&Ri(t)},20))};Cn.blur=(t,e)=>{let n=e;t.focused&&(t.domObserver.stop(),t.dom.classList.remove("ProseMirror-focused"),t.domObserver.start(),n.relatedTarget&&t.dom.contains(n.relatedTarget)&&t.domObserver.currentSelection.clear(),t.focused=!1)};Cn.beforeinput=(t,e)=>{if(wi&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:r}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=r||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",s=>s(t,$o(8,"Backspace")))))return;let{$cursor:i}=t.state.selection;i&&i.pos>0&&t.dispatch(t.state.tr.delete(i.pos-1,i.pos).scrollIntoView())},50)}};for(let t in En)Cn[t]=En[t];function Vc(t,e){if(t==e)return!0;for(let n in t)if(t[n]!==e[n])return!1;for(let n in e)if(!(n in t))return!1;return!0}class dp{constructor(e,n){this.toDOM=e,this.spec=n||Xo,this.side=this.spec.side||0}map(e,n,r,i){let{pos:s,deleted:a}=e.mapResult(n.from+i,this.side<0?-1:1);return a?null:new yn(s-r,s-r,this)}valid(){return!0}eq(e){return this==e||e instanceof dp&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&Vc(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class Ls{constructor(e,n){this.attrs=e,this.spec=n||Xo}map(e,n,r,i){let s=e.map(n.from+i,this.spec.inclusiveStart?-1:1)-r,a=e.map(n.to+i,this.spec.inclusiveEnd?1:-1)-r;return s>=a?null:new yn(s,a,this)}valid(e,n){return n.from<n.to}eq(e){return this==e||e instanceof Ls&&Vc(this.attrs,e.attrs)&&Vc(this.spec,e.spec)}static is(e){return e.type instanceof Ls}destroy(){}}class l1{constructor(e,n){this.attrs=e,this.spec=n||Xo}map(e,n,r,i){let s=e.mapResult(n.from+i,1);if(s.deleted)return null;let a=e.mapResult(n.to+i,-1);return a.deleted||a.pos<=s.pos?null:new yn(s.pos-r,a.pos-r,this)}valid(e,n){let{index:r,offset:i}=e.content.findIndex(n.from),s;return i==n.from&&!(s=e.child(r)).isText&&i+s.nodeSize==n.to}eq(e){return this==e||e instanceof l1&&Vc(this.attrs,e.attrs)&&Vc(this.spec,e.spec)}destroy(){}}class yn{constructor(e,n,r){this.from=e,this.to=n,this.type=r}copy(e,n){return new yn(e,n,this.type)}eq(e,n=0){return this.type.eq(e.type)&&this.from+n==e.from&&this.to+n==e.to}map(e,n,r){return this.type.map(e,this,n,r)}static widget(e,n,r){return new yn(e,e,new dp(n,r))}static inline(e,n,r,i){return new yn(e,n,new Ls(r,i))}static node(e,n,r,i){return new yn(e,n,new l1(r,i))}get spec(){return this.type.spec}get inline(){return this.type instanceof Ls}get widget(){return this.type instanceof dp}}const dl=[],Xo={};class lt{constructor(e,n){this.local=e.length?e:dl,this.children=n.length?n:dl}static create(e,n){return n.length?fp(n,e,0,Xo):ln}find(e,n,r){let i=[];return this.findInner(e??0,n??1e9,i,0,r),i}findInner(e,n,r,i,s){for(let a=0;a<this.local.length;a++){let u=this.local[a];u.from<=n&&u.to>=e&&(!s||s(u.spec))&&r.push(u.copy(u.from+i,u.to+i))}for(let a=0;a<this.children.length;a+=3)if(this.children[a]<n&&this.children[a+1]>e){let u=this.children[a]+1;this.children[a+2].findInner(e-u,n-u,r,i+u,s)}}map(e,n,r){return this==ln||e.maps.length==0?this:this.mapInner(e,n,0,0,r||Xo)}mapInner(e,n,r,i,s){let a;for(let u=0;u<this.local.length;u++){let c=this.local[u].map(e,r,i);c&&c.type.valid(n,c)?(a||(a=[])).push(c):s.onRemove&&s.onRemove(this.local[u].spec)}return this.children.length?nG(this.children,a||[],e,n,r,i,s):a?new lt(a.sort(Jo),dl):ln}add(e,n){return n.length?this==ln?lt.create(e,n):this.addInner(e,n,0):this}addInner(e,n,r){let i,s=0;e.forEach((u,c)=>{let f=c+r,h;if(h=r7(n,u,f)){for(i||(i=this.children.slice());s<i.length&&i[s]<c;)s+=3;i[s]==c?i[s+2]=i[s+2].addInner(u,h,f+1):i.splice(s,0,c,c+u.nodeSize,fp(h,u,f+1,Xo)),s+=3}});let a=n7(s?i7(n):n,-r);for(let u=0;u<a.length;u++)a[u].type.valid(e,a[u])||a.splice(u--,1);return new lt(a.length?this.local.concat(a).sort(Jo):this.local,i||this.children)}remove(e){return e.length==0||this==ln?this:this.removeInner(e,0)}removeInner(e,n){let r=this.children,i=this.local;for(let s=0;s<r.length;s+=3){let a,u=r[s]+n,c=r[s+1]+n;for(let h=0,m;h<e.length;h++)(m=e[h])&&m.from>u&&m.to<c&&(e[h]=null,(a||(a=[])).push(m));if(!a)continue;r==this.children&&(r=this.children.slice());let f=r[s+2].removeInner(a,u+1);f!=ln?r[s+2]=f:(r.splice(s,3),s-=3)}if(i.length){for(let s=0,a;s<e.length;s++)if(a=e[s])for(let u=0;u<i.length;u++)i[u].eq(a,n)&&(i==this.local&&(i=this.local.slice()),i.splice(u--,1))}return r==this.children&&i==this.local?this:i.length||r.length?new lt(i,r):ln}forChild(e,n){if(this==ln)return this;if(n.isLeaf)return lt.empty;let r,i;for(let u=0;u<this.children.length;u+=3)if(this.children[u]>=e){this.children[u]==e&&(r=this.children[u+2]);break}let s=e+1,a=s+n.content.size;for(let u=0;u<this.local.length;u++){let c=this.local[u];if(c.from<a&&c.to>s&&c.type instanceof Ls){let f=Math.max(s,c.from)-s,h=Math.min(a,c.to)-s;f<h&&(i||(i=[])).push(c.copy(f,h))}}if(i){let u=new lt(i.sort(Jo),dl);return r?new ks([u,r]):u}return r||ln}eq(e){if(this==e)return!0;if(!(e instanceof lt)||this.local.length!=e.local.length||this.children.length!=e.children.length)return!1;for(let n=0;n<this.local.length;n++)if(!this.local[n].eq(e.local[n]))return!1;for(let n=0;n<this.children.length;n+=3)if(this.children[n]!=e.children[n]||this.children[n+1]!=e.children[n+1]||!this.children[n+2].eq(e.children[n+2]))return!1;return!0}locals(e){return u1(this.localsInner(e))}localsInner(e){if(this==ln)return dl;if(e.inlineContent||!this.local.some(Ls.is))return this.local;let n=[];for(let r=0;r<this.local.length;r++)this.local[r].type instanceof Ls||n.push(this.local[r]);return n}forEachSet(e){e(this)}}lt.empty=new lt([],[]);lt.removeOverlap=u1;const ln=lt.empty;class ks{constructor(e){this.members=e}map(e,n){const r=this.members.map(i=>i.map(e,n,Xo));return ks.from(r)}forChild(e,n){if(n.isLeaf)return lt.empty;let r=[];for(let i=0;i<this.members.length;i++){let s=this.members[i].forChild(e,n);s!=ln&&(s instanceof ks?r=r.concat(s.members):r.push(s))}return ks.from(r)}eq(e){if(!(e instanceof ks)||e.members.length!=this.members.length)return!1;for(let n=0;n<this.members.length;n++)if(!this.members[n].eq(e.members[n]))return!1;return!0}locals(e){let n,r=!0;for(let i=0;i<this.members.length;i++){let s=this.members[i].localsInner(e);if(s.length)if(!n)n=s;else{r&&(n=n.slice(),r=!1);for(let a=0;a<s.length;a++)n.push(s[a])}}return n?u1(r?n:n.sort(Jo)):dl}static from(e){switch(e.length){case 0:return ln;case 1:return e[0];default:return new ks(e.every(n=>n instanceof lt)?e:e.reduce((n,r)=>n.concat(r instanceof lt?r:r.members),[]))}}forEachSet(e){for(let n=0;n<this.members.length;n++)this.members[n].forEachSet(e)}}function nG(t,e,n,r,i,s,a){let u=t.slice();for(let f=0,h=s;f<n.maps.length;f++){let m=0;n.maps[f].forEach((g,b,v,C)=>{let E=C-v-(b-g);for(let k=0;k<u.length;k+=3){let T=u[k+1];if(T<0||g>T+h-m)continue;let $=u[k]+h-m;b>=$?u[k+1]=g<=$?-2:-1:g>=h&&E&&(u[k]+=E,u[k+1]+=E)}m+=E}),h=n.maps[f].map(h,-1)}let c=!1;for(let f=0;f<u.length;f+=3)if(u[f+1]<0){if(u[f+1]==-2){c=!0,u[f+1]=-1;continue}let h=n.map(t[f]+s),m=h-i;if(m<0||m>=r.content.size){c=!0;continue}let g=n.map(t[f+1]+s,-1),b=g-i,{index:v,offset:C}=r.content.findIndex(m),E=r.maybeChild(v);if(E&&C==m&&C+E.nodeSize==b){let k=u[f+2].mapInner(n,E,h+1,t[f]+s+1,a);k!=ln?(u[f]=m,u[f+1]=b,u[f+2]=k):(u[f+1]=-2,c=!0)}else c=!0}if(c){let f=rG(u,t,e,n,i,s,a),h=fp(f,r,0,a);e=h.local;for(let m=0;m<u.length;m+=3)u[m+1]<0&&(u.splice(m,3),m-=3);for(let m=0,g=0;m<h.children.length;m+=3){let b=h.children[m];for(;g<u.length&&u[g]<b;)g+=3;u.splice(g,0,h.children[m],h.children[m+1],h.children[m+2])}}return new lt(e.sort(Jo),u)}function n7(t,e){if(!e||!t.length)return t;let n=[];for(let r=0;r<t.length;r++){let i=t[r];n.push(new yn(i.from+e,i.to+e,i.type))}return n}function rG(t,e,n,r,i,s,a){function u(c,f){for(let h=0;h<c.local.length;h++){let m=c.local[h].map(r,i,f);m?n.push(m):a.onRemove&&a.onRemove(c.local[h].spec)}for(let h=0;h<c.children.length;h+=3)u(c.children[h+2],c.children[h]+f+1)}for(let c=0;c<t.length;c+=3)t[c+1]==-1&&u(t[c+2],e[c]+s+1);return n}function r7(t,e,n){if(e.isLeaf)return null;let r=n+e.nodeSize,i=null;for(let s=0,a;s<t.length;s++)(a=t[s])&&a.from>n&&a.to<r&&((i||(i=[])).push(a),t[s]=null);return i}function i7(t){let e=[];for(let n=0;n<t.length;n++)t[n]!=null&&e.push(t[n]);return e}function fp(t,e,n,r){let i=[],s=!1;e.forEach((u,c)=>{let f=r7(t,u,c+n);if(f){s=!0;let h=fp(f,u,n+c+1,r);h!=ln&&i.push(c,c+u.nodeSize,h)}});let a=n7(s?i7(t):t,-n).sort(Jo);for(let u=0;u<a.length;u++)a[u].type.valid(e,a[u])||(r.onRemove&&r.onRemove(a[u].spec),a.splice(u--,1));return a.length||i.length?new lt(a,i):ln}function Jo(t,e){return t.from-e.from||t.to-e.to}function u1(t){let e=t;for(let n=0;n<e.length-1;n++){let r=e[n];if(r.from!=r.to)for(let i=n+1;i<e.length;i++){let s=e[i];if(s.from==r.from){s.to!=r.to&&(e==t&&(e=t.slice()),e[i]=s.copy(s.from,r.to),Vk(e,i+1,s.copy(r.to,s.to)));continue}else{s.from<r.to&&(e==t&&(e=t.slice()),e[n]=r.copy(r.from,s.from),Vk(e,i,r.copy(s.from,r.to)));break}}}return e}function Vk(t,e,n){for(;e<t.length&&Jo(n,t[e])>0;)e++;t.splice(e,0,n)}function Y0(t){let e=[];return t.someProp("decorations",n=>{let r=n(t.state);r&&r!=ln&&e.push(r)}),t.cursorWrapper&&e.push(lt.create(t.state.doc,[t.cursorWrapper.deco])),ks.from(e)}const iG={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},sG=zn&&Ns<=11;class oG{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}set(e){this.anchorNode=e.anchorNode,this.anchorOffset=e.anchorOffset,this.focusNode=e.focusNode,this.focusOffset=e.focusOffset}clear(){this.anchorNode=this.focusNode=null}eq(e){return e.anchorNode==this.anchorNode&&e.anchorOffset==this.anchorOffset&&e.focusNode==this.focusNode&&e.focusOffset==this.focusOffset}}class aG{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new oG,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(r=>{for(let i=0;i<r.length;i++)this.queue.push(r[i]);zn&&Ns<=11&&r.some(i=>i.type=="childList"&&i.removedNodes.length||i.type=="characterData"&&i.oldValue.length>i.target.nodeValue.length)?this.flushSoon():hn&&e.composing&&r.some(i=>i.type=="childList"&&i.target.nodeName=="TR")?(e.input.badSafariComposition=!0,this.flushSoon()):this.flush()}),sG&&(this.onCharData=r=>{this.queue.push({target:r.target,type:"characterData",oldValue:r.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this)}flushSoon(){this.flushingSoon<0&&(this.flushingSoon=window.setTimeout(()=>{this.flushingSoon=-1,this.flush()},20))}forceFlush(){this.flushingSoon>-1&&(window.clearTimeout(this.flushingSoon),this.flushingSoon=-1,this.flush())}start(){this.observer&&(this.observer.takeRecords(),this.observer.observe(this.view.dom,iG)),this.onCharData&&this.view.dom.addEventListener("DOMCharacterDataModified",this.onCharData),this.connectSelection()}stop(){if(this.observer){let e=this.observer.takeRecords();if(e.length){for(let n=0;n<e.length;n++)this.queue.push(e[n]);window.setTimeout(()=>this.flush(),20)}this.observer.disconnect()}this.onCharData&&this.view.dom.removeEventListener("DOMCharacterDataModified",this.onCharData),this.disconnectSelection()}connectSelection(){this.view.dom.ownerDocument.addEventListener("selectionchange",this.onSelectionChange)}disconnectSelection(){this.view.dom.ownerDocument.removeEventListener("selectionchange",this.onSelectionChange)}suppressSelectionUpdates(){this.suppressingSelectionUpdates=!0,setTimeout(()=>this.suppressingSelectionUpdates=!1,50)}onSelectionChange(){if(zk(this.view)){if(this.suppressingSelectionUpdates)return Ri(this.view);if(zn&&Ns<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&ia(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset))return this.flushSoon()}this.flush()}}setCurSelection(){this.currentSelection.set(this.view.domSelectionRange())}ignoreSelectionChange(e){if(!e.focusNode)return!0;let n=new Set,r;for(let s=e.focusNode;s;s=Al(s))n.add(s);for(let s=e.anchorNode;s;s=Al(s))if(n.has(s)){r=s;break}let i=r&&this.view.docView.nearestDesc(r);if(i&&i.ignoreMutation({type:"selection",target:r.nodeType==3?r.parentNode:r}))return this.setCurSelection(),!0}pendingRecords(){if(this.observer)for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}flush(){let{view:e}=this;if(!e.docView||this.flushingSoon>-1)return;let n=this.pendingRecords();n.length&&(this.queue=[]);let r=e.domSelectionRange(),i=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(r)&&zk(e)&&!this.ignoreSelectionChange(r),s=-1,a=-1,u=!1,c=[];if(e.editable)for(let h=0;h<n.length;h++){let m=this.registerMutation(n[h],c);m&&(s=s<0?m.from:Math.min(m.from,s),a=a<0?m.to:Math.max(m.to,a),m.typeOver&&(u=!0))}if(c.some(h=>h.nodeName=="BR")&&(e.input.lastKeyCode==8||e.input.lastKeyCode==46||nn&&(e.composing||e.input.compositionEndedAt>Date.now()-50)&&n.some(h=>h.type=="childList"&&h.removedNodes.length))){for(let h of c)if(h.nodeName=="BR"&&h.parentNode){let m=h.nextSibling;for(;m&&m.nodeType==1;){if(m.contentEditable=="false"){h.parentNode.removeChild(h);break}m=m.firstChild}}}else if(fr&&c.length){let h=c.filter(m=>m.nodeName=="BR");if(h.length==2){let[m,g]=h;m.parentNode&&m.parentNode.parentNode==g.parentNode?g.remove():m.remove()}else{let{focusNode:m}=this.currentSelection;for(let g of h){let b=g.parentNode;b&&b.nodeName=="LI"&&(!m||cG(e,m)!=b)&&g.remove()}}}let f=null;s<0&&i&&e.input.lastFocus>Date.now()-200&&Math.max(e.input.lastTouch,e.input.lastClick.time)<Date.now()-300&&Dm(r)&&(f=n1(e))&&f.eq(Me.near(e.state.doc.resolve(0),1))?(e.input.lastFocus=0,Ri(e),this.currentSelection.set(r),e.scrollToSelection()):(s>-1||i)&&(s>-1&&(e.docView.markDirty(s,a),lG(e)),e.input.badSafariComposition&&(e.input.badSafariComposition=!1,dG(e,c)),this.handleDOMChange(s,a,u,c),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(r)||Ri(e),this.currentSelection.set(r))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let r=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(r==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!r||r.ignoreMutation(e))return null;if(e.type=="childList"){for(let h=0;h<e.addedNodes.length;h++){let m=e.addedNodes[h];n.push(m),m.nodeType==3&&(this.lastChangedTextNode=m)}if(r.contentDOM&&r.contentDOM!=r.dom&&!r.contentDOM.contains(e.target))return{from:r.posBefore,to:r.posAfter};let i=e.previousSibling,s=e.nextSibling;if(zn&&Ns<=11&&e.addedNodes.length)for(let h=0;h<e.addedNodes.length;h++){let{previousSibling:m,nextSibling:g}=e.addedNodes[h];(!m||Array.prototype.indexOf.call(e.addedNodes,m)<0)&&(i=m),(!g||Array.prototype.indexOf.call(e.addedNodes,g)<0)&&(s=g)}let a=i&&i.parentNode==e.target?en(i)+1:0,u=r.localPosFromDOM(e.target,a,-1),c=s&&s.parentNode==e.target?en(s):e.target.childNodes.length,f=r.localPosFromDOM(e.target,c,1);return{from:u,to:f}}else return e.type=="attributes"?{from:r.posAtStart-r.border,to:r.posAtEnd+r.border}:(this.lastChangedTextNode=e.target,{from:r.posAtStart,to:r.posAtEnd,typeOver:e.target.nodeValue==e.oldValue})}}let Uk=new WeakMap,qk=!1;function lG(t){if(!Uk.has(t)&&(Uk.set(t,null),["normal","nowrap","pre-line"].indexOf(getComputedStyle(t.dom).whiteSpace)!==-1)){if(t.requiresGeckoHackNode=fr,qk)return;console.warn("ProseMirror expects the CSS white-space property to be set, preferably to 'pre-wrap'. It is recommended to load style/prosemirror.css from the prosemirror-view package."),qk=!0}}function Gk(t,e){let n=e.startContainer,r=e.startOffset,i=e.endContainer,s=e.endOffset,a=t.domAtPos(t.state.selection.anchor);return ia(a.node,a.offset,i,s)&&([n,r,i,s]=[i,s,n,r]),{anchorNode:n,anchorOffset:r,focusNode:i,focusOffset:s}}function uG(t,e){if(e.getComposedRanges){let i=e.getComposedRanges(t.root)[0];if(i)return Gk(t,i)}let n;function r(i){i.preventDefault(),i.stopImmediatePropagation(),n=i.getTargetRanges()[0]}return t.dom.addEventListener("beforeinput",r,!0),document.execCommand("indent"),t.dom.removeEventListener("beforeinput",r,!0),n?Gk(t,n):null}function cG(t,e){for(let n=e.parentNode;n&&n!=t.dom;n=n.parentNode){let r=t.docView.nearestDesc(n,!0);if(r&&r.node.isBlock)return n}return null}function dG(t,e){var n;let{focusNode:r,focusOffset:i}=t.domSelectionRange();for(let s of e)if(((n=s.parentNode)===null||n===void 0?void 0:n.nodeName)=="TR"){let a=s.nextSibling;for(;a&&a.nodeName!="TD"&&a.nodeName!="TH";)a=a.nextSibling;if(a){let u=a;for(;;){let c=u.firstChild;if(!c||c.nodeType!=1||c.contentEditable=="false"||/^(BR|IMG)$/.test(c.nodeName))break;u=c}u.insertBefore(s,u.firstChild),r==s&&t.domSelection().collapse(s,i)}else s.parentNode.removeChild(s)}}function fG(t,e,n,r){let{node:i,fromOffset:s,toOffset:a,from:u,to:c}=t.docView.parseRange(e,n),f=t.domSelectionRange(),h,m=f.anchorNode;if(m&&t.dom.contains(m.nodeType==1?m:m.parentNode)&&(h=[{node:m,offset:f.anchorOffset}],Dm(f)||h.push({node:f.focusNode,offset:f.focusOffset})),nn&&t.input.lastKeyCode===8)for(let k=a;k>s;k--){let T=i.childNodes[k-1],$=T.pmViewDesc;if(T.nodeName=="BR"&&!$){a=k;break}if(!$||$.size)break}let g=t.state.doc,b=t.someProp("domParser")||Bi.fromSchema(t.state.schema),v=g.resolve(u),C=null,E=b.parse(i,{topNode:v.parent,topMatch:v.parent.contentMatchAt(v.index()),topOpen:!0,from:s,to:a,preserveWhitespace:v.parent.type.whitespace=="pre"?"full":!0,findPositions:h,ruleFromNode:hG(r),context:v});if(h&&h[0].pos!=null){let k=h[0].pos,T=h[1]&&h[1].pos;T==null&&(T=k),C={anchor:k+u,head:T+u}}return{doc:E,sel:C,from:u,to:c}}const hG=t=>e=>{let n=e.pmViewDesc;if(n)return n.parseRule(t);if(e.nodeName=="BR"&&e.parentNode){if(hn&&/^(ul|ol)$/i.test(e.parentNode.nodeName)){let r=document.createElement("div");return r.appendChild(document.createElement("li")),{skip:r}}else if(e.parentNode.lastChild==e||hn&&/^(tr|table)$/i.test(e.parentNode.nodeName))return{ignore:!0}}else if(e.nodeName=="IMG"&&e.getAttribute("mark-placeholder"))return{ignore:!0};return null},pG=/^(a|abbr|acronym|b|bd[io]|big|br|button|cite|code|data(list)?|del|dfn|em|i|img|ins|kbd|label|map|mark|meter|output|q|ruby|s|samp|small|span|strong|su[bp]|time|u|tt|var)$/i;function mG(t,e,n,r,i){let s=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let M=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,N=n1(t,M);if(N&&!t.state.selection.eq(N)){if(nn&&wi&&t.input.lastKeyCode===13&&Date.now()-100<t.input.lastKeyCodeTime&&t.someProp("handleKeyDown",F=>F(t,$o(13,"Enter"))))return;let I=t.state.tr.setSelection(N);M=="pointer"?I.setMeta("pointer",!0):M=="key"&&I.scrollIntoView(),s&&I.setMeta("composition",s),t.dispatch(I)}return}let a=t.state.doc.resolve(e),u=a.sharedDepth(n);e=a.before(u+1),n=t.state.doc.resolve(n).after(u+1);let c=t.state.selection,f=fG(t,e,n,i),h=t.state.doc,m=h.slice(f.from,f.to),g,b;t.input.lastKeyCode===8&&Date.now()-100<t.input.lastKeyCodeTime?(g=t.state.selection.to,b="end"):(g=t.state.selection.from,b="start"),t.input.lastKeyCode=null;let v=yG(m.content,f.doc.content,f.from,g,b);if(v&&t.input.domChangeCount++,(Bl&&t.input.lastIOSEnter>Date.now()-225||wi)&&i.some(M=>M.nodeType==1&&!pG.test(M.nodeName))&&(!v||v.endA>=v.endB)&&t.someProp("handleKeyDown",M=>M(t,$o(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!v)if(r&&c instanceof De&&!c.empty&&c.$head.sameParent(c.$anchor)&&!t.composing&&!(f.sel&&f.sel.anchor!=f.sel.head))v={start:c.from,endA:c.to,endB:c.to};else{if(f.sel){let M=Wk(t,t.state.doc,f.sel);if(M&&!M.eq(t.state.selection)){let N=t.state.tr.setSelection(M);s&&N.setMeta("composition",s),t.dispatch(N)}}return}t.state.selection.from<t.state.selection.to&&v.start==v.endB&&t.state.selection instanceof De&&(v.start>t.state.selection.from&&v.start<=t.state.selection.from+2&&t.state.selection.from>=f.from?v.start=t.state.selection.from:v.endA<t.state.selection.to&&v.endA>=t.state.selection.to-2&&t.state.selection.to<=f.to&&(v.endB+=t.state.selection.to-v.endA,v.endA=t.state.selection.to)),zn&&Ns<=11&&v.endB==v.start+1&&v.endA==v.start&&v.start>f.from&&f.doc.textBetween(v.start-f.from-1,v.start-f.from+1)==" "&&(v.start--,v.endA--,v.endB--);let C=f.doc.resolveNoCache(v.start-f.from),E=f.doc.resolveNoCache(v.endB-f.from),k=h.resolve(v.start),T=C.sameParent(E)&&C.parent.inlineContent&&k.end()>=v.endA;if((Bl&&t.input.lastIOSEnter>Date.now()-225&&(!T||i.some(M=>M.nodeName=="DIV"||M.nodeName=="P"))||!T&&C.pos<f.doc.content.size&&(!C.sameParent(E)||!C.parent.inlineContent)&&C.pos<E.pos&&!/\S/.test(f.doc.textBetween(C.pos,E.pos,"","")))&&t.someProp("handleKeyDown",M=>M(t,$o(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>v.start&&bG(h,v.start,v.endA,C,E)&&t.someProp("handleKeyDown",M=>M(t,$o(8,"Backspace")))){wi&&nn&&t.domObserver.suppressSelectionUpdates();return}nn&&v.endB==v.start&&(t.input.lastChromeDelete=Date.now()),wi&&!T&&C.start()!=E.start()&&E.parentOffset==0&&C.depth==E.depth&&f.sel&&f.sel.anchor==f.sel.head&&f.sel.head==v.endA&&(v.endB-=2,E=f.doc.resolveNoCache(v.endB-f.from),setTimeout(()=>{t.someProp("handleKeyDown",function(M){return M(t,$o(13,"Enter"))})},20));let $=v.start,A=v.endA,B=M=>{let N=M||t.state.tr.replace($,A,f.doc.slice(v.start-f.from,v.endB-f.from));if(f.sel){let I=Wk(t,N.doc,f.sel);I&&!(nn&&t.composing&&I.empty&&(v.start!=v.endB||t.input.lastChromeDelete<Date.now()-100)&&(I.head==$||I.head==N.mapping.map(A)-1)||zn&&I.empty&&I.head==$)&&N.setSelection(I)}return s&&N.setMeta("composition",s),N.scrollIntoView()},P;if(T)if(C.pos==E.pos){zn&&Ns<=11&&C.parentOffset==0&&(t.domObserver.suppressSelectionUpdates(),setTimeout(()=>Ri(t),20));let M=B(t.state.tr.delete($,A)),N=h.resolve(v.start).marksAcross(h.resolve(v.endA));N&&M.ensureMarks(N),t.dispatch(M)}else if(v.endA==v.endB&&(P=gG(C.parent.content.cut(C.parentOffset,E.parentOffset),k.parent.content.cut(k.parentOffset,v.endA-k.start())))){let M=B(t.state.tr);P.type=="add"?M.addMark($,A,P.mark):M.removeMark($,A,P.mark),t.dispatch(M)}else if(C.parent.child(C.index()).isText&&C.index()==E.index()-(E.textOffset?0:1)){let M=C.parent.textBetween(C.parentOffset,E.parentOffset),N=()=>B(t.state.tr.insertText(M,$,A));t.someProp("handleTextInput",I=>I(t,$,A,M,N))||t.dispatch(N())}else t.dispatch(B());else t.dispatch(B())}function Wk(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:r1(t,e.resolve(n.anchor),e.resolve(n.head))}function gG(t,e){let n=t.firstChild.marks,r=e.firstChild.marks,i=n,s=r,a,u,c;for(let h=0;h<r.length;h++)i=r[h].removeFromSet(i);for(let h=0;h<n.length;h++)s=n[h].removeFromSet(s);if(i.length==1&&s.length==0)u=i[0],a="add",c=h=>h.mark(u.addToSet(h.marks));else if(i.length==0&&s.length==1)u=s[0],a="remove",c=h=>h.mark(u.removeFromSet(h.marks));else return null;let f=[];for(let h=0;h<e.childCount;h++)f.push(c(e.child(h)));if(ae.from(f).eq(t))return{mark:u,type:a}}function bG(t,e,n,r,i){if(n-e<=i.pos-r.pos||X0(r,!0,!1)<i.pos)return!1;let s=t.resolve(e);if(!r.parent.isTextblock){let u=s.nodeAfter;return u!=null&&n==e+u.nodeSize}if(s.parentOffset<s.parent.content.size||!s.parent.isTextblock)return!1;let a=t.resolve(X0(s,!0,!0));return!a.parent.isTextblock||a.pos>n||X0(a,!0,!1)<n?!1:r.parent.content.cut(r.parentOffset).eq(a.parent.content)}function X0(t,e,n){let r=t.depth,i=e?t.end():t.pos;for(;r>0&&(e||t.indexAfter(r)==t.node(r).childCount);)r--,i++,e=!1;if(n){let s=t.node(r).maybeChild(t.indexAfter(r));for(;s&&!s.isLeaf;)s=s.firstChild,i++}return i}function yG(t,e,n,r,i){let s=t.findDiffStart(e,n),a=n+t.size,u=n+e.size;if(s==null)return null;let{a:c,b:f}=t.findDiffEnd(e,a,u);if(i=="end"){let h=Math.max(0,s-Math.min(c,f));r-=c+h-s}if(c<s&&a<u){let h=r<=s&&r>=c?s-r:0;s-=h,f=s+(f-c),c=s}else if(f<s){let h=r<=s&&r>=f?s-r:0;s-=h,c=s+(c-f),f=s}return{start:s,endA:c,endB:f}}class s7{constructor(e,n){this._root=null,this.focused=!1,this.trackWrites=null,this.mounted=!1,this.markCursor=null,this.cursorWrapper=null,this.lastSelectedViewDesc=void 0,this.input=new Pq,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(Zk),this.dispatch=this.dispatch.bind(this),this.dom=e&&e.mount||document.createElement("div"),e&&(e.appendChild?e.appendChild(this.dom):typeof e=="function"?e(this.dom):e.mount&&(this.mounted=!0)),this.editable=Xk(this),Yk(this),this.nodeViews=Jk(this),this.docView=Mk(this.state.doc,Qk(this),Y0(this),this.dom,this),this.domObserver=new aG(this,(r,i,s,a)=>mG(this,r,i,s,a)),this.domObserver.start(),Oq(this),this.updatePluginViews()}get composing(){return this.input.composing}get props(){if(this._props.state!=this.state){let e=this._props;this._props={};for(let n in e)this._props[n]=e[n];this._props.state=this.state}return this._props}update(e){e.handleDOMEvents!=this._props.handleDOMEvents&&ky(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(Zk),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let r in this._props)n[r]=this._props[r];n.state=this.state;for(let r in e)n[r]=e[r];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var r;let i=this.state,s=!1,a=!1;e.storedMarks&&this.composing&&(J9(this),a=!0),this.state=e;let u=i.plugins!=e.plugins||this._props.plugins!=n.plugins;if(u||this._props.plugins!=n.plugins||this._props.nodeViews!=n.nodeViews){let b=Jk(this);xG(b,this.nodeViews)&&(this.nodeViews=b,s=!0)}(u||n.handleDOMEvents!=this._props.handleDOMEvents)&&ky(this),this.editable=Xk(this),Yk(this);let c=Y0(this),f=Qk(this),h=i.plugins!=e.plugins&&!i.doc.eq(e.doc)?"reset":e.scrollToSelection>i.scrollToSelection?"to selection":"preserve",m=s||!this.docView.matchesNode(e.doc,f,c);(m||!e.selection.eq(i.selection))&&(a=!0);let g=h=="preserve"&&a&&this.dom.style.overflowAnchor==null&&QU(this);if(a){this.domObserver.stop();let b=m&&(zn||nn)&&!this.composing&&!i.selection.empty&&!e.selection.empty&&vG(i.selection,e.selection);if(m){let C=nn?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=Yq(this)),(s||!this.docView.update(e.doc,f,c,this))&&(this.docView.updateOuterDeco(f),this.docView.destroy(),this.docView=Mk(e.doc,f,c,this.dom,this)),C&&(!this.trackWrites||!this.dom.contains(this.trackWrites))&&(b=!0)}let v=this.input.mouseDown;b||!(v&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&vq(this)&&v.delaySelUpdate())?Ri(this,b):(I9(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(i),!((r=this.dragging)===null||r===void 0)&&r.node&&!i.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,i),h=="reset"?this.dom.scrollTop=0:h=="to selection"?this.scrollToSelection():g&&YU(g)}scrollToSelection(){let e=this.domSelectionRange().focusNode;if(!(!e||!this.dom.contains(e.nodeType==1?e:e.parentNode))){if(!this.someProp("handleScrollToSelection",n=>n(this)))if(this.state.selection instanceof Ce){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&wk(this,n.getBoundingClientRect(),e)}else wk(this,this.coordsAtPos(this.state.selection.head,1),e)}}destroyPluginViews(){let e;for(;e=this.pluginViews.pop();)e.destroy&&e.destroy()}updatePluginViews(e){if(!e||e.plugins!=this.state.plugins||this.directPlugins!=this.prevDirectPlugins){this.prevDirectPlugins=this.directPlugins,this.destroyPluginViews();for(let n=0;n<this.directPlugins.length;n++){let r=this.directPlugins[n];r.spec.view&&this.pluginViews.push(r.spec.view(this))}for(let n=0;n<this.state.plugins.length;n++){let r=this.state.plugins[n];r.spec.view&&this.pluginViews.push(r.spec.view(this))}}else for(let n=0;n<this.pluginViews.length;n++){let r=this.pluginViews[n];r.update&&r.update(this,e)}}updateDraggedNode(e,n){let r=e.node,i=-1;if(r.from<this.state.doc.content.size&&this.state.doc.nodeAt(r.from)==r.node)i=r.from;else{let s=r.from+(this.state.doc.content.size-n.doc.content.size);(s>0&&s<this.state.doc.content.size&&this.state.doc.nodeAt(s))==r.node&&(i=s)}this.dragging=new e7(e.slice,e.move,i<0?void 0:Ce.create(this.state.doc,i))}someProp(e,n){let r=this._props&&this._props[e],i;if(r!=null&&(i=n?n(r):r))return i;for(let a=0;a<this.directPlugins.length;a++){let u=this.directPlugins[a].props[e];if(u!=null&&(i=n?n(u):u))return i}let s=this.state.plugins;if(s)for(let a=0;a<s.length;a++){let u=s[a].props[e];if(u!=null&&(i=n?n(u):u))return i}}hasFocus(){if(zn){let e=this.root.activeElement;if(e==this.dom)return!0;if(!e||!this.dom.contains(e))return!1;for(;e&&this.dom!=e&&this.dom.contains(e);){if(e.contentEditable=="false")return!1;e=e.parentElement}return!0}return this.root.activeElement==this.dom}focus(){this.domObserver.stop(),this.editable&&XU(this.dom),Ri(this),this.domObserver.start()}get root(){let e=this._root;if(e==null){for(let n=this.dom.parentNode;n;n=n.parentNode)if(n.nodeType==9||n.nodeType==11&&n.host)return n.getSelection||(Object.getPrototypeOf(n).getSelection=()=>n.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return nq(this,e)}coordsAtPos(e,n=1){return B9(this,e,n)}domAtPos(e,n=0){return this.docView.domFromPos(e,n)}nodeDOM(e){let n=this.docView.descAt(e);return n?n.nodeDOM:null}posAtDOM(e,n,r=-1){let i=this.docView.posFromDOM(e,n,r);if(i==null)throw new RangeError("DOM position not inside the editor");return i}endOfTextblock(e,n){return aq(this,n||this.state,e)}pasteHTML(e,n){return Hc(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return Hc(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return i1(this,e)}destroy(){this.docView&&(Lq(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],Y0(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,FU())}get isDestroyed(){return this.docView==null}dispatchEvent(e){return Iq(this,e)}domSelectionRange(){let e=this.domSelection();return e?hn&&this.root.nodeType===11&&VU(this.dom.ownerDocument)==this.dom&&uG(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}s7.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function Qk(t){let e=Object.create(null);return e.class="ProseMirror",e.contenteditable=String(t.editable),t.someProp("attributes",n=>{if(typeof n=="function"&&(n=n(t.state)),n)for(let r in n)r=="class"?e.class+=" "+n[r]:r=="style"?e.style=(e.style?e.style+";":"")+n[r]:!e[r]&&r!="contenteditable"&&r!="nodeName"&&(e[r]=String(n[r]))}),e.translate||(e.translate="no"),[yn.node(0,t.state.doc.content.size,e)]}function Yk(t){if(t.markCursor){let e=document.createElement("img");e.className="ProseMirror-separator",e.setAttribute("mark-placeholder","true"),e.setAttribute("alt",""),t.cursorWrapper={dom:e,deco:yn.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function Xk(t){return!t.someProp("editable",e=>e(t.state)===!1)}function vG(t,e){let n=Math.min(t.$anchor.sharedDepth(t.head),e.$anchor.sharedDepth(e.head));return t.$anchor.start(n)!=e.$anchor.start(n)}function Jk(t){let e=Object.create(null);function n(r){for(let i in r)Object.prototype.hasOwnProperty.call(e,i)||(e[i]=r[i])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function xG(t,e){let n=0,r=0;for(let i in t){if(t[i]!=e[i])return!0;n++}for(let i in e)r++;return n!=r}function Zk(t){if(t.spec.state||t.spec.filterTransaction||t.spec.appendTransaction)throw new RangeError("Plugins passed directly to the view must not have a state component")}var _s={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},hp={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},CG=typeof navigator<"u"&&/Mac/.test(navigator.platform),EG=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var tn=0;tn<10;tn++)_s[48+tn]=_s[96+tn]=String(tn);for(var tn=1;tn<=24;tn++)_s[tn+111]="F"+tn;for(var tn=65;tn<=90;tn++)_s[tn]=String.fromCharCode(tn+32),hp[tn]=String.fromCharCode(tn);for(var J0 in _s)hp.hasOwnProperty(J0)||(hp[J0]=_s[J0]);function kG(t){var e=CG&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||EG&&t.shiftKey&&t.key&&t.key.length==1||t.key=="Unidentified",n=!e&&t.key||(t.shiftKey?hp:_s)[t.keyCode]||t.key||"Unidentified";return n=="Esc"&&(n="Escape"),n=="Del"&&(n="Delete"),n=="Left"&&(n="ArrowLeft"),n=="Up"&&(n="ArrowUp"),n=="Right"&&(n="ArrowRight"),n=="Down"&&(n="ArrowDown"),n}const DG=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),SG=typeof navigator<"u"&&/Win/.test(navigator.platform);function wG(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let r,i,s,a;for(let u=0;u<e.length-1;u++){let c=e[u];if(/^(cmd|meta|m)$/i.test(c))a=!0;else if(/^a(lt)?$/i.test(c))r=!0;else if(/^(c|ctrl|control)$/i.test(c))i=!0;else if(/^s(hift)?$/i.test(c))s=!0;else if(/^mod$/i.test(c))DG?a=!0:i=!0;else throw new Error("Unrecognized modifier name: "+c)}return r&&(n="Alt-"+n),i&&(n="Ctrl-"+n),a&&(n="Meta-"+n),s&&(n="Shift-"+n),n}function $G(t){let e=Object.create(null);for(let n in t)e[wG(n)]=t[n];return e}function Z0(t,e,n=!0){return e.altKey&&(t="Alt-"+t),e.ctrlKey&&(t="Ctrl-"+t),e.metaKey&&(t="Meta-"+t),n&&e.shiftKey&&(t="Shift-"+t),t}function TG(t){return new pt({props:{handleKeyDown:o7(t)}})}function o7(t){let e=$G(t);return function(n,r){let i=kG(r),s,a=e[Z0(i,r)];if(a&&a(n.state,n.dispatch,n))return!0;if(i.length==1&&i!=" "){if(r.shiftKey){let u=e[Z0(i,r,!1)];if(u&&u(n.state,n.dispatch,n))return!0}if((r.altKey||r.metaKey||r.ctrlKey)&&!(SG&&r.ctrlKey&&r.altKey)&&(s=_s[r.keyCode])&&s!=i){let u=e[Z0(s,r)];if(u&&u(n.state,n.dispatch,n))return!0}}return!1}}var AG=Object.defineProperty,c1=(t,e)=>{for(var n in e)AG(t,n,{get:e[n],enumerable:!0})};function wm(t){const{state:e,transaction:n}=t;let{selection:r}=n,{doc:i}=n,{storedMarks:s}=n;return{...e,apply:e.apply.bind(e),applyTransaction:e.applyTransaction.bind(e),plugins:e.plugins,schema:e.schema,reconfigure:e.reconfigure.bind(e),toJSON:e.toJSON.bind(e),get storedMarks(){return s},get selection(){return r},get doc(){return i},get tr(){return r=n.selection,i=n.doc,s=n.storedMarks,n}}}var $m=class{constructor(t){this.editor=t.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=t.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){const{rawCommands:t,editor:e,state:n}=this,{view:r}=e,{tr:i}=n,s=this.buildProps(i);return Object.fromEntries(Object.entries(t).map(([a,u])=>[a,(...f)=>{const h=u(...f)(s);return!i.getMeta("preventDispatch")&&!this.hasCustomState&&r.dispatch(i),h}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){const{rawCommands:n,editor:r,state:i}=this,{view:s}=r,a=[],u=!!t,c=t||i.tr,f=()=>(!u&&e&&!c.getMeta("preventDispatch")&&!this.hasCustomState&&s.dispatch(c),a.every(m=>m===!0)),h={...Object.fromEntries(Object.entries(n).map(([m,g])=>[m,(...v)=>{const C=this.buildProps(c,e),E=g(...v)(C);return a.push(E),h}])),run:f};return h}createCan(t){const{rawCommands:e,state:n}=this,r=!1,i=t||n.tr,s=this.buildProps(i,r);return{...Object.fromEntries(Object.entries(e).map(([u,c])=>[u,(...f)=>c(...f)({...s,dispatch:void 0})])),chain:()=>this.createChain(i,r)}}buildProps(t,e=!0){const{rawCommands:n,editor:r,state:i}=this,{view:s}=r,a={tr:t,editor:r,view:s,state:wm({state:i,transaction:t}),dispatch:e?()=>{}:void 0,chain:()=>this.createChain(t,e),can:()=>this.createCan(t),get commands(){return Object.fromEntries(Object.entries(n).map(([u,c])=>[u,(...f)=>c(...f)(a)]))}};return a}},Cr={};c1(Cr,{blur:()=>BG,clearContent:()=>MG,clearNodes:()=>RG,command:()=>NG,createParagraphNear:()=>PG,cut:()=>OG,deleteCurrentNode:()=>LG,deleteNode:()=>zG,deleteRange:()=>IG,deleteSelection:()=>jG,enter:()=>_G,exitCode:()=>HG,extendMarkRange:()=>VG,first:()=>UG,focus:()=>GG,forEach:()=>WG,insertContent:()=>QG,insertContentAt:()=>XG,insertDefaultBlock:()=>JG,joinBackward:()=>tW,joinDown:()=>eW,joinForward:()=>nW,joinItemBackward:()=>rW,joinItemForward:()=>iW,joinTextblockBackward:()=>sW,joinTextblockForward:()=>oW,joinUp:()=>ZG,keyboardShortcut:()=>lW,lift:()=>uW,liftEmptyBlock:()=>cW,liftListItem:()=>dW,newlineInCode:()=>fW,resetAttributes:()=>hW,scrollIntoView:()=>pW,selectAll:()=>mW,selectNodeBackward:()=>gW,selectNodeForward:()=>bW,selectParentNode:()=>yW,selectTextblockEnd:()=>vW,selectTextblockStart:()=>xW,setContent:()=>CW,setMark:()=>jW,setMeta:()=>_W,setNode:()=>HW,setNodeSelection:()=>VW,setTextDirection:()=>UW,setTextSelection:()=>qW,sinkListItem:()=>GW,splitBlock:()=>WW,splitListItem:()=>QW,toggleList:()=>XW,toggleMark:()=>JW,toggleNode:()=>ZW,toggleWrap:()=>eQ,undoInputRule:()=>tQ,unsetAllMarks:()=>nQ,unsetMark:()=>rQ,unsetTextDirection:()=>iQ,updateAttributes:()=>sQ,wrapIn:()=>oQ,wrapInList:()=>aQ});var BG=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window?.getSelection())==null||n.removeAllRanges())}),!0),MG=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),RG=()=>({state:t,tr:e,dispatch:n})=>{const{selection:r}=e,{ranges:i}=r;return n&&i.forEach(({$from:s,$to:a})=>{t.doc.nodesBetween(s.pos,a.pos,(u,c)=>{if(u.type.isText)return;const{doc:f,mapping:h}=e,m=f.resolve(h.map(c)),g=f.resolve(h.map(c+u.nodeSize)),b=m.blockRange(g);if(!b)return;const v=Il(b);if(u.type.isTextblock){const{defaultType:C}=m.parent.contentMatchAt(m.index());e.setNodeMarkup(b.start,C)}(v||v===0)&&e.lift(b,v)})}),!0},NG=t=>e=>t(e),PG=()=>({state:t,dispatch:e})=>v9(t,e),OG=(t,e)=>({editor:n,tr:r})=>{const{state:i}=n,s=i.doc.slice(t.from,t.to);r.deleteRange(t.from,t.to);const a=r.mapping.map(e);return r.insert(a,s.content),r.setSelection(new De(r.doc.resolve(Math.max(a-1,0)))),!0},LG=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,r=n.$anchor.node();if(r.content.size>0)return!1;const i=t.selection.$anchor;for(let s=i.depth;s>0;s-=1)if(i.node(s).type===r.type){if(e){const u=i.before(s),c=i.after(s);t.delete(u,c).scrollIntoView()}return!0}return!1};function Ot(t,e){if(typeof t=="string"){if(!e.nodes[t])throw Error(`There is no node type named '${t}'. Maybe you forgot to add the extension?`);return e.nodes[t]}return t}var zG=t=>({tr:e,state:n,dispatch:r})=>{const i=Ot(t,n.schema),s=e.selection.$anchor;for(let a=s.depth;a>0;a-=1)if(s.node(a).type===i){if(r){const c=s.before(a),f=s.after(a);e.delete(c,f).scrollIntoView()}return!0}return!1},IG=t=>({tr:e,dispatch:n})=>{const{from:r,to:i}=t;return n&&e.delete(r,i),!0},FG=t=>t.content?/^text(\*|\+)/.test(t.content):!1,eD=(t,e,n)=>{if(!t.parent.isInline||n==="left"&&t.pos>t.start()||n==="right"&&t.pos<t.end())return t.pos;const r=e.nodes[t.parent.type.name].spec;return FG(r)?n==="left"?t.start()-1:t.end()+1:t.pos},KG=(t,e,n)=>{const r=eD(t,n,"left"),i=eD(e,n,"right");return{from:r,to:i}},jG=()=>({state:t,dispatch:e})=>{if(t.selection.empty)return!1;if(e){const n=t.tr,{ranges:r}=t.selection,i=n.steps.length;r.forEach(s=>{const a=n.mapping.slice(i),u=n.doc.resolve(a.map(s.$from.pos)),c=n.doc.resolve(a.map(s.$to.pos)),{from:f,to:h}=KG(u,c,t.schema);n.deleteRange(f,h)}),n.selection.empty||n.setSelection(De.near(n.doc.resolve(n.selection.from))),n.scrollIntoView(),e(n)}return!0},_G=()=>({commands:t})=>t.keyboardShortcut("Enter"),HG=()=>({state:t,dispatch:e})=>DU(t,e);function d1(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function pp(t,e,n={strict:!0}){const r=Object.keys(e);return r.length?r.every(i=>n.strict?e[i]===t[i]:d1(e[i])?e[i].test(t[i]):e[i]===t[i]):!0}function a7(t,e,n={}){return t.find(r=>r.type===e&&pp(Object.fromEntries(Object.keys(n).map(i=>[i,r.attrs[i]])),n))}function tD(t,e,n={}){return!!a7(t,e,n)}function f1(t,e,n){if(!t||!e)return;let r=t.parent.childAfter(t.parentOffset);if((!r.node||!r.node.marks.some(f=>f.type===e))&&(r=t.parent.childBefore(t.parentOffset)),!r.node||!r.node.marks.some(f=>f.type===e))return;if(!n){const f=r.node.marks.find(h=>h.type===e);f&&(n=f.attrs)}if(!a7([...r.node.marks],e,n))return;let s=r.index,a=t.start()+r.offset,u=s+1,c=a+r.node.nodeSize;for(;s>0&&tD([...t.parent.child(s-1).marks],e,n);)s-=1,a-=t.parent.child(s).nodeSize;for(;u<t.parent.childCount&&tD([...t.parent.child(u).marks],e,n);)c+=t.parent.child(u).nodeSize,u+=1;return{from:a,to:c}}function Ki(t,e){if(typeof t=="string"){if(!e.marks[t])throw Error(`There is no mark type named '${t}'. Maybe you forgot to add the extension?`);return e.marks[t]}return t}var VG=(t,e)=>({tr:n,state:r,dispatch:i})=>{const s=Ki(t,r.schema),{doc:a,selection:u}=n,{$from:c,from:f,to:h}=u;if(i){const m=f1(c,s,e);if(m&&m.from<=f&&m.to>=h){const g=De.create(a,m.from,m.to);n.setSelection(g)}}return!0},UG=t=>e=>{const n=typeof t=="function"?t(e):t;for(let r=0;r<n.length;r+=1)if(n[r](e))return!0;return!1};function l7(t){return t instanceof De}function Fo(t=0,e=0,n=0){return Math.min(Math.max(t,e),n)}function Dy(t,e=null){if(!e)return null;const n=Me.atStart(t),r=Me.atEnd(t);if(e==="start"||e===!0)return n;if(e==="end")return r;const i=n.from,s=r.to;return e==="all"?De.create(t,Fo(0,i,s),Fo(t.content.size,i,s)):De.create(t,Fo(e,i,s),Fo(e,i,s))}function nD(){return["Android"].includes(navigator.platform)||/android/i.test(navigator.userAgent)}function mp(){return["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||navigator.userAgent.includes("Mac")&&"ontouchend"in document}function qG(){return typeof navigator<"u"?/^((?!chrome|android).)*safari/i.test(navigator.userAgent):!1}var GG=(t=null,e={})=>({editor:n,view:r,tr:i,dispatch:s})=>{e={scrollIntoView:!0,...e};const a=()=>{(mp()||nD())&&r.dom.focus(),qG()&&!mp()&&!nD()&&r.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{n.isDestroyed||(r.focus(),e?.scrollIntoView&&n.commands.scrollIntoView())})};try{if(r.hasFocus()&&t===null||t===!1)return!0}catch{return!1}if(s&&t===null&&!l7(n.state.selection))return a(),!0;const u=Dy(i.doc,t)||n.state.selection,c=n.state.selection.eq(u);return s&&(c||i.setSelection(u),c&&i.storedMarks&&i.setStoredMarks(i.storedMarks),a()),!0},WG=(t,e)=>n=>t.every((r,i)=>e(r,{...n,index:i})),QG=(t,e)=>({tr:n,commands:r})=>r.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),u7=t=>{const e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){const r=e[n];r.nodeType===3&&r.nodeValue&&/^(\n\s\s|\n)$/.test(r.nodeValue)?t.removeChild(r):r.nodeType===1&&u7(r)}return t};function tc(t){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");const e=`<body>${t}</body>`,n=new window.DOMParser().parseFromString(e,"text/html").body;return u7(n)}function Ml(t,e,n){if(t instanceof Rs||t instanceof ae)return t;n={slice:!0,parseOptions:{},...n};const r=typeof t=="object"&&t!==null,i=typeof t=="string";if(r)try{if(Array.isArray(t)&&t.length>0)return ae.fromArray(t.map(u=>e.nodeFromJSON(u)));const a=e.nodeFromJSON(t);return n.errorOnInvalidContent&&a.check(),a}catch(s){if(n.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:s});return console.warn("[tiptap warn]: Invalid content.","Passed value:",t,"Error:",s),Ml("",e,n)}if(i){if(n.errorOnInvalidContent){let a=!1,u="";const c=new UM({topNode:e.spec.topNode,marks:e.spec.marks,nodes:e.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:f=>(a=!0,u=typeof f=="string"?f:f.outerHTML,null)}]}})});if(n.slice?Bi.fromSchema(c).parseSlice(tc(t),n.parseOptions):Bi.fromSchema(c).parse(tc(t),n.parseOptions),n.errorOnInvalidContent&&a)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${u}`)})}const s=Bi.fromSchema(e);return n.slice?s.parseSlice(tc(t),n.parseOptions).content:s.parse(tc(t),n.parseOptions)}return Ml("",e,n)}function c7(t,e,n){const r=t.steps.length-1;if(r<e)return;const i=t.steps[r];if(!(i instanceof Rt||i instanceof Vt))return;const s=t.mapping.maps[r];let a=0;s.forEach((u,c,f,h)=>{a===0&&(a=h)}),t.setSelection(Me.near(t.doc.resolve(a),n))}var YG=t=>!("type"in t),XG=(t,e,n)=>({tr:r,dispatch:i,editor:s})=>{var a;if(i){n={parseOptions:s.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let u;const c=E=>{s.emit("contentError",{editor:s,error:E,disableCollaboration:()=>{"collaboration"in s.storage&&typeof s.storage.collaboration=="object"&&s.storage.collaboration&&(s.storage.collaboration.isDisabled=!0)}})},f={preserveWhitespace:"full",...n.parseOptions};if(!n.errorOnInvalidContent&&!s.options.enableContentCheck&&s.options.emitContentError)try{Ml(e,s.schema,{parseOptions:f,errorOnInvalidContent:!0})}catch(E){c(E)}try{u=Ml(e,s.schema,{parseOptions:f,errorOnInvalidContent:(a=n.errorOnInvalidContent)!=null?a:s.options.enableContentCheck})}catch(E){return c(E),!1}let{from:h,to:m}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},g=!0,b=!0;if((YG(u)?u:[u]).forEach(E=>{E.check(),g=g?E.isText&&E.marks.length===0:!1,b=b?E.isBlock:!1}),h===m&&b){const{parent:E}=r.doc.resolve(h);E.isTextblock&&!E.type.spec.code&&!E.childCount&&(h-=1,m+=1)}let C;if(g){if(Array.isArray(e))C=e.map(E=>E.text||"").join("");else if(e instanceof ae){let E="";e.forEach(k=>{k.text&&(E+=k.text)}),C=E}else typeof e=="object"&&e&&e.text?C=e.text:C=e;r.insertText(C,h,m)}else{C=u;const E=r.doc.resolve(h),k=E.node(),T=E.parentOffset===0,$=k.isText||k.isTextblock,A=k.content.size>0;T&&$&&A&&b&&(h=Math.max(0,h-1)),r.replaceWith(h,m,C)}n.updateSelection&&c7(r,r.steps.length-1,-1),n.applyInputRules&&r.setMeta("applyInputRules",{from:h,text:C}),n.applyPasteRules&&r.setMeta("applyPasteRules",{from:h,text:C})}return!0};function d7(t){for(let e=0;e<t.edgeCount;e+=1){const{type:n}=t.edge(e);if(n.isTextblock&&!n.hasRequiredAttrs())return n}return null}var JG=(t={})=>({tr:e,dispatch:n,editor:r})=>{const{pos:i,attrs:s,content:a,updateSelection:u=!0}=t;let c;typeof i=="number"?c=e.doc.resolve(i):i?c=i:c=e.selection.$from;const f=d7(c.parent.contentMatchAt(c.index()));if(!f)return!1;const h=Object.keys(f.spec.attrs||{}),m=s?Object.fromEntries(Object.entries(s).filter(([b])=>h.includes(b))):{};let g;if(a){const b=Ml(a,r.schema);g=f.createAndFill(m,b)}else g=f.createAndFill(m);return g?(n&&(e.insert(c.pos,g),u&&c7(e,e.steps.length-1,-1)),!0):!1},ZG=()=>({state:t,dispatch:e})=>CU(t,e),eW=()=>({state:t,dispatch:e})=>EU(t,e),tW=()=>({state:t,dispatch:e})=>f9(t,e),nW=()=>({state:t,dispatch:e})=>g9(t,e),rW=()=>({state:t,dispatch:e,tr:n})=>{try{const r=Cm(t.doc,t.selection.$from.pos,-1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},iW=()=>({state:t,dispatch:e,tr:n})=>{try{const r=Cm(t.doc,t.selection.$from.pos,1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},sW=()=>({state:t,dispatch:e})=>vU(t,e),oW=()=>({state:t,dispatch:e})=>xU(t,e);function f7(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function aW(t){const e=t.split(/-(?!$)/);let n=e[e.length-1];n==="Space"&&(n=" ");let r,i,s,a;for(let u=0;u<e.length-1;u+=1){const c=e[u];if(/^(cmd|meta|m)$/i.test(c))a=!0;else if(/^a(lt)?$/i.test(c))r=!0;else if(/^(c|ctrl|control)$/i.test(c))i=!0;else if(/^s(hift)?$/i.test(c))s=!0;else if(/^mod$/i.test(c))mp()||f7()?a=!0:i=!0;else throw new Error(`Unrecognized modifier name: ${c}`)}return r&&(n=`Alt-${n}`),i&&(n=`Ctrl-${n}`),a&&(n=`Meta-${n}`),s&&(n=`Shift-${n}`),n}var lW=t=>({editor:e,view:n,tr:r,dispatch:i})=>{const s=aW(t).split(/-(?!$)/),a=s.find(f=>!["Alt","Ctrl","Meta","Shift"].includes(f)),u=new KeyboardEvent("keydown",{key:a==="Space"?" ":a,altKey:s.includes("Alt"),ctrlKey:s.includes("Ctrl"),metaKey:s.includes("Meta"),shiftKey:s.includes("Shift"),bubbles:!0,cancelable:!0}),c=e.captureTransaction(()=>{n.someProp("handleKeyDown",f=>f(n,u))});return c?.steps.forEach(f=>{const h=f.map(r.mapping);h&&i&&r.maybeStep(h)}),!0};function Hs(t,e,n={}){const{from:r,to:i,empty:s}=t.selection,a=e?Ot(e,t.schema):null,u=[];t.doc.nodesBetween(r,i,(m,g)=>{if(m.isText)return;const b=Math.max(r,g),v=Math.min(i,g+m.nodeSize);u.push({node:m,from:b,to:v})});const c=i-r,f=u.filter(m=>a?a.name===m.node.type.name:!0).filter(m=>pp(m.node.attrs,n,{strict:!1}));return s?!!f.length:f.reduce((m,g)=>m+g.to-g.from,0)>=c}var uW=(t,e={})=>({state:n,dispatch:r})=>{const i=Ot(t,n.schema);return Hs(n,i,e)?kU(n,r):!1},cW=()=>({state:t,dispatch:e})=>x9(t,e),dW=t=>({state:e,dispatch:n})=>{const r=Ot(t,e.schema);return OU(r)(e,n)},fW=()=>({state:t,dispatch:e})=>y9(t,e);function Tm(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function rD(t,e){const n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((r,i)=>(n.includes(i)||(r[i]=t[i]),r),{})}var hW=(t,e)=>({tr:n,state:r,dispatch:i})=>{let s=null,a=null;const u=Tm(typeof t=="string"?t:t.name,r.schema);if(!u)return!1;u==="node"&&(s=Ot(t,r.schema)),u==="mark"&&(a=Ki(t,r.schema));let c=!1;return n.selection.ranges.forEach(f=>{r.doc.nodesBetween(f.$from.pos,f.$to.pos,(h,m)=>{s&&s===h.type&&(c=!0,i&&n.setNodeMarkup(m,void 0,rD(h.attrs,e))),a&&h.marks.length&&h.marks.forEach(g=>{a===g.type&&(c=!0,i&&n.addMark(m,m+h.nodeSize,a.create(rD(g.attrs,e))))})})}),c},pW=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),mW=()=>({tr:t,dispatch:e})=>{if(e){const n=new Qn(t.doc);t.setSelection(n)}return!0},gW=()=>({state:t,dispatch:e})=>p9(t,e),bW=()=>({state:t,dispatch:e})=>b9(t,e),yW=()=>({state:t,dispatch:e})=>$U(t,e),vW=()=>({state:t,dispatch:e})=>BU(t,e),xW=()=>({state:t,dispatch:e})=>AU(t,e);function Sy(t,e,n={},r={}){return Ml(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:r.errorOnInvalidContent})}var CW=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:r={}}={})=>({editor:i,tr:s,dispatch:a,commands:u})=>{const{doc:c}=s;if(r.preserveWhitespace!=="full"){const f=Sy(t,i.schema,r,{errorOnInvalidContent:e??i.options.enableContentCheck});return a&&s.replaceWith(0,c.content.size,f).setMeta("preventUpdate",!n),!0}return a&&s.setMeta("preventUpdate",!n),u.insertContentAt({from:0,to:c.content.size},t,{parseOptions:r,errorOnInvalidContent:e??i.options.enableContentCheck})};function h7(t,e){const n=Ki(e,t.schema),{from:r,to:i,empty:s}=t.selection,a=[];s?(t.storedMarks&&a.push(...t.storedMarks),a.push(...t.selection.$head.marks())):t.doc.nodesBetween(r,i,c=>{a.push(...c.marks)});const u=a.find(c=>c.type.name===n.name);return u?{...u.attrs}:{}}function p7(t,e){const n=new a9(t);return e.forEach(r=>{r.steps.forEach(i=>{n.step(i)})}),n}function EW(t,e,n){const r=[];return t.nodesBetween(e.from,e.to,(i,s)=>{n(i)&&r.push({node:i,pos:s})}),r}function kW(t,e){for(let n=t.depth;n>0;n-=1){const r=t.node(n);if(e(r))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:r}}}function Am(t){return e=>kW(e.$from,t)}function ye(t,e,n){return t.config[e]===void 0&&t.parent?ye(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?ye(t.parent,e,n):null}):t.config[e]}function Bm(t){return t.map(e=>{const n={name:e.name,options:e.options,storage:e.storage},r=ye(e,"addExtensions",n);return r?[e,...Bm(r())]:e}).flat(10)}function h1(t,e){const n=pa.fromSchema(e).serializeFragment(t),i=document.implementation.createHTMLDocument().createElement("div");return i.appendChild(n),i.innerHTML}function m7(t){return typeof t=="function"}function We(t,e=void 0,...n){return m7(t)?e?t.bind(e)(...n):t(...n):t}function DW(t={}){return Object.keys(t).length===0&&t.constructor===Object}function Rl(t){const e=t.filter(i=>i.type==="extension"),n=t.filter(i=>i.type==="node"),r=t.filter(i=>i.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:r}}function g7(t){const e=[],{nodeExtensions:n,markExtensions:r}=Rl(t),i=[...n,...r],s={default:null,validate:void 0,rendered:!0,renderHTML:null,parseHTML:null,keepOnSplit:!0,isRequired:!1},a=n.filter(f=>f.name!=="text").map(f=>f.name),u=r.map(f=>f.name),c=[...a,...u];return t.forEach(f=>{const h={name:f.name,options:f.options,storage:f.storage,extensions:i},m=ye(f,"addGlobalAttributes",h);if(!m)return;m().forEach(b=>{let v;Array.isArray(b.types)?v=b.types:b.types==="*"?v=c:b.types==="nodes"?v=a:b.types==="marks"?v=u:v=[],v.forEach(C=>{Object.entries(b.attributes).forEach(([E,k])=>{e.push({type:C,name:E,attribute:{...s,...k}})})})})}),i.forEach(f=>{const h={name:f.name,options:f.options,storage:f.storage},m=ye(f,"addAttributes",h);if(!m)return;const g=m();Object.entries(g).forEach(([b,v])=>{const C={...s,...v};typeof C?.default=="function"&&(C.default=C.default()),C?.isRequired&&C?.default===void 0&&delete C.default,e.push({type:f.name,name:b,attribute:C})})}),e}function SW(t){const e=[];let n="",r=!1,i=!1,s=0;const a=t.length;for(let u=0;u<a;u+=1){const c=t[u];if(c==="'"&&!i){r=!r,n+=c;continue}if(c==='"'&&!r){i=!i,n+=c;continue}if(!r&&!i){if(c==="("){s+=1,n+=c;continue}if(c===")"&&s>0){s-=1,n+=c;continue}if(c===";"&&s===0){e.push(n),n="";continue}}n+=c}return n&&e.push(n),e}function iD(t){const e=[],n=SW(t||""),r=n.length;for(let i=0;i<r;i+=1){const s=n[i],a=s.indexOf(":");if(a===-1)continue;const u=s.slice(0,a).trim(),c=s.slice(a+1).trim();u&&c&&e.push([u,c])}return e}function Ft(...t){return t.filter(e=>!!e).reduce((e,n)=>{const r={...e};return Object.entries(n).forEach(([i,s])=>{if(!r[i]){r[i]=s;return}if(i==="class"){const u=s?String(s).split(" "):[],c=r[i]?r[i].split(" "):[],f=u.filter(h=>!c.includes(h));r[i]=[...c,...f].join(" ")}else if(i==="style"){const u=new Map([...iD(r[i]),...iD(s)]);r[i]=Array.from(u.entries()).map(([c,f])=>`${c}: ${f}`).join("; ")}else r[i]=s}),r},{})}function Uc(t,e){return e.filter(n=>n.type===t.type.name).filter(n=>n.attribute.rendered).map(n=>n.attribute.renderHTML?n.attribute.renderHTML(t.attrs)||{}:{[n.name]:t.attrs[n.name]}).reduce((n,r)=>Ft(n,r),{})}function wW(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function sD(t,e){return"style"in t?t:{...t,getAttrs:n=>{const r=t.getAttrs?t.getAttrs(n):t.attrs;if(r===!1)return!1;const i=e.reduce((s,a)=>{const u=a.attribute.parseHTML?a.attribute.parseHTML(n):wW(n.getAttribute(a.name));return u==null?s:{...s,[a.name]:u}},{});return{...r,...i}}}}function oD(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&DW(n)?!1:n!=null))}function aD(t){var e,n;const r={};return!((e=t?.attribute)!=null&&e.isRequired)&&"default"in(t?.attribute||{})&&(r.default=t.attribute.default),((n=t?.attribute)==null?void 0:n.validate)!==void 0&&(r.validate=t.attribute.validate),[t.name,r]}function b7(t,e){var n;const r=g7(t),{nodeExtensions:i,markExtensions:s}=Rl(t),a=(n=i.find(f=>ye(f,"topNode")))==null?void 0:n.name,u=Object.fromEntries(i.map(f=>{const h=r.filter(k=>k.type===f.name),m={name:f.name,options:f.options,storage:f.storage,editor:e},g=t.reduce((k,T)=>{const $=ye(T,"extendNodeSchema",m);return{...k,...$?$(f):{}}},{}),b=oD({...g,content:We(ye(f,"content",m)),marks:We(ye(f,"marks",m)),group:We(ye(f,"group",m)),inline:We(ye(f,"inline",m)),atom:We(ye(f,"atom",m)),selectable:We(ye(f,"selectable",m)),draggable:We(ye(f,"draggable",m)),code:We(ye(f,"code",m)),whitespace:We(ye(f,"whitespace",m)),linebreakReplacement:We(ye(f,"linebreakReplacement",m)),defining:We(ye(f,"defining",m)),isolating:We(ye(f,"isolating",m)),attrs:Object.fromEntries(h.map(aD))}),v=We(ye(f,"parseHTML",m));v&&(b.parseDOM=v.map(k=>sD(k,h)));const C=ye(f,"renderHTML",m);C&&(b.toDOM=k=>C({node:k,HTMLAttributes:Uc(k,h)}));const E=ye(f,"renderText",m);return E&&(b.toText=E),[f.name,b]})),c=Object.fromEntries(s.map(f=>{const h=r.filter(E=>E.type===f.name),m={name:f.name,options:f.options,storage:f.storage,editor:e},g=t.reduce((E,k)=>{const T=ye(k,"extendMarkSchema",m);return{...E,...T?T(f):{}}},{}),b=oD({...g,inclusive:We(ye(f,"inclusive",m)),excludes:We(ye(f,"excludes",m)),group:We(ye(f,"group",m)),spanning:We(ye(f,"spanning",m)),code:We(ye(f,"code",m)),attrs:Object.fromEntries(h.map(aD))}),v=We(ye(f,"parseHTML",m));v&&(b.parseDOM=v.map(E=>sD(E,h)));const C=ye(f,"renderHTML",m);return C&&(b.toDOM=E=>C({mark:E,HTMLAttributes:Uc(E,h)})),[f.name,b]}));return new UM({topNode:a,nodes:u,marks:c})}function $W(t){const e=t.filter((n,r)=>t.indexOf(n)!==r);return Array.from(new Set(e))}function vl(t){return t.sort((n,r)=>{const i=ye(n,"priority")||100,s=ye(r,"priority")||100;return i>s?-1:i<s?1:0})}function p1(t){const e=vl(Bm(t)),n=$W(e.map(r=>r.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(r=>`'${r}'`).join(", ")}]. This can lead to issues.`),e}function y7(t,e){const n=p1(t);return b7(n,e)}function TW(t,e){const n=y7(e),r=tc(t);return Bi.fromSchema(n).parse(r).toJSON()}function v7(t,e,n){const{from:r,to:i}=e,{blockSeparator:s=`
|
|
31
|
-
|
|
32
|
-
`,textSerializers:a={}}=n||{};let u="";return t.nodesBetween(r,i,(c,f,h,m)=>{var g;c.isBlock&&f>r&&(u+=s);const b=a?.[c.type.name];if(b)return h&&(u+=b({node:c,pos:f,parent:h,index:m,range:e})),!1;c.isText&&(u+=(g=c?.text)==null?void 0:g.slice(Math.max(r,f)-f,i-f))}),u}function AW(t,e){const n={from:0,to:t.content.size};return v7(t,n,e)}function x7(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function BW(t,e){const n=Ot(e,t.schema),{from:r,to:i}=t.selection,s=[];t.doc.nodesBetween(r,i,u=>{s.push(u)});const a=s.reverse().find(u=>u.type.name===n.name);return a?{...a.attrs}:{}}function C7(t,e){const n=Tm(typeof e=="string"?e:e.name,t.schema);return n==="node"?BW(t,e):n==="mark"?h7(t,e):{}}function MW(t,e=JSON.stringify){const n={};return t.filter(r=>{const i=e(r);return Object.prototype.hasOwnProperty.call(n,i)?!1:n[i]=!0})}function RW(t){const e=MW(t);return e.length===1?e:e.filter((n,r)=>!e.filter((s,a)=>a!==r).some(s=>n.oldRange.from>=s.oldRange.from&&n.oldRange.to<=s.oldRange.to&&n.newRange.from>=s.newRange.from&&n.newRange.to<=s.newRange.to))}function m1(t){const{mapping:e,steps:n}=t,r=[];return e.maps.forEach((i,s)=>{const a=[];if(i.ranges.length)i.forEach((u,c)=>{a.push({from:u,to:c})});else{const{from:u,to:c}=n[s];if(u===void 0||c===void 0)return;a.push({from:u,to:c})}a.forEach(({from:u,to:c})=>{const f=e.slice(s).map(u,-1),h=e.slice(s).map(c),m=e.invert().map(f,-1),g=e.invert().map(h);r.push({oldRange:{from:m,to:g},newRange:{from:f,to:h}})})}),RW(r)}function g1(t,e,n){const r=[];return t===e?n.resolve(t).marks().forEach(i=>{const s=n.resolve(t),a=f1(s,i.type);a&&r.push({mark:i,...a})}):n.nodesBetween(t,e,(i,s)=>{!i||i?.nodeSize===void 0||r.push(...i.marks.map(a=>({from:s,to:s+i.nodeSize,mark:a})))}),r}var NW=(t,e,n,r=20)=>{const i=t.doc.resolve(n);let s=r,a=null;for(;s>0&&a===null;){const u=i.node(s);u?.type.name===e?a=u:s-=1}return[a,s]};function _u(t,e){return e.nodes[t]||e.marks[t]||null}function Ah(t,e,n){return Object.fromEntries(Object.entries(n).filter(([r])=>{const i=t.find(s=>s.type===e&&s.name===r);return i?i.attribute.keepOnSplit:!1}))}var PW=(t,e=500)=>{let n="";const r=t.parentOffset;return t.parent.nodesBetween(Math.max(0,r-e),r,(i,s,a,u)=>{var c,f;const h=((f=(c=i.type.spec).toText)==null?void 0:f.call(c,{node:i,pos:s,parent:a,index:u}))||i.textContent||"%leaf%";n+=i.isAtom&&!i.isText?h:h.slice(0,Math.max(0,r-s))}),n};function wy(t,e,n={}){const{empty:r,ranges:i}=t.selection,s=e?Ki(e,t.schema):null;if(r)return!!(t.storedMarks||t.selection.$from.marks()).filter(m=>s?s.name===m.type.name:!0).find(m=>pp(m.attrs,n,{strict:!1}));let a=0;const u=[];if(i.forEach(({$from:m,$to:g})=>{const b=m.pos,v=g.pos;t.doc.nodesBetween(b,v,(C,E)=>{if(s&&C.inlineContent&&!C.type.allowsMarkType(s))return!1;if(!C.isText&&!C.marks.length)return;const k=Math.max(b,E),T=Math.min(v,E+C.nodeSize),$=T-k;a+=$,u.push(...C.marks.map(A=>({mark:A,from:k,to:T})))})}),a===0)return!1;const c=u.filter(m=>s?s.name===m.mark.type.name:!0).filter(m=>pp(m.mark.attrs,n,{strict:!1})).reduce((m,g)=>m+g.to-g.from,0),f=u.filter(m=>s?m.mark.type!==s&&m.mark.type.excludes(s):!0).reduce((m,g)=>m+g.to-g.from,0);return(c>0?c+f:c)>=a}function OW(t,e,n={}){if(!e)return Hs(t,null,n)||wy(t,null,n);const r=Tm(e,t.schema);return r==="node"?Hs(t,e,n):r==="mark"?wy(t,e,n):!1}var LW=(t,e)=>{const{$from:n,$to:r,$anchor:i}=t.selection;if(e){const s=Am(u=>u.type.name===e)(t.selection);if(!s)return!1;const a=t.doc.resolve(s.pos+1);return i.pos+1===a.end()}return!(r.parentOffset<r.parent.nodeSize-2||n.pos!==r.pos)},zW=t=>{const{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function lD(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function e4(t,e){const{nodeExtensions:n}=Rl(e),r=n.find(a=>a.name===t);if(!r)return!1;const i={name:r.name,options:r.options,storage:r.storage},s=We(ye(r,"group",i));return typeof s!="string"?!1:s.split(" ").includes("list")}function md(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var r;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return!/\S/.test((r=t.text)!=null?r:"")}if(t.isText)return!t.text;if(t.isAtom||t.isLeaf)return!1;if(t.content.childCount===0)return!0;if(e){let i=!0;return t.content.forEach(s=>{i!==!1&&(md(s,{ignoreWhitespace:n,checkChildren:e})||(i=!1))}),i}return!1}function E7(t){return t instanceof Ce}var k7=class D7{constructor(e){this.position=e}static fromJSON(e){return new D7(e.position)}toJSON(){return{position:this.position}}};function IW(t,e){const n=e.mapping.mapResult(t.position);return{position:new k7(n.pos),mapResult:n}}function FW(t){return new k7(t)}function KW(t,e,n){var r;const{selection:i}=e;let s=null;if(l7(i)&&(s=i.$cursor),s){const u=(r=t.storedMarks)!=null?r:s.marks();return s.parent.type.allowsMarkType(n)&&(!!n.isInSet(u)||!u.some(f=>f.type.excludes(n)))}const{ranges:a}=i;return a.some(({$from:u,$to:c})=>{let f=u.depth===0?t.doc.inlineContent&&t.doc.type.allowsMarkType(n):!1;return t.doc.nodesBetween(u.pos,c.pos,(h,m,g)=>{if(f)return!1;if(h.isInline){const b=!g||g.type.allowsMarkType(n),v=!!n.isInSet(h.marks)||!h.marks.some(C=>C.type.excludes(n));f=b&&v}return!f}),f})}var jW=(t,e={})=>({tr:n,state:r,dispatch:i})=>{const{selection:s}=n,{empty:a,ranges:u}=s,c=Ki(t,r.schema);if(i)if(a){const f=h7(r,c);n.addStoredMark(c.create({...f,...e}))}else u.forEach(f=>{const h=f.$from.pos,m=f.$to.pos;r.doc.nodesBetween(h,m,(g,b)=>{const v=Math.max(b,h),C=Math.min(b+g.nodeSize,m);g.marks.find(k=>k.type===c)?g.marks.forEach(k=>{c===k.type&&n.addMark(v,C,c.create({...k.attrs,...e}))}):n.addMark(v,C,c.create(e))})});return KW(r,n,c)},_W=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),HW=(t,e={})=>({state:n,dispatch:r,chain:i})=>{const s=Ot(t,n.schema);let a;return n.selection.$anchor.sameParent(n.selection.$head)&&(a=n.selection.$anchor.parent.attrs),s.isTextblock?i().command(({commands:u})=>kk(s,{...a,...e})(n)?!0:u.clearNodes()).command(({state:u})=>kk(s,{...a,...e})(u,r)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},VW=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,i=Fo(t,0,r.content.size),s=Ce.create(r,i);e.setSelection(s)}return!0},UW=(t,e)=>({tr:n,state:r,dispatch:i})=>{const{selection:s}=r;let a,u;return typeof e=="number"?(a=e,u=e):e&&"from"in e&&"to"in e?(a=e.from,u=e.to):(a=s.from,u=s.to),i&&n.doc.nodesBetween(a,u,(c,f)=>{c.isText||n.setNodeMarkup(f,void 0,{...c.attrs,dir:t})}),!0},qW=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,{from:i,to:s}=typeof t=="number"?{from:t,to:t}:t,a=De.atStart(r).from,u=De.atEnd(r).to,c=Fo(i,a,u),f=Fo(s,a,u),h=De.create(r,c,f);e.setSelection(h)}return!0},GW=t=>({state:e,dispatch:n})=>{const r=Ot(t,e.schema);return IU(r)(e,n)};function uD(t,e){const n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){const r=n.filter(i=>e?.includes(i.type.name));t.tr.ensureMarks(r)}}var WW=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:r,editor:i})=>{const{selection:s,doc:a}=e,{$from:u,$to:c}=s,f=i.extensionManager.attributes,h=Ah(f,u.node().type.name,u.node().attrs);if(s instanceof Ce&&s.node.isBlock)return!u.parentOffset||!Mi(a,u.pos)?!1:(r&&(t&&uD(n,i.extensionManager.splittableMarks),e.split(u.pos).scrollIntoView()),!0);if(!u.parent.isBlock)return!1;const m=c.parentOffset===c.parent.content.size,g=u.depth===0?void 0:d7(u.node(-1).contentMatchAt(u.indexAfter(-1)));let b=m&&g?[{type:g,attrs:h}]:void 0,v=Mi(e.doc,e.mapping.map(u.pos),1,b);if(!b&&!v&&Mi(e.doc,e.mapping.map(u.pos),1,g?[{type:g}]:void 0)&&(v=!0,b=g?[{type:g,attrs:h}]:void 0),r){if(v&&(s instanceof De&&e.deleteSelection(),e.split(e.mapping.map(u.pos),1,b),g&&!m&&!u.parentOffset&&u.parent.type!==g)){const C=e.mapping.map(u.before()),E=e.doc.resolve(C);u.node(-1).canReplaceWith(E.index(),E.index()+1,g)&&e.setNodeMarkup(e.mapping.map(u.before()),g)}t&&uD(n,i.extensionManager.splittableMarks),e.scrollIntoView()}return v},QW=(t,e={})=>({tr:n,state:r,dispatch:i,editor:s})=>{var a;const u=Ot(t,r.schema),{$from:c,$to:f}=r.selection,h=r.selection.node;if(h&&h.isBlock||c.depth<2||!c.sameParent(f))return!1;const m=c.node(-1);if(m.type!==u)return!1;const g=s.extensionManager.attributes;if(c.parent.content.size===0&&c.node(-1).childCount===c.indexAfter(-1)){if(c.depth===2||c.node(-3).type!==u||c.index(-2)!==c.node(-2).childCount-1)return!1;if(i){let k=ae.empty;const T=c.index(-1)?1:c.index(-2)?2:3;for(let N=c.depth-T;N>=c.depth-3;N-=1)k=ae.from(c.node(N).copy(k));const $=c.indexAfter(-1)<c.node(-2).childCount?1:c.indexAfter(-2)<c.node(-3).childCount?2:3,A={...Ah(g,c.node().type.name,c.node().attrs),...e},B=((a=u.contentMatch.defaultType)==null?void 0:a.createAndFill(A))||void 0;k=k.append(ae.from(u.createAndFill(null,B)||void 0));const P=c.before(c.depth-(T-1));n.replace(P,c.after(-$),new he(k,4-T,0));let M=-1;n.doc.nodesBetween(P,n.doc.content.size,(N,I)=>{if(M>-1)return!1;N.isTextblock&&N.content.size===0&&(M=I+1)}),M>-1&&n.setSelection(De.near(n.doc.resolve(M))),n.scrollIntoView()}return!0}const b=f.pos===c.end()?m.contentMatchAt(0).defaultType:null,v={...Ah(g,m.type.name,m.attrs),...e},C={...Ah(g,c.node().type.name,c.node().attrs),...e};n.delete(c.pos,f.pos);const E=b?[{type:u,attrs:v},{type:b,attrs:C}]:[{type:u,attrs:v}];if(!Mi(n.doc,c.pos,2))return!1;if(i){const{selection:k,storedMarks:T}=r,{splittableMarks:$}=s.extensionManager,A=T||k.$to.parentOffset&&k.$from.marks();if(n.split(c.pos,2,E).scrollIntoView(),!A||!i)return!0;const B=A.filter(P=>$.includes(P.type.name));n.ensureMarks(B)}return!0};function cD(t){return!t||t==="1"?null:t}function S7(t,e){return cD(t)===cD(e)}var t4=(t,e)=>{const n=Am(a=>a.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(r===void 0)return!0;const i=t.doc.nodeAt(r);return!(n.node.type===i?.type&&Js(t.doc,n.pos))||!S7(n.node.attrs.type,i?.attrs.type)||t.join(n.pos),!0},n4=(t,e)=>{const n=Am(a=>a.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(n.start).after(n.depth);if(r===void 0)return!0;const i=t.doc.nodeAt(r);return!(n.node.type===i?.type&&Js(t.doc,r))||!S7(n.node.attrs.type,i?.attrs.type)||t.join(r),!0};function YW(t){const e=t.doc,n=e.firstChild;if(!n)return null;const r=e.resolve(1),i=e.resolve(n.nodeSize-1);return De.between(r,i)}var XW=(t,e,n,r={})=>({editor:i,tr:s,state:a,dispatch:u,chain:c,commands:f,can:h})=>{const{extensions:m,splittableMarks:g}=i.extensionManager,b=Ot(t,a.schema),v=Ot(e,a.schema),{selection:C,storedMarks:E}=a,{$from:k,$to:T}=C,$=k.blockRange(T),A=E||C.$to.parentOffset&&C.$from.marks();if(!$)return!1;const B=Am(ie=>e4(ie.type.name,m))(C),P=C.from===0&&C.to===a.doc.content.size,M=a.doc.content.content,N=M.length===1?M[0]:null,I=P&&N&&e4(N.type.name,m)?{node:N,pos:0}:null,F=B??I,J=!!B&&$.depth>=1&&$.depth-B.depth<=1,q=!!I;if((J||q)&&F){if(F.node.type===b)return P&&q?c().command(({tr:ie,dispatch:K})=>{const te=YW(ie);return te?(ie.setSelection(te),K&&K(ie),!0):!1}).liftListItem(v).run():f.liftListItem(v);if(e4(F.node.type.name,m)&&b.validContent(F.node.content))return c().command(()=>(s.setNodeMarkup(F.pos,b),!0)).command(()=>t4(s,b)).command(()=>n4(s,b)).run()}return!n||!A||!u?c().command(()=>h().wrapInList(b,r)?!0:f.clearNodes()).wrapInList(b,r).command(()=>t4(s,b)).command(()=>n4(s,b)).run():c().command(()=>{const ie=h().wrapInList(b,r),K=A.filter(te=>g.includes(te.type.name));return s.ensureMarks(K),ie?!0:f.clearNodes()}).wrapInList(b,r).command(()=>t4(s,b)).command(()=>n4(s,b)).run()},JW=(t,e={},n={})=>({state:r,commands:i})=>{const{extendEmptyMarkRange:s=!1}=n,a=Ki(t,r.schema);return wy(r,a,e)?i.unsetMark(a,{extendEmptyMarkRange:s}):i.setMark(a,e)},ZW=(t,e,n={})=>({state:r,commands:i})=>{const s=Ot(t,r.schema),a=Ot(e,r.schema),u=Hs(r,s,n);let c;return r.selection.$anchor.sameParent(r.selection.$head)&&(c=r.selection.$anchor.parent.attrs),u?i.setNode(a,c):i.setNode(s,{...c,...n})},eQ=(t,e={})=>({state:n,commands:r})=>{const i=Ot(t,n.schema);return Hs(n,i,e)?r.lift(i):r.wrapIn(i,e)},tQ=()=>({state:t,dispatch:e})=>{const n=t.plugins;for(let r=0;r<n.length;r+=1){const i=n[r];let s;if(i.spec.isInputRules&&(s=i.getState(t))){if(e){const a=t.tr,u=s.transform;for(let c=u.steps.length-1;c>=0;c-=1)a.step(u.steps[c].invert(u.docs[c]));if(s.text){const c=a.doc.resolve(s.from).marks();a.replaceWith(s.from,s.to,t.schema.text(s.text,c))}else a.delete(s.from,s.to)}return!0}}return!1},nQ=(t={})=>({tr:e,dispatch:n,editor:r})=>{const{ignoreClearable:i=!1}=t,{selection:s}=e,{empty:a,ranges:u}=s;if(a)return!0;const{nonClearableMarks:c}=r.extensionManager;if(n){const f=Object.values(r.schema.marks).filter(h=>i||!c.includes(h.name));u.forEach(h=>{for(const m of f)e.removeMark(h.$from.pos,h.$to.pos,m)})}return!0},rQ=(t,e={})=>({tr:n,state:r,dispatch:i})=>{var s;const{extendEmptyMarkRange:a=!1}=e,{selection:u}=n,c=Ki(t,r.schema),{$from:f,empty:h,ranges:m}=u;if(!i)return!0;if(h&&a){let{from:g,to:b}=u;const v=(s=f.marks().find(E=>E.type===c))==null?void 0:s.attrs,C=f1(f,c,v);C&&(g=C.from,b=C.to),n.removeMark(g,b,c)}else m.forEach(g=>{n.removeMark(g.$from.pos,g.$to.pos,c)});return n.removeStoredMark(c),!0},iQ=t=>({tr:e,state:n,dispatch:r})=>{const{selection:i}=n;let s,a;return typeof t=="number"?(s=t,a=t):t&&"from"in t&&"to"in t?(s=t.from,a=t.to):(s=i.from,a=i.to),r&&e.doc.nodesBetween(s,a,(u,c)=>{if(u.isText)return;const f={...u.attrs};delete f.dir,e.setNodeMarkup(c,void 0,f)}),!0},sQ=(t,e={})=>({tr:n,state:r,dispatch:i})=>{let s=null,a=null;const u=Tm(typeof t=="string"?t:t.name,r.schema);if(!u)return!1;u==="node"&&(s=Ot(t,r.schema)),u==="mark"&&(a=Ki(t,r.schema));let c=!1;return n.selection.ranges.forEach(f=>{const h=f.$from.pos,m=f.$to.pos;let g,b,v,C;n.selection.empty?r.doc.nodesBetween(h,m,(E,k)=>{s&&s===E.type&&(c=!0,v=Math.max(k,h),C=Math.min(k+E.nodeSize,m),g=k,b=E)}):r.doc.nodesBetween(h,m,(E,k)=>{k<h&&s&&s===E.type&&(c=!0,v=Math.max(k,h),C=Math.min(k+E.nodeSize,m),g=k,b=E),k>=h&&k<=m&&(s&&s===E.type&&(c=!0,i&&n.setNodeMarkup(k,void 0,{...E.attrs,...e})),a&&E.marks.length&&E.marks.forEach(T=>{if(a===T.type&&(c=!0,i)){const $=Math.max(k,h),A=Math.min(k+E.nodeSize,m);n.addMark($,A,a.create({...T.attrs,...e}))}}))}),b&&(g!==void 0&&i&&n.setNodeMarkup(g,void 0,{...b.attrs,...e}),a&&b.marks.length&&b.marks.forEach(E=>{a===E.type&&i&&n.addMark(v,C,a.create({...E.attrs,...e}))}))}),c},oQ=(t,e={})=>({state:n,dispatch:r})=>{const i=Ot(t,n.schema);return MU(i,e)(n,r)},aQ=(t,e={})=>({state:n,dispatch:r})=>{const i=Ot(t,n.schema);return RU(i,e)(n,r)},lQ=class{constructor(){this.callbacks={}}on(t,e){return this.callbacks[t]||(this.callbacks[t]=[]),this.callbacks[t].push(e),this}emit(t,...e){const n=this.callbacks[t];return n&&n.forEach(r=>r.apply(this,e)),this}off(t,e){const n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(r=>r!==e):delete this.callbacks[t]),this}once(t,e){const n=(...r)=>{this.off(t,n),e.apply(this,r)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}};function Nl(t,e){if(t===e)return!0;if(!t||!e)return!1;const n=Object.keys(t),r=Object.keys(e);return n.length!==r.length?!1:n.every(i=>Object.prototype.hasOwnProperty.call(e,i)&&Object.is(t[i],e[i]))}function uQ(t,e){const{selection:n}=t,{$from:r}=n;if(n instanceof Ce){const s=r.index();return r.parent.canReplaceWith(s,s+1,e)}let i=r.depth;for(;i>=0;){const s=r.index(i);if(r.node(i).contentMatchAt(s).matchType(e))return!0;i-=1}return!1}function cQ(t,e,n){const r=document.querySelector("style[data-tiptap-style]");if(r!==null)return r;const i=document.createElement("style");return e&&i.setAttribute("nonce",e),i.setAttribute("data-tiptap-style",""),i.innerHTML=t,document.getElementsByTagName("head")[0].appendChild(i),i}function dD(t){return t.replace(/</g,"<").replace(/>/g,">").replace(/"/g,'"').replace(/&/g,"&")}function dQ(t){return t.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function fQ(t){return typeof t=="number"}function hQ(t){return Object.prototype.toString.call(t).slice(8,-1)}function rh(t){return hQ(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}var pQ={};c1(pQ,{createAtomBlockMarkdownSpec:()=>mQ,createBlockMarkdownSpec:()=>gQ,createInlineMarkdownSpec:()=>vQ,parseAttributes:()=>b1,parseIndentedBlocks:()=>$y,renderNestedMarkdownContent:()=>v1,serializeAttributes:()=>y1});function b1(t){if(!t?.trim())return{};const e={},n=[],r=t.replace(/["']([^"']*)["']/g,f=>(n.push(f),`__QUOTED_${n.length-1}__`)),i=r.match(/(?:^|\s)\.([\w-]+)/g);if(i){const f=i.map(h=>h.trim().slice(1));e.class=f.join(" ")}const s=r.match(/(?:^|\s)#([\w-]+)/);s&&(e.id=s[1]);const a=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(r.matchAll(a)).forEach(([,f,h])=>{var m;const g=parseInt(((m=h.match(/__QUOTED_(\d+)__/))==null?void 0:m[1])||"0",10),b=n[g];b&&(e[f]=b.slice(1,-1))});const c=r.replace(/(?:^|\s)\.([\w-]+)/g,"").replace(/(?:^|\s)#([\w-]+)/g,"").replace(/([a-zA-Z][\w-]*)\s*=\s*__QUOTED_\d+__/g,"").trim();return c&&c.split(/\s+/).filter(Boolean).forEach(h=>{h.match(/^[a-zA-Z][\w-]*$/)&&(e[h]=!0)}),e}function y1(t){if(!t||Object.keys(t).length===0)return"";const e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(r=>e.push(`.${r}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,r])=>{n==="class"||n==="id"||(r===!0?e.push(n):r!==!1&&r!=null&&e.push(`${n}="${String(r)}"`))}),e.join(" ")}function mQ(t){const{nodeName:e,name:n,parseAttributes:r=b1,serializeAttributes:i=y1,defaultAttributes:s={},requiredAttributes:a=[],allowedAttributes:u}=t,c=n||e,f=h=>{if(!u)return h;const m={};return u.forEach(g=>{g in h&&(m[g]=h[g])}),m};return{parseMarkdown:(h,m)=>{const g={...s,...h.attributes};return m.createNode(e,g,[])},markdownTokenizer:{name:e,level:"block",start(h){var m;const g=new RegExp(`^:::${c}(?:\\s|$)`,"m"),b=(m=h.match(g))==null?void 0:m.index;return b!==void 0?b:-1},tokenize(h,m,g){const b=new RegExp(`^:::${c}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),v=h.match(b);if(!v)return;const C=v[1]||"",E=r(C);if(!a.find(T=>!(T in E)))return{type:e,raw:v[0],attributes:E}}},renderMarkdown:h=>{const m=f(h.attrs||{}),g=i(m),b=g?` {${g}}`:"";return`:::${c}${b} :::`}}}function gQ(t){const{nodeName:e,name:n,getContent:r,parseAttributes:i=b1,serializeAttributes:s=y1,defaultAttributes:a={},content:u="block",allowedAttributes:c}=t,f=n||e,h=m=>{if(!c)return m;const g={};return c.forEach(b=>{b in m&&(g[b]=m[b])}),g};return{parseMarkdown:(m,g)=>{let b;if(r){const C=r(m);b=typeof C=="string"?[{type:"text",text:C}]:C}else u==="block"?b=g.parseChildren(m.tokens||[]):b=g.parseInline(m.tokens||[]);const v={...a,...m.attributes};return g.createNode(e,v,b)},markdownTokenizer:{name:e,level:"block",start(m){var g;const b=new RegExp(`^:::${f}`,"m"),v=(g=m.match(b))==null?void 0:g.index;return v!==void 0?v:-1},tokenize(m,g,b){var v;const C=new RegExp(`^:::${f}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),E=m.match(C);if(!E)return;const[k,T=""]=E,$=i(T);let A=1;const B=k.length;let P="";const M=/^:::([\w-]*)(\s.*)?/gm,N=m.slice(B);for(M.lastIndex=0;;){const I=M.exec(N);if(I===null)break;const F=I.index,J=I[1];if(!((v=I[2])!=null&&v.endsWith(":::"))){if(J)A+=1;else if(A-=1,A===0){const q=N.slice(0,F);P=q.trim();const ie=m.slice(0,B+F+I[0].length);let K=[];if(P)if(u==="block")for(K=b.blockTokens(q),K.forEach(te=>{te.text&&(!te.tokens||te.tokens.length===0)&&(te.tokens=b.inlineTokens(te.text))});K.length>0;){const te=K[K.length-1];if(te.type==="paragraph"&&(!te.text||te.text.trim()===""))K.pop();else break}else K=b.inlineTokens(P);return{type:e,raw:ie,attributes:$,content:P,tokens:K}}}}}},renderMarkdown:(m,g)=>{const b=h(m.attrs||{}),v=s(b),C=v?` {${v}}`:"",E=g.renderChildren(m.content||[],`
|
|
33
|
-
|
|
34
|
-
`);return`:::${f}${C}
|
|
35
|
-
|
|
36
|
-
${E}
|
|
37
|
-
|
|
38
|
-
:::`}}}function bQ(t){if(!t.trim())return{};const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let r=n.exec(t);for(;r!==null;){const[,i,s,a]=r;e[i]=s||a,r=n.exec(t)}return e}function yQ(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function vQ(t){const{nodeName:e,name:n,getContent:r,parseAttributes:i=bQ,serializeAttributes:s=yQ,defaultAttributes:a={},selfClosing:u=!1,allowedAttributes:c}=t,f=n||e,h=g=>{if(!c)return g;const b={};return c.forEach(v=>{const C=typeof v=="string"?v:v.name,E=typeof v=="string"?void 0:v.skipIfDefault;if(C in g){const k=g[C];if(E!==void 0&&k===E)return;b[C]=k}}),b},m=f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(g,b)=>{const v={...a,...g.attributes};if(u)return b.createNode(e,v);const C=r?r(g):g.content||"";return C?b.createNode(e,v,[b.createTextNode(C)]):b.createNode(e,v,[])},markdownTokenizer:{name:e,level:"inline",start(g){const b=u?new RegExp(`\\[${m}\\s*[^\\]]*\\]`):new RegExp(`\\[${m}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${m}\\]`),v=g.match(b),C=v?.index;return C!==void 0?C:-1},tokenize(g,b,v){const C=u?new RegExp(`^\\[${m}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${m}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${m}\\]`),E=g.match(C);if(!E)return;let k="",T="";if(u){const[,A]=E;T=A}else{const[,A,B]=E;T=A,k=B||""}const $=i(T.trim());return{type:e,raw:E[0],content:k.trim(),attributes:$}}},renderMarkdown:g=>{let b="";r?b=r(g):g.content&&g.content.length>0&&(b=g.content.filter(k=>k.type==="text").map(k=>k.text).join(""));const v=h(g.attrs||{}),C=s(v),E=C?` ${C}`:"";return u?`[${f}${E}]`:`[${f}${E}]${b}[/${f}]`}}}function $y(t,e,n){var r,i,s,a;const u=t.split(`
|
|
39
|
-
`),c=[];let f="",h=0;const m=e.baseIndentSize||2;for(;h<u.length;){const g=u[h],b=g.match(e.itemPattern);if(!b){if(c.length>0)break;if(g.trim()===""){h+=1,f=`${f}${g}
|
|
40
|
-
`;continue}else return}const v=e.extractItemData(b),{indentLevel:C,mainContent:E}=v;f=`${f}${g}
|
|
41
|
-
`;const k=[E];for(h+=1;h<u.length;){const B=u[h];if(B.trim()===""){const M=u.slice(h+1).findIndex(F=>F.trim()!=="");if(M===-1)break;if((((i=(r=u[h+1+M].match(/^(\s*)/))==null?void 0:r[1])==null?void 0:i.length)||0)>C){k.push(B),f=`${f}${B}
|
|
42
|
-
`,h+=1;continue}else break}if((((a=(s=B.match(/^(\s*)/))==null?void 0:s[1])==null?void 0:a.length)||0)>C)k.push(B),f=`${f}${B}
|
|
43
|
-
`,h+=1;else break}let T;const $=k.slice(1);if($.length>0){const B=$.map(P=>P.slice(C+m)).join(`
|
|
44
|
-
`);B.trim()&&(e.customNestedParser?T=e.customNestedParser(B):T=n.blockTokens(B))}const A=e.createToken(v,T);c.push(A)}if(c.length!==0)return{items:c,raw:f}}function v1(t,e,n,r){if(!t||!Array.isArray(t.content))return"";const i=typeof n=="function"?n(r):n,[s,...a]=t.content,u=e.renderChildren([s]);let c=`${i}${u}`;return a&&a.length>0&&a.forEach((f,h)=>{var m,g;const b=(g=(m=e.renderChild)==null?void 0:m.call(e,f,h+1))!=null?g:e.renderChildren([f]);if(b!=null){const v=b.split(`
|
|
45
|
-
`).map(C=>C?e.indent(C):e.indent("")).join(`
|
|
46
|
-
`);c+=f.type==="paragraph"?`
|
|
47
|
-
|
|
48
|
-
${v}`:`
|
|
49
|
-
${v}`}}),c}function fD(t){return typeof t.type=="string"?t.type:t.type.name}function xQ(t,e){if(t.length!==e.length)return!1;const n=Array.from({length:e.length},()=>!1);return t.every(r=>{const i=fD(r),s=e.findIndex((a,u)=>!n[u]&&i===fD(a)&&Nl(r.attrs,a.attrs));return s===-1?!1:(n[s]=!0,!0)})}function w7(t,e){const n={...t};return rh(t)&&rh(e)&&Object.keys(e).forEach(r=>{rh(e[r])&&rh(t[r])?n[r]=w7(t[r],e[r]):n[r]=e[r]}),n}function CQ(t,e,n={}){const{state:r}=e,{doc:i,tr:s}=r,a=t;i.descendants((u,c)=>{const f=s.mapping.map(c),h=s.mapping.map(c)+u.nodeSize;let m=null;if(u.marks.forEach(b=>{if(b!==a)return!1;m=b}),!m)return;let g=!1;if(Object.keys(n).forEach(b=>{n[b]!==m.attrs[b]&&(g=!0)}),g){const b=t.type.create({...t.attrs,...n});s.removeMark(f,h,t.type),s.addMark(f,h,b)}}),s.docChanged&&e.view.dispatch(s)}var gd=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},EQ=(t,e)=>{if(d1(e))return e.exec(t);const n=e(t);if(!n)return null;const r=[n.text];return r.index=n.index,r.input=t,r.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),r.push(n.replaceWith)),r};function ih(t){var e;const{editor:n,from:r,to:i,text:s,rules:a,plugin:u}=t,{view:c}=n;if(c.composing)return!1;const f=c.state.doc.resolve(r);if(f.parent.type.spec.code||(e=f.nodeBefore||f.nodeAfter)!=null&&e.marks.find(g=>g.type.spec.code))return!1;let h=!1;const m=PW(f)+s;return a.forEach(g=>{if(h)return;const b=EQ(m,g.find);if(!b)return;const v=b[0].length-s.length;if(v>0){const P=f.parentOffset-v;if(P<0||f.parent.textBetween(P,f.parentOffset)!==b[0].slice(0,v))return}const C=c.state.tr,E=wm({state:c.state,transaction:C}),k={from:r-(b[0].length-s.length),to:i},{commands:T,chain:$,can:A}=new $m({editor:n,state:E});g.handler({state:E,range:k,match:b,commands:T,chain:$,can:A})===null||!C.steps.length||(g.undoable&&C.setMeta(u,{transform:C,from:r,to:i,text:s}),c.dispatch(C),h=!0)}),h}function kQ(t){const{editor:e,rules:n}=t,r=new pt({state:{init(){return null},apply(i,s,a){const u=i.getMeta(r);if(u)return u;const c=i.getMeta("applyInputRules");return c&&setTimeout(()=>{let{text:h}=c;typeof h=="string"?h=h:h=h1(ae.from(h),a.schema);const{from:m}=c,g=m+h.length;ih({editor:e,from:m,to:g,text:h,rules:n,plugin:r})}),i.selectionSet||i.docChanged?null:s}},props:{handleTextInput(i,s,a,u){return ih({editor:e,from:s,to:a,text:u,rules:n,plugin:r})},handleDOMEvents:{compositionend:i=>(setTimeout(()=>{const{$cursor:s}=i.state.selection;s&&ih({editor:e,from:s.pos,to:s.pos,text:"",rules:n,plugin:r})}),!1)},handleKeyDown(i,s){if(s.key!=="Enter")return!1;const{$cursor:a}=i.state.selection;return a?ih({editor:e,from:a.pos,to:a.pos,text:`
|
|
50
|
-
`,rules:n,plugin:r}):!1}},isInputRules:!0});return r}var x1=class{constructor(t={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...t},this.name=this.config.name}get options(){return{...We(ye(this,"addOptions",{name:this.name}))}}get storage(){return{...We(ye(this,"addStorage",{name:this.name,options:this.options}))}}configure(t={}){const e=this.extend({...this.config,addOptions:()=>w7(this.options,t)});return e.name=this.name,e.parent=this.parent,this.child=null,e}extend(t={}){const e=new this.constructor({...this.config,...t});return e.parent=this,this.child=e,e.name="name"in t?t.name:e.parent.name,e}},ma=class $7 extends x1{constructor(){super(...arguments),this.type="mark"}static create(e={}){const n=typeof e=="function"?e():e;return new $7(n)}static handleExit({editor:e,mark:n}){const{tr:r}=e.state,i=e.state.selection.$from;if(i.pos===i.end()){const a=i.marks();if(!!!a.find(f=>f?.type.name===n.name))return!1;const c=a.find(f=>f?.type.name===n.name);return c&&r.removeStoredMark(c),r.insertText(" ",i.pos),e.view.dispatch(r),!0}return!1}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},T7=class{constructor(t){this.find=t.find,this.handler=t.handler}},DQ=(t,e,n)=>{if(d1(e))return[...t.matchAll(e)];const r=e(t,n);return r?r.map(i=>{const s=[i.text];return s.index=i.index,s.input=t,s.data=i.data,i.replaceWith&&(i.text.includes(i.replaceWith)||console.warn('[tiptap warn]: "pasteRuleMatch.replaceWith" must be part of "pasteRuleMatch.text".'),s.push(i.replaceWith)),s}):[]};function SQ(t){const{editor:e,state:n,from:r,to:i,rule:s,pasteEvent:a,dropEvent:u}=t,{commands:c,chain:f,can:h}=new $m({editor:e,state:n}),m=[];return n.doc.nodesBetween(r,i,(b,v)=>{var C,E,k,T,$;if((E=(C=b.type)==null?void 0:C.spec)!=null&&E.code||!(b.isText||b.isTextblock||b.isInline))return;const A=($=(T=(k=b.content)==null?void 0:k.size)!=null?T:b.nodeSize)!=null?$:0,B=Math.max(r,v),P=Math.min(i,v+A);if(B>=P)return;const M=b.isText?b.text||"":b.textBetween(B-v,P-v,void 0,"");DQ(M,s.find,a).forEach(I=>{if(I.index===void 0)return;const F=B+I.index+1,J=F+I[0].length,q={from:n.tr.mapping.map(F),to:n.tr.mapping.map(J)},ie=s.handler({state:n,range:q,match:I,commands:c,chain:f,can:h,pasteEvent:a,dropEvent:u});m.push(ie)})}),m.every(b=>b!==null)}var sh=null,wQ=t=>{var e;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function $Q(t){const{editor:e,rules:n}=t;let r=null,i=!1,s=!1,a=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,u;try{u=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{u=null}const c=({state:h,from:m,to:g,rule:b,pasteEvt:v})=>{const C=h.tr,E=wm({state:h,transaction:C});if(!(!SQ({editor:e,state:E,from:Math.max(m-1,0),to:g.b-1,rule:b,pasteEvent:v,dropEvent:u})||!C.steps.length)){try{u=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{u=null}return a=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,C}};return n.map(h=>new pt({view(m){const g=v=>{var C;r=(C=m.dom.parentElement)!=null&&C.contains(v.target)?m.dom.parentElement:null,r&&(sh=e)},b=()=>{sh&&(sh=null)};return window.addEventListener("dragstart",g),window.addEventListener("dragend",b),{destroy(){window.removeEventListener("dragstart",g),window.removeEventListener("dragend",b)}}},props:{handleDOMEvents:{drop:(m,g)=>{if(s=r===m.dom.parentElement,u=g,!s){const b=sh;b?.isEditable&&setTimeout(()=>{const v=b.state.selection;v&&b.commands.deleteRange({from:v.from,to:v.to})},10)}return!1},paste:(m,g)=>{var b;const v=(b=g.clipboardData)==null?void 0:b.getData("text/html");return a=g,i=!!v?.includes("data-pm-slice"),!1}}},appendTransaction:(m,g,b)=>{const v=m[0],C=v.getMeta("uiEvent")==="paste"&&!i,E=v.getMeta("uiEvent")==="drop"&&!s,k=v.getMeta("applyPasteRules"),T=!!k;if(!C&&!E&&!T)return;if(T){let{text:B}=k;typeof B=="string"?B=B:B=h1(ae.from(B),b.schema);const{from:P}=k,M=P+B.length,N=wQ(B);return c({rule:h,state:b,from:P,to:{b:M},pasteEvt:N})}const $=g.doc.content.findDiffStart(b.doc.content),A=g.doc.content.findDiffEnd(b.doc.content);if(!(!fQ($)||!A||$===A.b))return c({rule:h,state:b,from:$,to:A,pasteEvt:a})}}))}var Mm=class{constructor(t,e){this.splittableMarks=[],this.nonClearableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=p1(t),this.schema=b7(this.extensions,e),this.setupExtensions()}get commands(){return this.extensions.reduce((t,e)=>{const n={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:_u(e.name,this.schema)},r=ye(e,"addCommands",n);return r?{...t,...r()}:t},{})}get plugins(){const{editor:t}=this;return vl([...this.extensions].reverse()).flatMap(r=>{const i={name:r.name,options:r.options,storage:this.editor.extensionStorage[r.name],editor:t,type:_u(r.name,this.schema)},s=[],a=ye(r,"addKeyboardShortcuts",i);let u={};if(r.type==="mark"&&ye(r,"exitable",i)&&(u.ArrowRight=()=>ma.handleExit({editor:t,mark:r})),a){const g=Object.fromEntries(Object.entries(a()).map(([b,v])=>[b,()=>v({editor:t})]));u={...u,...g}}const c=TG(u);s.push(c);const f=ye(r,"addInputRules",i);if(lD(r,t.options.enableInputRules)&&f){const g=f();if(g&&g.length){const b=kQ({editor:t,rules:g}),v=Array.isArray(b)?b:[b];s.push(...v)}}const h=ye(r,"addPasteRules",i);if(lD(r,t.options.enablePasteRules)&&h){const g=h();if(g&&g.length){const b=$Q({editor:t,rules:g});s.push(...b)}}const m=ye(r,"addProseMirrorPlugins",i);if(m){const g=m();s.push(...g)}return s})}get attributes(){return g7(this.extensions)}get nodeViews(){const{editor:t}=this,{nodeExtensions:e}=Rl(this.extensions);return Object.fromEntries(e.filter(n=>!!ye(n,"addNodeView")).map(n=>{const r=this.attributes.filter(c=>c.type===n.name),i={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Ot(n.name,this.schema)},s=ye(n,"addNodeView",i);if(!s)return[];const a=s();if(!a)return[];const u=(c,f,h,m,g)=>{const b=Uc(c,r);return a({node:c,view:f,getPos:h,decorations:m,innerDecorations:g,editor:t,extension:n,HTMLAttributes:b})};return[n.name,u]}))}dispatchTransaction(t){const{editor:e}=this;return vl([...this.extensions].reverse()).reduceRight((r,i)=>{const s={name:i.name,options:i.options,storage:this.editor.extensionStorage[i.name],editor:e,type:_u(i.name,this.schema)},a=ye(i,"dispatchTransaction",s);return a?u=>{a.call(s,{transaction:u,next:r})}:r},t)}transformPastedHTML(t){const{editor:e}=this;return vl([...this.extensions]).reduce((r,i)=>{const s={name:i.name,options:i.options,storage:this.editor.extensionStorage[i.name],editor:e,type:_u(i.name,this.schema)},a=ye(i,"transformPastedHTML",s);return a?(u,c)=>{const f=r(u,c);return a.call(s,f)}:r},t||(r=>r))}get markViews(){const{editor:t}=this,{markExtensions:e}=Rl(this.extensions);return Object.fromEntries(e.filter(n=>!!ye(n,"addMarkView")).map(n=>{const r=this.attributes.filter(u=>u.type===n.name),i={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Ki(n.name,this.schema)},s=ye(n,"addMarkView",i);if(!s)return[];const a=(u,c,f)=>{const h=Uc(u,r);return s()({mark:u,view:c,inline:f,editor:t,extension:n,HTMLAttributes:h,updateAttributes:m=>{CQ(u,t,m)}})};return[n.name,a]}))}destroy(){this.extensions.forEach(t=>{let e=t;for(;e.parent;){const n=e.parent;n.child===e&&(n.child=null),e=n}}),this.extensions=[],this.baseExtensions=[],this.schema=null,this.editor=null}setupExtensions(){const t=this.extensions;this.editor.extensionStorage=Object.fromEntries(t.map(e=>[e.name,e.storage])),t.forEach(e=>{var n,r;const i={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:_u(e.name,this.schema)};e.type==="mark"&&(((n=We(ye(e,"keepOnSplit",i)))==null||n)&&this.splittableMarks.push(e.name),(r=We(ye(e,"clearable",i)))==null||r||this.nonClearableMarks.push(e.name));const s=ye(e,"onBeforeCreate",i),a=ye(e,"onCreate",i),u=ye(e,"onUpdate",i),c=ye(e,"onSelectionUpdate",i),f=ye(e,"onTransaction",i),h=ye(e,"onFocus",i),m=ye(e,"onBlur",i),g=ye(e,"onDestroy",i);s&&this.editor.on("beforeCreate",s),a&&this.editor.on("create",a),u&&this.editor.on("update",u),c&&this.editor.on("selectionUpdate",c),f&&this.editor.on("transaction",f),h&&this.editor.on("focus",h),m&&this.editor.on("blur",m),g&&this.editor.on("destroy",g)})}};Mm.resolve=p1;Mm.sort=vl;Mm.flatten=Bm;var TQ={};c1(TQ,{ClipboardTextSerializer:()=>B7,Commands:()=>M7,Delete:()=>R7,Drop:()=>N7,Editable:()=>P7,FocusEvents:()=>L7,Keymap:()=>z7,Paste:()=>I7,Tabindex:()=>F7,TextDirection:()=>K7,focusEventsPluginKey:()=>O7});var mt=class A7 extends x1{constructor(){super(...arguments),this.type="extension"}static create(e={}){const n=typeof e=="function"?e():e;return new A7(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},B7=mt.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new pt({key:new Kt("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:t}=this,{state:e,schema:n}=t,{doc:r,selection:i}=e,s=x7(n),{blockSeparator:a}=this.options,u={...a!==void 0?{blockSeparator:a}:{},textSerializers:s};return[...i.ranges].sort((f,h)=>f.$from.pos-h.$from.pos).map(({$from:f,$to:h})=>v7(r,{from:f.pos,to:h.pos},u)).join(a??`
|
|
51
|
-
|
|
52
|
-
`)}}})]}}),M7=mt.create({name:"commands",addCommands(){return{...Cr}}}),R7=mt.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,r,i;const s=()=>{var a,u,c,f;if((f=(c=(u=(a=this.editor.options.coreExtensionOptions)==null?void 0:a.delete)==null?void 0:u.filterTransaction)==null?void 0:c.call(u,t))!=null?f:t.getMeta("y-sync$"))return;const h=p7(t.before,[t,...e]);m1(h).forEach(b=>{h.mapping.mapResult(b.oldRange.from).deletedAfter&&h.mapping.mapResult(b.oldRange.to).deletedBefore&&h.before.nodesBetween(b.oldRange.from,b.oldRange.to,(v,C)=>{const E=C+v.nodeSize-2,k=b.oldRange.from<=C&&E<=b.oldRange.to;this.editor.emit("delete",{type:"node",node:v,from:C,to:E,newFrom:h.mapping.map(C),newTo:h.mapping.map(E),deletedRange:b.oldRange,newRange:b.newRange,partial:!k,editor:this.editor,transaction:t,combinedTransform:h})})});const g=h.mapping;h.steps.forEach((b,v)=>{var C,E;if(b instanceof $r){const k=g.slice(v).map(b.from,-1),T=g.slice(v).map(b.to),$=g.invert().map(k,-1),A=g.invert().map(T),B=k>0?(C=h.doc.nodeAt(k-1))==null?void 0:C.marks.some(M=>M.eq(b.mark)):!1,P=(E=h.doc.nodeAt(T))==null?void 0:E.marks.some(M=>M.eq(b.mark));this.editor.emit("delete",{type:"mark",mark:b.mark,from:b.from,to:b.to,deletedRange:{from:$,to:A},newRange:{from:k,to:T},partial:!!(P||B),editor:this.editor,transaction:t,combinedTransform:h})}})};(i=(r=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:r.async)==null||i?setTimeout(s,0):s()}}),N7=mt.create({name:"drop",addProseMirrorPlugins(){return[new pt({key:new Kt("tiptapDrop"),props:{handleDrop:(t,e,n,r)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:r})}}})]}}),P7=mt.create({name:"editable",addProseMirrorPlugins(){return[new pt({key:new Kt("editable"),props:{editable:()=>this.editor.options.editable}})]}}),O7=new Kt("focusEvents"),L7=mt.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:t}=this;return[new pt({key:O7,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;const r=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1},blur:(e,n)=>{t.isFocused=!1;const r=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1}}}})]}}),z7=mt.create({name:"keymap",addKeyboardShortcuts(){const t=()=>this.editor.commands.first(({commands:a})=>[()=>a.undoInputRule(),()=>a.command(({tr:u})=>{const{selection:c,doc:f}=u,{empty:h,$anchor:m}=c,{pos:g,parent:b}=m,v=m.parent.isTextblock&&g>0?u.doc.resolve(g-1):m,C=v.parent.type.spec.isolating,E=m.pos-m.parentOffset,k=C&&v.parent.childCount===1?E===m.pos:Me.atStart(f).from===g;return!h||!b.type.isTextblock||b.textContent.length||!k||k&&m.parent.type.name==="paragraph"?!1:a.clearNodes()}),()=>a.deleteSelection(),()=>a.joinBackward(),()=>a.selectNodeBackward()]),e=()=>this.editor.commands.first(({commands:a})=>[()=>a.deleteSelection(),()=>a.deleteCurrentNode(),()=>a.joinForward(),()=>a.selectNodeForward()]),r={Enter:()=>this.editor.commands.first(({commands:a})=>[()=>a.newlineInCode(),()=>a.createParagraphNear(),()=>a.liftEmptyBlock(),()=>a.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:t,"Mod-Backspace":t,"Shift-Backspace":t,Delete:e,"Mod-Delete":e,"Mod-a":()=>this.editor.commands.selectAll()},i={...r},s={...r,"Ctrl-h":t,"Alt-Backspace":t,"Ctrl-d":e,"Ctrl-Alt-Backspace":e,"Alt-Delete":e,"Alt-d":e,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return mp()||f7()?s:i},addProseMirrorPlugins(){return[new pt({key:new Kt("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(C=>C.getMeta("composition")))return;const r=t.some(C=>C.docChanged)&&!e.doc.eq(n.doc),i=t.some(C=>C.getMeta("preventClearDocument"));if(!r||i)return;const{empty:s,from:a,to:u}=e.selection,c=Me.atStart(e.doc).from,f=Me.atEnd(e.doc).to;if(s||!(a===c&&u===f)||!md(n.doc))return;const g=n.tr,b=wm({state:n,transaction:g}),{commands:v}=new $m({editor:this.editor,state:b});if(v.clearNodes(),!!g.steps.length)return g}})]}}),I7=mt.create({name:"paste",addProseMirrorPlugins(){return[new pt({key:new Kt("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),F7=mt.create({name:"tabindex",addOptions(){return{value:void 0}},addProseMirrorPlugins(){return[new pt({key:new Kt("tabindex"),props:{attributes:()=>{var t;return!this.editor.isEditable&&this.options.value===void 0?{}:{tabindex:(t=this.options.value)!=null?t:"0"}}}})]}}),K7=mt.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:t}=Rl(this.extensions);return[{types:t.filter(e=>e.name!=="text").map(e=>e.name),attributes:{dir:{default:this.options.direction,parseHTML:e=>{const n=e.getAttribute("dir");return n&&(n==="ltr"||n==="rtl"||n==="auto")?n:this.options.direction},renderHTML:e=>e.dir?{dir:e.dir}:{}}}}]},addProseMirrorPlugins(){return[new pt({key:new Kt("textDirection"),props:{attributes:()=>{const t=this.options.direction;return t?{dir:t}:{}}}})]}}),AQ=class nc{constructor(e,n,r=!1,i=null){this.currentNode=null,this.actualDepth=null,this.isBlock=r,this.resolvedPos=e,this.editor=n,this.currentNode=i}get name(){return this.node.type.name}get node(){return this.currentNode||this.resolvedPos.node()}get element(){return this.editor.view.domAtPos(this.pos).node}get depth(){var e;return(e=this.actualDepth)!=null?e:this.resolvedPos.depth}get pos(){return this.resolvedPos.pos}get content(){return this.node.content}set content(e){let n=this.from,r=this.to;if(this.isBlock){if(this.content.size===0){console.error(`You can’t set content on a block node. Tried to set content on ${this.name} at ${this.pos}`);return}n=this.from+1,r=this.to-1}this.editor.commands.insertContentAt({from:n,to:r},e)}get attributes(){return this.node.attrs}get textContent(){return this.node.textContent}get size(){return this.node.nodeSize}get from(){return this.isBlock?this.pos:this.resolvedPos.start(this.resolvedPos.depth)}get range(){return{from:this.from,to:this.to}}get to(){return this.isBlock?this.pos+this.size:this.resolvedPos.end(this.resolvedPos.depth)+(this.node.isText?0:1)}get parent(){if(this.depth===0)return null;const e=this.resolvedPos.start(this.resolvedPos.depth-1),n=this.resolvedPos.doc.resolve(e);return new nc(n,this.editor)}get before(){let e=this.resolvedPos.doc.resolve(this.from-(this.isBlock?1:2));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.from-3)),new nc(e,this.editor)}get after(){let e=this.resolvedPos.doc.resolve(this.to+(this.isBlock?2:1));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.to+3)),new nc(e,this.editor)}get children(){const e=[];return this.node.content.forEach((n,r)=>{const i=n.isBlock&&!n.isTextblock,s=n.isAtom&&!n.isText,a=n.isInline,u=this.pos+r+(s?0:1);if(u<0||u>this.resolvedPos.doc.nodeSize-2)return;const c=this.resolvedPos.doc.resolve(u);if(!i&&!a&&c.depth<=this.depth)return;const f=new nc(c,this.editor,i,i||a?n:null);i&&(f.actualDepth=this.depth+1),e.push(f)}),e}get firstChild(){return this.children[0]||null}get lastChild(){const e=this.children;return e[e.length-1]||null}closest(e,n={}){let r=null,i=this.parent;for(;i&&!r;){if(i.node.type.name===e)if(Object.keys(n).length>0){const s=i.node.attrs,a=Object.keys(n);for(let u=0;u<a.length;u+=1){const c=a[u];if(s[c]!==n[c])break}}else r=i;i=i.parent}return r}querySelector(e,n={}){return this.querySelectorAll(e,n,!0)[0]||null}querySelectorAll(e,n={},r=!1){let i=[];if(!this.children||this.children.length===0)return i;const s=Object.keys(n);return this.children.forEach(a=>{r&&i.length>0||(a.node.type.name===e&&s.every(c=>n[c]===a.node.attrs[c])&&i.push(a),!(r&&i.length>0)&&(i=i.concat(a.querySelectorAll(e,n,r))))}),i}setAttribute(e){const{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},BQ=`.ProseMirror {
|
|
53
|
-
position: relative;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.ProseMirror {
|
|
57
|
-
word-wrap: break-word;
|
|
58
|
-
white-space: pre-wrap;
|
|
59
|
-
white-space: break-spaces;
|
|
60
|
-
-webkit-font-variant-ligatures: none;
|
|
61
|
-
font-variant-ligatures: none;
|
|
62
|
-
font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.ProseMirror [contenteditable="false"] {
|
|
66
|
-
white-space: normal;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.ProseMirror [contenteditable="false"] [contenteditable="true"] {
|
|
70
|
-
white-space: pre-wrap;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.ProseMirror pre {
|
|
74
|
-
white-space: pre-wrap;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
img.ProseMirror-separator {
|
|
78
|
-
display: inline !important;
|
|
79
|
-
border: none !important;
|
|
80
|
-
margin: 0 !important;
|
|
81
|
-
width: 0 !important;
|
|
82
|
-
height: 0 !important;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.ProseMirror-gapcursor {
|
|
86
|
-
display: none;
|
|
87
|
-
pointer-events: none;
|
|
88
|
-
position: absolute;
|
|
89
|
-
margin: 0;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.ProseMirror-gapcursor:after {
|
|
93
|
-
content: "";
|
|
94
|
-
display: block;
|
|
95
|
-
position: absolute;
|
|
96
|
-
top: -2px;
|
|
97
|
-
width: 20px;
|
|
98
|
-
border-top: 1px solid black;
|
|
99
|
-
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@keyframes ProseMirror-cursor-blink {
|
|
103
|
-
to {
|
|
104
|
-
visibility: hidden;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.ProseMirror-hideselection *::selection {
|
|
109
|
-
background: transparent;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.ProseMirror-hideselection *::-moz-selection {
|
|
113
|
-
background: transparent;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.ProseMirror-hideselection * {
|
|
117
|
-
caret-color: transparent;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.ProseMirror-focused .ProseMirror-gapcursor {
|
|
121
|
-
display: block;
|
|
122
|
-
}`,MQ=class extends lQ{constructor(t={}){super(),this.css=null,this.className="tiptap",this.editorView=null,this.isFocused=!1,this.destroyed=!1,this.isInitialized=!1,this.extensionStorage={},this.instanceId=Math.random().toString(36).slice(2,9),this.options={element:typeof document<"u"?document.createElement("div"):null,content:"",injectCSS:!0,injectNonce:void 0,extensions:[],autofocus:!1,editable:!0,textDirection:void 0,editorProps:{},parseOptions:{},coreExtensionOptions:{},enableInputRules:!0,enablePasteRules:!0,enableCoreExtensions:!0,enableContentCheck:!1,emitContentError:!1,onBeforeCreate:()=>null,onCreate:()=>null,onMount:()=>null,onUnmount:()=>null,onUpdate:()=>null,onSelectionUpdate:()=>null,onTransaction:()=>null,onFocus:()=>null,onBlur:()=>null,onDestroy:()=>null,onContentError:({error:n})=>{throw n},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null,enableExtensionDispatchTransaction:!0},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:IW,createMappablePosition:FW},this.setOptions(t),this.createExtensionManager(),this.createCommandManager(),this.createSchema(),this.on("beforeCreate",this.options.onBeforeCreate),this.emit("beforeCreate",{editor:this}),this.on("mount",this.options.onMount),this.on("unmount",this.options.onUnmount),this.on("contentError",this.options.onContentError),this.on("create",this.options.onCreate),this.on("update",this.options.onUpdate),this.on("selectionUpdate",this.options.onSelectionUpdate),this.on("transaction",this.options.onTransaction),this.on("focus",this.options.onFocus),this.on("blur",this.options.onBlur),this.on("destroy",this.options.onDestroy),this.on("drop",({event:n,slice:r,moved:i})=>this.options.onDrop(n,r,i)),this.on("paste",({event:n,slice:r})=>this.options.onPaste(n,r)),this.on("delete",this.options.onDelete);const e=this.createDoc();if(!this.editorState){const n=Dy(e,this.options.autofocus);this.editorState=Lo.create({doc:e,schema:this.schema,selection:n||void 0})}this.options.element&&this.mount(this.options.element)}mount(t){if(typeof document>"u")throw new Error("[tiptap error]: The editor cannot be mounted because there is no 'document' defined in this environment.");this.createView(t),this.emit("mount",{editor:this}),this.css&&!document.head.contains(this.css)&&document.head.appendChild(this.css),window.setTimeout(()=>{this.isDestroyed||(this.options.autofocus!==!1&&this.options.autofocus!==null&&this.commands.focus(this.options.autofocus),this.emit("create",{editor:this}),this.isInitialized=!0)},0)}unmount(){if(this.editorView){const t=this.editorView.dom;t?.editor&&delete t.editor,this.editorView.destroy()}if(this.editorView=null,this.isInitialized=!1,this.css&&!document.querySelectorAll(`.${this.className}`).length)try{typeof this.css.remove=="function"?this.css.remove():this.css.parentNode&&this.css.parentNode.removeChild(this.css)}catch(t){console.warn("Failed to remove CSS element:",t)}this.css=null,this.emit("unmount",{editor:this})}get storage(){return this.extensionStorage}get commands(){return this.commandManager.commands}chain(){return this.commandManager.chain()}can(){return this.commandManager.can()}injectCSS(){this.options.injectCSS&&typeof document<"u"&&(this.css=cQ(BQ,this.options.injectNonce))}setOptions(t={}){this.options={...this.options,...t},!(!this.editorView||!this.state||this.isDestroyed)&&(this.options.editorProps&&this.view.setProps(this.options.editorProps),this.view.updateState(this.state))}setEditable(t,e=!0){this.setOptions({editable:t}),e&&this.emit("update",{editor:this,transaction:this.state.tr,appendedTransactions:[]})}get isEditable(){return this.options.editable&&this.view&&this.view.editable}get view(){return this.editorView?this.editorView:new Proxy({state:this.editorState,updateState:t=>{this.editorState=t},dispatch:t=>{this.dispatchTransaction(t)},composing:!1,dragging:null,editable:!0,isDestroyed:!1},{get:(t,e)=>{if(this.editorView)return this.editorView[e];if(e==="state")return this.editorState;if(e in t)return Reflect.get(t,e);throw new Error(`[tiptap error]: The editor view is not available. Cannot access view['${e}']. The editor may not be mounted yet.`)}})}get state(){return this.editorView&&(this.editorState=this.view.state),this.editorState}registerPlugin(t,e){const n=m7(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}unregisterPlugin(t){if(this.isDestroyed)return;const e=this.state.plugins;let n=e;if([].concat(t).forEach(i=>{const s=typeof i=="string"?`${i}$`:i.key;n=n.filter(a=>!a.key.startsWith(s))}),e.length===n.length)return;const r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}createExtensionManager(){var t,e,n,r;const s=[...this.options.enableCoreExtensions?[P7,B7.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),M7,L7,z7,F7.configure({value:(r=(n=this.options.coreExtensionOptions)==null?void 0:n.tabindex)==null?void 0:r.value}),N7,I7,R7,K7.configure({direction:this.options.textDirection})].filter(a=>typeof this.options.enableCoreExtensions=="object"?this.options.enableCoreExtensions[a.name]!==!1:!0):[],...this.options.extensions].filter(a=>["extension","node","mark"].includes(a?.type));this.extensionManager=new Mm(s,this)}createCommandManager(){this.commandManager=new $m({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=Sy(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:this.options.enableContentCheck})}catch(e){if(!(e instanceof Error)||!["[tiptap error]: Invalid JSON content","[tiptap error]: Invalid HTML content"].includes(e.message))throw e;const n=Sy(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1});return this.editorState=Lo.create({doc:n,schema:this.schema,selection:Dy(n,this.options.autofocus)||void 0}),this.emit("contentError",{editor:this,error:e,disableCollaboration:()=>{"collaboration"in this.storage&&typeof this.storage.collaboration=="object"&&this.storage.collaboration&&(this.storage.collaboration.isDisabled=!0),this.options.extensions=this.options.extensions.filter(r=>r.name!=="collaboration"),this.createExtensionManager()}}),this.editorState.doc}return t}createView(t){const{editorProps:e,enableExtensionDispatchTransaction:n}=this.options,r=e.dispatchTransaction||this.dispatchTransaction.bind(this),i=n?this.extensionManager.dispatchTransaction(r):r,s=e.transformPastedHTML,a=this.extensionManager.transformPastedHTML(s);this.editorView=new s7(t,{...e,attributes:{role:"textbox",...e?.attributes},dispatchTransaction:i,transformPastedHTML:a,state:this.editorState,markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews});const u=this.state.reconfigure({plugins:this.extensionManager.plugins});this.view.updateState(u),this.prependClass(),this.injectCSS();const c=this.view.dom;c.editor=this}createNodeViews(){this.view.isDestroyed||this.view.setProps({markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews})}prependClass(){this.view.dom.className=`${this.className} ${this.view.dom.className}`}captureTransaction(t){this.isCapturingTransaction=!0,t(),this.isCapturingTransaction=!1;const e=this.capturedTransaction;return this.capturedTransaction=null,e}dispatchTransaction(t){if(this.view.isDestroyed)return;if(this.isCapturingTransaction){if(!this.capturedTransaction){this.capturedTransaction=t;return}t.steps.forEach(f=>{var h;return(h=this.capturedTransaction)==null?void 0:h.step(f)});return}const{state:e,transactions:n}=this.state.applyTransaction(t),r=!this.state.selection.eq(e.selection),i=n.includes(t),s=this.state;if(this.emit("beforeTransaction",{editor:this,transaction:t,nextState:e}),!i)return;this.view.updateState(e),this.emit("transaction",{editor:this,transaction:t,appendedTransactions:n.slice(1)}),r&&this.emit("selectionUpdate",{editor:this,transaction:t});const a=n.findLast(f=>f.getMeta("focus")||f.getMeta("blur")),u=a?.getMeta("focus"),c=a?.getMeta("blur");u&&this.emit("focus",{editor:this,event:u.event,transaction:a}),c&&this.emit("blur",{editor:this,event:c.event,transaction:a}),!(t.getMeta("preventUpdate")||!n.some(f=>f.docChanged)||s.doc.eq(e.doc))&&this.emit("update",{editor:this,transaction:t,appendedTransactions:n.slice(1)})}getAttributes(t){return C7(this.state,t)}isActive(t,e){const n=typeof t=="string"?t:null,r=typeof t=="string"?e:t;return OW(this.state,n,r)}getJSON(){return this.state.doc.toJSON()}getHTML(){return h1(this.state.doc.content,this.schema)}getText(t){const{blockSeparator:e=`
|
|
123
|
-
|
|
124
|
-
`,textSerializers:n={}}=t||{};return AW(this.state.doc,{blockSeparator:e,textSerializers:{...x7(this.schema),...n}})}get isEmpty(){return md(this.state.doc)}destroy(){this.destroyed||(this.destroyed=!0,this.emit("destroy"),this.unmount(),this.removeAllListeners(),this.extensionManager.destroy(),this.extensionManager=null,this.schema=null,this.commandManager=null,this.extensionStorage={})}get isDestroyed(){var t,e;return(e=(t=this.editorView)==null?void 0:t.isDestroyed)!=null?e:!0}$node(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelector(t,e))||null}$nodes(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelectorAll(t,e))||null}$pos(t){const e=this.state.doc.resolve(t),n=t>0&&e.nodeAfter&&!e.nodeAfter.isText&&e.nodeAfter.isAtom?e.nodeAfter:null;return new AQ(e,this,!1,n)}get $doc(){return this.$pos(0)}};function sa(t){return new gd({find:t.find,handler:({state:e,range:n,match:r})=>{const i=We(t.getAttributes,void 0,r);if(i===!1||i===null)return null;const{tr:s}=e,a=r[r.length-1],u=r[0];if(a){const c=u.search(/\S/),f=n.from+u.indexOf(a),h=f+a.length;if(g1(n.from,n.to,e.doc).filter(b=>b.mark.type.excluded.find(C=>C===t.type&&C!==b.mark.type)).filter(b=>b.to>f).length)return null;h<n.to&&s.delete(h,n.to),f>n.from&&s.delete(n.from+c,f);const g=n.from+c+a.length;s.addMark(n.from+c,g,t.type.create(i||{})),s.removeStoredMark(t.type)}},undoable:t.undoable})}function RQ(t){return new gd({find:t.find,handler:({state:e,range:n,match:r})=>{const i=We(t.getAttributes,void 0,r)||{},{tr:s}=e,a=n.from;let u=n.to;const c=t.type.create(i);if(r[1]){const f=r[0].lastIndexOf(r[1]);let h=a+f;h>u?h=u:u=h+r[1].length;const m=r[0][r[0].length-1];s.insertText(m,a+r[0].length-1),s.replaceWith(h,u,c)}else if(r[0]){const f=t.type.isInline?a:a-1;s.insert(f,t.type.create(i)).delete(s.mapping.map(a),s.mapping.map(u))}s.scrollIntoView()},undoable:t.undoable})}function Ty(t){return new gd({find:t.find,handler:({state:e,range:n,match:r})=>{const i=e.doc.resolve(n.from),s=We(t.getAttributes,void 0,r)||{};if(!i.node(-1).canReplaceWith(i.index(-1),i.indexAfter(-1),t.type))return null;e.tr.delete(n.from,n.to).setBlockType(n.from,n.from,t.type,s)},undoable:t.undoable})}function Pl(t){return new gd({find:t.find,handler:({state:e,range:n,match:r,chain:i})=>{const s=We(t.getAttributes,void 0,r)||{},a=e.tr.delete(n.from,n.to),c=a.doc.resolve(n.from).blockRange(),f=c&&Q3(c,t.type,s);if(!f)return null;if(a.wrap(c,f),t.keepMarks&&t.editor){const{selection:m,storedMarks:g}=e,{splittableMarks:b}=t.editor.extensionManager,v=g||m.$to.parentOffset&&m.$from.marks();if(v){const C=v.filter(E=>b.includes(E.type.name));a.ensureMarks(C)}}if(t.keepAttributes){const m=t.type.name==="bulletList"||t.type.name==="orderedList"?"listItem":"taskList";i().updateAttributes(m,s).run()}const h=a.doc.resolve(n.from-1).nodeBefore;h&&h.type===t.type&&Js(a.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(r,h))&&a.join(n.from-1)},undoable:t.undoable})}var Yn=class j7 extends x1{constructor(){super(...arguments),this.type="node"}static create(e={}){const n=typeof e=="function"?e():e;return new j7(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function Vs(t){return new T7({find:t.find,handler:({state:e,range:n,match:r,pasteEvent:i})=>{const s=We(t.getAttributes,void 0,r,i);if(s===!1||s===null)return null;const{tr:a}=e,u=r[r.length-1],c=r[0];let f=n.to;if(u){const h=c.search(/\S/),m=n.from+c.indexOf(u),g=m+u.length;if(g1(n.from,n.to,e.doc).filter(C=>C.mark.type.excluded.find(k=>k===t.type&&k!==C.mark.type)).filter(C=>C.to>m).length)return null;g<n.to&&a.delete(g,n.to),m>n.from&&a.delete(n.from+h,m),f=n.from+h+u.length,a.addMark(n.from+h,f,t.type.create(s||{})),r.index!==void 0&&r.input!==void 0&&r.index+r[0].length>=r.input.length||a.removeStoredMark(t.type)}}})}var NQ=Object.defineProperty,PQ=(t,e)=>{for(var n in e)NQ(t,n,{get:e[n],enumerable:!0})},OQ="listItem",hD="textStyle",pD=/^\s*([-+*])\s$/,_7=Yn.create({name:"bulletList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:"ul"}]},renderHTML({HTMLAttributes:t}){return["ul",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>t.type!=="list"||t.ordered?[]:{type:"bulletList",content:t.items?e.parseChildren(t.items):[]},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
|
|
125
|
-
`):"",markdownOptions:{indentsContent:!0},addCommands(){return{toggleBulletList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(OQ,this.editor.getAttributes(hD)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=Pl({find:pD,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=Pl({find:pD,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(hD),editor:this.editor})),[t]}}),LQ=(t,e,n)=>{const{selection:r}=t;if(!r.empty)return null;const{$from:i}=r;if(!i.parent.isTextblock||i.parentOffset!==i.parent.content.size)return null;let s=-1;for(let b=i.depth;b>0;b-=1)if(i.node(b).type.name===e){s=b;break}if(s<0)return null;const a=i.node(s),u=i.index(s);if(u+1>=a.childCount)return null;const c=a.child(u+1);if(!n.includes(c.type.name))return null;const f=t.schema.nodes[e];let h=!1;if(c.forEach(b=>{b.type===f&&b.childCount>1&&(h=!0)}),!h)return null;const m=t.doc.resolve(i.after()).nodeAfter;if(!m||!n.includes(m.type.name))return null;const g=[];return m.forEach(b=>{g.push(b)}),g.length===0?null:{listItemDepth:s,nestedList:m,nestedListPos:i.after(),insertPos:i.after(s),items:g}},zQ=(t,e,n,r)=>{const i=LQ(t,n,r);if(!i)return!1;const{selection:s}=t,{nestedList:a,nestedListPos:u,insertPos:c,items:f}=i,h=t.tr;h.delete(u,u+a.nodeSize);const m=h.mapping.map(c);return h.insert(m,ae.from(f)),h.setSelection(s.map(h.doc,h.mapping)),e&&e(h),!0},IQ=(t,e,n)=>zQ(t.state,t.view.dispatch,e,n),H7=(t,e)=>mt.create({name:`${t}BranchingDeleteKeymap`,priority:101,addKeyboardShortcuts(){const n=()=>IQ(this.editor,t,e);return{Delete:n,"Mod-Delete":n}}}),V7=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],oh="abcdefghijklmnopqrstuvwxyz",FQ="[a-zA-Z]{1,2}",U7=String.raw`\d+|[ivxlcdmIVXLCDM]+|${FQ}`;function Rm(t){let e=t,n="";for(const[r,i]of V7)for(;e>=r;)n+=i,e-=r;return n}function C1(t){return Rm(t).toUpperCase()}function q7(t){const e=t.toLowerCase();let n=0,r=0;for(;n<e.length;){let i=!1;for(const[s,a]of V7)if(e.startsWith(a,n)){r+=s,n+=a.length,i=!0;break}if(!i)return 0}return r}function KQ(t){if(!/^[ivxlcdmIVXLCDM]+$/.test(t))return!1;const e=q7(t);return e<=0?!1:(t===t.toLowerCase()?Rm(e):C1(e))===t}function jQ(t){const e=t.toLowerCase();if(e.length===1)return e.charCodeAt(0)-97+1;if(e.length===2){const n=e.charCodeAt(0)-97,r=e.charCodeAt(1)-97;return(n+1)*26+r+1}return 0}function gp(t){if(t<=26)return oh[t-1];const e=Math.floor((t-1)/26)-1,n=(t-1)%26;return e<0?oh[n]:oh[e]+oh[n]}function Nm(t){if(!(!t||/^\d+$/.test(t))){if(KQ(t))return t===t.toLowerCase()?"i":"I";if(/^[a-z]{1,2}$/.test(t))return"a";if(/^[A-Z]{1,2}$/.test(t))return"A"}}function E1(t){if(/^\d+$/.test(t))return parseInt(t,10);const e=Nm(t);if(e==="i"||e==="I")return q7(t);if(e==="a"||e==="A"){const r=jQ(t);return r>0?r:1}const n=parseInt(t,10);return Number.isNaN(n)?1:n}function _Q(t,e){if(t==="numeric")return String(e);switch(t){case"a":return gp(e);case"A":return gp(e).toUpperCase();case"i":return Rm(e);case"I":return C1(e);default:return String(e)}}function HQ(t){var e;if(t.length===0)return!1;const n=(e=Nm(t[0]))!=null?e:"numeric",r=E1(t[0]);if(r<1)return!1;for(let i=0;i<t.length;i++){const s=_Q(n,r+i);if(t[i]!==s)return!1}return!0}function VQ(t){return{type:Nm(t),start:E1(t)}}function UQ(t){const{type:e,start:n}=VQ(t),r={};return e&&(r.type=e),n!==1&&(r.start=n),r}function qQ(t,e,n=". "){const r=e+1;if(!t||t==="1")return`${r}${n}`;switch(t){case"a":return`${gp(r)}${n}`;case"A":return`${gp(r).toUpperCase()}${n}`;case"i":return`${Rm(r)}${n}`;case"I":return`${C1(r)}${n}`;default:return`${r}${n}`}}function GQ(t){var e,n;const r=(e=t.tokens)==null?void 0:e[0];return!!(t.text&&((n=t.tokens)==null?void 0:n.length)===1&&r?.type==="list"&&r.ordered&&r.raw===t.text)}function WQ(t,e){return e.tokenizeInline?e.parseInline(e.tokenizeInline(t)):e.parseInline([{type:"text",raw:t,text:t}])}var G7=Yn.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"list_item",parseMarkdown:(t,e)=>{var n;if(t.type!=="list_item")return[];const r=(n=e.parseBlockChildren)!=null?n:e.parseChildren;let i=[];if(t.tokens&&t.tokens.length>0){if(GQ(t))return{type:"listItem",content:[{type:"paragraph",content:WQ(t.text||"",e)}]};if(t.tokens.some(a=>a.type==="paragraph"))i=r(t.tokens);else{const a=t.tokens[0];if(a&&a.type==="text"&&a.tokens&&a.tokens.length>0){if(i=[{type:"paragraph",content:e.parseInline(a.tokens)}],t.tokens.length>1){const c=t.tokens.slice(1),f=r(c);i.push(...f)}}else i=r(t.tokens)}}return i.length===0&&(i=[{type:"paragraph",content:[]}]),{type:"listItem",content:i}},renderMarkdown:(t,e,n)=>v1(t,e,r=>{var i,s,a,u;if(r.parentType==="bulletList")return"- ";if(r.parentType==="orderedList"){const c=((s=(i=r.meta)==null?void 0:i.parentAttrs)==null?void 0:s.start)||1,f=(u=(a=r.meta)==null?void 0:a.parentAttrs)==null?void 0:u.type,h=c-1+(r.index||0);return qQ(f,h,". ")}return"- "},n),addExtensions(){return[H7(this.name,[this.options.bulletListTypeName,this.options.orderedListTypeName])]},addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),QQ={};PQ(QQ,{findListItemPos:()=>Pm,getNextListDepth:()=>k1,handleBackspace:()=>Ay,handleDelete:()=>By,hasListBefore:()=>W7,hasListItemAfter:()=>YQ,hasListItemBefore:()=>XQ,listItemHasSubList:()=>JQ,nextListIsDeeper:()=>Q7,nextListIsHigher:()=>Y7});var Pm=(t,e)=>{const{$from:n}=e.selection,r=Ot(t,e.schema);let i=null,s=n.depth,a=n.pos,u=null;for(;s>0&&u===null;)i=n.node(s),i.type===r?u=s:(s-=1,a-=1);return u===null?null:{$pos:e.doc.resolve(a),depth:u}},k1=(t,e)=>{const n=Pm(t,e);if(!n)return!1;const[,r]=NW(e,t,n.$pos.pos+4);return r},W7=(t,e,n)=>{const{$anchor:r}=t.selection,i=Math.max(0,r.pos-2),s=t.doc.resolve(i).node();return!(!s||!n.includes(s.type.name))},Ay=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!Hs(t.state,e)&&W7(t.state,e,n)){const{$anchor:r}=t.state.selection,i=t.state.doc.resolve(r.before()-1),s=[];i.node().descendants((c,f)=>{c.type.name===e&&s.push({node:c,pos:f})});const a=s.at(-1);if(!a)return!1;const u=t.state.doc.resolve(i.start()+a.pos+1);return t.chain().cut({from:r.start()-1,to:r.end()+1},u.end()).joinForward().run()}return!Hs(t.state,e)||!zW(t.state)?!1:t.chain().liftListItem(e).run()},Q7=(t,e)=>{const n=k1(t,e),r=Pm(t,e);return!r||!n?!1:n>r.depth},Y7=(t,e)=>{const n=k1(t,e),r=Pm(t,e);return!r||!n?!1:n<r.depth},By=(t,e)=>{if(!Hs(t.state,e)||!LW(t.state,e))return!1;const{selection:n}=t.state,{$from:r,$to:i}=n;return!n.empty&&r.sameParent(i)?!1:Q7(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():Y7(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},YQ=(t,e)=>{var n;const{$anchor:r}=e.selection,i=e.doc.resolve(r.pos-r.parentOffset-2);return!(i.index()===i.parent.childCount-1||((n=i.nodeAfter)==null?void 0:n.type.name)!==t)},XQ=(t,e)=>{var n;const{$anchor:r}=e.selection,i=e.doc.resolve(r.pos-2);return!(i.index()===0||((n=i.nodeBefore)==null?void 0:n.type.name)!==t)},JQ=(t,e,n)=>{if(!n)return!1;const r=Ot(t,e.schema);let i=!1;return n.descendants(s=>{s.type===r&&(i=!0)}),i},X7=mt.create({name:"listKeymap",addOptions(){return{listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}},addKeyboardShortcuts(){return{Delete:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&By(t,n)&&(e=!0)}),e},"Mod-Delete":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&By(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&Ay(t,n,r)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&Ay(t,n,r)&&(e=!0)}),e}}}}),My=new RegExp(`^(\\s*)(${U7})([.)])\\s+(.*)$`),ZQ=/^\s/,rc={heading:/^#{1,6}(?:\s|$)/,bulletItem:/^[-+*]\s+/,codeFence:/^(?:```|~~~)/,thematicBreak:/^(?:(?:-[ \t]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})$/};function eY(t){return My.test(t.trimStart())}function tY(t){const e=t.trimStart();return rc.bulletItem.test(e)||eY(e)||rc.heading.test(e)||rc.thematicBreak.test(e)&&!e.startsWith("-")||/^>\s?/.test(e)||rc.codeFence.test(e)}function nY(t){return Object.values(rc).some(e=>e.test(t))}function rY(t){const e=[],n=[];let r=!1;return t.forEach(i=>{if(r){n.push(i);return}if(i.trim()===""){r=!0,n.push(i);return}if(e.length>0&&tY(i)){r=!0,n.push(i);return}e.push(i)}),{paragraphLines:e,blockLines:n}}function iY(t){const e=[];let n=0,r=0;for(;n<t.length;){const i=t[n],s=i.match(My);if(!s)break;const[,a,u,c,f]=s,h=a.length,m=parseInt(u,10),g=isNaN(m)?Nm(u):void 0,b=isNaN(m)?E1(u):m,v=[f];let C=n+1;const E=[i];let k=!1;for(;C<t.length;){const T=t[C];if(T.match(My))break;if(T.trim()==="")E.push(T),v.push(""),k=!0,C+=1;else if(T.match(ZQ)){const A=T.length-T.trimStart().length,B=h+u.length+1;E.push(T),v.push(T.slice(Math.min(A,B))),C+=1}else{if(k||nY(T))break;E.push(T),v.push(T),C+=1}}e.push({indent:h,number:b,type:g,content:v.join(`
|
|
126
|
-
`).trim(),contentLines:v,raw:E.join(`
|
|
127
|
-
`)}),r=C,n=C}return[e,r]}var sY=new RegExp(`^(${U7})([.)])\\s+(.+)$`);function oY(t){const e=t.split(`
|
|
128
|
-
`).filter(s=>s.trim().length>0);if(e.length===0)return null;const n=[];for(const s of e){const a=s.trim().match(sY);if(!a)return null;n.push({marker:a[1],content:a[3]})}const r=n.map(s=>s.marker);return HQ(r)?{type:"orderedList",attrs:UQ(n[0].marker),content:n.map(s=>({type:"listItem",content:[{type:"paragraph",content:[{type:"text",text:s.content}]}]}))}:null}function J7(t,e,n){const r=[];let i=0;for(;i<t.length;){const s=t[i];if(s.indent===e){const{paragraphLines:a,blockLines:u}=rY(s.contentLines),c=a.join(`
|
|
129
|
-
`).trim(),f=[];c&&f.push({type:"paragraph",raw:c,tokens:n.inlineTokens(c)});const h=u.join(`
|
|
130
|
-
`).trim();if(h){const b=n.blockTokens(h);f.push(...b)}let m=i+1;const g=[];for(;m<t.length&&t[m].indent>e;)g.push(t[m]),m+=1;if(g.length>0){const b=Math.min(...g.map(C=>C.indent)),v=J7(g,b,n);f.push({type:"list",ordered:!0,start:g[0].number,typeMarker:g[0].type,items:v,raw:g.map(C=>C.raw).join(`
|
|
131
|
-
`)})}r.push({type:"list_item",raw:s.raw,tokens:f}),i=m}else i+=1}return r}function aY(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];const r=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(i=>{if(i.type==="paragraph"||i.type==="list"||i.type==="blockquote"||i.type==="code")r.push(...e.parseChildren([i]));else if(i.type==="text"&&i.tokens){const s=e.parseChildren([i]);r.push({type:"paragraph",content:s})}else{const s=e.parseChildren([i]);s.length>0&&r.push(...s)}}),{type:"listItem",content:r}})}var lY="listItem",mD="textStyle",gD=/^(\d+)\.\s$/;function bD(t){const e=t.match(/list-style-type\s*:\s*([^;]+)/i);if(!e)return null;switch(e[1].trim().toLowerCase()){case"upper-roman":return"I";case"lower-roman":return"i";case"upper-alpha":case"upper-latin":return"A";case"lower-alpha":case"lower-latin":return"a";default:return null}}var Z7=Yn.create({name:"orderedList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes(){return{start:{default:1,parseHTML:t=>t.hasAttribute("start")?parseInt(t.getAttribute("start")||"",10):1},type:{default:null,parseHTML:t=>{const e=t.getAttribute("type");if(e)return e;const n=t.getAttribute("style");if(n){const i=bD(n);if(i)return i}const r=t.querySelector("li");if(r){const i=r.getAttribute("style");if(i){const s=bD(i);if(s)return s}}return null}}}},parseHTML(){return[{tag:"ol"}]},renderHTML({HTMLAttributes:t}){const{start:e,type:n,...r}=t,i=Ft(this.options.HTMLAttributes,r);return e!==1&&(i.start=e),n&&n!=="1"&&(i.type=n),["ol",i,0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];const n=t.start||1,r=t.typeMarker,i=t.items?aY(t.items,e):[],s={};return n!==1&&(s.start=n),r&&(s.type=r),Object.keys(s).length>0?{type:"orderedList",attrs:s,content:i}:{type:"orderedList",content:i}},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
|
|
132
|
-
`):"",markdownTokenizer:{name:"orderedList",level:"block",start:()=>-1,tokenize:(t,e,n)=>{var r,i;const s=t.split(`
|
|
133
|
-
`),[a,u]=iY(s);if(a.length===0)return;const c=J7(a,a[0].indent,n);if(c.length===0)return;const f=((r=a[0])==null?void 0:r.number)||1,h=(i=a[0])==null?void 0:i.type;return{type:"list",ordered:!0,start:f,typeMarker:h,items:c,raw:s.slice(0,u).join(`
|
|
134
|
-
`)}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleOrderedList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(lY,this.editor.getAttributes(mD)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addProseMirrorPlugins(){return[new pt({props:{handlePaste:(t,e)=>{var n,r;const i=(n=e.clipboardData)==null?void 0:n.getData("text/html");if(i?.trim())return!1;const s=(r=e.clipboardData)==null?void 0:r.getData("text/plain");if(!s)return!1;const a=oY(s);if(!a)return!1;try{const u=t.state.schema.nodeFromJSON(a),c=t.state.tr.replaceSelectionWith(u);return t.dispatch(c),!0}catch{return!1}}}})]},addInputRules(){const t=(n,r)=>(!r.attrs.type||r.attrs.type==="1")&&r.childCount+r.attrs.start===+n[1];let e=Pl({find:gD,type:this.type,getAttributes:n=>({start:+n[1]}),joinPredicate:t});return(this.options.keepMarks||this.options.keepAttributes)&&(e=Pl({find:gD,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:n=>({start:+n[1],...this.editor.getAttributes(mD)}),joinPredicate:t,editor:this.editor})),[e]}}),uY=/^\s*(\[([( |x])?\])\s$/,e8=Yn.create({name:"taskItem",addOptions(){return{nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}},content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes(){return{checked:{default:!1,keepOnSplit:!1,parseHTML:t=>{const e=t.getAttribute("data-checked");return e===""||e==="true"},renderHTML:t=>({"data-checked":t.checked})}}},parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:t,HTMLAttributes:e}){return["li",Ft(this.options.HTMLAttributes,e,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:t.attrs.checked?"checked":null}],["span"]],["div",0]]},parseMarkdown:(t,e)=>{const n=[];if(t.tokens&&t.tokens.length>0?n.push(e.createNode("paragraph",{},e.parseInline(t.tokens))):t.text?n.push(e.createNode("paragraph",{},[e.createNode("text",{text:t.text})])):n.push(e.createNode("paragraph",{},[])),t.nestedTokens&&t.nestedTokens.length>0){const r=e.parseChildren(t.nestedTokens);n.push(...r)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;const i=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return v1(t,e,i)},addExtensions(){return this.options.nested?[H7(this.name,[this.options.taskListTypeName])]:[]},addKeyboardShortcuts(){const t={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...t,Tab:()=>this.editor.commands.sinkListItem(this.name)}:t},addNodeView(){return({node:t,HTMLAttributes:e,getPos:n,editor:r})=>{const i=document.createElement("li"),s=document.createElement("label"),a=document.createElement("span"),u=document.createElement("input"),c=document.createElement("div"),f=m=>{var g,b;u.ariaLabel=((b=(g=this.options.a11y)==null?void 0:g.checkboxLabel)==null?void 0:b.call(g,m,u.checked))||`Task item checkbox for ${m.textContent||"empty task item"}`};f(t),s.contentEditable="false",u.type="checkbox",u.addEventListener("mousedown",m=>m.preventDefault()),u.addEventListener("change",m=>{if(!r.isEditable&&!this.options.onReadOnlyChecked){u.checked=!u.checked;return}const{checked:g}=m.target;r.isEditable&&typeof n=="function"&&r.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:b})=>{const v=n();if(typeof v!="number")return!1;const C=b.doc.nodeAt(v);return b.setNodeMarkup(v,void 0,{...C?.attrs,checked:g}),!0}).run(),!r.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,g)||(u.checked=!u.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([m,g])=>{i.setAttribute(m,g)}),i.dataset.checked=t.attrs.checked,u.checked=t.attrs.checked,s.append(u,a),i.append(s,c),Object.entries(e).forEach(([m,g])=>{i.setAttribute(m,g)});let h=new Set(Object.keys(e));return{dom:i,contentDOM:c,update:m=>{if(m.type!==this.type)return!1;i.dataset.checked=m.attrs.checked,u.checked=m.attrs.checked,f(m);const g=r.extensionManager.attributes,b=Uc(m,g),v=new Set(Object.keys(b)),C=this.options.HTMLAttributes;return h.forEach(E=>{v.has(E)||(E in C?i.setAttribute(E,C[E]):i.removeAttribute(E))}),Object.entries(b).forEach(([E,k])=>{k==null?E in C?i.setAttribute(E,C[E]):i.removeAttribute(E):i.setAttribute(E,k)}),h=v,!0}}}},addInputRules(){return[Pl({find:uY,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),t8=Yn.create({name:"taskList",addOptions(){return{itemTypeName:"taskItem",HTMLAttributes:{}}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:t}){return["ul",Ft(this.options.HTMLAttributes,t,{"data-type":this.name}),0]},parseMarkdown:(t,e)=>e.createNode("taskList",{},e.parseChildren(t.items||[])),renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
|
|
135
|
-
`):"",markdownTokenizer:{name:"taskList",level:"block",start(t){var e;const n=(e=t.match(/^\s*[-+*]\s+\[([ xX])\]\s+/))==null?void 0:e.index;return n!==void 0?n:-1},tokenize(t,e,n){const r=s=>{const a=$y(s,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:u=>({indentLevel:u[1].length,mainContent:u[4],checked:u[3].toLowerCase()==="x"}),createToken:(u,c)=>({type:"taskItem",raw:"",mainContent:u.mainContent,indentLevel:u.indentLevel,checked:u.checked,text:u.mainContent,tokens:n.inlineTokens(u.mainContent),nestedTokens:c}),customNestedParser:r},n);if(a){const u={type:"taskList",raw:a.raw,items:a.items},c=s.slice(a.raw.length);return c.trim()?[u,...n.blockTokens(c)]:[u]}return n.blockTokens(s)},i=$y(t,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:s=>({indentLevel:s[1].length,mainContent:s[4],checked:s[3].toLowerCase()==="x"}),createToken:(s,a)=>({type:"taskItem",raw:"",mainContent:s.mainContent,indentLevel:s.indentLevel,checked:s.checked,text:s.mainContent,tokens:n.inlineTokens(s.mainContent),nestedTokens:a}),customNestedParser:r},n);if(i)return{type:"taskList",raw:i.raw,items:i.items}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleTaskList:()=>({commands:t})=>t.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}});mt.create({name:"listKit",addExtensions(){const t=[];return this.options.bulletList!==!1&&t.push(_7.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(G7.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(X7.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(Z7.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(e8.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(t8.configure(this.options.taskList)),t}});function cY(t={}){return new pt({view(e){return new dY(e,t)}})}class dY{constructor(e,n){var r;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.lastDragEvent=null,this.width=(r=n.width)!==null&&r!==void 0?r:1,this.color=n.color===!1?void 0:n.color||"black",this.class=n.class,this.handlers=["dragover","dragend","drop","dragleave"].map(i=>{let s=a=>{this[i](a)};return e.dom.addEventListener(i,s),{name:i,handler:s}})}destroy(){this.handlers.forEach(({name:e,handler:n})=>this.editorView.dom.removeEventListener(e,n))}update(e,n){if(this.cursorPos!=null&&n.doc!=e.state.doc)if(this.lastDragEvent){let r=this.computeTarget(this.lastDragEvent);r==this.cursorPos?this.updateOverlay():this.setCursor(r)}else this.updateOverlay()}setCursor(e){e!=this.cursorPos&&(this.cursorPos=e,e==null?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let e=this.editorView.state.doc.resolve(this.cursorPos),n=!e.parent.inlineContent,r,i=this.editorView.dom,s=i.getBoundingClientRect(),a=s.width/i.offsetWidth,u=s.height/i.offsetHeight;if(n){let m=e.nodeBefore,g=e.nodeAfter;if(m||g){let b=this.editorView.nodeDOM(this.cursorPos-(m?m.nodeSize:0));if(b){let v=b.getBoundingClientRect(),C=m?v.bottom:v.top;m&&g&&(C=(C+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let E=this.width/2*u;r={left:v.left,right:v.right,top:C-E,bottom:C+E}}}}if(!r){let m=this.editorView.coordsAtPos(this.cursorPos),g=this.width/2*a;r={left:m.left-g,right:m.left+g,top:m.top,bottom:m.bottom}}let c=this.editorView.dom.offsetParent;this.element||(this.element=c.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",n),this.element.classList.toggle("prosemirror-dropcursor-inline",!n);let f,h;if(!c||c==document.body&&getComputedStyle(c).position=="static")f=-pageXOffset,h=-pageYOffset;else{let m=c.getBoundingClientRect(),g=m.width/c.offsetWidth,b=m.height/c.offsetHeight;f=m.left-c.scrollLeft*g,h=m.top-c.scrollTop*b}this.element.style.left=(r.left-f)/a+"px",this.element.style.top=(r.top-h)/u+"px",this.element.style.width=(r.right-r.left)/a+"px",this.element.style.height=(r.bottom-r.top)/u+"px"}scheduleRemoval(e){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),e)}computeTarget(e){let n=this.editorView.posAtCoords({left:e.clientX,top:e.clientY}),r=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),i=r&&r.type.spec.disableDropCursor,s=typeof i=="function"?i(this.editorView,n,e):i;if(!n||s)return null;let a=n.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let u=n9(this.editorView.state.doc,a,this.editorView.dragging.slice);u!=null&&(a=u)}return a}dragover(e){if(!this.editorView.editable)return;this.lastDragEvent=e;let n=this.computeTarget(e);n!=null&&(this.setCursor(n),this.scheduleRemoval(5e3))}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(e){this.editorView.dom.contains(e.relatedTarget)||this.setCursor(null)}}class xt extends Me{constructor(e){super(e,e)}map(e,n){let r=e.resolve(n.map(this.head));return xt.valid(r)?new xt(r):Me.near(r)}content(){return he.empty}eq(e){return e instanceof xt&&e.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for GapCursor.fromJSON");return new xt(e.resolve(n.pos))}getBookmark(){return new D1(this.anchor)}static valid(e){let n=e.parent;if(n.inlineContent||!fY(e)||!hY(e))return!1;let r=n.type.spec.allowGapCursor;if(r!=null)return r;let i=n.contentMatchAt(e.index()).defaultType;return i&&i.isTextblock}static findGapCursorFrom(e,n,r=!1){e:for(;;){if(!r&&xt.valid(e))return e;let i=e.pos,s=null;for(let a=e.depth;;a--){let u=e.node(a);if(n>0?e.indexAfter(a)<u.childCount:e.index(a)>0){s=u.child(n>0?e.indexAfter(a):e.index(a)-1);break}else if(a==0)return null;i+=n;let c=e.doc.resolve(i);if(xt.valid(c))return c}for(;;){let a=n>0?s.firstChild:s.lastChild;if(!a){if(s.isAtom&&!s.isText&&!Ce.isSelectable(s)){e=e.doc.resolve(i+s.nodeSize*n),r=!1;continue e}break}s=a,i+=n;let u=e.doc.resolve(i);if(xt.valid(u))return u}return null}}}xt.prototype.visible=!1;xt.findFrom=xt.findGapCursorFrom;Me.jsonID("gapcursor",xt);class D1{constructor(e){this.pos=e}map(e){return new D1(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return xt.valid(n)?new xt(n):Me.near(n)}}function n8(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function fY(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),r=t.node(e);if(n==0){if(r.type.spec.isolating)return!0;continue}for(let i=r.child(n-1);;i=i.lastChild){if(i.childCount==0&&!i.inlineContent||n8(i.type))return!0;if(i.inlineContent)return!1}}return!0}function hY(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),r=t.node(e);if(n==r.childCount){if(r.type.spec.isolating)return!0;continue}for(let i=r.child(n);;i=i.firstChild){if(i.childCount==0&&!i.inlineContent||n8(i.type))return!0;if(i.inlineContent)return!1}}return!0}function pY(){return new pt({props:{decorations:yY,createSelectionBetween(t,e,n){return e.pos==n.pos&&xt.valid(n)?new xt(n):null},handleClick:gY,handleKeyDown:mY,handleDOMEvents:{beforeinput:bY}}})}const mY=o7({ArrowLeft:ah("horiz",-1),ArrowRight:ah("horiz",1),ArrowUp:ah("vert",-1),ArrowDown:ah("vert",1)});function ah(t,e){const n=t=="vert"?e>0?"down":"up":e>0?"right":"left";return function(r,i,s){let a=r.selection,u=e>0?a.$to:a.$from,c=a.empty;if(a instanceof De){if(!s.endOfTextblock(n)||u.depth==0)return!1;c=!1,u=r.doc.resolve(e>0?u.after():u.before())}let f=xt.findGapCursorFrom(u,e,c);return f?(i&&i(r.tr.setSelection(new xt(f))),!0):!1}}function gY(t,e,n){if(!t||!t.editable)return!1;let r=t.state.doc.resolve(e);if(!xt.valid(r))return!1;let i=t.posAtCoords({left:n.clientX,top:n.clientY});return i&&i.inside>-1&&Ce.isSelectable(t.state.doc.nodeAt(i.inside))?!1:(t.dispatch(t.state.tr.setSelection(new xt(r))),!0)}function bY(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof xt))return!1;let{$from:n}=t.state.selection,r=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!r)return!1;let i=ae.empty;for(let a=r.length-1;a>=0;a--)i=ae.from(r[a].createAndFill(null,i));let s=t.state.tr.replace(n.pos,n.pos,new he(i,0,0));return s.setSelection(De.near(s.doc.resolve(n.pos+1))),t.dispatch(s),!1}function yY(t){if(!(t.selection instanceof xt))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",lt.create(t.doc,[yn.widget(t.selection.head,e,{key:"gapcursor"})])}var bp=200,Ut=function(){};Ut.prototype.append=function(e){return e.length?(e=Ut.from(e),!this.length&&e||e.length<bp&&this.leafAppend(e)||this.length<bp&&e.leafPrepend(this)||this.appendInner(e)):this};Ut.prototype.prepend=function(e){return e.length?Ut.from(e).append(this):this};Ut.prototype.appendInner=function(e){return new vY(this,e)};Ut.prototype.slice=function(e,n){return e===void 0&&(e=0),n===void 0&&(n=this.length),e>=n?Ut.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,n))};Ut.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)};Ut.prototype.forEach=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length),n<=r?this.forEachInner(e,n,r,0):this.forEachInvertedInner(e,n,r,0)};Ut.prototype.map=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length);var i=[];return this.forEach(function(s,a){return i.push(e(s,a))},n,r),i};Ut.from=function(e){return e instanceof Ut?e:e&&e.length?new r8(e):Ut.empty};var r8=(function(t){function e(r){t.call(this),this.values=r}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={length:{configurable:!0},depth:{configurable:!0}};return e.prototype.flatten=function(){return this.values},e.prototype.sliceInner=function(i,s){return i==0&&s==this.length?this:new e(this.values.slice(i,s))},e.prototype.getInner=function(i){return this.values[i]},e.prototype.forEachInner=function(i,s,a,u){for(var c=s;c<a;c++)if(i(this.values[c],u+c)===!1)return!1},e.prototype.forEachInvertedInner=function(i,s,a,u){for(var c=s-1;c>=a;c--)if(i(this.values[c],u+c)===!1)return!1},e.prototype.leafAppend=function(i){if(this.length+i.length<=bp)return new e(this.values.concat(i.flatten()))},e.prototype.leafPrepend=function(i){if(this.length+i.length<=bp)return new e(i.flatten().concat(this.values))},n.length.get=function(){return this.values.length},n.depth.get=function(){return 0},Object.defineProperties(e.prototype,n),e})(Ut);Ut.empty=new r8([]);var vY=(function(t){function e(n,r){t.call(this),this.left=n,this.right=r,this.length=n.length+r.length,this.depth=Math.max(n.depth,r.depth)+1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},e.prototype.getInner=function(r){return r<this.left.length?this.left.get(r):this.right.get(r-this.left.length)},e.prototype.forEachInner=function(r,i,s,a){var u=this.left.length;if(i<u&&this.left.forEachInner(r,i,Math.min(s,u),a)===!1||s>u&&this.right.forEachInner(r,Math.max(i-u,0),Math.min(this.length,s)-u,a+u)===!1)return!1},e.prototype.forEachInvertedInner=function(r,i,s,a){var u=this.left.length;if(i>u&&this.right.forEachInvertedInner(r,i-u,Math.max(s,u)-u,a+u)===!1||s<u&&this.left.forEachInvertedInner(r,Math.min(i,u),s,a)===!1)return!1},e.prototype.sliceInner=function(r,i){if(r==0&&i==this.length)return this;var s=this.left.length;return i<=s?this.left.slice(r,i):r>=s?this.right.slice(r-s,i-s):this.left.slice(r,s).append(this.right.slice(0,i-s))},e.prototype.leafAppend=function(r){var i=this.right.leafAppend(r);if(i)return new e(this.left,i)},e.prototype.leafPrepend=function(r){var i=this.left.leafPrepend(r);if(i)return new e(i,this.right)},e.prototype.appendInner=function(r){return this.left.depth>=Math.max(this.right.depth,r.depth)+1?new e(this.left,new e(this.right,r)):new e(this,r)},e})(Ut);const xY=500;class wr{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let r=this.items.length;for(;;r--)if(this.items.get(r-1).selection){--r;break}let i,s;n&&(i=this.remapping(r,this.items.length),s=i.maps.length);let a=e.tr,u,c,f=[],h=[];return this.items.forEach((m,g)=>{if(!m.step){i||(i=this.remapping(r,g+1),s=i.maps.length),s--,h.push(m);return}if(i){h.push(new Kr(m.map));let b=m.step.map(i.slice(s)),v;b&&a.maybeStep(b).doc&&(v=a.mapping.maps[a.mapping.maps.length-1],f.push(new Kr(v,void 0,void 0,f.length+h.length))),s--,v&&i.appendMap(v,s)}else a.maybeStep(m.step);if(m.selection)return u=i?m.selection.map(i.slice(s)):m.selection,c=new wr(this.items.slice(0,r).append(h.reverse().concat(f)),this.eventCount-1),!1},this.items.length,0),{remaining:c,transform:a,selection:u}}addTransform(e,n,r,i){let s=[],a=this.eventCount,u=this.items,c=!i&&u.length?u.get(u.length-1):null;for(let h=0;h<e.steps.length;h++){let m=e.steps[h].invert(e.docs[h]),g=new Kr(e.mapping.maps[h],m,n),b;(b=c&&c.merge(g))&&(g=b,h?s.pop():u=u.slice(0,u.length-1)),s.push(g),n&&(a++,n=void 0),i||(c=g)}let f=a-r.depth;return f>EY&&(u=CY(u,f),a-=f),new wr(u.append(s),a)}remapping(e,n){let r=new Kc;return this.items.forEach((i,s)=>{let a=i.mirrorOffset!=null&&s-i.mirrorOffset>=e?r.maps.length-i.mirrorOffset:void 0;r.appendMap(i.map,a)},e,n),r}addMaps(e){return this.eventCount==0?this:new wr(this.items.append(e.map(n=>new Kr(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let r=[],i=Math.max(0,this.items.length-n),s=e.mapping,a=e.steps.length,u=this.eventCount;this.items.forEach(g=>{g.selection&&u--},i);let c=n;this.items.forEach(g=>{let b=s.getMirror(--c);if(b==null)return;a=Math.min(a,b);let v=s.maps[b];if(g.step){let C=e.steps[b].invert(e.docs[b]),E=g.selection&&g.selection.map(s.slice(c+1,b));E&&u++,r.push(new Kr(v,C,E))}else r.push(new Kr(v))},i);let f=[];for(let g=n;g<a;g++)f.push(new Kr(s.maps[g]));let h=this.items.slice(0,i).append(f).append(r),m=new wr(h,u);return m.emptyItemCount()>xY&&(m=m.compress(this.items.length-r.length)),m}emptyItemCount(){let e=0;return this.items.forEach(n=>{n.step||e++}),e}compress(e=this.items.length){let n=this.remapping(0,e),r=n.maps.length,i=[],s=0;return this.items.forEach((a,u)=>{if(u>=e)i.push(a),a.selection&&s++;else if(a.step){let c=a.step.map(n.slice(r)),f=c&&c.getMap();if(r--,f&&n.appendMap(f,r),c){let h=a.selection&&a.selection.map(n.slice(r));h&&s++;let m=new Kr(f.invert(),c,h),g,b=i.length-1;(g=i.length&&i[b].merge(m))?i[b]=g:i.push(m)}}else a.map&&r--},this.items.length,0),new wr(Ut.from(i.reverse()),s)}}wr.empty=new wr(Ut.empty,0);function CY(t,e){let n;return t.forEach((r,i)=>{if(r.selection&&e--==0)return n=i,!1}),t.slice(n)}class Kr{constructor(e,n,r,i){this.map=e,this.step=n,this.selection=r,this.mirrorOffset=i}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new Kr(n.getMap().invert(),n,this.selection)}}}class xs{constructor(e,n,r,i,s){this.done=e,this.undone=n,this.prevRanges=r,this.prevTime=i,this.prevComposition=s}}const EY=20;function kY(t,e,n,r){let i=n.getMeta(Zo),s;if(i)return i.historyState;n.getMeta(wY)&&(t=new xs(t.done,t.undone,null,0,-1));let a=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(a&&a.getMeta(Zo))return a.getMeta(Zo).redo?new xs(t.done.addTransform(n,void 0,r,Bh(e)),t.undone,yD(n.mapping.maps),t.prevTime,t.prevComposition):new xs(t.done,t.undone.addTransform(n,void 0,r,Bh(e)),null,t.prevTime,t.prevComposition);if(n.getMeta("addToHistory")!==!1&&!(a&&a.getMeta("addToHistory")===!1)){let u=n.getMeta("composition"),c=t.prevTime==0||!a&&t.prevComposition!=u&&(t.prevTime<(n.time||0)-r.newGroupDelay||!DY(n,t.prevRanges)),f=a?r4(t.prevRanges,n.mapping):yD(n.mapping.maps);return new xs(t.done.addTransform(n,c?e.selection.getBookmark():void 0,r,Bh(e)),wr.empty,f,n.time,u??t.prevComposition)}else return(s=n.getMeta("rebased"))?new xs(t.done.rebased(n,s),t.undone.rebased(n,s),r4(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new xs(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),r4(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function DY(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((r,i)=>{for(let s=0;s<e.length;s+=2)r<=e[s+1]&&i>=e[s]&&(n=!0)}),n}function yD(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((r,i,s,a)=>e.push(s,a));return e}function r4(t,e){if(!t)return null;let n=[];for(let r=0;r<t.length;r+=2){let i=e.map(t[r],1),s=e.map(t[r+1],-1);i<=s&&n.push(i,s)}return n}function SY(t,e,n){let r=Bh(e),i=Zo.get(e).spec.config,s=(n?t.undone:t.done).popEvent(e,r);if(!s)return null;let a=s.selection.resolve(s.transform.doc),u=(n?t.done:t.undone).addTransform(s.transform,e.selection.getBookmark(),i,r),c=new xs(n?u:s.remaining,n?s.remaining:u,null,0,-1);return s.transform.setSelection(a).setMeta(Zo,{redo:n,historyState:c})}let i4=!1,vD=null;function Bh(t){let e=t.plugins;if(vD!=e){i4=!1,vD=e;for(let n=0;n<e.length;n++)if(e[n].spec.historyPreserveItems){i4=!0;break}}return i4}const Zo=new Kt("history"),wY=new Kt("closeHistory");function $Y(t={}){return t={depth:t.depth||100,newGroupDelay:t.newGroupDelay||500},new pt({key:Zo,state:{init(){return new xs(wr.empty,wr.empty,null,0,-1)},apply(e,n,r){return kY(n,r,e,t)}},config:t,props:{handleDOMEvents:{beforeinput(e,n){let r=n.inputType,i=r=="historyUndo"?s8:r=="historyRedo"?o8:null;return!i||!e.editable?!1:(n.preventDefault(),i(e.state,e.dispatch))}}}})}function i8(t,e){return(n,r)=>{let i=Zo.getState(n);if(!i||(t?i.undone:i.done).eventCount==0)return!1;if(r){let s=SY(i,n,t);s&&r(e?s.scrollIntoView():s)}return!0}}const s8=i8(!1,!0),o8=i8(!0,!0);mt.create({name:"characterCount",addOptions(){return{limit:null,autoTrim:!0,mode:"textSize",textCounter:t=>t.length,wordCounter:t=>t.split(" ").filter(e=>e!=="").length}},addStorage(){return{characters:()=>0,words:()=>0}},onBeforeCreate(){this.storage.characters=t=>{const e=t?.node||this.editor.state.doc;if((t?.mode||this.options.mode)==="textSize"){const r=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(r)}return e.nodeSize},this.storage.words=t=>{const e=t?.node||this.editor.state.doc,n=e.textBetween(0,e.content.size," "," ");return this.options.wordCounter(n)}},addProseMirrorPlugins(){let t=!1;return[new pt({key:new Kt("characterCount"),appendTransaction:(e,n,r)=>{if(t)return;const i=this.options.limit,s=this.options.autoTrim;if(i==null||i===0||s===!1){t=!0;return}const a=this.storage.characters({node:r.doc});if(a>i){const u=a-i,c=0,f=u;console.warn(`[CharacterCount] Initial content exceeded limit of ${i} characters. Content was automatically trimmed.`);const h=r.tr.deleteRange(c,f);return t=!0,h}t=!0},filterTransaction:(e,n)=>{const r=this.options.limit;if(!e.docChanged||r===0||r===null||r===void 0)return!0;const i=this.storage.characters({node:n.doc}),s=this.storage.characters({node:e.doc});if(s<=r||i>r&&s>r&&s<=i)return!0;if(i>r&&s>r&&s>i||!e.getMeta("paste"))return!1;const u=e.selection.$head.pos,c=s-r,f=u-c,h=u;return e.deleteRange(f,h),!(this.storage.characters({node:e.doc})>r)}})]}});var TY=mt.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[cY(this.options)]}});mt.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new pt({key:new Kt("focus"),props:{decorations:({doc:t,selection:e})=>{const{isEditable:n,isFocused:r}=this.editor,{anchor:i}=e,s=[];if(!n||!r)return lt.create(t,[]);let a=0;this.options.mode==="deepest"&&t.descendants((c,f)=>{if(c.isText)return;if(!(i>=f&&i<=f+c.nodeSize-1))return!1;a+=1});let u=0;return t.descendants((c,f)=>{if(c.isText||!(i>=f&&i<=f+c.nodeSize-1))return!1;if(u+=1,this.options.mode==="deepest"&&a-u>0||this.options.mode==="shallowest"&&u>1)return this.options.mode==="deepest";s.push(yn.node(f,f+c.nodeSize,{class:this.options.className}))}),lt.create(t,s)}}})]}});var AY=mt.create({name:"gapCursor",addProseMirrorPlugins(){return[pY()]},extendNodeSchema(t){var e;const n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=We(ye(t,"allowGapCursor",n)))!=null?e:null}}}),a8="placeholder",xD=new Kt("tiptap__placeholder");function l8(t){const{editor:e,placeholder:n,dataAttribute:r,pos:i,node:s,isEmptyDoc:a,hasAnchor:u,classes:{emptyNode:c,emptyEditor:f}}=t,h=[c];return a&&h.push(f),yn.node(i,i+s.nodeSize,{class:h.join(" "),[r]:typeof n=="function"?n({editor:e,node:s,pos:i,hasAnchor:u}):n})}function u8(t,e){return typeof t=="function"?t(e):t}function c8({editor:t,options:e,dataAttribute:n,doc:r,selection:i,from:s,to:a}){const{anchor:u}=i,c=[],f=t.isEmpty;return r.nodesBetween(s,a,(h,m)=>{const g=u>=m&&u<=m+h.nodeSize,b=!h.isLeaf&&md(h);return h.type.isTextblock&&(g||!e.showOnlyCurrent)&&b&&c.push(l8({editor:t,isEmptyDoc:f,dataAttribute:n,hasAnchor:g,placeholder:e.placeholder,classes:{emptyEditor:e.emptyEditorClass,emptyNode:u8(e.emptyNodeClass,{editor:t,node:h,pos:m,hasAnchor:g})},node:h,pos:m})),e.includeChildren}),c}function d8({editor:t,options:e,dataAttribute:n,doc:r,selection:i}){if(!(t.isEditable||!e.showOnlyWhenEditable))return null;const{anchor:a}=i,u=[],c=t.isEmpty;if(e.showOnlyCurrent&&!e.includeChildren){const h=r.resolve(a),m=h.depth>0?h.node(1):h.nodeAfter,g=h.depth>0?h.before(1):a;if(m&&m.type.isTextblock&&md(m)){const b=a>=g&&a<=g+m.nodeSize;u.push(l8({editor:t,isEmptyDoc:c,dataAttribute:n,hasAnchor:b,placeholder:e.placeholder,classes:{emptyEditor:e.emptyEditorClass,emptyNode:u8(e.emptyNodeClass,{editor:t,node:m,pos:g,hasAnchor:b})},node:m,pos:g}))}}else u.push(...c8({editor:t,options:e,dataAttribute:n,doc:r,selection:i,from:0,to:r.content.size}));return lt.create(r,u)}function mc(t,e){var n;const r=t.resolve(e);if(r.depth===0){const a=(n=r.nodeAfter)!=null?n:r.nodeBefore;if(!a)return{from:e,to:e};const u=r.nodeAfter?e:e-a.nodeSize;return{from:u,to:u+a.nodeSize}}const i=r.before(1),s=r.node(1);return{from:i,to:i+s.nodeSize}}function gc(t,e){return{from:Math.max(0,e.from-1),to:Math.min(t.content.size,e.to-1)}}function BY(t,e,n){const r=[];return t.forEach((i,s)=>{const a=s,u=a+i.nodeSize,c=a+1,f=u+1;c<n&&f>e&&r.push({from:a,to:u})}),r}function MY(t){if(t.length===0)return[];const e=[...t].sort((r,i)=>r.from-i.from),n=[{...e[0]}];for(let r=1;r<e.length;r+=1){const i=n[n.length-1],s=e[r];s.from<=i.to?i.to=Math.max(i.to,s.to):n.push({...s})}return n}function RY(t,e){const n=BY(t,e.from,e.to);return n.push(gc(t,mc(t,e.from))),e.to>e.from?n.push(gc(t,mc(t,Math.min(e.to,t.content.size+1)-1))):e.from<t.content.size+1&&n.push(gc(t,mc(t,Math.min(e.from+1,t.content.size)))),n}function NY(t,e,n){const r=[];if(t.docChanged){const i=m1(t);for(const s of i)r.push(...RY(n.doc,s.newRange))}return t.selectionSet&&(r.push(gc(n.doc,mc(n.doc,t.mapping.map(e.selection.anchor)))),r.push(gc(n.doc,mc(n.doc,n.selection.anchor)))),MY(r)}function PY(t,e,n){const r=Math.max(0,Math.min(t,n.content.size)),i=Math.max(r,Math.min(e,n.content.size));return{from:r,to:i}}function OY({decorations:t,ranges:e,editor:n,options:r,dataAttribute:i,doc:s,selection:a}){let u=t;for(const c of e){const{from:f,to:h}=PY(c.from,c.to,s),m=u.find(f,h).filter(b=>b.from>=f&&b.to<=h);m.length&&(u=u.remove(m));const g=c8({editor:n,options:r,dataAttribute:i,doc:s,selection:a,from:f,to:h});g.length&&(u=u.add(s,g))}return u}function LY({editor:t,options:e,dataAttribute:n}){return{init(r,i){const s=d8({editor:t,options:e,dataAttribute:n,doc:i.doc,selection:i.selection});return s??lt.empty},apply(r,i,s,a){if(!r.docChanged&&!r.selectionSet)return i;const u=i.map(r.mapping,r.doc),c=NY(r,s,a);return OY({decorations:u,ranges:c,editor:t,options:e,dataAttribute:n,doc:a.doc,selection:a.selection})}}}function zY(t){return t.replace(/\s+/g,"-").replace(/[^a-zA-Z0-9-]/g,"").replace(/^[0-9-]+/,"").replace(/^-+/,"").toLowerCase()}function IY({editor:t,options:e}){const n=e.dataAttribute?`data-${zY(e.dataAttribute)}`:`data-${a8}`,r=e.showOnlyCurrent&&!e.includeChildren;return new pt({key:xD,...r?{}:{state:LY({editor:t,options:e,dataAttribute:n})},props:{decorations:r?({doc:i,selection:s})=>d8({editor:t,options:e,dataAttribute:n,doc:i,selection:s}):i=>{var s;return e.showOnlyWhenEditable&&!t.isEditable?lt.empty:(s=xD.getState(i))!=null?s:lt.empty}}})}var FY=mt.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",dataAttribute:a8,placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){return[IY({editor:this.editor,options:this.options})]}});function Ry(t,e){return!t.selection.empty&&!E7(t.selection)&&e.isEditable}function KY(t,e){return Ry(t,e)&&!e.isFocused&&!e.view.dragging}function jY(){var t;(t=window.getSelection())==null||t.removeAllRanges()}function _Y(t){t.focus()}mt.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:t,options:e}=this;return[new pt({key:new Kt("selection"),props:{decorations(n){return KY(n,t)?lt.create(n.doc,[yn.inline(n.selection.from,n.selection.to,{class:e.className})]):null},handleDOMEvents:{blur(n){return Ry(n.state,t)&&jY(),!1},focus(n){return Ry(n.state,t)&&requestAnimationFrame(()=>{!t.isDestroyed&&n.hasFocus()&&_Y(n)}),!1}}}})]}});var HY="skipTrailingNode";function CD({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||e?.type===t}var VY=mt.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;const e=new Kt(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",r=Object.entries(this.editor.schema.nodes).map(([,i])=>i).filter(i=>(this.options.notAfter||[]).concat(n).includes(i.name));return[new pt({key:e,appendTransaction:(i,s,a)=>{const{doc:u,tr:c,schema:f}=a,h=e.getState(a),m=u.content.size,g=f.nodes[n];if(!i.some(b=>b.getMeta(HY))&&h)return c.insert(m,g.create())},state:{init:(i,s)=>{const a=s.tr.doc.lastChild;return!CD({node:a,types:r})},apply:(i,s)=>{if(!i.docChanged||i.getMeta("__uniqueIDTransaction"))return s;const a=i.doc.lastChild;return!CD({node:a,types:r})}}})]}}),UY=mt.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>s8(t,e),redo:()=>({state:t,dispatch:e})=>o8(t,e)}},addProseMirrorPlugins(){return[$Y(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-я":()=>this.editor.commands.undo(),"Shift-Mod-я":()=>this.editor.commands.redo()}}});function S1(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var ga=S1();function f8(t){ga=t}var To={exec:()=>null};function He(t,e=""){let n=typeof t=="string"?t:t.source,r={replace:(i,s)=>{let a=typeof s=="string"?s:s.source;return a=a.replace(vn.caret,"$1"),n=n.replace(i,a),r},getRegex:()=>new RegExp(n,e)};return r}var qY=(()=>{try{return!!new RegExp("(?<=1)(?<!1)")}catch{return!1}})(),vn={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] +\S/,listReplaceTask:/^\[[ xX]\] +/,listTaskCheckbox:/\[[ xX]\]/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:t=>new RegExp(`^( {0,3}${t})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}#`),htmlBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}<(?:[a-z].*>|!--)`,"i"),blockquoteBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}>`)},GY=/^(?:[ \t]*(?:\n|$))+/,WY=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,QY=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,bd=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,YY=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,w1=/ {0,3}(?:[*+-]|\d{1,9}[.)])/,h8=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,p8=He(h8).replace(/bull/g,w1).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),XY=He(h8).replace(/bull/g,w1).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),$1=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,JY=/^[^\n]+/,T1=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,ZY=He(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",T1).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),eX=He(/^(bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,w1).getRegex(),Om="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",A1=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,tX=He("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",A1).replace("tag",Om).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),m8=He($1).replace("hr",bd).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)])[ \\t]").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Om).getRegex(),nX=He(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",m8).getRegex(),B1={blockquote:nX,code:WY,def:ZY,fences:QY,heading:YY,hr:bd,html:tX,lheading:p8,list:eX,newline:GY,paragraph:m8,table:To,text:JY},ED=He("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",bd).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)])[ \\t]").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Om).getRegex(),rX={...B1,lheading:XY,table:ED,paragraph:He($1).replace("hr",bd).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",ED).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)])[ \\t]").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Om).getRegex()},iX={...B1,html:He(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",A1).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:To,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:He($1).replace("hr",bd).replace("heading",` *#{1,6} *[^
|
|
136
|
-
]`).replace("lheading",p8).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},sX=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,oX=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,g8=/^( {2,}|\\)\n(?!\s*$)/,aX=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,Fl=/[\p{P}\p{S}]/u,Lm=/[\s\p{P}\p{S}]/u,M1=/[^\s\p{P}\p{S}]/u,lX=He(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,Lm).getRegex(),b8=/(?!~)[\p{P}\p{S}]/u,uX=/(?!~)[\s\p{P}\p{S}]/u,cX=/(?:[^\s\p{P}\p{S}]|~)/u,dX=He(/link|precode-code|html/,"g").replace("link",/\[(?:[^\[\]`]|(?<a>`+)[^`]+\k<a>(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-",qY?"(?<!`)()":"(^^|[^`])").replace("code",/(?<b>`+)[^`]+\k<b>(?!`)/).replace("html",/<(?! )[^<>]*?>/).getRegex(),y8=/^(?:\*+(?:((?!\*)punct)|([^\s*]))?)|^_+(?:((?!_)punct)|([^\s_]))?/,fX=He(y8,"u").replace(/punct/g,Fl).getRegex(),hX=He(y8,"u").replace(/punct/g,b8).getRegex(),v8="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",pX=He(v8,"gu").replace(/notPunctSpace/g,M1).replace(/punctSpace/g,Lm).replace(/punct/g,Fl).getRegex(),mX=He(v8,"gu").replace(/notPunctSpace/g,cX).replace(/punctSpace/g,uX).replace(/punct/g,b8).getRegex(),gX=He("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,M1).replace(/punctSpace/g,Lm).replace(/punct/g,Fl).getRegex(),bX=He(/^~~?(?:((?!~)punct)|[^\s~])/,"u").replace(/punct/g,Fl).getRegex(),yX="^[^~]+(?=[^~])|(?!~)punct(~~?)(?=[\\s]|$)|notPunctSpace(~~?)(?!~)(?=punctSpace|$)|(?!~)punctSpace(~~?)(?=notPunctSpace)|[\\s](~~?)(?!~)(?=punct)|(?!~)punct(~~?)(?!~)(?=punct)|notPunctSpace(~~?)(?=notPunctSpace)",vX=He(yX,"gu").replace(/notPunctSpace/g,M1).replace(/punctSpace/g,Lm).replace(/punct/g,Fl).getRegex(),xX=He(/\\(punct)/,"gu").replace(/punct/g,Fl).getRegex(),CX=He(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),EX=He(A1).replace("(?:-->|$)","-->").getRegex(),kX=He("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",EX).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),yp=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+(?!`)[^`]*?`+(?!`)|``+(?=\])|[^\[\]\\`])*?/,DX=He(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]+(?:\n[ \t]*)?|\n[ \t]*)(title))?\s*\)/).replace("label",yp).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),x8=He(/^!?\[(label)\]\[(ref)\]/).replace("label",yp).replace("ref",T1).getRegex(),C8=He(/^!?\[(ref)\](?:\[\])?/).replace("ref",T1).getRegex(),SX=He("reflink|nolink(?!\\()","g").replace("reflink",x8).replace("nolink",C8).getRegex(),kD=/[hH][tT][tT][pP][sS]?|[fF][tT][pP]/,R1={_backpedal:To,anyPunctuation:xX,autolink:CX,blockSkip:dX,br:g8,code:oX,del:To,delLDelim:To,delRDelim:To,emStrongLDelim:fX,emStrongRDelimAst:pX,emStrongRDelimUnd:gX,escape:sX,link:DX,nolink:C8,punctuation:lX,reflink:x8,reflinkSearch:SX,tag:kX,text:aX,url:To},wX={...R1,link:He(/^!?\[(label)\]\((.*?)\)/).replace("label",yp).getRegex(),reflink:He(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",yp).getRegex()},Ny={...R1,emStrongRDelimAst:mX,emStrongLDelim:hX,delLDelim:bX,delRDelim:vX,url:He(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol",kD).replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/,text:He(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|protocol:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/).replace("protocol",kD).getRegex()},$X={...Ny,br:He(g8).replace("{2,}","*").getRegex(),text:He(Ny.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},lh={normal:B1,gfm:rX,pedantic:iX},Hu={normal:R1,gfm:Ny,breaks:$X,pedantic:wX},TX={"&":"&","<":"<",">":">",'"':""","'":"'"},DD=t=>TX[t];function Fr(t,e){if(e){if(vn.escapeTest.test(t))return t.replace(vn.escapeReplace,DD)}else if(vn.escapeTestNoEncode.test(t))return t.replace(vn.escapeReplaceNoEncode,DD);return t}function SD(t){try{t=encodeURI(t).replace(vn.percentDecode,"%")}catch{return null}return t}function wD(t,e){let n=t.replace(vn.findPipe,(s,a,u)=>{let c=!1,f=a;for(;--f>=0&&u[f]==="\\";)c=!c;return c?"|":" |"}),r=n.split(vn.splitPipe),i=0;if(r[0].trim()||r.shift(),r.length>0&&!r.at(-1)?.trim()&&r.pop(),e)if(r.length>e)r.splice(e);else for(;r.length<e;)r.push("");for(;i<r.length;i++)r[i]=r[i].trim().replace(vn.slashPipe,"|");return r}function Vu(t,e,n){let r=t.length;if(r===0)return"";let i=0;for(;i<r&&t.charAt(r-i-1)===e;)i++;return t.slice(0,r-i)}function AX(t,e){if(t.indexOf(e[1])===-1)return-1;let n=0;for(let r=0;r<t.length;r++)if(t[r]==="\\")r++;else if(t[r]===e[0])n++;else if(t[r]===e[1]&&(n--,n<0))return r;return n>0?-2:-1}function BX(t,e=0){let n=e,r="";for(let i of t)if(i===" "){let s=4-n%4;r+=" ".repeat(s),n+=s}else r+=i,n++;return r}function $D(t,e,n,r,i){let s=e.href,a=e.title||null,u=t[1].replace(i.other.outputLinkReplace,"$1");r.state.inLink=!0;let c={type:t[0].charAt(0)==="!"?"image":"link",raw:n,href:s,title:a,text:u,tokens:r.inlineTokens(u)};return r.state.inLink=!1,c}function MX(t,e,n){let r=t.match(n.other.indentCodeCompensation);if(r===null)return e;let i=r[1];return e.split(`
|
|
137
|
-
`).map(s=>{let a=s.match(n.other.beginningSpace);if(a===null)return s;let[u]=a;return u.length>=i.length?s.slice(i.length):s}).join(`
|
|
138
|
-
`)}var vp=class{options;rules;lexer;constructor(t){this.options=t||ga}space(t){let e=this.rules.block.newline.exec(t);if(e&&e[0].length>0)return{type:"space",raw:e[0]}}code(t){let e=this.rules.block.code.exec(t);if(e){let n=e[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:e[0],codeBlockStyle:"indented",text:this.options.pedantic?n:Vu(n,`
|
|
139
|
-
`)}}}fences(t){let e=this.rules.block.fences.exec(t);if(e){let n=e[0],r=MX(n,e[3]||"",this.rules);return{type:"code",raw:n,lang:e[2]?e[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):e[2],text:r}}}heading(t){let e=this.rules.block.heading.exec(t);if(e){let n=e[2].trim();if(this.rules.other.endingHash.test(n)){let r=Vu(n,"#");(this.options.pedantic||!r||this.rules.other.endingSpaceChar.test(r))&&(n=r.trim())}return{type:"heading",raw:e[0],depth:e[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(t){let e=this.rules.block.hr.exec(t);if(e)return{type:"hr",raw:Vu(e[0],`
|
|
140
|
-
`)}}blockquote(t){let e=this.rules.block.blockquote.exec(t);if(e){let n=Vu(e[0],`
|
|
141
|
-
`).split(`
|
|
142
|
-
`),r="",i="",s=[];for(;n.length>0;){let a=!1,u=[],c;for(c=0;c<n.length;c++)if(this.rules.other.blockquoteStart.test(n[c]))u.push(n[c]),a=!0;else if(!a)u.push(n[c]);else break;n=n.slice(c);let f=u.join(`
|
|
143
|
-
`),h=f.replace(this.rules.other.blockquoteSetextReplace,`
|
|
144
|
-
$1`).replace(this.rules.other.blockquoteSetextReplace2,"");r=r?`${r}
|
|
145
|
-
${f}`:f,i=i?`${i}
|
|
146
|
-
${h}`:h;let m=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(h,s,!0),this.lexer.state.top=m,n.length===0)break;let g=s.at(-1);if(g?.type==="code")break;if(g?.type==="blockquote"){let b=g,v=b.raw+`
|
|
147
|
-
`+n.join(`
|
|
148
|
-
`),C=this.blockquote(v);s[s.length-1]=C,r=r.substring(0,r.length-b.raw.length)+C.raw,i=i.substring(0,i.length-b.text.length)+C.text;break}else if(g?.type==="list"){let b=g,v=b.raw+`
|
|
149
|
-
`+n.join(`
|
|
150
|
-
`),C=this.list(v);s[s.length-1]=C,r=r.substring(0,r.length-g.raw.length)+C.raw,i=i.substring(0,i.length-b.raw.length)+C.raw,n=v.substring(s.at(-1).raw.length).split(`
|
|
151
|
-
`);continue}}return{type:"blockquote",raw:r,tokens:s,text:i}}}list(t){let e=this.rules.block.list.exec(t);if(e){let n=e[1].trim(),r=n.length>1,i={type:"list",raw:"",ordered:r,start:r?+n.slice(0,-1):"",loose:!1,items:[]};n=r?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=r?n:"[*+-]");let s=this.rules.other.listItemRegex(n),a=!1;for(;t;){let c=!1,f="",h="";if(!(e=s.exec(t))||this.rules.block.hr.test(t))break;f=e[0],t=t.substring(f.length);let m=BX(e[2].split(`
|
|
152
|
-
`,1)[0],e[1].length),g=t.split(`
|
|
153
|
-
`,1)[0],b=!m.trim(),v=0;if(this.options.pedantic?(v=2,h=m.trimStart()):b?v=e[1].length+1:(v=m.search(this.rules.other.nonSpaceChar),v=v>4?1:v,h=m.slice(v),v+=e[1].length),b&&this.rules.other.blankLine.test(g)&&(f+=g+`
|
|
154
|
-
`,t=t.substring(g.length+1),c=!0),!c){let C=this.rules.other.nextBulletRegex(v),E=this.rules.other.hrRegex(v),k=this.rules.other.fencesBeginRegex(v),T=this.rules.other.headingBeginRegex(v),$=this.rules.other.htmlBeginRegex(v),A=this.rules.other.blockquoteBeginRegex(v);for(;t;){let B=t.split(`
|
|
155
|
-
`,1)[0],P;if(g=B,this.options.pedantic?(g=g.replace(this.rules.other.listReplaceNesting," "),P=g):P=g.replace(this.rules.other.tabCharGlobal," "),k.test(g)||T.test(g)||$.test(g)||A.test(g)||C.test(g)||E.test(g))break;if(P.search(this.rules.other.nonSpaceChar)>=v||!g.trim())h+=`
|
|
156
|
-
`+P.slice(v);else{if(b||m.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||k.test(m)||T.test(m)||E.test(m))break;h+=`
|
|
157
|
-
`+g}b=!g.trim(),f+=B+`
|
|
158
|
-
`,t=t.substring(B.length+1),m=P.slice(v)}}i.loose||(a?i.loose=!0:this.rules.other.doubleBlankLine.test(f)&&(a=!0)),i.items.push({type:"list_item",raw:f,task:!!this.options.gfm&&this.rules.other.listIsTask.test(h),loose:!1,text:h,tokens:[]}),i.raw+=f}let u=i.items.at(-1);if(u)u.raw=u.raw.trimEnd(),u.text=u.text.trimEnd();else return;i.raw=i.raw.trimEnd();for(let c of i.items){if(this.lexer.state.top=!1,c.tokens=this.lexer.blockTokens(c.text,[]),c.task){if(c.text=c.text.replace(this.rules.other.listReplaceTask,""),c.tokens[0]?.type==="text"||c.tokens[0]?.type==="paragraph"){c.tokens[0].raw=c.tokens[0].raw.replace(this.rules.other.listReplaceTask,""),c.tokens[0].text=c.tokens[0].text.replace(this.rules.other.listReplaceTask,"");for(let h=this.lexer.inlineQueue.length-1;h>=0;h--)if(this.rules.other.listIsTask.test(this.lexer.inlineQueue[h].src)){this.lexer.inlineQueue[h].src=this.lexer.inlineQueue[h].src.replace(this.rules.other.listReplaceTask,"");break}}let f=this.rules.other.listTaskCheckbox.exec(c.raw);if(f){let h={type:"checkbox",raw:f[0]+" ",checked:f[0]!=="[ ]"};c.checked=h.checked,i.loose?c.tokens[0]&&["paragraph","text"].includes(c.tokens[0].type)&&"tokens"in c.tokens[0]&&c.tokens[0].tokens?(c.tokens[0].raw=h.raw+c.tokens[0].raw,c.tokens[0].text=h.raw+c.tokens[0].text,c.tokens[0].tokens.unshift(h)):c.tokens.unshift({type:"paragraph",raw:h.raw,text:h.raw,tokens:[h]}):c.tokens.unshift(h)}}if(!i.loose){let f=c.tokens.filter(m=>m.type==="space"),h=f.length>0&&f.some(m=>this.rules.other.anyLine.test(m.raw));i.loose=h}}if(i.loose)for(let c of i.items){c.loose=!0;for(let f of c.tokens)f.type==="text"&&(f.type="paragraph")}return i}}html(t){let e=this.rules.block.html.exec(t);if(e)return{type:"html",block:!0,raw:e[0],pre:e[1]==="pre"||e[1]==="script"||e[1]==="style",text:e[0]}}def(t){let e=this.rules.block.def.exec(t);if(e){let n=e[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),r=e[2]?e[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",i=e[3]?e[3].substring(1,e[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):e[3];return{type:"def",tag:n,raw:e[0],href:r,title:i}}}table(t){let e=this.rules.block.table.exec(t);if(!e||!this.rules.other.tableDelimiter.test(e[2]))return;let n=wD(e[1]),r=e[2].replace(this.rules.other.tableAlignChars,"").split("|"),i=e[3]?.trim()?e[3].replace(this.rules.other.tableRowBlankLine,"").split(`
|
|
159
|
-
`):[],s={type:"table",raw:e[0],header:[],align:[],rows:[]};if(n.length===r.length){for(let a of r)this.rules.other.tableAlignRight.test(a)?s.align.push("right"):this.rules.other.tableAlignCenter.test(a)?s.align.push("center"):this.rules.other.tableAlignLeft.test(a)?s.align.push("left"):s.align.push(null);for(let a=0;a<n.length;a++)s.header.push({text:n[a],tokens:this.lexer.inline(n[a]),header:!0,align:s.align[a]});for(let a of i)s.rows.push(wD(a,s.header.length).map((u,c)=>({text:u,tokens:this.lexer.inline(u),header:!1,align:s.align[c]})));return s}}lheading(t){let e=this.rules.block.lheading.exec(t);if(e){let n=e[1].trim();return{type:"heading",raw:e[0],depth:e[2].charAt(0)==="="?1:2,text:n,tokens:this.lexer.inline(n)}}}paragraph(t){let e=this.rules.block.paragraph.exec(t);if(e){let n=e[1].charAt(e[1].length-1)===`
|
|
160
|
-
`?e[1].slice(0,-1):e[1];return{type:"paragraph",raw:e[0],text:n,tokens:this.lexer.inline(n)}}}text(t){let e=this.rules.block.text.exec(t);if(e)return{type:"text",raw:e[0],text:e[0],tokens:this.lexer.inline(e[0])}}escape(t){let e=this.rules.inline.escape.exec(t);if(e)return{type:"escape",raw:e[0],text:e[1]}}tag(t){let e=this.rules.inline.tag.exec(t);if(e)return!this.lexer.state.inLink&&this.rules.other.startATag.test(e[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(e[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(e[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(e[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:e[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:e[0]}}link(t){let e=this.rules.inline.link.exec(t);if(e){let n=e[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let s=Vu(n.slice(0,-1),"\\");if((n.length-s.length)%2===0)return}else{let s=AX(e[2],"()");if(s===-2)return;if(s>-1){let a=(e[0].indexOf("!")===0?5:4)+e[1].length+s;e[2]=e[2].substring(0,s),e[0]=e[0].substring(0,a).trim(),e[3]=""}}let r=e[2],i="";if(this.options.pedantic){let s=this.rules.other.pedanticHrefTitle.exec(r);s&&(r=s[1],i=s[3])}else i=e[3]?e[3].slice(1,-1):"";return r=r.trim(),this.rules.other.startAngleBracket.test(r)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?r=r.slice(1):r=r.slice(1,-1)),$D(e,{href:r&&r.replace(this.rules.inline.anyPunctuation,"$1"),title:i&&i.replace(this.rules.inline.anyPunctuation,"$1")},e[0],this.lexer,this.rules)}}reflink(t,e){let n;if((n=this.rules.inline.reflink.exec(t))||(n=this.rules.inline.nolink.exec(t))){let r=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),i=e[r.toLowerCase()];if(!i){let s=n[0].charAt(0);return{type:"text",raw:s,text:s}}return $D(n,i,n[0],this.lexer,this.rules)}}emStrong(t,e,n=""){let r=this.rules.inline.emStrongLDelim.exec(t);if(!(!r||!r[1]&&!r[2]&&!r[3]&&!r[4]||r[4]&&n.match(this.rules.other.unicodeAlphaNumeric))&&(!(r[1]||r[3])||!n||this.rules.inline.punctuation.exec(n))){let i=[...r[0]].length-1,s,a,u=i,c=0,f=r[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(f.lastIndex=0,e=e.slice(-1*t.length+i);(r=f.exec(e))!==null;){if(s=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!s)continue;if(a=[...s].length,r[3]||r[4]){u+=a;continue}else if((r[5]||r[6])&&i%3&&!((i+a)%3)){c+=a;continue}if(u-=a,u>0)continue;a=Math.min(a,a+u+c);let h=[...r[0]][0].length,m=t.slice(0,i+r.index+h+a);if(Math.min(i,a)%2){let b=m.slice(1,-1);return{type:"em",raw:m,text:b,tokens:this.lexer.inlineTokens(b)}}let g=m.slice(2,-2);return{type:"strong",raw:m,text:g,tokens:this.lexer.inlineTokens(g)}}}}codespan(t){let e=this.rules.inline.code.exec(t);if(e){let n=e[2].replace(this.rules.other.newLineCharGlobal," "),r=this.rules.other.nonSpaceChar.test(n),i=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return r&&i&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:e[0],text:n}}}br(t){let e=this.rules.inline.br.exec(t);if(e)return{type:"br",raw:e[0]}}del(t,e,n=""){let r=this.rules.inline.delLDelim.exec(t);if(r&&(!r[1]||!n||this.rules.inline.punctuation.exec(n))){let i=[...r[0]].length-1,s,a,u=i,c=this.rules.inline.delRDelim;for(c.lastIndex=0,e=e.slice(-1*t.length+i);(r=c.exec(e))!==null;){if(s=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!s||(a=[...s].length,a!==i))continue;if(r[3]||r[4]){u+=a;continue}if(u-=a,u>0)continue;a=Math.min(a,a+u);let f=[...r[0]][0].length,h=t.slice(0,i+r.index+f+a),m=h.slice(i,-i);return{type:"del",raw:h,text:m,tokens:this.lexer.inlineTokens(m)}}}}autolink(t){let e=this.rules.inline.autolink.exec(t);if(e){let n,r;return e[2]==="@"?(n=e[1],r="mailto:"+n):(n=e[1],r=n),{type:"link",raw:e[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}url(t){let e;if(e=this.rules.inline.url.exec(t)){let n,r;if(e[2]==="@")n=e[0],r="mailto:"+n;else{let i;do i=e[0],e[0]=this.rules.inline._backpedal.exec(e[0])?.[0]??"";while(i!==e[0]);n=e[0],e[1]==="www."?r="http://"+e[0]:r=e[0]}return{type:"link",raw:e[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(t){let e=this.rules.inline.text.exec(t);if(e){let n=this.lexer.state.inRawBlock;return{type:"text",raw:e[0],text:e[0],escaped:n}}}},kr=class Py{tokens;options;state;inlineQueue;tokenizer;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||ga,this.options.tokenizer=this.options.tokenizer||new vp,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let n={other:vn,block:lh.normal,inline:Hu.normal};this.options.pedantic?(n.block=lh.pedantic,n.inline=Hu.pedantic):this.options.gfm&&(n.block=lh.gfm,this.options.breaks?n.inline=Hu.breaks:n.inline=Hu.gfm),this.tokenizer.rules=n}static get rules(){return{block:lh,inline:Hu}}static lex(e,n){return new Py(n).lex(e)}static lexInline(e,n){return new Py(n).inlineTokens(e)}lex(e){e=e.replace(vn.carriageReturn,`
|
|
161
|
-
`),this.blockTokens(e,this.tokens);for(let n=0;n<this.inlineQueue.length;n++){let r=this.inlineQueue[n];this.inlineTokens(r.src,r.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,n=[],r=!1){for(this.tokenizer.lexer=this,this.options.pedantic&&(e=e.replace(vn.tabCharGlobal," ").replace(vn.spaceLine,""));e;){let i;if(this.options.extensions?.block?.some(a=>(i=a.call({lexer:this},e,n))?(e=e.substring(i.raw.length),n.push(i),!0):!1))continue;if(i=this.tokenizer.space(e)){e=e.substring(i.raw.length);let a=n.at(-1);i.raw.length===1&&a!==void 0?a.raw+=`
|
|
162
|
-
`:n.push(i);continue}if(i=this.tokenizer.code(e)){e=e.substring(i.raw.length);let a=n.at(-1);a?.type==="paragraph"||a?.type==="text"?(a.raw+=(a.raw.endsWith(`
|
|
163
|
-
`)?"":`
|
|
164
|
-
`)+i.raw,a.text+=`
|
|
165
|
-
`+i.text,this.inlineQueue.at(-1).src=a.text):n.push(i);continue}if(i=this.tokenizer.fences(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.heading(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.hr(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.blockquote(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.list(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.html(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.def(e)){e=e.substring(i.raw.length);let a=n.at(-1);a?.type==="paragraph"||a?.type==="text"?(a.raw+=(a.raw.endsWith(`
|
|
166
|
-
`)?"":`
|
|
167
|
-
`)+i.raw,a.text+=`
|
|
168
|
-
`+i.raw,this.inlineQueue.at(-1).src=a.text):this.tokens.links[i.tag]||(this.tokens.links[i.tag]={href:i.href,title:i.title},n.push(i));continue}if(i=this.tokenizer.table(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.lheading(e)){e=e.substring(i.raw.length),n.push(i);continue}let s=e;if(this.options.extensions?.startBlock){let a=1/0,u=e.slice(1),c;this.options.extensions.startBlock.forEach(f=>{c=f.call({lexer:this},u),typeof c=="number"&&c>=0&&(a=Math.min(a,c))}),a<1/0&&a>=0&&(s=e.substring(0,a+1))}if(this.state.top&&(i=this.tokenizer.paragraph(s))){let a=n.at(-1);r&&a?.type==="paragraph"?(a.raw+=(a.raw.endsWith(`
|
|
169
|
-
`)?"":`
|
|
170
|
-
`)+i.raw,a.text+=`
|
|
171
|
-
`+i.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=a.text):n.push(i),r=s.length!==e.length,e=e.substring(i.raw.length);continue}if(i=this.tokenizer.text(e)){e=e.substring(i.raw.length);let a=n.at(-1);a?.type==="text"?(a.raw+=(a.raw.endsWith(`
|
|
172
|
-
`)?"":`
|
|
173
|
-
`)+i.raw,a.text+=`
|
|
174
|
-
`+i.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=a.text):n.push(i);continue}if(e){let a="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(a);break}else throw new Error(a)}}return this.state.top=!0,n}inline(e,n=[]){return this.inlineQueue.push({src:e,tokens:n}),n}inlineTokens(e,n=[]){this.tokenizer.lexer=this;let r=e,i=null;if(this.tokens.links){let c=Object.keys(this.tokens.links);if(c.length>0)for(;(i=this.tokenizer.rules.inline.reflinkSearch.exec(r))!==null;)c.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(r=r.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+r.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(i=this.tokenizer.rules.inline.anyPunctuation.exec(r))!==null;)r=r.slice(0,i.index)+"++"+r.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let s;for(;(i=this.tokenizer.rules.inline.blockSkip.exec(r))!==null;)s=i[2]?i[2].length:0,r=r.slice(0,i.index+s)+"["+"a".repeat(i[0].length-s-2)+"]"+r.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);r=this.options.hooks?.emStrongMask?.call({lexer:this},r)??r;let a=!1,u="";for(;e;){a||(u=""),a=!1;let c;if(this.options.extensions?.inline?.some(h=>(c=h.call({lexer:this},e,n))?(e=e.substring(c.raw.length),n.push(c),!0):!1))continue;if(c=this.tokenizer.escape(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.tag(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.link(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(c.raw.length);let h=n.at(-1);c.type==="text"&&h?.type==="text"?(h.raw+=c.raw,h.text+=c.text):n.push(c);continue}if(c=this.tokenizer.emStrong(e,r,u)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.codespan(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.br(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.del(e,r,u)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.autolink(e)){e=e.substring(c.raw.length),n.push(c);continue}if(!this.state.inLink&&(c=this.tokenizer.url(e))){e=e.substring(c.raw.length),n.push(c);continue}let f=e;if(this.options.extensions?.startInline){let h=1/0,m=e.slice(1),g;this.options.extensions.startInline.forEach(b=>{g=b.call({lexer:this},m),typeof g=="number"&&g>=0&&(h=Math.min(h,g))}),h<1/0&&h>=0&&(f=e.substring(0,h+1))}if(c=this.tokenizer.inlineText(f)){e=e.substring(c.raw.length),c.raw.slice(-1)!=="_"&&(u=c.raw.slice(-1)),a=!0;let h=n.at(-1);h?.type==="text"?(h.raw+=c.raw,h.text+=c.text):n.push(c);continue}if(e){let h="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(h);break}else throw new Error(h)}}return n}},xp=class{options;parser;constructor(t){this.options=t||ga}space(t){return""}code({text:t,lang:e,escaped:n}){let r=(e||"").match(vn.notSpaceStart)?.[0],i=t.replace(vn.endingNewline,"")+`
|
|
175
|
-
`;return r?'<pre><code class="language-'+Fr(r)+'">'+(n?i:Fr(i,!0))+`</code></pre>
|
|
176
|
-
`:"<pre><code>"+(n?i:Fr(i,!0))+`</code></pre>
|
|
177
|
-
`}blockquote({tokens:t}){return`<blockquote>
|
|
178
|
-
${this.parser.parse(t)}</blockquote>
|
|
179
|
-
`}html({text:t}){return t}def(t){return""}heading({tokens:t,depth:e}){return`<h${e}>${this.parser.parseInline(t)}</h${e}>
|
|
180
|
-
`}hr(t){return`<hr>
|
|
181
|
-
`}list(t){let e=t.ordered,n=t.start,r="";for(let a=0;a<t.items.length;a++){let u=t.items[a];r+=this.listitem(u)}let i=e?"ol":"ul",s=e&&n!==1?' start="'+n+'"':"";return"<"+i+s+`>
|
|
182
|
-
`+r+"</"+i+`>
|
|
183
|
-
`}listitem(t){return`<li>${this.parser.parse(t.tokens)}</li>
|
|
184
|
-
`}checkbox({checked:t}){return"<input "+(t?'checked="" ':"")+'disabled="" type="checkbox"> '}paragraph({tokens:t}){return`<p>${this.parser.parseInline(t)}</p>
|
|
185
|
-
`}table(t){let e="",n="";for(let i=0;i<t.header.length;i++)n+=this.tablecell(t.header[i]);e+=this.tablerow({text:n});let r="";for(let i=0;i<t.rows.length;i++){let s=t.rows[i];n="";for(let a=0;a<s.length;a++)n+=this.tablecell(s[a]);r+=this.tablerow({text:n})}return r&&(r=`<tbody>${r}</tbody>`),`<table>
|
|
186
|
-
<thead>
|
|
187
|
-
`+e+`</thead>
|
|
188
|
-
`+r+`</table>
|
|
189
|
-
`}tablerow({text:t}){return`<tr>
|
|
190
|
-
${t}</tr>
|
|
191
|
-
`}tablecell(t){let e=this.parser.parseInline(t.tokens),n=t.header?"th":"td";return(t.align?`<${n} align="${t.align}">`:`<${n}>`)+e+`</${n}>
|
|
192
|
-
`}strong({tokens:t}){return`<strong>${this.parser.parseInline(t)}</strong>`}em({tokens:t}){return`<em>${this.parser.parseInline(t)}</em>`}codespan({text:t}){return`<code>${Fr(t,!0)}</code>`}br(t){return"<br>"}del({tokens:t}){return`<del>${this.parser.parseInline(t)}</del>`}link({href:t,title:e,tokens:n}){let r=this.parser.parseInline(n),i=SD(t);if(i===null)return r;t=i;let s='<a href="'+t+'"';return e&&(s+=' title="'+Fr(e)+'"'),s+=">"+r+"</a>",s}image({href:t,title:e,text:n,tokens:r}){r&&(n=this.parser.parseInline(r,this.parser.textRenderer));let i=SD(t);if(i===null)return Fr(n);t=i;let s=`<img src="${t}" alt="${Fr(n)}"`;return e&&(s+=` title="${Fr(e)}"`),s+=">",s}text(t){return"tokens"in t&&t.tokens?this.parser.parseInline(t.tokens):"escaped"in t&&t.escaped?t.text:Fr(t.text)}},N1=class{strong({text:t}){return t}em({text:t}){return t}codespan({text:t}){return t}del({text:t}){return t}html({text:t}){return t}text({text:t}){return t}link({text:t}){return""+t}image({text:t}){return""+t}br(){return""}checkbox({raw:t}){return t}},Dr=class Oy{options;renderer;textRenderer;constructor(e){this.options=e||ga,this.options.renderer=this.options.renderer||new xp,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new N1}static parse(e,n){return new Oy(n).parse(e)}static parseInline(e,n){return new Oy(n).parseInline(e)}parse(e){this.renderer.parser=this;let n="";for(let r=0;r<e.length;r++){let i=e[r];if(this.options.extensions?.renderers?.[i.type]){let a=i,u=this.options.extensions.renderers[a.type].call({parser:this},a);if(u!==!1||!["space","hr","heading","code","table","blockquote","list","html","def","paragraph","text"].includes(a.type)){n+=u||"";continue}}let s=i;switch(s.type){case"space":{n+=this.renderer.space(s);break}case"hr":{n+=this.renderer.hr(s);break}case"heading":{n+=this.renderer.heading(s);break}case"code":{n+=this.renderer.code(s);break}case"table":{n+=this.renderer.table(s);break}case"blockquote":{n+=this.renderer.blockquote(s);break}case"list":{n+=this.renderer.list(s);break}case"checkbox":{n+=this.renderer.checkbox(s);break}case"html":{n+=this.renderer.html(s);break}case"def":{n+=this.renderer.def(s);break}case"paragraph":{n+=this.renderer.paragraph(s);break}case"text":{n+=this.renderer.text(s);break}default:{let a='Token with "'+s.type+'" type was not found.';if(this.options.silent)return console.error(a),"";throw new Error(a)}}}return n}parseInline(e,n=this.renderer){this.renderer.parser=this;let r="";for(let i=0;i<e.length;i++){let s=e[i];if(this.options.extensions?.renderers?.[s.type]){let u=this.options.extensions.renderers[s.type].call({parser:this},s);if(u!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(s.type)){r+=u||"";continue}}let a=s;switch(a.type){case"escape":{r+=n.text(a);break}case"html":{r+=n.html(a);break}case"link":{r+=n.link(a);break}case"image":{r+=n.image(a);break}case"checkbox":{r+=n.checkbox(a);break}case"strong":{r+=n.strong(a);break}case"em":{r+=n.em(a);break}case"codespan":{r+=n.codespan(a);break}case"br":{r+=n.br(a);break}case"del":{r+=n.del(a);break}case"text":{r+=n.text(a);break}default:{let u='Token with "'+a.type+'" type was not found.';if(this.options.silent)return console.error(u),"";throw new Error(u)}}}return r}},ic=class{options;block;constructor(t){this.options=t||ga}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens","emStrongMask"]);static passThroughHooksRespectAsync=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(t){return t}postprocess(t){return t}processAllTokens(t){return t}emStrongMask(t){return t}provideLexer(t=this.block){return t?kr.lex:kr.lexInline}provideParser(t=this.block){return t?Dr.parse:Dr.parseInline}},RX=class{defaults=S1();options=this.setOptions;parse=this.parseMarkdown(!0);parseInline=this.parseMarkdown(!1);Parser=Dr;Renderer=xp;TextRenderer=N1;Lexer=kr;Tokenizer=vp;Hooks=ic;constructor(...t){this.use(...t)}walkTokens(t,e){let n=[];for(let r of t)switch(n=n.concat(e.call(this,r)),r.type){case"table":{let i=r;for(let s of i.header)n=n.concat(this.walkTokens(s.tokens,e));for(let s of i.rows)for(let a of s)n=n.concat(this.walkTokens(a.tokens,e));break}case"list":{let i=r;n=n.concat(this.walkTokens(i.items,e));break}default:{let i=r;this.defaults.extensions?.childTokens?.[i.type]?this.defaults.extensions.childTokens[i.type].forEach(s=>{let a=i[s].flat(1/0);n=n.concat(this.walkTokens(a,e))}):i.tokens&&(n=n.concat(this.walkTokens(i.tokens,e)))}}return n}use(...t){let e=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(n=>{let r={...n};if(r.async=this.defaults.async||r.async||!1,n.extensions&&(n.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){let s=e.renderers[i.name];s?e.renderers[i.name]=function(...a){let u=i.renderer.apply(this,a);return u===!1&&(u=s.apply(this,a)),u}:e.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let s=e[i.level];s?s.unshift(i.tokenizer):e[i.level]=[i.tokenizer],i.start&&(i.level==="block"?e.startBlock?e.startBlock.push(i.start):e.startBlock=[i.start]:i.level==="inline"&&(e.startInline?e.startInline.push(i.start):e.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(e.childTokens[i.name]=i.childTokens)}),r.extensions=e),n.renderer){let i=this.defaults.renderer||new xp(this.defaults);for(let s in n.renderer){if(!(s in i))throw new Error(`renderer '${s}' does not exist`);if(["options","parser"].includes(s))continue;let a=s,u=n.renderer[a],c=i[a];i[a]=(...f)=>{let h=u.apply(i,f);return h===!1&&(h=c.apply(i,f)),h||""}}r.renderer=i}if(n.tokenizer){let i=this.defaults.tokenizer||new vp(this.defaults);for(let s in n.tokenizer){if(!(s in i))throw new Error(`tokenizer '${s}' does not exist`);if(["options","rules","lexer"].includes(s))continue;let a=s,u=n.tokenizer[a],c=i[a];i[a]=(...f)=>{let h=u.apply(i,f);return h===!1&&(h=c.apply(i,f)),h}}r.tokenizer=i}if(n.hooks){let i=this.defaults.hooks||new ic;for(let s in n.hooks){if(!(s in i))throw new Error(`hook '${s}' does not exist`);if(["options","block"].includes(s))continue;let a=s,u=n.hooks[a],c=i[a];ic.passThroughHooks.has(s)?i[a]=f=>{if(this.defaults.async&&ic.passThroughHooksRespectAsync.has(s))return(async()=>{let m=await u.call(i,f);return c.call(i,m)})();let h=u.call(i,f);return c.call(i,h)}:i[a]=(...f)=>{if(this.defaults.async)return(async()=>{let m=await u.apply(i,f);return m===!1&&(m=await c.apply(i,f)),m})();let h=u.apply(i,f);return h===!1&&(h=c.apply(i,f)),h}}r.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,s=n.walkTokens;r.walkTokens=function(a){let u=[];return u.push(s.call(this,a)),i&&(u=u.concat(i.call(this,a))),u}}this.defaults={...this.defaults,...r}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,e){return kr.lex(t,e??this.defaults)}parser(t,e){return Dr.parse(t,e??this.defaults)}parseMarkdown(t){return(e,n)=>{let r={...n},i={...this.defaults,...r},s=this.onError(!!i.silent,!!i.async);if(this.defaults.async===!0&&r.async===!1)return s(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof e>"u"||e===null)return s(new Error("marked(): input parameter is undefined or null"));if(typeof e!="string")return s(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(e)+", string expected"));if(i.hooks&&(i.hooks.options=i,i.hooks.block=t),i.async)return(async()=>{let a=i.hooks?await i.hooks.preprocess(e):e,u=await(i.hooks?await i.hooks.provideLexer(t):t?kr.lex:kr.lexInline)(a,i),c=i.hooks?await i.hooks.processAllTokens(u):u;i.walkTokens&&await Promise.all(this.walkTokens(c,i.walkTokens));let f=await(i.hooks?await i.hooks.provideParser(t):t?Dr.parse:Dr.parseInline)(c,i);return i.hooks?await i.hooks.postprocess(f):f})().catch(s);try{i.hooks&&(e=i.hooks.preprocess(e));let a=(i.hooks?i.hooks.provideLexer(t):t?kr.lex:kr.lexInline)(e,i);i.hooks&&(a=i.hooks.processAllTokens(a)),i.walkTokens&&this.walkTokens(a,i.walkTokens);let u=(i.hooks?i.hooks.provideParser(t):t?Dr.parse:Dr.parseInline)(a,i);return i.hooks&&(u=i.hooks.postprocess(u)),u}catch(a){return s(a)}}}onError(t,e){return n=>{if(n.message+=`
|
|
193
|
-
Please report this to https://github.com/markedjs/marked.`,t){let r="<p>An error occurred:</p><pre>"+Fr(n.message+"",!0)+"</pre>";return e?Promise.resolve(r):r}if(e)return Promise.reject(n);throw n}}},oa=new RX;function Je(t,e){return oa.parse(t,e)}Je.options=Je.setOptions=function(t){return oa.setOptions(t),Je.defaults=oa.defaults,f8(Je.defaults),Je};Je.getDefaults=S1;Je.defaults=ga;Je.use=function(...t){return oa.use(...t),Je.defaults=oa.defaults,f8(Je.defaults),Je};Je.walkTokens=function(t,e){return oa.walkTokens(t,e)};Je.parseInline=oa.parseInline;Je.Parser=Dr;Je.parser=Dr.parse;Je.Renderer=xp;Je.TextRenderer=N1;Je.Lexer=kr;Je.lexer=kr.lex;Je.Tokenizer=vp;Je.Hooks=ic;Je.parse=Je;Je.options;Je.setOptions;Je.use;Je.walkTokens;Je.parseInline;Dr.parse;kr.lex;var NX=/\n[^\S\n]*(?:\n[^\S\n]*)+$/;function PX(t){return t.flatMap((e,n)=>{var r;if(e.type==="space"||((r=t[n+1])==null?void 0:r.type)==="space")return[e];const i=(e.raw||"").match(NX);return i?[{...e,raw:(e.raw||"").slice(0,-i[0].length)},{type:"space",raw:i[0]}]:[e]})}function OX(t,e){const r=e.split(`
|
|
194
|
-
`).flatMap(i=>[i,""]).map(i=>`${t}${i}`).join(`
|
|
195
|
-
`);return r.slice(0,r.length-1)}function LX(t,e){const n=[];return Array.from(t.entries()).forEach(([r,i])=>{if(!e){n.push(r);return}(e.marks||[]).find(a=>a.type===r&&Nl(a.attrs,i.attrs))||n.push(r)}),n}function zX(t,e){const n=[];return Array.from(e.entries()).forEach(([r,i])=>{const s=t.get(r);(!s||!Nl(s.attrs,i.attrs))&&n.push({type:r,mark:i})}),n}function IX(t,e,n,r){const i=!n,s=n&&(!n.marks||n.marks.length===0),a=n&&n.marks&&!r(e,new Map(n.marks.map(c=>[c.type,c]))),u=[];return(i||s||a)&&(n&&n.marks?Array.from(t.entries()).reverse().forEach(([c,f])=>{n.marks.find(m=>m.type===c&&Nl(m.attrs,f.attrs))||u.push(c)}):(i||s)&&u.push(...Array.from(t.keys()).reverse())),u}function FX(t,e){let n="";return Array.from(t.keys()).reverse().forEach(r=>{const i=t.get(r),s=e(r,i);s&&(n=s+n)}),t.clear(),n}function KX(t,e,n){let r="";return Array.from(t.entries()).forEach(([i,s])=>{const a=n(i,s);a&&(r+=a),e.set(i,s)}),r}function s4(t){const n=(t.raw||t.text||"").match(/^(\s*)[-+*]\s+\[([ xX])\]\s+/);return n?{isTask:!0,checked:n[2].toLowerCase()==="x",indentLevel:n[1].length}:{isTask:!1,indentLevel:0}}function uh(t,e){return typeof t!="string"?"json":e}var jX=new Set(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","menu","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","search","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","circle","clippath","defs","ellipse","foreignobject","g","image","line","lineargradient","mask","path","polygon","polyline","radialgradient","rect","stop","switch","symbol","textpath","tspan","use","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"]),_X=/<\/?([a-zA-Z][\w-]*)/g;function HX(t){const e=[];let n;for(;(n=_X.exec(t))!==null;)e.push(n[1].toLowerCase());return e}function VX(t){const e=t.toLowerCase();return e.includes("-")?!1:!jX.has(e)}function UX(t,e){return HX(t).some(r=>VX(r)?!e.has(r):!1)}var qX=class{constructor(t){this.activeParseLexer=null,this.extensionRanks=new Map,this.baseExtensions=[],this.extensions=[],this.codeTypes=new Set,this.schemaParseDomTagsCache=null,this.lastParseResult=null;var e,n,r,i,s;this.markedInstance=(e=t?.marked)!=null?e:Je,this.indentStyle=(r=(n=t?.indentation)==null?void 0:n.style)!=null?r:"space",this.indentSize=(s=(i=t?.indentation)==null?void 0:i.size)!=null?s:2,this.baseExtensions=t?.extensions||[],t?.markedOptions&&typeof this.markedInstance.setOptions=="function"&&this.markedInstance.setOptions(t.markedOptions),this.registry=new Map,this.nodeTypeRegistry=new Map,t?.extensions&&(this.baseExtensions=t.extensions,vl(Bm(t.extensions)).forEach(u=>this.registerExtension(u)))}get instance(){return this.markedInstance}get indentCharacter(){return this.indentStyle==="space"?" ":" "}get indentString(){return this.indentCharacter.repeat(this.indentSize)}hasMarked(){return!!this.markedInstance}registerExtension(t){var e,n;this.extensions.push(t);const r=We(ye(t,"code")),i=t.name;r&&this.codeTypes.add(i),this.extensionRanks.has(i)||this.extensionRanks.set(i,this.extensionRanks.size);const s=ye(t,"markdownTokenName")||i,a=ye(t,"parseMarkdown"),u=ye(t,"renderMarkdown"),c=ye(t,"markdownTokenizer"),f=(e=ye(t,"markdownOptions"))!=null?e:null,h=(n=f?.indentsContent)!=null?n:!1,m=f?.htmlReopen,g={tokenName:s,nodeName:i,parseMarkdown:a,renderMarkdown:u,isIndenting:h,htmlReopen:m,tokenizer:c};if(s&&a){const b=this.registry.get(s)||[];b.push(g),this.registry.set(s,b)}if(u){const b=this.nodeTypeRegistry.get(i)||[];b.push(g),this.nodeTypeRegistry.set(i,b)}c&&this.hasMarked()&&this.registerTokenizer(c)}createLexer(){return new this.markedInstance.Lexer(this.markedInstance.defaults)}createTokenizerHelpers(t){return{inlineTokens:e=>t.inlineTokens(e),blockTokens:e=>t.blockTokens(e)}}tokenizeInline(t){var e;return((e=this.activeParseLexer)!=null?e:this.createLexer()).inlineTokens(t)}registerTokenizer(t){if(!this.hasMarked())return;const{name:e,start:n,level:r="inline",tokenize:i}=t,s=this.createTokenizerHelpers.bind(this),a=this.createLexer.bind(this);let u;n?u=typeof n=="function"?n:f=>f.indexOf(n):u=f=>{const h=i(f,[],this.createTokenizerHelpers(this.createLexer()));return h&&h.raw?f.indexOf(h.raw):-1};const c={name:e,level:r,start:u,tokenizer(f,h){const m=this.lexer?s(this.lexer):s(a()),g=i(f,h,m);if(g&&g.type)return{...g,type:g.type||e,raw:g.raw||"",tokens:g.tokens||[]}},childTokens:[]};this.markedInstance.use({extensions:[c]})}getHandlersForToken(t){try{return this.registry.get(t)||[]}catch{return[]}}getHandlerForToken(t){const e=this.getHandlersForToken(t);if(e.length>0)return e[0];const n=this.getHandlersForNodeType(t);return n.length>0?n[0]:void 0}getHandlersForNodeType(t){try{return this.nodeTypeRegistry.get(t)||[]}catch{return[]}}serialize(t){if(!t)return"";const e=this.renderNodes(t,t);return this.isEmptyOutput(e)?"":e}isEmptyOutput(t){return!t||t.trim()===""?!0:t.replace(/ /g,"").replace(/\u00A0/g,"").trim()===""}parse(t){if(!this.hasMarked())throw new Error("No marked instance available for parsing");const e=this.activeParseLexer,n=this.createLexer();this.activeParseLexer=n;try{const r=n.lex(t);return{type:"doc",content:this.parseTokens(r,!0)}}finally{this.activeParseLexer=e}}parseTokens(t,e=!1){const n=e?PX(t):t,r=n.reduce((a,u,c)=>(u.type!=="space"&&a.push(c),a),[]);let i=-1,s=0;return n.flatMap((a,u)=>{for(var c;s<r.length&&r[s]<u;)i=r[s],s+=1;if(e&&a.type==="space"){const h=(c=r[s])!=null?c:-1;return this.createImplicitEmptyParagraphsFromSpace(a,i,h)}const f=this.parseToken(a,e);return f===null?[]:Array.isArray(f)?f:[f]})}createImplicitEmptyParagraphsFromSpace(t,e,n){const r=this.countParagraphSeparators(t.raw||"");if(r===0)return[];const s=Math.max(r-(e===-1||n===-1?0:1),0);return Array.from({length:s},()=>({type:"paragraph",content:[]}))}countParagraphSeparators(t){return(t.replace(/\r\n/g,`
|
|
196
|
-
`).match(/\n\n/g)||[]).length}parseToken(t,e=!1){if(!t.type)return null;if(t.type==="list")return this.parseListToken(t);const n=this.getHandlersForToken(t.type),r=this.createParseHelpers();if(n.find(s=>{if(!s.parseMarkdown)return!1;const a=s.parseMarkdown(t,r),u=this.normalizeParseResult(a);return u&&(!Array.isArray(u)||u.length>0)?(this.lastParseResult=u,!0):!1})&&this.lastParseResult){const s=this.lastParseResult;return this.lastParseResult=null,s}return this.parseFallbackToken(t,e)}parseListToken(t){if(!t.items||t.items.length===0)return this.parseTokenWithHandlers(t);const e=t.items.some(u=>s4(u).isTask),n=t.items.some(u=>!s4(u).isTask);if(!e||!n||this.getHandlersForToken("taskList").length===0)return this.parseTokenWithHandlers(t);const r=[];let i=[],s=null;for(let u=0;u<t.items.length;u+=1){const c=t.items[u],{isTask:f,checked:h,indentLevel:m}=s4(c);let g=c;if(f){const C=(c.raw||c.text||"").split(`
|
|
197
|
-
`),E=C[0].match(/^\s*[-+*]\s+\[([ xX])\]\s+(.*)$/),k=E?E[2]:"";let T=[];if(C.length>1&&C.slice(1).join(`
|
|
198
|
-
`).trim()){const A=C.slice(1),B=A.filter(P=>P.trim());if(B.length>0){const P=Math.min(...B.map(I=>I.length-I.trimStart().length)),N=A.map(I=>I.trim()?I.slice(P):"").join(`
|
|
199
|
-
`).trim();N&&(T=this.markedInstance.lexer(`${N}
|
|
200
|
-
`))}}g={type:"taskItem",raw:"",mainContent:k,indentLevel:m,checked:h??!1,text:k,tokens:this.tokenizeInline(k),nestedTokens:T}}const b=f?"taskList":"list";s!==b?(i.length>0&&r.push({type:s,items:i}),i=[g],s=b):i.push(g)}i.length>0&&r.push({type:s,items:i});const a=[];for(let u=0;u<r.length;u+=1){const c=r[u],f={...t,type:c.type,items:c.items},h=this.parseToken(f);h&&(Array.isArray(h)?a.push(...h):a.push(h))}return a.length>0?a:null}parseTokenWithHandlers(t){if(!t.type)return null;const e=this.getHandlersForToken(t.type),n=this.createParseHelpers();if(e.find(i=>{if(!i.parseMarkdown)return!1;const s=i.parseMarkdown(t,n),a=this.normalizeParseResult(s);return a&&(!Array.isArray(a)||a.length>0)?(this.lastParseResult=a,!0):!1})&&this.lastParseResult){const i=this.lastParseResult;return this.lastParseResult=null,i}return this.parseFallbackToken(t)}createParseHelpers(){return{parseInline:t=>this.parseInlineTokens(t),tokenizeInline:t=>this.tokenizeInline(t),parseChildren:t=>this.parseTokens(t),parseBlockChildren:t=>this.parseTokens(t,!0),createTextNode:(t,e)=>({type:"text",text:t,marks:e||void 0}),createNode:(t,e,n)=>{const r={type:t,attrs:e||void 0,content:n||void 0};return(!e||Object.keys(e).length===0)&&delete r.attrs,r},applyMark:(t,e,n)=>({mark:t,content:e,attrs:n&&Object.keys(n).length>0?n:void 0})}}escapeRegex(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}parseInlineTokens(t){var e,n,r,i;const s=[];for(let a=0;a<t.length;a+=1){const u=t[a];if(u.type==="text")s.push({type:"text",text:dD(u.text||"")});else if(u.type==="escape")s.push({type:"text",text:u.text||""});else if(u.type==="html"){const c=((n=(e=u.raw)!=null?e:u.text)!=null?n:"").toString(),f=/^<\/[\s]*[\w-]+/i.test(c),h=c.match(/^<[\s]*([\w-]+)(\s|>|\/|$)/i);if(!f&&h&&!/\/>$/.test(c)){const g=h[1],b=this.escapeRegex(g),v=new RegExp(`^<\\/\\s*${b}\\b`,"i");let C=-1;const E=[c];for(let k=a+1;k<t.length;k+=1){const T=t[k],$=((i=(r=T.raw)!=null?r:T.text)!=null?i:"").toString();if(E.push($),T.type==="html"&&v.test($)){C=k;break}}if(C!==-1){const k=E.join(""),T={type:"html",raw:k,text:k,block:!1},$=this.parseHTMLToken(T);if($){const A=this.normalizeParseResult($);Array.isArray(A)?s.push(...A):A&&s.push(A)}a=C;continue}}const m=this.parseHTMLToken(u);if(m){const g=this.normalizeParseResult(m);Array.isArray(g)?s.push(...g):g&&s.push(g)}}else if(u.type){const c=this.getHandlerForToken(u.type);if(c&&c.parseMarkdown){const f=this.createParseHelpers(),h=c.parseMarkdown(u,f);if(this.isMarkResult(h)){const m=this.applyMarkToContent(h.mark,h.content,h.attrs);s.push(...m)}else{const m=this.normalizeParseResult(h);Array.isArray(m)?s.push(...m):m&&s.push(m)}}else u.tokens&&s.push(...this.parseInlineTokens(u.tokens))}}for(let a=s.length-1;a>0;a-=1){const u=s[a],c=s[a-1];if(u.type==="text"&&c.type==="text"){const f=u.marks||[],h=c.marks||[];xQ(f,h)&&(c.text=(c.text||"")+(u.text||""),s.splice(a,1))}}return s}applyMarkToContent(t,e,n){return e.map(r=>{if(r.type==="text"){const i=r.marks||[],s=n?{type:t,attrs:n}:{type:t};return{...r,marks:[...i,s]}}return{...r,content:r.content?this.applyMarkToContent(t,r.content,n):void 0}})}isMarkResult(t){return t&&typeof t=="object"&&"mark"in t}normalizeParseResult(t){return t?this.isMarkResult(t)?t.content:t:null}parseFallbackToken(t,e=!1){switch(t.type){case"paragraph":return{type:"paragraph",content:t.tokens?this.parseInlineTokens(t.tokens):[]};case"heading":return{type:"heading",attrs:{level:t.depth||1},content:t.tokens?this.parseInlineTokens(t.tokens):[]};case"text":return{type:"text",text:dD(t.text||"")};case"html":return this.parseHTMLToken(t);case"escape":return{type:"text",text:t.text||""};case"space":return null;default:return t.tokens?this.parseTokens(t.tokens,e):null}}parseHTMLToken(t){const e=t.text||t.raw||"";if(!e.trim())return null;if(this.isUnrecognizedHtml(e))return this.htmlAsLiteralText(e,!!t.block);if(typeof window>"u"||typeof window.DOMParser>"u")return this.htmlAsLiteralText(e,!!t.block);try{const n=TW(e,this.baseExtensions);return n.type==="doc"&&n.content?t.block?n.content:n.content.length===1&&n.content[0].type==="paragraph"&&n.content[0].content?n.content[0].content:n.content:n}catch(n){throw new Error(`Failed to parse HTML in markdown: ${n}`)}}isUnrecognizedHtml(t){return UX(t,this.getSchemaParseDomTags())}getSchemaParseDomTags(){if(this.schemaParseDomTagsCache)return this.schemaParseDomTagsCache;const t=new Set;try{const e=y7(this.baseExtensions),n=r=>{const i=r?.parseDOM;Array.isArray(i)&&i.forEach(s=>{if(typeof s?.tag=="string"){const a=s.tag.match(/^[a-zA-Z][\w-]*/);a&&t.add(a[0].toLowerCase())}})};Object.values(e.nodes).forEach(r=>n(r.spec)),Object.values(e.marks).forEach(r=>n(r.spec))}catch{}return this.schemaParseDomTagsCache=t,t}htmlAsLiteralText(t,e){const n=t.replace(/\s+$/,"");return n?e?{type:"paragraph",content:[{type:"text",text:n}]}:{type:"text",text:n}:null}encodeTextForMarkdown(t,e,n){return n?.type!=null&&this.codeTypes.has(n.type)||(e.marks||[]).some(i=>this.codeTypes.has(typeof i=="string"?i:i.type))?t:this.escapeMarkdownSyntax(dQ(t))}escapeMarkdownSyntax(t){return t.replace(/([\\`*_[\]~])/g,"\\$1")}renderNodeToMarkdown(t,e,n=0,r=0,i={}){var s;if(t.type==="text")return this.encodeTextForMarkdown(t.text||"",t,e);if(!t.type)return"";const a=this.getHandlerForToken(t.type);if(!a)return"";const u=Array.isArray(e?.content)&&n>0?e.content[n-1]:void 0,c={renderChildren:(m,g)=>{const b=a.isIndenting?r+1:r;return!Array.isArray(m)&&m.content?this.renderNodes(m.content,t,g||"",n,b):this.renderNodes(m,t,g||"",n,b)},renderChild:(m,g)=>{const b=a.isIndenting?r+1:r;return this.renderNodeToMarkdown(m,t,g,b)},indent:m=>this.indentString+m,wrapInBlock:OX},f={index:n,level:r,parentType:e?.type,previousNode:u,meta:{parentAttrs:e?.attrs,...i}};return((s=a.renderMarkdown)==null?void 0:s.call(a,t,c,f))||""}renderNodes(t,e,n="",r=0,i=0){return Array.isArray(t)?this.renderNodesWithMarkBoundaries(t,e,n,i):t.type?this.renderNodeToMarkdown(t,e,r,i):""}renderNodesWithMarkBoundaries(t,e,n="",r=0){const i=[],s=new Map,a=new Set,u=new Map;return t.forEach((c,f)=>{const h=f<t.length-1?t[f+1]:null;if(c.type)if(c.type==="text"){let m=this.encodeTextForMarkdown(c.text||"",c,e);const g=new Map((c.marks||[]).map(B=>[B.type,B])),b=this.getMarksToOpenForSerialization(s,g,h),v=LX(g,h),C=v.filter(B=>s.has(B)),E=C.length>0&&b.length>0;let k="";if(v.length>0&&!E){const B=m.match(/(\s+)$/);B&&(k=B[1],m=m.slice(0,-k.length))}E||v.slice().reverse().forEach(B=>{if(!s.has(B))return;const P=g.get(B),M=this.getMarkClosing(B,P,u.get(B));M&&(m+=M),s.has(B)&&(s.delete(B),u.delete(B))});let T="";if(b.length>0){const B=m.match(/^(\s+)/);B&&(T=B[1],m=m.slice(T.length))}b.forEach(({type:B,mark:P})=>{const M=a.has(B)?"html":"markdown",N=this.getMarkOpening(B,P,M);N&&(m=N+m),u.set(B,M),a.delete(B)}),E||b.slice().reverse().forEach(({type:B,mark:P})=>{s.set(B,P)}),m=T+m;let $;if(E){const B=new Set((h?.marks||[]).map(N=>N.type));b.forEach(({type:N})=>{B.has(N)&&this.getHtmlReopenTags(N)&&a.add(N)});const P=Array.from(s.keys()),M=C.slice().sort((N,I)=>P.indexOf(I)-P.indexOf(N));$=[...b.map(N=>N.type),...M]}else $=IX(s,g,h,this.markSetsEqual.bind(this));let A="";if($.length>0){const B=m.match(/(\s+)$/);B&&(A=B[1],m=m.slice(0,-A.length))}$.forEach(B=>{var P;const M=(P=s.get(B))!=null?P:g.get(B),N=this.getMarkClosing(B,M,u.get(B));N&&(m+=N),s.delete(B),u.delete(B)}),m+=A,m+=k,i.push(m)}else{const m=new Set((c.marks||[]).map(k=>k.type)),g=new Map,b=new Map;s.forEach((k,T)=>{var $;m.has(T)&&(g.set(T,k),b.set(T,($=u.get(T))!=null?$:"markdown"))});const v=FX(s,(k,T)=>this.getMarkClosing(k,T,u.get(k)));u.clear();const C=this.renderNodeToMarkdown(c,e,f,r),E=c.type==="hardBreak"?"":KX(g,s,(k,T)=>{var $;const A=($=b.get(k))!=null?$:"markdown";return u.set(k,A),this.getMarkOpening(k,T,A)});i.push(v+C+E)}}),i.join(n)}getMarkOpening(t,e,n="markdown"){var r;if(n==="html")return((r=this.getHtmlReopenTags(t))==null?void 0:r.open)||"";const i=this.getHandlersForNodeType(t),s=i.length>0?i[0]:void 0;if(!s||!s.renderMarkdown)return"";const a="__TIPTAP_MARKDOWN_PLACEHOLDER__",u={type:t,attrs:e.attrs||{},content:[{type:"text",text:a}]};try{const c=s.renderMarkdown(u,{renderChildren:()=>a,renderChild:()=>a,indent:h=>h,wrapInBlock:(h,m)=>h+m},{index:0,level:0,parentType:"text",meta:{}}),f=c.indexOf(a);return f>=0?c.substring(0,f):""}catch(c){throw new Error(`Failed to get mark opening for ${t}: ${c}`)}}getMarkClosing(t,e,n="markdown"){var r;if(n==="html")return((r=this.getHtmlReopenTags(t))==null?void 0:r.close)||"";const i=this.getHandlersForNodeType(t),s=i.length>0?i[0]:void 0;if(!s||!s.renderMarkdown)return"";const a="__TIPTAP_MARKDOWN_PLACEHOLDER__",u={type:t,attrs:e.attrs||{},content:[{type:"text",text:a}]};try{const c=s.renderMarkdown(u,{renderChildren:()=>a,renderChild:()=>a,indent:m=>m,wrapInBlock:(m,g)=>m+g},{index:0,level:0,parentType:"text",meta:{}}),f=c.indexOf(a),h=f+a.length;return f>=0?c.substring(h):""}catch(c){throw new Error(`Failed to get mark closing for ${t}: ${c}`)}}getHtmlReopenTags(t){const e=this.getHandlersForNodeType(t),n=e.length>0?e[0]:void 0;return n?.htmlReopen}markSetsEqual(t,e){return t.size!==e.size?!1:Array.from(t.entries()).every(([n,r])=>{const i=e.get(n);return i&&Nl(r.attrs,i.attrs)})}getMarksToOpenForSerialization(t,e,n){const r=zX(t,e);if(r.length<=1)return r;const i=n?.marks||[],s=(f,h)=>i.some(m=>m.type===f&&Nl(m.attrs,h)),a=(f,h)=>{var m,g;const b=(m=this.extensionRanks.get(f.type))!=null?m:Number.MAX_SAFE_INTEGER,v=(g=this.extensionRanks.get(h.type))!=null?g:Number.MAX_SAFE_INTEGER;return b!==v?v-b:f.type.localeCompare(h.type)},u=r.filter(f=>!s(f.type,f.mark.attrs)).sort(a),c=r.filter(f=>s(f.type,f.mark.attrs)).sort(a);return[...u,...c]}},TD=qX,GX=mt.create({name:"markdown",addOptions(){return{indentation:{style:"space",size:2},marked:void 0,markedOptions:{}}},addCommands(){return{setContent:(t,e)=>{if(!e?.contentType||uh(t,e?.contentType)!=="markdown"||!this.editor.markdown)return Cr.setContent(t,e);const r=this.editor.markdown.parse(t);return Cr.setContent(r,e)},insertContent:(t,e)=>{if(!e?.contentType||uh(t,e?.contentType)!=="markdown"||!this.editor.markdown)return Cr.insertContent(t,e);const r=this.editor.markdown.parse(t);return Cr.insertContent(r,e)},insertContentAt:(t,e,n)=>{if(!n?.contentType||uh(e,n?.contentType)!=="markdown"||!this.editor.markdown)return Cr.insertContentAt(t,e,n);const i=this.editor.markdown.parse(e);return Cr.insertContentAt(t,i,n)}}},addStorage(){return{manager:new TD({indentation:this.options.indentation,marked:this.options.marked,markedOptions:this.options.markedOptions,extensions:[]})}},onBeforeCreate(){var t;if(this.editor.markdown){console.error("[tiptap][markdown]: There is already a `markdown` property on the editor instance. This might lead to unexpected behavior.");return}if(this.storage.manager=new TD({indentation:this.options.indentation,marked:this.options.marked,markedOptions:this.options.markedOptions,extensions:this.editor.extensionManager.baseExtensions}),this.editor.markdown=this.storage.manager,this.editor.getMarkdown=()=>this.storage.manager.serialize(this.editor.getJSON()),!this.editor.options.contentType||uh(this.editor.options.content,this.editor.options.contentType)!=="markdown")return;if(!this.editor.markdown)throw new Error('[tiptap][markdown]: The `contentType` option is set to "markdown", but the Markdown extension is not added to the editor. Please add the Markdown extension to use this feature.');if(this.editor.options.content===void 0||typeof this.editor.options.content!="string")throw new Error('[tiptap][markdown]: The `contentType` option is set to "markdown", but the initial content is not a string. Please provide the initial content as a markdown string.');const n=this.editor.markdown.parse(this.editor.options.content);(t=n.content)!=null&&t.length&&(this.editor.options.content=n)}});const{getOwnPropertyNames:WX,getOwnPropertySymbols:QX}=Object,{hasOwnProperty:YX}=Object.prototype;function o4(t,e){return function(r,i,s){return t(r,i,s)&&e(r,i,s)}}function ch(t){return function(n,r,i){if(!n||!r||typeof n!="object"||typeof r!="object")return t(n,r,i);const{cache:s}=i,a=s.get(n),u=s.get(r);if(a&&u)return a===r&&u===n;s.set(n,r),s.set(r,n);const c=t(n,r,i);return s.delete(n),s.delete(r),c}}function XX(t){return t?.[Symbol.toStringTag]}function AD(t){return WX(t).concat(QX(t))}const JX=Object.hasOwn||((t,e)=>YX.call(t,e));function ba(t,e){return t===e||!t&&!e&&t!==t&&e!==e}const ZX="__v",eJ="__o",tJ="_owner",{getOwnPropertyDescriptor:BD,keys:MD}=Object;function nJ(t,e){return t.byteLength===e.byteLength&&Cp(new Uint8Array(t),new Uint8Array(e))}function rJ(t,e,n){let r=t.length;if(e.length!==r)return!1;for(;r-- >0;)if(!n.equals(t[r],e[r],r,r,t,e,n))return!1;return!0}function iJ(t,e){return t.byteLength===e.byteLength&&Cp(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}function sJ(t,e){return ba(t.getTime(),e.getTime())}function oJ(t,e){return t.name===e.name&&t.message===e.message&&t.cause===e.cause&&t.stack===e.stack}function aJ(t,e){return t===e}function RD(t,e,n){const r=t.size;if(r!==e.size)return!1;if(!r)return!0;const i=new Array(r),s=t.entries();let a,u,c=0;for(;(a=s.next())&&!a.done;){const f=e.entries();let h=!1,m=0;for(;(u=f.next())&&!u.done;){if(i[m]){m++;continue}const g=a.value,b=u.value;if(n.equals(g[0],b[0],c,m,t,e,n)&&n.equals(g[1],b[1],g[0],b[0],t,e,n)){h=i[m]=!0;break}m++}if(!h)return!1;c++}return!0}const lJ=ba;function uJ(t,e,n){const r=MD(t);let i=r.length;if(MD(e).length!==i)return!1;for(;i-- >0;)if(!E8(t,e,n,r[i]))return!1;return!0}function Uu(t,e,n){const r=AD(t);let i=r.length;if(AD(e).length!==i)return!1;let s,a,u;for(;i-- >0;)if(s=r[i],!E8(t,e,n,s)||(a=BD(t,s),u=BD(e,s),(a||u)&&(!a||!u||a.configurable!==u.configurable||a.enumerable!==u.enumerable||a.writable!==u.writable)))return!1;return!0}function cJ(t,e){return ba(t.valueOf(),e.valueOf())}function dJ(t,e){return t.source===e.source&&t.flags===e.flags}function ND(t,e,n){const r=t.size;if(r!==e.size)return!1;if(!r)return!0;const i=new Array(r),s=t.values();let a,u;for(;(a=s.next())&&!a.done;){const c=e.values();let f=!1,h=0;for(;(u=c.next())&&!u.done;){if(!i[h]&&n.equals(a.value,u.value,a.value,u.value,t,e,n)){f=i[h]=!0;break}h++}if(!f)return!1}return!0}function Cp(t,e){let n=t.byteLength;if(e.byteLength!==n||t.byteOffset!==e.byteOffset)return!1;for(;n-- >0;)if(t[n]!==e[n])return!1;return!0}function fJ(t,e){return t.hostname===e.hostname&&t.pathname===e.pathname&&t.protocol===e.protocol&&t.port===e.port&&t.hash===e.hash&&t.username===e.username&&t.password===e.password}function E8(t,e,n,r){return(r===tJ||r===eJ||r===ZX)&&(t.$$typeof||e.$$typeof)?!0:JX(e,r)&&n.equals(t[r],e[r],r,r,t,e,n)}const hJ="[object ArrayBuffer]",pJ="[object Arguments]",mJ="[object Boolean]",gJ="[object DataView]",bJ="[object Date]",yJ="[object Error]",vJ="[object Map]",xJ="[object Number]",CJ="[object Object]",EJ="[object RegExp]",kJ="[object Set]",DJ="[object String]",SJ={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float16Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0,"[object BigInt64Array]":!0,"[object BigUint64Array]":!0},wJ="[object URL]",$J=Object.prototype.toString;function TJ({areArrayBuffersEqual:t,areArraysEqual:e,areDataViewsEqual:n,areDatesEqual:r,areErrorsEqual:i,areFunctionsEqual:s,areMapsEqual:a,areNumbersEqual:u,areObjectsEqual:c,arePrimitiveWrappersEqual:f,areRegExpsEqual:h,areSetsEqual:m,areTypedArraysEqual:g,areUrlsEqual:b,unknownTagComparators:v}){return function(E,k,T){if(E===k)return!0;if(E==null||k==null)return!1;const $=typeof E;if($!==typeof k)return!1;if($!=="object")return $==="number"?u(E,k,T):$==="function"?s(E,k,T):!1;const A=E.constructor;if(A!==k.constructor)return!1;if(A===Object)return c(E,k,T);if(Array.isArray(E))return e(E,k,T);if(A===Date)return r(E,k,T);if(A===RegExp)return h(E,k,T);if(A===Map)return a(E,k,T);if(A===Set)return m(E,k,T);const B=$J.call(E);if(B===bJ)return r(E,k,T);if(B===EJ)return h(E,k,T);if(B===vJ)return a(E,k,T);if(B===kJ)return m(E,k,T);if(B===CJ)return typeof E.then!="function"&&typeof k.then!="function"&&c(E,k,T);if(B===wJ)return b(E,k,T);if(B===yJ)return i(E,k,T);if(B===pJ)return c(E,k,T);if(SJ[B])return g(E,k,T);if(B===hJ)return t(E,k,T);if(B===gJ)return n(E,k,T);if(B===mJ||B===xJ||B===DJ)return f(E,k,T);if(v){let P=v[B];if(!P){const M=XX(E);M&&(P=v[M])}if(P)return P(E,k,T)}return!1}}function AJ({circular:t,createCustomConfig:e,strict:n}){let r={areArrayBuffersEqual:nJ,areArraysEqual:n?Uu:rJ,areDataViewsEqual:iJ,areDatesEqual:sJ,areErrorsEqual:oJ,areFunctionsEqual:aJ,areMapsEqual:n?o4(RD,Uu):RD,areNumbersEqual:lJ,areObjectsEqual:n?Uu:uJ,arePrimitiveWrappersEqual:cJ,areRegExpsEqual:dJ,areSetsEqual:n?o4(ND,Uu):ND,areTypedArraysEqual:n?o4(Cp,Uu):Cp,areUrlsEqual:fJ,unknownTagComparators:void 0};if(e&&(r=Object.assign({},r,e(r))),t){const i=ch(r.areArraysEqual),s=ch(r.areMapsEqual),a=ch(r.areObjectsEqual),u=ch(r.areSetsEqual);r=Object.assign({},r,{areArraysEqual:i,areMapsEqual:s,areObjectsEqual:a,areSetsEqual:u})}return r}function BJ(t){return function(e,n,r,i,s,a,u){return t(e,n,u)}}function MJ({circular:t,comparator:e,createState:n,equals:r,strict:i}){if(n)return function(u,c){const{cache:f=t?new WeakMap:void 0,meta:h}=n();return e(u,c,{cache:f,equals:r,meta:h,strict:i})};if(t)return function(u,c){return e(u,c,{cache:new WeakMap,equals:r,meta:void 0,strict:i})};const s={cache:void 0,equals:r,meta:void 0,strict:i};return function(u,c){return e(u,c,s)}}const RJ=eo();eo({strict:!0});eo({circular:!0});eo({circular:!0,strict:!0});eo({createInternalComparator:()=>ba});eo({strict:!0,createInternalComparator:()=>ba});eo({circular:!0,createInternalComparator:()=>ba});eo({circular:!0,createInternalComparator:()=>ba,strict:!0});function eo(t={}){const{circular:e=!1,createInternalComparator:n,createState:r,strict:i=!1}=t,s=AJ(t),a=TJ(s),u=n?n(a):BJ(a);return MJ({circular:e,comparator:a,createState:r,equals:u,strict:i})}var NJ=(...t)=>e=>{t.forEach(n=>{typeof n=="function"?n(e):n&&(n.current=e)})},PJ=({contentComponent:t})=>{const e=g3.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getServerSnapshot);return S.jsx(S.Fragment,{children:Object.values(e)})};function OJ(){const t=new Set;let e={},n=!1;const r=()=>{n||!t.size||(n=!0,queueMicrotask(()=>{n=!1,t.forEach(i=>i())}))};return{subscribe(i){return t.add(i),()=>{t.delete(i)}},getSnapshot(){return e},getServerSnapshot(){return e},setRenderer(i,s){e={...e,[i]:RS.createPortal(s.reactElement,s.element,i)},r()},removeRenderer(i){const s={...e};delete s[i],e=s,r()}}}var LJ=class extends V.Component{constructor(t){super(t),this.editorContentRef=V.createRef()}componentDidMount(){this.init()}componentDidUpdate(){this.init()}init(){var t;const e=this.props.editor;if(e&&!e.isDestroyed&&((t=e.view.dom)!=null&&t.parentNode)){if(e.contentComponent)return;const n=this.editorContentRef.current;n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n}),e.contentComponent=OJ(),e.createNodeViews(),e.isEditorContentInitialized=!0,this.forceUpdate()}}componentWillUnmount(){var t;const e=this.props.editor;if(e){e.isEditorContentInitialized=!1,e.isDestroyed||e.view.setProps({nodeViews:{}}),e.contentComponent=null;try{if(!((t=e.view.dom)!=null&&t.parentNode))return;const n=document.createElement("div");n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n})}catch{}}}render(){const{editor:t,innerRef:e,...n}=this.props;return S.jsxs(S.Fragment,{children:[S.jsx("div",{ref:NJ(e,this.editorContentRef),...n}),t?.contentComponent&&S.jsx(PJ,{contentComponent:t.contentComponent})]})}},zJ=D.forwardRef((t,e)=>{const n=V.useMemo(()=>Math.floor(Math.random()*4294967295).toString(),[t.editor]);return V.createElement(LJ,{key:n,innerRef:e,...t})}),k8=V.memo(zJ),IJ=typeof window<"u"?D.useLayoutEffect:D.useEffect,FJ=class{constructor(t){this.transactionNumber=0,this.lastTransactionNumber=0,this.subscribers=new Set,this.editor=t,this.lastSnapshot={editor:t,transactionNumber:0},this.getSnapshot=this.getSnapshot.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.watch=this.watch.bind(this),this.subscribe=this.subscribe.bind(this)}getSnapshot(){return this.transactionNumber===this.lastTransactionNumber?this.lastSnapshot:(this.lastTransactionNumber=this.transactionNumber,this.lastSnapshot={editor:this.editor,transactionNumber:this.transactionNumber},this.lastSnapshot)}getServerSnapshot(){return{editor:null,transactionNumber:0}}subscribe(t){return this.subscribers.add(t),()=>{this.subscribers.delete(t)}}watch(t){if(this.editor=t,this.editor){let e;const n=i=>{i?.transaction!==void 0&&i.transaction===e||(e=i?.transaction,this.transactionNumber+=1,this.subscribers.forEach(s=>s()))},r=this.editor;return r.on("transaction",n),r.on("update",n),()=>{r.off("transaction",n),r.off("update",n)}}}};function KJ(t){var e;const[n]=D.useState(()=>new FJ(t.editor)),r=MS.useSyncExternalStoreWithSelector(n.subscribe,n.getSnapshot,n.getServerSnapshot,t.selector,(e=t.equalityFn)!=null?e:RJ);return IJ(()=>n.watch(t.editor),[t.editor,n]),D.useDebugValue(r),r}var jJ=!1,D8=typeof window>"u",_J=D8||!!(typeof window<"u"&&window.next),HJ=class S8{constructor(e){this.editor=null,this.subscriptions=new Set,this.isComponentMounted=!1,this.previousDeps=null,this.instanceId="",this.options=e,this.subscriptions=new Set,this.setEditor(this.getInitialEditor()),this.scheduleDestroy(),this.getEditor=this.getEditor.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.subscribe=this.subscribe.bind(this),this.refreshEditorInstance=this.refreshEditorInstance.bind(this),this.scheduleDestroy=this.scheduleDestroy.bind(this),this.onRender=this.onRender.bind(this),this.createEditor=this.createEditor.bind(this)}setEditor(e){this.editor=e,this.instanceId=Math.random().toString(36).slice(2,9),this.subscriptions.forEach(n=>n())}getInitialEditor(){const e=this.options.current.immediatelyRender;let n=e??!0;return D8?(n&&jJ&&console.warn("SSR detected. `immediatelyRender` has been set to false to avoid hydration mismatches"),n=!1):_J&&e===void 0&&(n=!1),n?this.createEditor():null}createEditor(){const e={...this.options.current,onBeforeCreate:(...r)=>{var i,s;return(s=(i=this.options.current).onBeforeCreate)==null?void 0:s.call(i,...r)},onBlur:(...r)=>{var i,s;return(s=(i=this.options.current).onBlur)==null?void 0:s.call(i,...r)},onCreate:(...r)=>{var i,s;return(s=(i=this.options.current).onCreate)==null?void 0:s.call(i,...r)},onDestroy:(...r)=>{var i,s;return(s=(i=this.options.current).onDestroy)==null?void 0:s.call(i,...r)},onFocus:(...r)=>{var i,s;return(s=(i=this.options.current).onFocus)==null?void 0:s.call(i,...r)},onSelectionUpdate:(...r)=>{var i,s;return(s=(i=this.options.current).onSelectionUpdate)==null?void 0:s.call(i,...r)},onTransaction:(...r)=>{var i,s;return(s=(i=this.options.current).onTransaction)==null?void 0:s.call(i,...r)},onUpdate:(...r)=>{var i,s;return(s=(i=this.options.current).onUpdate)==null?void 0:s.call(i,...r)},onContentError:(...r)=>{var i,s;return(s=(i=this.options.current).onContentError)==null?void 0:s.call(i,...r)},onDrop:(...r)=>{var i,s;return(s=(i=this.options.current).onDrop)==null?void 0:s.call(i,...r)},onPaste:(...r)=>{var i,s;return(s=(i=this.options.current).onPaste)==null?void 0:s.call(i,...r)},onDelete:(...r)=>{var i,s;return(s=(i=this.options.current).onDelete)==null?void 0:s.call(i,...r)},onMount:(...r)=>{var i,s;return(s=(i=this.options.current).onMount)==null?void 0:s.call(i,...r)},onUnmount:(...r)=>{var i,s;return(s=(i=this.options.current).onUnmount)==null?void 0:s.call(i,...r)}};return new MQ(e)}getEditor(){return this.editor}getServerSnapshot(){return null}subscribe(e){return this.subscriptions.add(e),()=>{this.subscriptions.delete(e)}}static compareOptions(e,n){return Object.keys(e).every(r=>["onCreate","onBeforeCreate","onDestroy","onUpdate","onTransaction","onFocus","onBlur","onSelectionUpdate","onContentError","onDrop","onPaste"].includes(r)?!0:r==="extensions"&&e.extensions&&n.extensions?e.extensions.length!==n.extensions.length?!1:e.extensions.every((i,s)=>{var a;return i===((a=n.extensions)==null?void 0:a[s])}):e[r]===n[r])}onRender(e){return()=>(this.isComponentMounted=!0,clearTimeout(this.scheduledDestructionTimeout),this.editor&&!this.editor.isDestroyed&&e.length===0?S8.compareOptions(this.options.current,this.editor.options)||this.editor.setOptions({...this.options.current,editable:this.editor.isEditable}):this.refreshEditorInstance(e),()=>{this.isComponentMounted=!1,this.scheduleDestroy()})}refreshEditorInstance(e){if(this.editor&&!this.editor.isDestroyed){if(this.previousDeps===null){this.previousDeps=e;return}if(this.previousDeps.length===e.length&&this.previousDeps.every((r,i)=>r===e[i]))return}this.editor&&!this.editor.isDestroyed&&this.editor.destroy(),this.setEditor(this.createEditor()),this.previousDeps=e}scheduleDestroy(){const e=this.instanceId,n=this.editor;this.scheduledDestructionTimeout=setTimeout(()=>{if(this.isComponentMounted&&this.instanceId===e){n&&n.setOptions(this.options.current);return}n&&!n.isDestroyed&&(n.destroy(),this.instanceId===e&&this.setEditor(null))},1)}};function VJ(t={},e=[]){const n=D.useRef(t);n.current=t;const[r]=D.useState(()=>new HJ(n)),i=g3.useSyncExternalStore(r.subscribe,r.getEditor,r.getServerSnapshot);return D.useDebugValue(i),D.useEffect(r.onRender(e)),KJ({editor:i,selector:({transactionNumber:s})=>t.shouldRerenderOnTransaction===!1||t.shouldRerenderOnTransaction===void 0?null:t.immediatelyRender&&s===0?0:s+1}),i}var w8=D.createContext({editor:null});w8.Consumer;var UJ=D.createContext({onDragStart:()=>{},nodeViewContentChildren:void 0,nodeViewContentRef:()=>{}}),qJ=()=>D.useContext(UJ);V.forwardRef((t,e)=>{const{onDragStart:n}=qJ(),r=t.as||"div";return S.jsx(r,{...t,ref:e,"data-node-view-wrapper":"",onDragStart:n,style:{whiteSpace:"normal",...t.style}})});V.createContext({markViewContentRef:()=>{}});var P1=D.createContext({get editor(){throw new Error("useTiptap must be used within a <Tiptap> provider")}});P1.displayName="TiptapContext";var GJ=()=>D.useContext(P1);function $8({children:t,...e}){const n="editor"in e?e.editor:e.instance;if(!n)throw new Error("Tiptap: An editor instance is required. Pass a non-null `editor` prop.");const r=D.useMemo(()=>({editor:n}),[n]),i=D.useMemo(()=>({editor:n}),[n]);return S.jsx(w8.Provider,{value:i,children:S.jsx(P1.Provider,{value:r,children:t})})}$8.displayName="Tiptap";function T8({...t}){const{editor:e}=GJ();return S.jsx(k8,{editor:e,...t})}T8.displayName="Tiptap.Content";Object.assign($8,{Content:T8});var Ep=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);const{children:n,...r}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,r,n]},WJ=(t,e)=>{var n;const{state:r,view:i}=t,{selection:s}=r;if(!s.empty)return!1;const{$from:a}=s;if(a.parentOffset!==0)return!1;const u=a.depth-1;if(u<0)return!1;const c=a.node(u),f=a.index(u);if(f===0)return!1;if(c.type===e)return t.commands.lift(e.name);const h=c.child(f-1);if(h.type!==e||!((n=h.lastChild)!=null&&n.isTextblock))return!1;const m=a.before(),b=m-1-1,{tr:v}=r;return v.delete(m,a.after()).insert(b,a.parent.content),v.setSelection(De.create(v.doc,b)),i.dispatch(v.scrollIntoView()),!0},QJ=/^\s*>\s$/,YJ=Yn.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return Ep("blockquote",{...Ft(this.options.HTMLAttributes,t),children:Ep("slot",{})})},parseMarkdown:(t,e)=>{var n;const r=(n=e.parseBlockChildren)!=null?n:e.parseChildren;return e.createNode("blockquote",void 0,r(t.tokens||[]))},renderMarkdown:(t,e)=>{if(!t.content)return"";const n=">",r=[];return t.content.forEach((i,s)=>{var a,u;const h=((u=(a=e.renderChild)==null?void 0:a.call(e,i,s))!=null?u:e.renderChildren([i])).split(`
|
|
201
|
-
`).map(m=>m.trim()===""?n:`${n} ${m}`);r.push(h.join(`
|
|
202
|
-
`))}),r.join(`
|
|
203
|
-
${n}
|
|
204
|
-
`)},addCommands(){return{setBlockquote:()=>({commands:t})=>t.wrapIn(this.name),toggleBlockquote:()=>({commands:t})=>t.toggleWrap(this.name),unsetBlockquote:()=>({commands:t})=>t.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote(),Backspace:()=>WJ(this.editor,this.type)}},addInputRules(){return[Pl({find:QJ,type:this.type})]}}),XJ=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,JJ=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,ZJ=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,eZ=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,tZ=ma.create({name:"bold",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:t=>t.style.fontWeight!=="normal"&&null},{style:"font-weight=400",clearMark:t=>t.type.name===this.name},{style:"font-weight",getAttrs:t=>/^(bold(er)?|[5-9]\d{2,})$/.test(t)&&null}]},renderHTML({HTMLAttributes:t}){return Ep("strong",{...Ft(this.options.HTMLAttributes,t),children:Ep("slot",{})})},markdownTokenName:"strong",parseMarkdown:(t,e)=>e.applyMark("bold",e.parseInline(t.tokens||[])),markdownOptions:{htmlReopen:{open:"<strong>",close:"</strong>"}},renderMarkdown:(t,e)=>`**${e.renderChildren(t)}**`,addCommands(){return{setBold:()=>({commands:t})=>t.setMark(this.name),toggleBold:()=>({commands:t})=>t.toggleMark(this.name),unsetBold:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[sa({find:XJ,type:this.type}),sa({find:ZJ,type:this.type})]},addPasteRules(){return[Vs({find:JJ,type:this.type}),Vs({find:eZ,type:this.type})]}}),nZ=t=>{const e=/`([^`]+)`(?!`)$/.exec(t);return!e||e.index>0&&t[e.index-1]==="`"?null:{index:e.index,text:e[0],replaceWith:e[1]}},rZ=t=>{const e=/`([^`]+)`(?!`)/g,n=[];let r;for(;(r=e.exec(t))!==null;)r.index>0&&t[r.index-1]==="`"||n.push({index:r.index,text:r[0],replaceWith:r[1]});return n},iZ=ma.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"codespan",parseMarkdown:(t,e)=>e.applyMark("code",[{type:"text",text:t.text||""}]),renderMarkdown:(t,e)=>t.content?`\`${e.renderChildren(t.content)}\``:"",addCommands(){return{setCode:()=>({commands:t})=>t.setMark(this.name),toggleCode:()=>({commands:t})=>t.toggleMark(this.name),unsetCode:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-e":()=>this.editor.commands.toggleCode()}},addInputRules(){return[sa({find:nZ,type:this.type})]},addPasteRules(){return[Vs({find:rZ,type:this.type})]}}),a4=4,sZ=/^```([a-z]+)?[\s\n]$/,oZ=/^~~~([a-z]+)?[\s\n]$/,aZ=Yn.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,exitOnArrowUp:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:a4,HTMLAttributes:{}}},content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:t=>{var e;const{languageClassPrefix:n}=this.options;if(!n)return null;const s=[...((e=t.firstElementChild)==null?void 0:e.classList)||[]].filter(a=>a.startsWith(n)).map(a=>a.replace(n,""))[0];return s||null},rendered:!1}}},parseHTML(){return[{tag:"pre",preserveWhitespace:"full"}]},renderHTML({node:t,HTMLAttributes:e}){return["pre",Ft(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n,r;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&((r=t.raw)==null?void 0:r.startsWith("~~~"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let r="";const i=((n=t.attrs)==null?void 0:n.language)||"";return t.content?r=[`\`\`\`${i}`,e.renderChildren(t.content),"```"].join(`
|
|
205
|
-
`):r=`\`\`\`${i}
|
|
206
|
-
|
|
207
|
-
\`\`\``,r},addCommands(){return{setCodeBlock:t=>({commands:e})=>e.setNode(this.name,t),toggleCodeBlock:t=>({commands:e})=>e.toggleNode(this.name,"paragraph",t)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{const{empty:t,$anchor:e}=this.editor.state.selection,n=e.pos===1;return!t||e.parent.type.name!==this.name?!1:n||!e.parent.textContent.length?this.editor.commands.clearNodes():!1},Tab:({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:a4,{state:r}=t,{selection:i}=r,{$from:s,empty:a}=i;if(s.parent.type!==this.type)return!1;const u=" ".repeat(n);return a?t.commands.insertContent(u):t.commands.command(({tr:c})=>{const{from:f,to:h}=i,b=r.doc.textBetween(f,h,`
|
|
208
|
-
`,`
|
|
209
|
-
`).split(`
|
|
210
|
-
`).map(v=>u+v).join(`
|
|
211
|
-
`);return c.replaceWith(f,h,r.schema.text(b)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:a4,{state:r}=t,{selection:i}=r,{$from:s,empty:a}=i;return s.parent.type!==this.type?!1:a?t.commands.command(({tr:u})=>{var c;const{pos:f}=s,h=s.start(),m=s.end(),b=r.doc.textBetween(h,m,`
|
|
212
|
-
`,`
|
|
213
|
-
`).split(`
|
|
214
|
-
`);let v=0,C=0;const E=f-h;for(let P=0;P<b.length;P+=1){if(C+b[P].length>=E){v=P;break}C+=b[P].length+1}const T=((c=b[v].match(/^ */))==null?void 0:c[0])||"",$=Math.min(T.length,n);if($===0)return!0;let A=h;for(let P=0;P<v;P+=1)A+=b[P].length+1;return u.delete(A,A+$),f-A<=$&&u.setSelection(De.create(u.doc,A)),!0}):t.commands.command(({tr:u})=>{const{from:c,to:f}=i,g=r.doc.textBetween(c,f,`
|
|
215
|
-
`,`
|
|
216
|
-
`).split(`
|
|
217
|
-
`).map(b=>{var v;const C=((v=b.match(/^ */))==null?void 0:v[0])||"",E=Math.min(C.length,n);return b.slice(E)}).join(`
|
|
218
|
-
`);return u.replaceWith(c,f,r.schema.text(g)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:e}=t,{selection:n}=e,{$from:r,empty:i}=n;if(!i||r.parent.type!==this.type)return!1;const s=r.parentOffset===r.parent.nodeSize-2,a=r.parent.textContent.endsWith(`
|
|
219
|
-
|
|
220
|
-
`);return!s||!a?!1:t.chain().command(({tr:u})=>(u.delete(r.pos-2,r.pos),!0)).exitCode().run()},ArrowUp:({editor:t})=>{if(!this.options.exitOnArrowUp)return!1;const{state:e}=t,{selection:n}=e,{$from:r,empty:i}=n;if(!i||r.parent.type!==this.type||r.parentOffset!==0)return!1;const s=r.before();return s>0?!1:t.commands.insertDefaultBlock({pos:s})},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;const{state:e}=t,{selection:n,doc:r}=e,{$from:i,empty:s}=n;if(!s||i.parent.type!==this.type||!(i.parentOffset===i.parent.nodeSize-2))return!1;const u=i.after();return u===void 0?!1:r.nodeAt(u)?t.commands.command(({tr:f})=>(f.setSelection(Me.near(r.resolve(u))),!0)):t.commands.exitCode()}}},addInputRules(){return[Ty({find:sZ,type:this.type,getAttributes:t=>({language:t[1]})}),Ty({find:oZ,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new pt({key:new Kt("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;const n=e.clipboardData.getData("text/plain"),r=e.clipboardData.getData("vscode-editor-data"),i=r?JSON.parse(r):void 0,s=i?.mode;if(!n||!s)return!1;const{tr:a,schema:u}=t.state,c=u.text(n.replace(/\r\n?/g,`
|
|
221
|
-
`));return a.replaceSelectionWith(this.type.create({language:s},c)),a.selection.$from.parent.type!==this.type&&a.setSelection(De.near(a.doc.resolve(Math.max(0,a.selection.from-2)))),a.setMeta("paste",!0),t.dispatch(a),!0}}})]}}),lZ=Yn.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
|
|
222
|
-
|
|
223
|
-
`):""}),uZ=Yn.create({name:"hardBreak",markdownTokenName:"br",addOptions(){return{keepMarks:!0,HTMLAttributes:{}}},inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML(){return[{tag:"br"}]},renderHTML({HTMLAttributes:t}){return["br",Ft(this.options.HTMLAttributes,t)]},renderText(){return`
|
|
224
|
-
`},renderMarkdown:()=>`
|
|
225
|
-
`,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:r})=>t.first([()=>t.exitCode(),()=>t.command(()=>{const{selection:i,storedMarks:s}=n;if(i.$from.parent.type.spec.isolating)return!1;const{keepMarks:a}=this.options,{splittableMarks:u}=r.extensionManager,c=s||i.$to.parentOffset&&i.$from.marks();return e().insertContent({type:this.name}).command(({tr:f,dispatch:h})=>{if(h&&c&&a){const m=c.filter(g=>u.includes(g.type.name));f.ensureMarks(m)}return!0}).scrollIntoView().run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),cZ=Yn.create({name:"heading",addOptions(){return{levels:[1,2,3,4,5,6],HTMLAttributes:{}}},content:"inline*",group:"block",defining:!0,addAttributes(){return{level:{default:1,rendered:!1}}},parseHTML(){return this.options.levels.map(t=>({tag:`h${t}`,attrs:{level:t}}))},renderHTML({node:t,HTMLAttributes:e}){return[`h${this.options.levels.includes(t.attrs.level)?t.attrs.level:this.options.levels[0]}`,Ft(this.options.HTMLAttributes,e),0]},parseMarkdown:(t,e)=>e.createNode("heading",{level:t.depth||1},e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>{var n;const r=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,i="#".repeat(r);return t.content?`${i} ${e.renderChildren(t.content)}`:""},addCommands(){return{setHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.setNode(this.name,t):!1,toggleHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.toggleNode(this.name,"paragraph",t):!1}},addKeyboardShortcuts(){return this.options.levels.reduce((t,e)=>({...t,[`Mod-Alt-${e}`]:()=>this.editor.commands.toggleHeading({level:e})}),{})},addInputRules(){return this.options.levels.map(t=>Ty({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),dZ=Yn.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",Ft(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!uQ(e,e.schema.nodes[this.name]))return!1;const{selection:n}=e,{$to:r}=n,i=t();return E7(n)?i.insertContentAt(r.pos,{type:this.name}):i.insertContent({type:this.name}),i.command(({state:s,tr:a,dispatch:u})=>{if(u){const{$to:c}=a.selection,f=c.end();if(c.nodeAfter)c.nodeAfter.isTextblock?a.setSelection(De.create(a.doc,c.pos+1)):c.nodeAfter.isBlock?a.setSelection(Ce.create(a.doc,c.pos)):a.setSelection(De.create(a.doc,c.pos));else{const h=s.schema.nodes[this.options.nextNodeType]||c.parent.type.contentMatch.defaultType,m=h?.create();m&&(a.insert(f,m),a.setSelection(De.create(a.doc,f+1)))}a.scrollIntoView()}return!0}).run()}}},addInputRules(){return[RQ({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),fZ=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,hZ=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,pZ=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,mZ=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,gZ=ma.create({name:"italic",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:t=>t.style.fontStyle!=="normal"&&null},{style:"font-style=normal",clearMark:t=>t.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:t}){return["em",Ft(this.options.HTMLAttributes,t),0]},addCommands(){return{setItalic:()=>({commands:t})=>t.setMark(this.name),toggleItalic:()=>({commands:t})=>t.toggleMark(this.name),unsetItalic:()=>({commands:t})=>t.unsetMark(this.name)}},markdownTokenName:"em",parseMarkdown:(t,e)=>e.applyMark("italic",e.parseInline(t.tokens||[])),markdownOptions:{htmlReopen:{open:"<em>",close:"</em>"}},renderMarkdown:(t,e)=>`*${e.renderChildren(t)}*`,addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[sa({find:fZ,type:this.type}),sa({find:pZ,type:this.type})]},addPasteRules(){return[Vs({find:hZ,type:this.type}),Vs({find:mZ,type:this.type})]}});const bZ="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2odyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rck0msd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2oodside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",yZ="ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2",Ly="numeric",zy="ascii",Iy="alpha",bc="asciinumeric",sc="alphanumeric",Fy="domain",A8="emoji",vZ="scheme",xZ="slashscheme",l4="whitespace";function CZ(t,e){return t in e||(e[t]=[]),e[t]}function Ko(t,e,n){e[Ly]&&(e[bc]=!0,e[sc]=!0),e[zy]&&(e[bc]=!0,e[Iy]=!0),e[bc]&&(e[sc]=!0),e[Iy]&&(e[sc]=!0),e[sc]&&(e[Fy]=!0),e[A8]&&(e[Fy]=!0);for(const r in e){const i=CZ(r,n);i.indexOf(t)<0&&i.push(t)}}function EZ(t,e){const n={};for(const r in e)e[r].indexOf(t)>=0&&(n[r]=!0);return n}function Pn(t=null){this.j={},this.jr=[],this.jd=null,this.t=t}Pn.groups={};Pn.prototype={accepts(){return!!this.t},go(t){const e=this,n=e.j[t];if(n)return n;for(let r=0;r<e.jr.length;r++){const i=e.jr[r][0],s=e.jr[r][1];if(s&&i.test(t))return s}return e.jd},has(t,e=!1){return e?t in this.j:!!this.go(t)},ta(t,e,n,r){for(let i=0;i<t.length;i++)this.tt(t[i],e,n,r)},tr(t,e,n,r){r=r||Pn.groups;let i;return e&&e.j?i=e:(i=new Pn(e),n&&r&&Ko(e,n,r)),this.jr.push([t,i]),i},ts(t,e,n,r){let i=this;const s=t.length;if(!s)return i;for(let a=0;a<s-1;a++)i=i.tt(t[a]);return i.tt(t[s-1],e,n,r)},tt(t,e,n,r){r=r||Pn.groups;const i=this;if(e&&e.j)return i.j[t]=e,e;const s=e;let a,u=i.go(t);if(u?(a=new Pn,Object.assign(a.j,u.j),a.jr.push.apply(a.jr,u.jr),a.jd=u.jd,a.t=u.t):a=new Pn,s){if(r)if(a.t&&typeof a.t=="string"){const c=Object.assign(EZ(a.t,r),n);Ko(s,c,r)}else n&&Ko(s,n,r);a.t=s}return i.j[t]=a,a}};const Re=(t,e,n,r,i)=>t.ta(e,n,r,i),vt=(t,e,n,r,i)=>t.tr(e,n,r,i),PD=(t,e,n,r,i)=>t.ts(e,n,r,i),ce=(t,e,n,r,i)=>t.tt(e,n,r,i),Ei="WORD",Ky="UWORD",B8="ASCIINUMERICAL",M8="ALPHANUMERICAL",qc="LOCALHOST",jy="TLD",_y="UTLD",Mh="SCHEME",fl="SLASH_SCHEME",O1="NUM",Hy="WS",L1="NL",yc="OPENBRACE",vc="CLOSEBRACE",kp="OPENBRACKET",Dp="CLOSEBRACKET",Sp="OPENPAREN",wp="CLOSEPAREN",$p="OPENANGLEBRACKET",Tp="CLOSEANGLEBRACKET",Ap="FULLWIDTHLEFTPAREN",Bp="FULLWIDTHRIGHTPAREN",Mp="LEFTCORNERBRACKET",Rp="RIGHTCORNERBRACKET",Np="LEFTWHITECORNERBRACKET",Pp="RIGHTWHITECORNERBRACKET",Op="FULLWIDTHLESSTHAN",Lp="FULLWIDTHGREATERTHAN",zp="AMPERSAND",Ip="APOSTROPHE",Fp="ASTERISK",Cs="AT",Kp="BACKSLASH",jp="BACKTICK",_p="CARET",jo="COLON",z1="COMMA",Hp="DOLLAR",jr="DOT",Vp="EQUALS",I1="EXCLAMATION",lr="HYPHEN",xc="PERCENT",Up="PIPE",qp="PLUS",Gp="POUND",Cc="QUERY",F1="QUOTE",R8="FULLWIDTHMIDDLEDOT",K1="SEMI",_r="SLASH",Ec="TILDE",Wp="UNDERSCORE",N8="EMOJI",Qp="SYM";var P8=Object.freeze({__proto__:null,ALPHANUMERICAL:M8,AMPERSAND:zp,APOSTROPHE:Ip,ASCIINUMERICAL:B8,ASTERISK:Fp,AT:Cs,BACKSLASH:Kp,BACKTICK:jp,CARET:_p,CLOSEANGLEBRACKET:Tp,CLOSEBRACE:vc,CLOSEBRACKET:Dp,CLOSEPAREN:wp,COLON:jo,COMMA:z1,DOLLAR:Hp,DOT:jr,EMOJI:N8,EQUALS:Vp,EXCLAMATION:I1,FULLWIDTHGREATERTHAN:Lp,FULLWIDTHLEFTPAREN:Ap,FULLWIDTHLESSTHAN:Op,FULLWIDTHMIDDLEDOT:R8,FULLWIDTHRIGHTPAREN:Bp,HYPHEN:lr,LEFTCORNERBRACKET:Mp,LEFTWHITECORNERBRACKET:Np,LOCALHOST:qc,NL:L1,NUM:O1,OPENANGLEBRACKET:$p,OPENBRACE:yc,OPENBRACKET:kp,OPENPAREN:Sp,PERCENT:xc,PIPE:Up,PLUS:qp,POUND:Gp,QUERY:Cc,QUOTE:F1,RIGHTCORNERBRACKET:Rp,RIGHTWHITECORNERBRACKET:Pp,SCHEME:Mh,SEMI:K1,SLASH:_r,SLASH_SCHEME:fl,SYM:Qp,TILDE:Ec,TLD:jy,UNDERSCORE:Wp,UTLD:_y,UWORD:Ky,WORD:Ei,WS:Hy});const vi=/[a-z]/,qu=new RegExp("\\p{L}","u"),u4=new RegExp("\\p{Emoji}","u"),xi=/\d/,c4=/\s/,OD="\r",d4=`
|
|
226
|
-
`,kZ="️",DZ="",f4="";let dh=null,fh=null;function SZ(t=[]){const e={};Pn.groups=e;const n=new Pn;dh==null&&(dh=LD(bZ)),fh==null&&(fh=LD(yZ)),ce(n,"'",Ip),ce(n,"{",yc),ce(n,"}",vc),ce(n,"[",kp),ce(n,"]",Dp),ce(n,"(",Sp),ce(n,")",wp),ce(n,"<",$p),ce(n,">",Tp),ce(n,"(",Ap),ce(n,")",Bp),ce(n,"「",Mp),ce(n,"」",Rp),ce(n,"『",Np),ce(n,"』",Pp),ce(n,"<",Op),ce(n,">",Lp),ce(n,"&",zp),ce(n,"*",Fp),ce(n,"@",Cs),ce(n,"`",jp),ce(n,"^",_p),ce(n,":",jo),ce(n,",",z1),ce(n,"$",Hp),ce(n,".",jr),ce(n,"=",Vp),ce(n,"!",I1),ce(n,"-",lr),ce(n,"%",xc),ce(n,"|",Up),ce(n,"+",qp),ce(n,"#",Gp),ce(n,"?",Cc),ce(n,'"',F1),ce(n,"/",_r),ce(n,";",K1),ce(n,"~",Ec),ce(n,"_",Wp),ce(n,"\\",Kp),ce(n,"・",R8);const r=vt(n,xi,O1,{[Ly]:!0});vt(r,xi,r);const i=vt(r,vi,B8,{[bc]:!0}),s=vt(r,qu,M8,{[sc]:!0}),a=vt(n,vi,Ei,{[zy]:!0});vt(a,xi,i),vt(a,vi,a),vt(i,xi,i),vt(i,vi,i);const u=vt(n,qu,Ky,{[Iy]:!0});vt(u,vi),vt(u,xi,s),vt(u,qu,u),vt(s,xi,s),vt(s,vi),vt(s,qu,s);const c=ce(n,d4,L1,{[l4]:!0}),f=ce(n,OD,Hy,{[l4]:!0}),h=vt(n,c4,Hy,{[l4]:!0});ce(n,f4,h),ce(f,d4,c),ce(f,f4,h),vt(f,c4,h),ce(h,OD),ce(h,d4),vt(h,c4,h),ce(h,f4,h);const m=vt(n,u4,N8,{[A8]:!0});ce(m,"#"),vt(m,u4,m),ce(m,kZ,m);const g=ce(m,DZ);ce(g,"#"),vt(g,u4,m);const b=[[vi,a],[xi,i]],v=[[vi,null],[qu,u],[xi,s]];for(let C=0;C<dh.length;C++)ms(n,dh[C],jy,Ei,b);for(let C=0;C<fh.length;C++)ms(n,fh[C],_y,Ky,v);Ko(jy,{tld:!0,ascii:!0},e),Ko(_y,{utld:!0,alpha:!0},e),ms(n,"file",Mh,Ei,b),ms(n,"mailto",Mh,Ei,b),ms(n,"http",fl,Ei,b),ms(n,"https",fl,Ei,b),ms(n,"ftp",fl,Ei,b),ms(n,"ftps",fl,Ei,b),Ko(Mh,{scheme:!0,ascii:!0},e),Ko(fl,{slashscheme:!0,ascii:!0},e),t=t.sort((C,E)=>C[0]>E[0]?1:-1);for(let C=0;C<t.length;C++){const E=t[C][0],T=t[C][1]?{[vZ]:!0}:{[xZ]:!0};E.indexOf("-")>=0?T[Fy]=!0:vi.test(E)?xi.test(E)?T[bc]=!0:T[zy]=!0:T[Ly]=!0,PD(n,E,E,T)}return PD(n,"localhost",qc,{ascii:!0}),n.jd=new Pn(Qp),{start:n,tokens:Object.assign({groups:e},P8)}}function O8(t,e){const n=wZ(e.replace(/[A-Z]/g,u=>u.toLowerCase())),r=n.length,i=[];let s=0,a=0;for(;a<r;){let u=t,c=null,f=0,h=null,m=-1,g=-1;for(;a<r&&(c=u.go(n[a]));)u=c,u.accepts()?(m=0,g=0,h=u):m>=0&&(m+=n[a].length,g++),f+=n[a].length,s+=n[a].length,a++;s-=m,a-=g,f-=m,i.push({t:h.t,v:e.slice(s-f,s),s:s-f,e:s})}return i}function wZ(t){const e=[],n=t.length;let r=0;for(;r<n;){let i=t.charCodeAt(r),s,a=i<55296||i>56319||r+1===n||(s=t.charCodeAt(r+1))<56320||s>57343?t[r]:t.slice(r,r+2);e.push(a),r+=a.length}return e}function ms(t,e,n,r,i){let s;const a=e.length;for(let u=0;u<a-1;u++){const c=e[u];t.j[c]?s=t.j[c]:(s=new Pn(r),s.jr=i.slice(),t.j[c]=s),t=s}return s=new Pn(n),s.jr=i.slice(),t.j[e[a-1]]=s,s}function LD(t){const e=[],n=[];let r=0,i="0123456789";for(;r<t.length;){let s=0;for(;i.indexOf(t[r+s])>=0;)s++;if(s>0){e.push(n.join(""));for(let a=parseInt(t.substring(r,r+s),10);a>0;a--)n.pop();r+=s}else n.push(t[r]),r++}return e}const Gc={defaultProtocol:"http",events:null,format:zD,formatHref:zD,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function j1(t,e=null){let n=Object.assign({},Gc);t&&(n=Object.assign(n,t instanceof j1?t.o:t));const r=n.ignoreTags,i=[];for(let s=0;s<r.length;s++)i.push(r[s].toUpperCase());this.o=n,e&&(this.defaultRender=e),this.ignoreTags=i}j1.prototype={o:Gc,ignoreTags:[],defaultRender(t){return t},check(t){return this.get("validate",t.toString(),t)},get(t,e,n){const r=e!=null;let i=this.o[t];return i&&(typeof i=="object"?(i=n.t in i?i[n.t]:Gc[t],typeof i=="function"&&r&&(i=i(e,n))):typeof i=="function"&&r&&(i=i(e,n.t,n)),i)},getObj(t,e,n){let r=this.o[t];return typeof r=="function"&&e!=null&&(r=r(e,n.t,n)),r},render(t){const e=t.render(this);return(this.get("render",null,t)||this.defaultRender)(e,t.t,t)}};function zD(t){return t}function L8(t,e){this.t="token",this.v=t,this.tk=e}L8.prototype={isLink:!1,toString(){return this.v},toHref(t){return this.toString()},toFormattedString(t){const e=this.toString(),n=t.get("truncate",e,this),r=t.get("format",e,this);return n&&r.length>n?r.substring(0,n)+"…":r},toFormattedHref(t){return t.get("formatHref",this.toHref(t.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(t=Gc.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(t),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(t){return{type:this.t,value:this.toFormattedString(t),isLink:this.isLink,href:this.toFormattedHref(t),start:this.startIndex(),end:this.endIndex()}},validate(t){return t.get("validate",this.toString(),this)},render(t){const e=this,n=this.toHref(t.get("defaultProtocol")),r=t.get("formatHref",n,this),i=t.get("tagName",n,e),s=this.toFormattedString(t),a={},u=t.get("className",n,e),c=t.get("target",n,e),f=t.get("rel",n,e),h=t.getObj("attributes",n,e),m=t.getObj("events",n,e);return a.href=r,u&&(a.class=u),c&&(a.target=c),f&&(a.rel=f),h&&Object.assign(a,h),{tagName:i,attributes:a,content:s,eventListeners:m}}};function zm(t,e){class n extends L8{constructor(i,s){super(i,s),this.t=t}}for(const r in e)n.prototype[r]=e[r];return n.t=t,n}const $Z=zm("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),ID=zm("text"),TZ=zm("nl"),hh=zm("url",{isLink:!0,toHref(t=Gc.defaultProtocol){return this.hasProtocol()?this.v:`${t}://${this.v}`},hasProtocol(){const t=this.tk;return t.length>=2&&t[0].t!==qc&&t[1].t===jo}}),ar=t=>new Pn(t);function AZ({groups:t}){const e=t.domain.concat([zp,Fp,Cs,Kp,jp,_p,Hp,Vp,lr,O1,xc,Up,qp,Gp,_r,Qp,Ec,Wp]),n=[Ip,jo,z1,jr,I1,xc,Cc,F1,K1,$p,Tp,yc,vc,Dp,kp,Sp,wp,Ap,Bp,Mp,Rp,Np,Pp,Op,Lp],r=[zp,Ip,Fp,Kp,jp,_p,Hp,Vp,lr,yc,vc,xc,Up,qp,Gp,Cc,_r,Qp,Ec,Wp],i=ar(),s=ce(i,Ec);Re(s,r,s),Re(s,t.domain,s);const a=ar(),u=ar(),c=ar();Re(i,t.domain,a),Re(i,t.scheme,u),Re(i,t.slashscheme,c),Re(a,r,s),Re(a,t.domain,a);const f=ce(a,Cs);ce(s,Cs,f),ce(u,Cs,f),ce(c,Cs,f);const h=ce(s,jr);Re(h,r,s),Re(h,t.domain,s);const m=ar();Re(f,t.domain,m),Re(m,t.domain,m);const g=ce(m,jr);Re(g,t.domain,m);const b=ar($Z);Re(g,t.tld,b),Re(g,t.utld,b),ce(f,qc,b);const v=ce(m,lr);ce(v,lr,v),Re(v,t.domain,m),Re(b,t.domain,m),ce(b,jr,g),ce(b,lr,v);const C=ce(a,lr),E=ce(a,jr);ce(C,lr,C),Re(C,t.domain,a),Re(E,r,s),Re(E,t.domain,a);const k=ar(hh);Re(E,t.tld,k),Re(E,t.utld,k),Re(k,t.domain,a),Re(k,r,s),ce(k,jr,E),ce(k,lr,C),ce(k,Cs,f);const T=ce(k,jo),$=ar(hh);Re(T,t.numeric,$);const A=ar(hh),B=ar();Re(A,e,A),Re(A,n,B),Re(B,e,A),Re(B,n,B),ce(k,_r,A),ce($,_r,A);const P=ce(u,jo),M=ce(c,jo),N=ce(M,_r),I=ce(N,_r);Re(u,t.domain,a),ce(u,jr,E),ce(u,lr,C),Re(c,t.domain,a),ce(c,jr,E),ce(c,lr,C),Re(P,t.domain,A),ce(P,_r,A),ce(P,Cc,A),Re(I,t.domain,A),Re(I,e,A),ce(I,_r,A);const F=[[yc,vc],[kp,Dp],[Sp,wp],[$p,Tp],[Ap,Bp],[Mp,Rp],[Np,Pp],[Op,Lp]];for(let J=0;J<F.length;J++){const[q,ie]=F[J],K=ce(A,q);ce(B,q,K);const te=ar(hh);Re(K,e,te);const O=ar();Re(K,n,O),ce(K,ie,A),Re(te,e,te),Re(te,n,O),Re(O,e,te),Re(O,n,O),ce(te,ie,A),ce(O,ie,A)}return ce(i,qc,k),ce(i,L1,TZ),{start:i,tokens:P8}}function BZ(t,e,n){let r=n.length,i=0,s=[],a=[];for(;i<r;){let u=t,c=null,f=null,h=0,m=null,g=-1;for(;i<r&&!(c=u.go(n[i].t));)a.push(n[i++]);for(;i<r&&(f=c||u.go(n[i].t));)c=null,u=f,u.accepts()?(g=0,m=u):g>=0&&g++,i++,h++;if(g<0)i-=h,i<r&&(a.push(n[i]),i++);else{a.length>0&&(s.push(h4(ID,e,a)),a=[]),i-=g,h-=g;const b=m.t,v=n.slice(i-h,i);s.push(h4(b,e,v))}}return a.length>0&&s.push(h4(ID,e,a)),s}function h4(t,e,n){const r=n[0].s,i=n[n.length-1].e,s=e.slice(r,i);return new t(s,n)}const MZ=typeof console<"u"&&console&&console.warn||(()=>{}),RZ="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",dt={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function NZ(){return Pn.groups={},dt.scanner=null,dt.parser=null,dt.tokenQueue=[],dt.pluginQueue=[],dt.customSchemes=[],dt.initialized=!1,dt}function FD(t,e=!1){if(dt.initialized&&MZ(`linkifyjs: already initialized - will not register custom scheme "${t}" ${RZ}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(t))throw new Error(`linkifyjs: incorrect scheme format.
|
|
227
|
-
1. Must only contain digits, lowercase ASCII letters or "-"
|
|
228
|
-
2. Cannot start or end with "-"
|
|
229
|
-
3. "-" cannot repeat`);dt.customSchemes.push([t,e])}function PZ(){dt.scanner=SZ(dt.customSchemes);for(let t=0;t<dt.tokenQueue.length;t++)dt.tokenQueue[t][1]({scanner:dt.scanner});dt.parser=AZ(dt.scanner.tokens);for(let t=0;t<dt.pluginQueue.length;t++)dt.pluginQueue[t][1]({scanner:dt.scanner,parser:dt.parser});return dt.initialized=!0,dt}function _1(t){return dt.initialized||PZ(),BZ(dt.parser.start,t,O8(dt.scanner.start,t))}_1.scan=O8;function z8(t,e=null,n=null){if(e&&typeof e=="object"){if(n)throw Error(`linkifyjs: Invalid link type ${e}; must be a string`);n=e,e=null}const r=new j1(n),i=_1(t),s=[];for(let a=0;a<i.length;a++){const u=i[a];u.isLink&&(!e||u.t===e)&&r.check(u)&&s.push(u.toFormattedObject(r))}return s}var H1="[\0- -\u2029 ]",OZ=new RegExp(H1),LZ=new RegExp(`${H1}$`),zZ=new RegExp(H1,"g");function IZ(t){return t.length===1?t[0].isLink:t.length===3&&t[1].isLink?["()","[]"].includes(t[0].value+t[2].value):!1}function FZ(t){return new pt({key:new Kt("autolink"),appendTransaction:(e,n,r)=>{const i=e.some(f=>f.docChanged)&&!n.doc.eq(r.doc),s=e.some(f=>f.getMeta("preventAutolink"));if(!i||s)return;const{tr:a}=r,u=p7(n.doc,[...e]);if(m1(u).forEach(({newRange:f})=>{const h=EW(r.doc,f,b=>b.isTextblock);let m,g;if(h.length>1)m=h[0],g=r.doc.textBetween(m.pos,m.pos+m.node.nodeSize,void 0," ");else if(h.length){const b=r.doc.textBetween(f.from,f.to," "," ");if(!LZ.test(b))return;m=h[0],g=r.doc.textBetween(m.pos,f.to,void 0," ")}if(m&&g){const b=g.split(OZ).filter(Boolean);if(b.length<=0)return!1;const v=b[b.length-1],C=m.pos+g.lastIndexOf(v);if(!v)return!1;const E=_1(v).map(k=>k.toObject(t.defaultProtocol));if(!IZ(E))return!1;E.filter(k=>k.isLink).map(k=>({...k,from:C+k.start+1,to:C+k.end+1})).filter(k=>r.schema.marks.code?!r.doc.rangeHasMark(k.from,k.to,r.schema.marks.code):!0).filter(k=>t.validate(k.value)).filter(k=>t.shouldAutoLink(k.value)).forEach(k=>{g1(k.from,k.to,r.doc).some(T=>T.mark.type===t.type)||a.addMark(k.from,k.to,t.type.create({href:k.href}))})}}),!!a.steps.length)return a}})}function KZ(t){return new pt({key:new Kt("handleClickLink"),props:{handleClick:(e,n,r)=>{var i,s;if(r.button!==0||!e.editable)return!1;let a=null;if(r.target instanceof HTMLAnchorElement)a=r.target;else{const c=r.target;if(!c)return!1;const f=t.editor.view.dom;a=c.closest("a"),a&&!f.contains(a)&&(a=null)}if(!a)return!1;let u=!1;if(t.enableClickSelection&&(u=t.editor.commands.extendMarkRange(t.type.name)),t.openOnClick){const c=C7(e.state,t.type.name),f=(i=a.href)!=null?i:c.href,h=(s=a.target)!=null?s:c.target;f&&(window.open(f,h),u=!0)}return u}}})}var jZ=/\[([^[\]]+)\]\(((?:[^\s()]|\([^\s()]*\))+)(?:\s+(?:(["'])(.*?)\3|“(.*?)”|‘(.*?)’))?\)$/,_Z=/\[([^[\]]+)\]\(((?:[^\s()]|\([^\s()]*\))+)(?:\s+(?:(["'])(.*?)\3|“(.*?)”|‘(.*?)’))?\)/g;function I8(t,e){let n=0;for(let r=e-1;r>=0&&t[r]==="\\";r-=1)n+=1;return n%2===1}function HZ(t,e){let n=0,r=0;for(;r<e;){if(t[r]!=="`"){r+=1;continue}if(n===0&&I8(t,r)){r+=1;continue}let i=0;for(;r<e&&t[r]==="`";)i+=1,r+=1;n===0?n=i:i===n&&(n=0)}return n>0}function F8(t,e,n){var r,i;const[,s,a]=e;return(e.index?t[e.index-1]:void 0)==="!"||I8(t,(r=e.index)!=null?r:0)||HZ(t,(i=e.index)!=null?i:0)?!1:!!s.trim()&&n(a)}function K8(t){var e,n;const[r,i,s,,a,u,c]=t,f=(e=a??u)!=null?e:c;return{index:(n=t.index)!=null?n:0,text:r,replaceWith:i,data:{href:s,title:f||null,markdown:!0}}}function VZ(t,e){return t.index<e.index+e.text.length&&e.index<t.index+t.text.length}function j8(t){var e,n,r;return{href:(e=t.data)==null?void 0:e.href,title:(r=(n=t.data)==null?void 0:n.title)!=null?r:null}}function UZ(t){const e=sa({find:n=>{const r=jZ.exec(n);return!r||!F8(n,r,t.isAllowedHref)?null:K8(r)},type:t.type,getAttributes:j8});return new gd({find:e.find,handler:n=>{const r=e.handler(n);return r!==null&&n.state.tr.steps.length&&n.state.tr.setMeta("preventAutolink",!0),r}})}function qZ(t){const e=Vs({find:n=>{var r,i;const s=[];for(const u of n.matchAll(_Z))F8(n,u,t.isAllowedHref)&&s.push(K8(u));const a=((i=(r=t.findPlainUrls)==null?void 0:r.call(t,n))!=null?i:[]).filter(u=>!s.some(c=>VZ(c,u)));return[...s,...a]},type:t.type,getAttributes:j8});return new T7({find:e.find,handler:n=>{var r;const i=e.handler(n);return i!==null&&n.state.tr.steps.length&&((r=n.match.data)!=null&&r.markdown)&&n.state.tr.setMeta("preventAutolink",!0),i}})}function GZ(t){return new pt({key:new Kt("handlePasteLink"),props:{handlePaste:(e,n,r)=>{const{shouldAutoLink:i}=t,{state:s}=e,{selection:a}=s,{empty:u}=a;if(u)return!1;let c="";r.content.forEach(h=>{c+=h.textContent});const f=z8(c,{defaultProtocol:t.defaultProtocol}).find(h=>h.isLink&&h.value===c);return!c||!f||i!==void 0&&!i(f.value)?!1:t.editor.commands.setMark(t.type,{href:f.href})}}})}function Ci(t,e){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(r=>{const i=typeof r=="string"?r:r.scheme;i&&n.push(i)}),!t||t.replace(zZ,"").match(new RegExp(`^(?:(?:${n.map(r=>r.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")).join("|")}):|[^a-z]|[a-z0-9+.\\-]+(?:[^a-z+.\\-:]|$))`,"i"))}var WZ=ma.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate,console.warn("The `validate` option is deprecated. Rename to the `shouldAutoLink` option instead.")),this.options.protocols.forEach(t=>{if(typeof t=="string"){FD(t);return}FD(t.scheme,t.optionalSlashes)})},onDestroy(){NZ()},inclusive(){return this.options.autolink},addOptions(){return{openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,markdownLinks:!1,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(t,e)=>!!Ci(t,e.protocols),validate:t=>!!t,shouldAutoLink:t=>{const e=/^[a-z][a-z0-9+.-]*:\/\//i.test(t),n=/^[a-z][a-z0-9+.-]*:/i.test(t);if(e||n&&!t.includes("@"))return!0;const i=(t.includes("@")?t.split("@").pop():t).split(/[/?#:]/)[0];return!(/^\d{1,3}(\.\d{1,3}){3}$/.test(i)||!/\./.test(i))}}},addAttributes(){var t,e,n;return{href:{default:null,parseHTML(r){return r.getAttribute("href")}},target:{default:(t=this.options.HTMLAttributes.target)!=null?t:null},rel:{default:(e=this.options.HTMLAttributes.rel)!=null?e:null},class:{default:(n=this.options.HTMLAttributes.class)!=null?n:null},title:{default:null}}},parseHTML(){return[{tag:"a[href]",getAttrs:t=>{const e=t.getAttribute("href");return!e||!this.options.isAllowedUri(e,{defaultValidate:n=>!!Ci(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:null}}]},renderHTML({HTMLAttributes:t}){return this.options.isAllowedUri(t.href,{defaultValidate:e=>!!Ci(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",Ft(this.options.HTMLAttributes,t),0]:["a",Ft(this.options.HTMLAttributes,{...t,href:""}),0]},markdownTokenName:"link",parseMarkdown:(t,e)=>e.applyMark("link",e.parseInline(t.tokens||[]),{href:t.href,title:t.title||null}),renderMarkdown:(t,e)=>{var n,r,i,s;const a=(r=(n=t.attrs)==null?void 0:n.href)!=null?r:"",u=(s=(i=t.attrs)==null?void 0:i.title)!=null?s:"",c=e.renderChildren(t);return u?`[${c}](${a} "${u}")`:`[${c}](${a})`},addCommands(){return{setLink:t=>({chain:e})=>{const{href:n}=t;return this.options.isAllowedUri(n,{defaultValidate:r=>!!Ci(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?e().setMark(this.name,t).setMeta("preventAutolink",!0).run():!1},toggleLink:t=>({chain:e})=>{const{href:n}=t||{};return n&&!this.options.isAllowedUri(n,{defaultValidate:r=>!!Ci(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:e().toggleMark(this.name,t,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:t})=>t().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addInputRules(){return this.options.markdownLinks?[UZ({type:this.type,isAllowedHref:t=>this.options.isAllowedUri(t,{defaultValidate:e=>!!Ci(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})})]:[]},addPasteRules(){const t=e=>{const n=[];if(e){const{protocols:r,defaultProtocol:i}=this.options;z8(e).filter(a=>a.isLink&&this.options.isAllowedUri(a.value,{defaultValidate:u=>!!Ci(u,r),protocols:r,defaultProtocol:i})).forEach(a=>{this.options.shouldAutoLink(a.value)&&n.push({text:a.value,data:{href:a.href},index:a.start})})}return n};return this.options.markdownLinks?[qZ({type:this.type,isAllowedHref:e=>this.options.isAllowedUri(e,{defaultValidate:n=>!!Ci(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol}),findPlainUrls:t})]:[Vs({find:t,type:this.type,getAttributes:e=>{var n;return{href:(n=e.data)==null?void 0:n.href}}})]},addProseMirrorPlugins(){const t=[],{protocols:e,defaultProtocol:n}=this.options;return this.options.autolink&&t.push(FZ({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:r=>this.options.isAllowedUri(r,{defaultValidate:i=>!!Ci(i,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(KZ({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(GZ({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),ph=" ",p4=" ",QZ=Yn.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",Ft(this.options.HTMLAttributes,t),0]},parseMarkdown:(t,e)=>{const n=t.tokens||[];if(n.length===1&&n[0].type==="image")return e.parseChildren([n[0]]);const r=e.parseInline(n);return n.length===1&&n[0].type==="text"&&(n[0].raw===ph||n[0].text===ph||n[0].raw===p4||n[0].text===p4)&&r.length===1&&r[0].type==="text"&&(r[0].text===ph||r[0].text===p4)?e.createNode("paragraph",void 0,[]):e.createNode("paragraph",void 0,r)},renderMarkdown:(t,e,n)=>{var r,i;if(!t)return"";const s=Array.isArray(t.content)?t.content:[];if(s.length===0){const a=Array.isArray((r=n?.previousNode)==null?void 0:r.content)?n.previousNode.content:[];return((i=n?.previousNode)==null?void 0:i.type)==="paragraph"&&a.length===0?ph:""}return e.renderChildren(s)},addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),YZ=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,XZ=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,JZ=ma.create({name:"strike",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("line-through")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["s",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"del",parseMarkdown:(t,e)=>e.applyMark("strike",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`~~${e.renderChildren(t)}~~`,addCommands(){return{setStrike:()=>({commands:t})=>t.setMark(this.name),toggleStrike:()=>({commands:t})=>t.toggleMark(this.name),unsetStrike:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[sa({find:YZ,type:this.type})]},addPasteRules(){return[Vs({find:XZ,type:this.type})]}}),ZZ=Yn.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),eee=ma.create({name:"underline",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("underline")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["u",Ft(this.options.HTMLAttributes,t),0]},parseMarkdown(t,e){return e.applyMark(this.name||"underline",e.parseInline(t.tokens||[]))},renderMarkdown(t,e){return`++${e.renderChildren(t)}++`},markdownTokenizer:{name:"underline",level:"inline",start(t){return t.indexOf("++")},tokenize(t,e,n){const i=/^(\+\+)([\s\S]+?)(\+\+)/.exec(t);if(!i)return;const s=i[2].trim();return{type:"underline",raw:i[0],text:s,tokens:n.inlineTokens(s)}}},addCommands(){return{setUnderline:()=>({commands:t})=>t.setMark(this.name),toggleUnderline:()=>({commands:t})=>t.toggleMark(this.name),unsetUnderline:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}}),tee=mt.create({name:"starterKit",addExtensions(){var t,e,n,r;const i=[];return this.options.bold!==!1&&i.push(tZ.configure(this.options.bold)),this.options.blockquote!==!1&&i.push(YJ.configure(this.options.blockquote)),this.options.bulletList!==!1&&i.push(_7.configure(this.options.bulletList)),this.options.code!==!1&&i.push(iZ.configure(this.options.code)),this.options.codeBlock!==!1&&i.push(aZ.configure(this.options.codeBlock)),this.options.document!==!1&&i.push(lZ.configure(this.options.document)),this.options.dropcursor!==!1&&i.push(TY.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&i.push(AY.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&i.push(uZ.configure(this.options.hardBreak)),this.options.heading!==!1&&i.push(cZ.configure(this.options.heading)),this.options.undoRedo!==!1&&i.push(UY.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&i.push(dZ.configure(this.options.horizontalRule)),this.options.italic!==!1&&i.push(gZ.configure(this.options.italic)),this.options.listItem!==!1&&i.push(G7.configure(this.options.listItem)),this.options.listKeymap!==!1&&i.push(X7.configure((t=this.options)==null?void 0:t.listKeymap)),this.options.link!==!1&&i.push(WZ.configure((e=this.options)==null?void 0:e.link)),this.options.orderedList!==!1&&i.push(Z7.configure(this.options.orderedList)),this.options.paragraph!==!1&&i.push(QZ.configure(this.options.paragraph)),this.options.strike!==!1&&i.push(JZ.configure(this.options.strike)),this.options.text!==!1&&i.push(ZZ.configure(this.options.text)),this.options.underline!==!1&&i.push(eee.configure((n=this.options)==null?void 0:n.underline)),this.options.trailingNode!==!1&&i.push(VY.configure((r=this.options)==null?void 0:r.trailingNode)),i}}),nee=tee;function Rh({defaultValue:t="",editable:e=!0,placeholder:n="",ariaLabel:r,autoFocus:i=!1,className:s,onBlur:a,onChange:u,onSubmit:c,ref:f}){const h=D.useRef({onBlur:a,onChange:u,onSubmit:c});h.current={onBlur:a,onChange:u,onSubmit:c};const m=D.useRef(""),[g]=D.useState(()=>[nee.configure({underline:!1,link:{openOnClick:!1}}),t8,e8.configure({nested:!0}),GX,FY.configure({placeholder:n}),mt.create({name:"submitKeymap",addKeyboardShortcuts(){return{"Mod-Enter":()=>h.current.onSubmit?(h.current.onSubmit(),!0):!1}}})]),b=VJ({extensions:g,content:t,contentType:"markdown",editable:e,autofocus:i,editorProps:{attributes:{class:pe("typeset min-w-0 [--typeset-size:0.875rem]",s),...r?{"aria-label":r}:{}}},onCreate({editor:v}){m.current=v.getMarkdown()},onUpdate({editor:v}){h.current.onChange?.(v.getMarkdown())},onBlur({editor:v}){const C=v.getMarkdown();C!==m.current&&(m.current=C,h.current.onBlur?.(C))}});return D.useImperativeHandle(f,()=>({getMarkdown:()=>b?.getMarkdown()??"",clear:()=>{b?.commands.clearContent(!0),m.current=b?.getMarkdown()??""},focus:()=>b?.commands.focus()}),[b]),S.jsx(k8,{editor:b,"data-slot":"rich-text-editor"})}const xl="h-7 gap-1.5 self-start rounded-full pr-2.5 pl-1.5 font-normal";function _8({status:t,onChange:e,variant:n="ghost",className:r}){const[i,s]=D.useState(!1);return S.jsxs(od,{isOpen:i,onOpenChange:s,children:[S.jsxs(Xe,{variant:n,size:"sm","aria-label":"Status",className:pe(xl,r),children:[S.jsx(Wr,{status:t,className:"size-3.5"}),Ai[t]]}),S.jsx(ad,{className:"w-56",children:S.jsxs(sd,{children:[S.jsx(ld,{flush:!0,placeholder:"Change status"}),S.jsx(ud,{selectionMode:"single",selectedKeys:[t],onAction:a=>{s(!1),e(a)},children:S.jsx(wl,{children:js.map(a=>S.jsxs(Wo,{id:a,textValue:Ai[a],children:[S.jsx(Wr,{status:a,className:"size-3.5"}),Ai[a]]},a))})})]})})]})}const mh=`${xl} self-auto`;function ree({open:t,onOpenChange:e,onCreated:n,allTasks:r}){const{project:i}=Mr(),[s,a]=D.useState(""),[u,c]=D.useState(""),f=D.useRef(null),[h,m]=D.useState("todo"),[g,b]=D.useState(null),[v,C]=D.useState([]),[E,k]=D.useState(!1),[T,$]=D.useState(null),A=()=>{const B=s.trim();B&&($(null),a_({title:B,description:u.trim(),status:h,milestone:g,tags:v,needsHuman:E}).then(()=>{a(""),c(""),f.current?.clear(),m("todo"),b(null),C([]),k(!1),e(!1),n()}).catch(P=>$(P.message)))};return S.jsxs(iV,{isOpen:t,onOpenChange:e,showCloseButton:!1,className:"gap-0 p-0 sm:max-w-2xl",children:[S.jsxs("div",{className:"flex items-center gap-1.5 px-4 pt-4 pb-2",children:[S.jsx("span",{className:"rounded-md bg-muted px-1.5 py-0.5 text-xs",children:i?.prefix??"…"}),S.jsx("span",{className:"text-muted-foreground",children:"›"}),S.jsx(sV,{children:"New task"}),S.jsxs(vM,{variant:"ghost",size:"icon-sm",className:"ml-auto text-muted-foreground",children:[S.jsx(id,{}),S.jsx("span",{className:"sr-only",children:"Close"})]})]}),S.jsx("div",{className:"px-4",children:S.jsx(xM,{"aria-label":"Title",autoFocus:!0,value:s,onChange:B=>a(B.target.value),onKeyDown:B=>{B.key==="Enter"&&A()},placeholder:"Task title",className:"h-auto border-transparent bg-transparent px-0 py-1 text-lg font-medium shadow-none focus-visible:border-transparent focus-visible:ring-0 md:text-lg"})}),S.jsx("div",{className:"px-4 pt-1",children:S.jsx(Rh,{ref:f,ariaLabel:"Description",defaultValue:u,onChange:c,onSubmit:A,placeholder:"Add description…",className:"min-h-24"})}),S.jsxs("div",{className:"flex flex-wrap items-center gap-1.5 px-4 pt-3 pb-4",children:[S.jsx(_8,{status:h,onChange:m,variant:"outline",className:mh}),S.jsx(qr,{label:"Milestone",mode:"single",options:vm(r),value:g?[g]:[],onChange:B=>b(B[0]??null),placeholder:"Milestone",chevron:!1,className:mh,renderValue:B=>S.jsxs(S.Fragment,{children:[S.jsx(sy,{className:"size-3.5 text-muted-foreground"}),S.jsx("span",{className:pe("truncate",B.length===0&&"text-muted-foreground"),children:B[0]??"Milestone"})]})}),S.jsx(qr,{label:"Tags",mode:"multiple",options:ym(r),value:v,onChange:C,placeholder:"Tags",chevron:!1,className:mh,renderValue:B=>S.jsxs(S.Fragment,{children:[S.jsx(rp,{className:"size-3.5 text-muted-foreground"}),S.jsx("span",{className:pe("truncate",B.length===0&&"text-muted-foreground"),children:B.length>0?B.join(", "):"Tags"})]})}),S.jsxs(Xe,{variant:"outline",size:"sm","aria-pressed":E,onPress:()=>k(!E),className:pe(mh,E&&"border-amber-500/40"),children:[S.jsx(Sl,{className:pe("size-3.5",E?"text-amber-500":"text-muted-foreground")}),S.jsx("span",{className:E?"text-amber-600 dark:text-amber-400":"text-muted-foreground",children:"Needs a human"})]})]}),T&&S.jsx("p",{className:"px-4 pb-3 text-sm whitespace-pre-wrap text-destructive",children:T}),S.jsx("div",{className:"flex justify-end border-t px-4 py-3",children:S.jsx(Xe,{size:"sm",onPress:A,isDisabled:!s.trim(),children:"Create task"})})]})}function Dt({className:t}){return S.jsx("div",{className:pe("skeleton rounded-sm",t)})}const KD=["w-4/5","w-3/5","w-11/12","w-2/3"],jD=[3,2,3,1,2],_D=["w-64","w-96","w-52","w-80","w-72","w-60"];function iee({index:t}){return S.jsxs("article",{className:"rounded-2xl bg-card p-3 shadow-xs ring-1 ring-foreground/5 dark:ring-foreground/10",children:[S.jsx(Dt,{className:"h-3 w-12"}),S.jsxs("div",{className:"mt-2.5 space-y-1.5",children:[S.jsx(Dt,{className:"h-3.5 w-full"}),S.jsx(Dt,{className:pe("h-3.5",KD[t%KD.length])})]}),S.jsxs("div",{className:"mt-3 flex items-center gap-1.5",children:[S.jsx(Dt,{className:"h-4 w-12 rounded-full"}),t%2===0&&S.jsx(Dt,{className:"h-4 w-16 rounded-full"}),S.jsx(Dt,{className:"ml-auto h-3 w-8"})]})]})}function see({visibleStatuses:t}){const e=js.filter(n=>t.includes(n));return S.jsx("div",{"aria-hidden":!0,className:"flex flex-1 gap-3 overflow-x-auto p-4",children:e.map((n,r)=>S.jsxs("section",{className:"flex w-72 shrink-0 flex-col rounded-3xl bg-muted/50",children:[S.jsxs("header",{className:"flex items-center gap-2 px-4 pt-3 pb-2",children:[S.jsx(Wr,{status:n}),S.jsx("h2",{className:"text-sm font-medium",children:Ai[n]})]}),S.jsx("div",{className:"flex min-h-16 flex-1 flex-col gap-2 overflow-hidden px-2 pb-2",children:Array.from({length:jD[r%jD.length]}).map((i,s)=>S.jsx(iee,{index:r+s},s))})]},n))})}function oee(){return S.jsx("div",{"aria-hidden":!0,className:"flex min-h-0 flex-1 flex-col pt-2",children:S.jsx("div",{className:"flex-1 overflow-hidden px-2.5 pb-4",children:Array.from({length:12}).map((t,e)=>S.jsxs("div",{className:"flex h-5 items-center gap-2.5 px-6 py-2.5 box-content",children:[S.jsx(Dt,{className:"h-3 w-16 shrink-0"}),S.jsx(Dt,{className:"size-3.5 shrink-0 rounded-full"}),S.jsx(Dt,{className:pe("h-3.5 max-w-full min-w-0 shrink",_D[e%_D.length])}),S.jsxs("div",{className:"ml-auto flex shrink-0 items-center gap-1.5 pl-3",children:[e%3!==1&&S.jsx(Dt,{className:"h-4 w-14 rounded-full"}),e%4===0&&S.jsx(Dt,{className:"h-4 w-10 rounded-full"}),S.jsx(Dt,{className:"h-3 w-8"})]})]},e))})})}function H8(){return S.jsx("main",{"aria-hidden":!0,className:"min-w-0 flex-1 overflow-y-auto",children:S.jsxs("div",{className:"mx-auto flex w-full max-w-6xl items-start gap-20 px-8 pt-16 pb-10",children:[S.jsxs("div",{className:"flex min-w-0 max-w-3xl flex-1 flex-col gap-6",children:[S.jsx(Dt,{className:"my-1 h-7 w-2/3"}),S.jsxs("div",{className:"flex flex-col gap-2.5",children:[S.jsx(Dt,{className:"h-3.5 w-full"}),S.jsx(Dt,{className:"h-3.5 w-11/12"}),S.jsx(Dt,{className:"h-3.5 w-3/4"}),S.jsx(Dt,{className:"h-3.5 w-1/2"})]})]}),S.jsxs("aside",{className:"flex w-64 shrink-0 flex-col gap-1.5 pt-2 max-lg:hidden",children:[S.jsx(Dt,{className:"mb-1 h-3 w-16"}),S.jsx(Dt,{className:"h-7 w-32 rounded-md"}),S.jsx(Dt,{className:"h-7 w-24 rounded-md"}),S.jsx(Dt,{className:"h-7 w-28 rounded-md"})]})]})})}function aee({view:t,visibleStatuses:e}){return t==="board"?S.jsx(see,{visibleStatuses:e}):S.jsx(oee,{})}const lee={view:"board",boardColumns:["backlog","todo","in_progress","done"]};function HD(t,e,n){const r=()=>{try{const u=localStorage.getItem(t);return u==null?e:n(JSON.parse(u))??e}catch{return e}},[i,s]=D.useState(()=>({key:t,value:r()}));i.key!==t&&s({key:t,value:r()});const a=u=>{s({key:t,value:u});try{localStorage.setItem(t,JSON.stringify(u))}catch{}};return[i.value,a]}function V8(t){return typeof t=="string"&&js.includes(t)}function uee(t){if(typeof t!="object"||t===null)return null;const{view:e,boardColumns:n}=t;return e!=="board"&&e!=="list"||!Array.isArray(n)?null:{view:e,boardColumns:n.filter(V8)}}function cee(t){if(typeof t!="object"||t===null)return null;const{statuses:e,tags:n,milestone:r,needsHuman:i}=t;return!Array.isArray(e)||!Array.isArray(n)||r!==null&&typeof r!="string"||typeof i!="boolean"?null:{statuses:e.filter(V8),tags:n.filter(s=>typeof s=="string"),milestone:r,needsHuman:i}}function dee(){const t=Li(),e=Xp(),n=qs({strict:!1}),i=zS()({to:"/"})!==!1,s=f_(),a=s.data,u=a??[],c=n.board??u[0]?.id??null,f=h_(c),h=f.data??null,m=p_(c),g=m.data??[],b=s.error??f.error??m.error,[v,C]=HD("task-ui:view",lee,uee),[E,k]=HD(`task-ui:filters:${c??""}`,wM,cee),[T,$]=D.useState(!1);D.useEffect(()=>o_(F=>{const J=gm()??void 0;(F===void 0||J===void 0||F===J)&&(e.invalidateQueries({queryKey:["tasks"]}),e.invalidateQueries({queryKey:["task"]}))}),[e]),D.useEffect(()=>{!a||!n.board||a.some(F=>F.id===n.board)||t({to:"/",search:n.ref?{ref:n.ref}:{},replace:!0})},[a,n.board,n.ref,t]);const A=F=>{F!==c&&t({to:"/",search:{...F===u[0]?.id?{}:{board:F},...n.ref?{ref:n.ref}:{}}})},B=h?h.readOnly??!1:null,P=!b&&(B===null||m.isPending),[M,N]=D.useState(!1);B===!1&&!M&&N(!0);const I=B===!1||B===null&&M;return S.jsxs(CM.Provider,{value:{project:h,tasks:g,boards:u,board:c,switchBoard:A,filters:E,setFilters:k,settings:v,setSettings:C,readOnly:B??!0,failed:b!=null},children:[S.jsxs("div",{className:"flex h-dvh flex-col bg-background",children:[S.jsxs("header",{className:"flex h-14 shrink-0 items-center gap-4 border-b px-4",children:[S.jsx(fV,{}),S.jsxs("div",{className:"ml-auto flex shrink-0 items-center gap-1.5",children:[i&&S.jsxs(S.Fragment,{children:[S.jsx(kV,{}),S.jsx(yV,{})]}),I&&S.jsxs(Xe,{size:"sm",className:"ml-1.5",isDisabled:P,onPress:()=>$(!0),children:[S.jsx(bm,{"data-icon":"inline-start"}),"New task"]})]})]}),i&&$M(E)&&S.jsx(EV,{}),b?S.jsx(uH,{error:b}):P?i?S.jsx(aee,{view:v.view,visibleStatuses:v.boardColumns}):S.jsx(H8,{}):S.jsx(LS,{})]}),S.jsx(ree,{open:T,onOpenChange:$,onCreated:()=>{e.invalidateQueries({queryKey:["tasks"]})},allTasks:g})]})}function fee({error:t}){return S.jsx("div",{className:"flex min-h-[60dvh] flex-1 items-center justify-center bg-background px-6",children:S.jsxs("div",{className:"w-full max-w-sm text-center",children:[S.jsx("h1",{className:"text-lg font-medium",children:"Something went wrong"}),S.jsx("p",{className:"mt-2 text-sm text-muted-foreground",children:"The board hit an error it couldn’t recover from. Reloading usually clears it."}),S.jsx(Xe,{variant:"secondary",className:"mt-6",onPress:()=>location.reload(),children:"Reload"}),t instanceof Error&&t.message&&S.jsx("p",{className:"mt-4 text-xs break-words text-muted-foreground/60",children:t.message})]})})}function hee(){return S.jsx("div",{className:"flex min-h-[60dvh] flex-1 items-center justify-center bg-background px-6",children:S.jsxs("div",{className:"w-full max-w-sm text-center",children:[S.jsx("h1",{className:"text-lg font-medium",children:"Nothing here"}),S.jsx("p",{className:"mt-2 text-sm text-muted-foreground",children:"This page doesn’t exist on this board."})]})})}const VD=fa("group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-3xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!",{variants:{variant:{default:"bg-primary text-primary-foreground [a]:hover:bg-primary/80",secondary:"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",destructive:"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",outline:"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",ghost:"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",link:"text-primary underline-offset-4 hover:underline"}},defaultVariants:{variant:"default"}});function Yp({className:t,variant:e="default",render:n,...r}){if(n){const i={"data-slot":"badge","data-variant":e,className:pe(VD({variant:e}),t),...r};return n(i)}return S.jsx("span",{"data-slot":"badge","data-variant":e,className:pe(VD({variant:e}),t),...r})}function pee({"data-slot":t="context-menu-content",placement:e="bottom start",offset:n=4,crossOffset:r=0,className:i,children:s,...a}){return S.jsx(pm,{"data-slot":t,placement:e,offset:n,crossOffset:r,className:pe("z-50 w-(--trigger-width) min-w-48 origin-(--trigger-anchor-point) overflow-x-hidden overflow-y-auto rounded-3xl bg-popover p-1.5 text-popover-foreground shadow-lg ring-1 ring-foreground/5 duration-100 outline-none data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:overflow-hidden data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 **:data-[slot$=-item]:data-focused:bg-foreground/10 dark:ring-foreground/10",i),children:S.jsx(P3,{className:"max-h-[inherit] overflow-x-hidden overflow-y-auto outline-hidden",...a,children:s})})}const mee=500,gee=10;function U8({children:t,className:e,onOpenChange:n,...r}){const[i,s]=D.useState(null),a=D.useRef(null),u=D.useRef(null),c=D.useRef(!1),f=D.useCallback(()=>{u.current&&(clearTimeout(u.current.timer),u.current=null)},[]);D.useEffect(()=>f,[f]);const h=(m,g)=>{const b=i!==null;s({x:m,y:g}),b||n?.(!0)};return S.jsxs(N3,{"data-slot":"context-menu",...r,isOpen:!!i,onOpenChange:m=>{m||(s(null),n?.(!1))},children:[i&&aa.createPortal(S.jsx("div",{"data-slot":"context-menu-anchor",ref:a,style:{position:"fixed",top:i.y,left:i.x}}),document.body),S.jsx("div",{"data-slot":"context-menu-trigger",className:pe("contents select-none [-webkit-touch-callout:none]",e),onContextMenu:m=>{m.preventDefault(),f(),h(m.clientX,m.clientY)},onPointerDown:m=>{if(c.current=!1,m.pointerType==="mouse")return;f();const g=m.target,{clientX:b,clientY:v,pointerId:C}=m;u.current={x:b,y:v,timer:setTimeout(()=>{u.current=null,c.current=!0,g.dispatchEvent(new PointerEvent("pointercancel",{pointerId:C,bubbles:!0})),h(b,v)},mee)}},onPointerMove:m=>{const g=u.current;g&&Math.hypot(m.clientX-g.x,m.clientY-g.y)>gee&&f()},onPointerUp:f,onPointerCancel:f,onClickCapture:m=>{c.current&&(c.current=!1,m.preventDefault(),m.stopPropagation())},children:S.jsx(Oc.Consumer,{children:m=>S.jsx(Oc.Provider,{value:{...m,...i,triggerRef:a,style:void 0},children:t})})})]})}const bee=fa("group/context-menu-item relative flex cursor-default items-center outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",{variants:{selectionMode:{none:"gap-2.5 rounded-2xl px-3 py-2 text-sm font-medium focus:bg-accent focus:text-accent-foreground data-inset:pl-9.5 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg:not([class*='size-'])]:size-4 focus:*:[svg]:text-accent-foreground data-[variant=destructive]:*:[svg]:text-destructive",single:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4",multiple:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4"}}});function UD({className:t,inset:e,variant:n="default",children:r,...i}){return S.jsx(O3,{"data-slot":"context-menu-item","data-inset":e,"data-variant":n,textValue:typeof r=="string"?r:i.textValue,className:zs(t,(s,{selectionMode:a})=>pe(bee({selectionMode:a}),s)),...i,children:zs(r,(s,{isSelected:a,selectionMode:u})=>S.jsxs(S.Fragment,{children:[u!=="none"?S.jsx("span",{className:"pointer-events-none absolute right-2","data-slot":u==="single"?"context-menu-radio-item-indicator":"context-menu-checkbox-item-indicator",children:a?S.jsx(rd,{}):null}):null,s]}))})}function q8({task:t}){const e=EM();return S.jsxs(pee,{"aria-label":`Actions for ${t.id}`,className:"w-44",children:[S.jsxs(UD,{onAction:()=>oy(e(t)),children:[S.jsx(yM,{}),"Copy link"]}),S.jsxs(UD,{onAction:()=>oy(t.id),children:[S.jsx(PH,{}),"Copy ID"]})]})}const m4=1024;function G8(t,e){return t!==void 0&&e!==void 0?(t+e)/2:t!==void 0?t+m4:e!==void 0?e-m4:m4}function yee(t){const e=new Date(t),n={month:"short",day:"numeric"};return e.getFullYear()!==new Date().getFullYear()&&(n.year="numeric"),e.toLocaleDateString("en-US",n)}function Vy(t){const e=Math.max(0,(Date.now()-Date.parse(t))/1e3);return e<60?"now":e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h`:`${Math.floor(e/86400)}d`}function vee({tasks:t,visibleStatuses:e,onOpen:n,onMove:r,readOnly:i=!1}){const[s,a]=D.useState(null),u=D.useRef(null),c=js.filter(m=>e.includes(m)).map(m=>({status:m,tasks:t.filter(g=>g.status===m)}));function f(m,g){const b=Array.from(m.currentTarget.closest("[data-column]").querySelectorAll("[data-card]"));let v=b.length;for(let C=0;C<b.length;C++){const E=b[C].getBoundingClientRect();if(m.clientY<E.top+E.height/2){v=C;break}}return{status:g,index:v}}function h(m,g){m.preventDefault();const b=u.current??Number(m.dataTransfer.getData("text/plain")),v=s?.status===g.status?s:f(m,g.status);if(a(null),u.current=null,!b)return;let C=v.index;const E=g.tasks.findIndex($=>$.number===b);E>=0&&C>E&&(C-=1);const k=g.tasks.filter($=>$.number!==b),T=G8(k[C-1]?.position,k[C]?.position);r(b,g.status,T)}return S.jsx("div",{className:"flex flex-1 gap-3 overflow-x-auto p-4",onDragEnd:()=>a(null),children:c.map(m=>S.jsxs("section",{"data-column":!0,className:pe("flex w-72 shrink-0 flex-col rounded-3xl bg-muted/50 transition-colors",s?.status===m.status&&"bg-muted"),onDragOver:i?void 0:g=>{g.preventDefault(),g.dataTransfer.dropEffect="move",a(f(g,m.status))},onDragLeave:g=>{g.currentTarget.contains(g.relatedTarget)||a(null)},onDrop:i?void 0:g=>h(g,m),children:[S.jsxs("header",{className:"flex items-center gap-2 px-4 pt-3 pb-2",children:[S.jsx(Wr,{status:m.status}),S.jsx("h2",{className:"text-sm font-medium",children:Ai[m.status]}),S.jsx("span",{className:"text-xs text-muted-foreground",children:m.tasks.length})]}),S.jsxs("div",{className:"flex min-h-16 flex-1 flex-col gap-2 overflow-y-auto px-2 pb-2",children:[m.tasks.map((g,b)=>S.jsxs("div",{children:[S.jsx(qD,{visible:s?.status===m.status&&s.index===b}),S.jsx(xee,{task:g,onOpen:n,draggable:!i,onDragStart:v=>{u.current=g.number,v.dataTransfer.effectAllowed="move",v.dataTransfer.setData("text/plain",String(g.number))}})]},g.number)),S.jsx(qD,{visible:s?.status===m.status&&s.index===m.tasks.length}),m.tasks.length===0&&S.jsx("p",{className:"px-2 pt-1 text-xs text-muted-foreground/70",children:"No tasks"})]})]},m.status))})}function qD({visible:t}){return S.jsx("div",{className:pe("mx-1 h-0.5 rounded-full bg-primary/60 opacity-0 transition-opacity",t&&"opacity-100")})}function xee({task:t,onOpen:e,draggable:n,onDragStart:r}){const{tasks:i}=Mr();return S.jsxs(U8,{children:[S.jsxs("article",{"data-card":!0,draggable:n,onDragStart:r,onClick:()=>e(t),className:pe("cursor-pointer rounded-2xl bg-card p-3 shadow-xs ring-1 ring-foreground/5 transition-shadow select-none hover:shadow-sm dark:ring-foreground/10",n&&"active:cursor-grabbing"),children:[S.jsxs("div",{className:"flex items-center justify-between gap-2",children:[S.jsx("span",{className:"text-xs text-muted-foreground",children:t.id}),S.jsxs("span",{className:"flex items-center gap-1",children:[XB(t,i)&&S.jsx(kM,{}),t.needsHuman&&S.jsx(DM,{})]})]}),S.jsx("p",{className:"mt-1 text-sm leading-snug font-medium",children:t.title}),(t.tags.length>0||t.milestone||t.commentCount>0||t.prs.length>0)&&S.jsxs("div",{className:"mt-2 flex flex-wrap items-center gap-1.5",children:[t.tags.map(s=>S.jsx(Yp,{variant:"outline",children:s},s)),t.milestone&&S.jsx(Yp,{variant:"secondary",className:"max-w-32 truncate",children:t.milestone}),t.prs.length>0&&S.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-foreground",children:[S.jsx(V3,{className:"size-3"}),t.prs.length]}),t.commentCount>0&&S.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-foreground",children:[S.jsx(UH,{className:"size-3"}),t.commentCount]}),S.jsx("span",{className:"ml-auto text-[11px] text-muted-foreground/70",children:Vy(t.updatedAt)})]})]}),S.jsx(q8,{task:t})]})}function Cee({className:t,...e}){return S.jsx(uj,{"data-slot":"grid-list",className:pe("flex w-full flex-col outline-none","data-empty:items-center data-empty:justify-center data-empty:py-10 data-empty:text-sm data-empty:text-muted-foreground","data-drop-target:bg-muted/40",t),...e})}function Eee({className:t,...e}){return S.jsx(dj,{"data-slot":"grid-list-item",className:pe("relative flex items-center gap-2 border-b px-3 py-2 text-sm outline-none transition-colors","data-hovered:bg-muted/50 data-selected:bg-muted","data-focus-visible:z-10 data-focus-visible:ring-2 data-focus-visible:ring-ring data-focus-visible:ring-inset","data-disabled:pointer-events-none data-disabled:opacity-50","data-dragging:opacity-50","data-drop-target:bg-primary/5","data-href:cursor-pointer",t),...e})}function kee({className:t,...e}){return S.jsx(Y$,{"data-slot":"grid-list-drop-indicator",className:pe("relative z-10 h-0 w-full outline-none data-drop-target:outline-1 data-drop-target:outline-primary",t),...e})}function Dee({tasks:t,taskHref:e,onReorder:n,readOnly:r=!1}){const{tasks:i}=Mr(),{dragAndDropHooks:s}=e_({getItems:a=>[...a].map(u=>({"text/plain":String(u)})),onReorder(a){const u=Number([...a.keys][0]),c=t.filter(h=>h.number!==u);let f=c.findIndex(h=>h.number===a.target.key);f<0||(a.target.dropPosition==="after"&&(f+=1),n(u,G8(c[f-1]?.position,c[f]?.position)))},renderDropIndicator:a=>S.jsx(kee,{target:a})});return S.jsx(Cee,{"aria-label":"Tasks",items:t,dragAndDropHooks:r?void 0:s,renderEmptyState:()=>r?"No tasks on this board yet.":"No tasks yet — press New task, or `task add` in a terminal.",className:"flex-1 overflow-y-auto px-2.5 pb-4",children:a=>S.jsx(Eee,{id:a.number,textValue:a.title,href:e(a),className:"group gap-2.5 rounded-lg border-0 px-6 py-2.5",children:S.jsxs(U8,{children:[!r&&S.jsx(_$,{slot:"drag","aria-label":`Reorder ${a.id}`,className:"absolute top-1/2 left-0.5 flex size-5 -translate-y-1/2 cursor-grab items-center justify-center rounded-sm text-muted-foreground/60 opacity-0 outline-none transition-opacity group-hover:opacity-100 focus-visible:opacity-100 focus-visible:ring-2 focus-visible:ring-ring",children:S.jsx(RH,{className:"size-3.5"})}),S.jsx("span",{className:"w-16 shrink-0 text-xs text-muted-foreground",children:a.id}),S.jsx(Wr,{status:a.status}),S.jsx("span",{className:"truncate font-medium",children:a.title}),XB(a,i)&&S.jsx(kM,{}),a.needsHuman&&S.jsx(DM,{}),S.jsxs("span",{className:"ml-auto flex shrink-0 items-center gap-1.5 pl-3",children:[a.tags.map(u=>S.jsx(Yp,{variant:"outline",children:u},u)),a.milestone&&S.jsx(Yp,{variant:"secondary",className:"max-w-32 truncate",children:a.milestone}),a.prs.length>0&&S.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-foreground",children:[S.jsx(V3,{className:"size-3"}),a.prs.length]}),S.jsx("span",{className:"w-12 text-right text-xs text-muted-foreground",children:yee(a.createdAt)})]}),S.jsx(q8,{task:a})]})})})}function See(){const{tasks:t,board:e,filters:n,settings:r,readOnly:i}=Mr(),s=Li(),a=Xp(),u=qs({strict:!1}),c=CV(t,n),f=g=>{s({to:"/task/$number",params:{number:String(g.number)},search:b=>b})},h=(g,b,v)=>{a.setQueryData(["tasks",e,da()],C=>C?.map(E=>E.number===g?{...E,status:b,position:v}:E)),eM(g,{status:b,position:v}).then(()=>a.invalidateQueries({queryKey:["tasks",e]}))},m=g=>{const b=new URLSearchParams;return u.board&&b.set("board",u.board),u.ref&&b.set("ref",u.ref),`/task/${g.number}${b.size>0?`?${b.toString()}`:""}`};return S.jsx("div",{className:"flex min-h-0 flex-1 flex-col",children:r.view==="board"?S.jsx(vee,{tasks:c,visibleStatuses:r.boardColumns,onOpen:f,onMove:h,readOnly:i}):S.jsx("div",{className:"flex min-h-0 flex-1 flex-col pt-2",children:S.jsx(Dee,{tasks:c,taskHref:m,onReorder:(g,b)=>{const v=t.find(C=>C.number===g);v&&h(g,v.status,b)},readOnly:i})})})}const Im="flex h-7 min-w-0 items-center gap-1.5 self-start rounded-full pr-2.5 pl-1.5 text-sm outline-none hover:bg-muted focus-visible:ring-2 focus-visible:ring-ring";function wee(t){const e=gm();return`/task/${t}${e?`?board=${encodeURIComponent(e)}`:""}`}function GD({label:t,addLabel:e,value:n,onChange:r,tasks:i,self:s,readOnly:a}){if(a&&n.length===0)return null;const u=n.map(c=>i.find(f=>f.number===c)).filter(c=>c!==void 0);return S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:t}),u.map(c=>S.jsxs("div",{className:"group/relation relative flex min-w-0",children:[S.jsxs(i$,{href:wee(c.number),className:pe(Im,"flex-1"),children:[S.jsx(Wr,{status:c.status}),S.jsx("span",{className:"shrink-0 text-xs text-muted-foreground",children:c.id}),S.jsx("span",{className:"truncate",children:c.title})]}),!a&&S.jsx(Xe,{variant:"ghost",size:"icon-xs","aria-label":`Remove ${c.id}`,onPress:()=>r(n.filter(f=>f!==c.number)),className:"absolute top-1/2 right-0.5 -translate-y-1/2 text-muted-foreground opacity-0 group-hover/relation:opacity-100 focus-visible:opacity-100",children:S.jsx(id,{className:"size-3.5"})})]},c.number)),!a&&S.jsx($ee,{label:e,tasks:i.filter(c=>c.number!==s&&!n.includes(c.number)),onPick:c=>r([...n,c])})]})}function $ee({label:t,tasks:e,onPick:n}){const[r,i]=D.useState(!1);return S.jsxs(od,{isOpen:r,onOpenChange:i,children:[S.jsxs(Xe,{variant:"ghost",size:"sm",className:pe(Im,"font-normal text-muted-foreground"),children:[S.jsx(bm,{className:"size-3.5"}),t]}),S.jsx(ad,{className:"w-72",children:S.jsxs(sd,{children:[S.jsx(ld,{flush:!0,placeholder:"Search tasks"}),S.jsx(ud,{onAction:s=>{i(!1),n(Number(s))},renderEmptyState:()=>S.jsx("p",{className:"px-3 py-6 text-center text-sm text-muted-foreground",children:"No tasks to link"}),children:S.jsx(wl,{children:e.map(s=>S.jsxs(Wo,{id:s.number,textValue:`${s.id} ${s.title}`,children:[S.jsx(Wr,{status:s.status}),S.jsx("span",{className:"shrink-0 text-xs text-muted-foreground",children:s.id}),S.jsx("span",{className:"truncate",children:s.title})]},s.number))})})]})})]})}function WD(t){const e=/github\.com\/[^/]+\/([^/]+)\/pull\/(\d+)/.exec(t);if(e)return`${e[1]}#${e[2]}`;try{return new URL(t).hostname}catch{return t}}function Tee({value:t,onChange:e,readOnly:n}){return n&&t.length===0?null:S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Pull requests"}),t.map(r=>S.jsxs("div",{className:"group/pr relative flex min-w-0",children:[S.jsxs("a",{href:r,target:"_blank",rel:"noreferrer",title:r,className:pe(Im,"flex-1"),children:[S.jsx(V3,{className:"size-3.5 shrink-0 text-muted-foreground"}),S.jsx("span",{className:"truncate",children:WD(r)})]}),!n&&S.jsx(Xe,{variant:"ghost",size:"icon-xs","aria-label":`Detach ${WD(r)}`,onPress:()=>e(t.filter(i=>i!==r)),className:"absolute top-1/2 right-0.5 -translate-y-1/2 text-muted-foreground opacity-0 group-hover/pr:opacity-100 focus-visible:opacity-100",children:S.jsx(id,{className:"size-3.5"})})]},r)),!n&&S.jsx(Aee,{onAdd:r=>e(t.includes(r)?t:[...t,r])})]})}function Aee({onAdd:t}){const[e,n]=D.useState(!1),[r,i]=D.useState(""),s=()=>{const a=r.trim();/^https?:\/\//.test(a)&&(t(a),i(""),n(!1))};return S.jsxs(U3,{isOpen:e,onOpenChange:n,children:[S.jsxs(Xe,{variant:"ghost",size:"sm",className:pe(Im,"font-normal text-muted-foreground"),children:[S.jsx(bm,{className:"size-3.5"}),"Attach PR"]}),S.jsx(q3,{className:"w-80 p-3",children:S.jsxs("form",{className:"flex items-center gap-2",onSubmit:a=>{a.preventDefault(),s()},children:[S.jsx(xM,{autoFocus:!0,"aria-label":"Pull request URL",placeholder:"https://github.com/…/pull/123",value:r,onChange:a=>i(a.target.value),className:"h-8"}),S.jsx(Xe,{type:"submit",variant:"secondary",size:"sm",isDisabled:!/^https?:\/\//.test(r.trim()),children:"Attach"})]})})]})}function Bee({...t}){return S.jsx(N3,{"data-slot":"dropdown-menu-trigger",...t})}function Mee({"data-slot":t="dropdown-menu-content",placement:e="bottom start",offset:n=4,crossOffset:r=0,className:i,children:s,...a}){return S.jsx(pm,{"data-slot":t,placement:e,offset:n,crossOffset:r,className:pe("z-50 w-(--trigger-width) min-w-48 origin-(--trigger-anchor-point) overflow-x-hidden overflow-y-auto rounded-3xl bg-popover p-1.5 text-popover-foreground shadow-lg ring-1 ring-foreground/5 duration-100 outline-none data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:overflow-hidden data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 **:data-[slot$=-item]:data-focused:bg-foreground/10 dark:ring-foreground/10",i),children:S.jsx(P3,{className:"max-h-[inherit] overflow-x-hidden overflow-y-auto outline-hidden",...a,children:s})})}const Ree=fa("group/dropdown-menu-item relative flex cursor-default items-center outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",{variants:{selectionMode:{none:"gap-2.5 rounded-2xl px-3 py-2 text-sm font-medium focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-inset:pl-9.5 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg:not([class*='size-'])]:size-4 data-[variant=destructive]:*:[svg]:text-destructive",single:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4",multiple:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4"}}});function Nee({className:t,inset:e,variant:n="default",children:r,...i}){return S.jsx(O3,{"data-slot":"dropdown-menu-item","data-inset":e,"data-variant":n,textValue:typeof r=="string"?r:i.textValue,className:zs(t,(s,{selectionMode:a})=>pe(Ree({selectionMode:a}),s)),...i,children:zs(r,(s,{isSelected:a,selectionMode:u})=>S.jsxs(S.Fragment,{children:[u!=="none"?S.jsx("span",{className:"pointer-events-none absolute right-2 flex items-center justify-center","data-slot":u==="single"?"dropdown-menu-radio-item-indicator":"dropdown-menu-checkbox-item-indicator",children:a?S.jsx(rd,{}):null}):null,s]}))})}function Pee({className:t,...e}){return S.jsx("div",{"data-slot":"empty",className:pe("flex w-full min-w-0 flex-1 flex-col items-center justify-center gap-4 rounded-2xl border-dashed p-12 text-center text-balance",t),...e})}function Oee({className:t,...e}){return S.jsx("div",{"data-slot":"empty-header",className:pe("flex max-w-sm flex-col items-center gap-2",t),...e})}function Lee({className:t,...e}){return S.jsx("div",{"data-slot":"empty-title",className:pe("font-heading text-lg font-medium tracking-tight",t),...e})}function zee({className:t,...e}){return S.jsx("div",{"data-slot":"empty-description",className:pe("text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary",t),...e})}const Iee=RL("/task/$number");function Fee(){const{number:t}=Iee.useParams(),e=Number(t),{tasks:n,project:r,board:i,readOnly:s}=Mr(),a=Li(),u=Xp(),c=n.find(F=>F.number===e)??null,f=m_(i,e),h=f.data?.comments??[],[m,g]=D.useState(""),b=D.useRef(null),[v,C]=D.useState(!0),[E,k]=D.useState(!1),[T,$]=D.useState(null),[A,B]=D.useState(null),P=f.data?.task;if(P&&A!==e&&(B(e),g(P.title),k(!1),$(null)),!Number.isFinite(e)||f.isError)return S.jsx(Kee,{});if(!c)return S.jsx(H8,{});const M=()=>{u.invalidateQueries({queryKey:["tasks",i]}),u.invalidateQueries({queryKey:["task",i,e]})},N=F=>{eM(c.number,F).then(()=>{$(null),M()}).catch(J=>$(J.message))},I=()=>{const F=b.current?.getMarkdown().trim()??"";F&&(b.current?.clear(),C(!0),c_(c.number,F).then(M))};return S.jsx("main",{className:"min-w-0 flex-1 overflow-y-auto",children:S.jsxs("div",{className:"mx-auto flex w-full max-w-6xl items-start gap-20 px-8 pt-16 pb-10",children:[S.jsxs("div",{className:"flex min-w-0 max-w-3xl flex-1 flex-col gap-6",children:[s?S.jsx("h1",{className:"py-1 text-2xl leading-snug font-semibold break-words",children:c.title}):S.jsx(oV,{"aria-label":"Title",rows:1,value:m,onChange:F=>g(F.target.value.replace(/\s*\n\s*/g," ")),onKeyDown:F=>{F.key==="Enter"&&(F.preventDefault(),F.currentTarget.blur())},onBlur:()=>m.trim()&&m!==c.title&&N({title:m.trim()}),className:"min-h-0 rounded-2xl border-transparent bg-transparent px-0 py-1 text-2xl leading-snug font-semibold shadow-none focus-visible:border-transparent focus-visible:ring-0 md:text-2xl"}),(!s||c.description.trim())&&S.jsx(Rh,{ariaLabel:"Description",placeholder:"Add a description…",defaultValue:c.description,editable:!s,onBlur:s?void 0:F=>N({description:F}),className:"min-h-32"},c.number),T&&S.jsx("p",{className:"text-sm whitespace-pre-wrap text-destructive",children:T}),S.jsxs("div",{className:"mt-4 flex flex-col gap-3",children:[h.length>0&&S.jsxs("p",{className:"text-xs font-medium text-muted-foreground",children:[h.length," comment",h.length===1?"":"s"]}),h.map(F=>S.jsxs("div",{className:"group/comment relative rounded-2xl bg-muted/60 p-4",children:[S.jsxs("p",{className:"text-xs text-muted-foreground",children:[F.author||"anonymous"," · ",Vy(F.createdAt)," ago"]}),S.jsx(Rh,{editable:!1,defaultValue:F.body,className:"mt-1.5"},F.id),!s&&F.author===r?.author&&S.jsxs(Bee,{children:[S.jsx(Xe,{variant:"ghost",size:"icon-xs","aria-label":"Comment actions",className:"absolute top-2.5 right-2.5 text-muted-foreground opacity-0 group-hover/comment:opacity-100 focus-visible:opacity-100 aria-expanded:opacity-100",children:S.jsx($H,{})}),S.jsx(Mee,{placement:"bottom end",children:S.jsx(Nee,{variant:"destructive",onAction:()=>{d_(c.number,F.id).then(M)},children:"Delete"})})]})]},F.id)),s?null:h.length===0&&!E?S.jsxs(Xe,{variant:"ghost",size:"sm",onPress:()=>k(!0),className:"h-7 gap-1.5 self-start rounded-full px-2.5 font-normal text-muted-foreground",children:[S.jsx(HH,{className:"size-3.5"}),"Add comment"]}):S.jsxs("div",{className:"flex flex-col gap-2",children:[S.jsx(Rh,{ref:b,ariaLabel:"Add a comment",placeholder:"Leave a comment… (⌘↵ to post)",autoFocus:E,onChange:F=>C(!F.trim()),onSubmit:I,className:"min-h-16 rounded-2xl border border-transparent bg-input/50 p-4 transition-[color,box-shadow,background-color] focus:border-ring focus:ring-3 focus:ring-ring/30"}),S.jsx(Xe,{variant:"secondary",className:"self-end",onPress:I,isDisabled:v,children:"Post"})]})]})]}),S.jsxs("aside",{className:"sticky top-6 flex w-64 shrink-0 flex-col gap-6 pt-2 max-lg:hidden",children:[S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Properties"}),s?S.jsxs(gh,{children:[S.jsx(Wr,{status:c.status}),S.jsx("span",{children:Ai[c.status]})]}):S.jsx(_8,{status:c.status,onChange:F=>N({status:F})}),s?c.needsHuman&&S.jsxs(gh,{children:[S.jsx(Sl,{className:"size-3.5 text-amber-500"}),S.jsx("span",{children:"Needs a human"})]}):S.jsxs(Xe,{variant:"ghost",size:"sm","aria-pressed":c.needsHuman,onPress:()=>N({needsHuman:!c.needsHuman}),className:xl,children:[S.jsx(Sl,{className:pe("size-3.5",c.needsHuman?"text-amber-500":"text-muted-foreground")}),S.jsx("span",{className:c.needsHuman?void 0:"text-muted-foreground",children:c.needsHuman?"Needs a human":"No human needed"})]})]}),S.jsx(GD,{label:"Blocked by",addLabel:"Mark as blocked by…",value:c.blockedBy,onChange:F=>N({blockedBy:F}),tasks:n,self:c.number,readOnly:s}),S.jsx(GD,{label:"Blocks",addLabel:"Mark as blocking…",value:c.blocks,onChange:F=>N({blocks:F}),tasks:n,self:c.number,readOnly:s}),s&&c.milestone&&S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Milestone"}),S.jsxs(gh,{children:[S.jsx(sy,{className:"size-3.5 text-muted-foreground"}),S.jsx("span",{className:"truncate",children:c.milestone})]})]}),s&&c.tags.length>0&&S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Tags"}),S.jsxs(gh,{children:[S.jsx(rp,{className:"size-3.5 text-muted-foreground"}),S.jsx("span",{className:"truncate",children:c.tags.join(", ")})]})]}),!s&&S.jsxs(S.Fragment,{children:[S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Milestone"}),S.jsx(qr,{label:"Milestone",mode:"single",options:vm(n),value:c.milestone?[c.milestone]:[],onChange:F=>N({milestone:F[0]??null}),placeholder:"Set milestone",variant:"ghost",chevron:!1,className:xl,renderValue:F=>S.jsxs(S.Fragment,{children:[S.jsx(sy,{className:"size-3.5 text-muted-foreground"}),S.jsx("span",{className:pe("truncate",F.length===0&&"text-muted-foreground"),children:F[0]??"Set milestone"})]})})]}),S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Tags"}),S.jsx(qr,{label:"Tags",mode:"multiple",options:ym(n),value:c.tags,onChange:F=>N({tags:F}),placeholder:"Add tags",variant:"ghost",chevron:!1,className:xl,renderValue:F=>S.jsxs(S.Fragment,{children:[S.jsx(rp,{className:"size-3.5 text-muted-foreground"}),S.jsx("span",{className:pe("truncate",F.length===0&&"text-muted-foreground"),children:F.length>0?F.join(", "):"Add tags"})]})})]})]}),S.jsx(Tee,{value:c.prs,onChange:F=>N({prs:F}),readOnly:s}),S.jsxs("div",{className:"flex flex-col gap-1.5",children:[S.jsxs("p",{className:"text-[11px] text-muted-foreground/70",children:["created ",Vy(c.createdAt)," ago"]}),!s&&S.jsx(Xe,{variant:"ghost",size:"sm",className:"-ml-2.5 h-7 self-start rounded-full px-2.5 font-normal text-destructive hover:text-destructive",onPress:()=>{l_(c.number).then(()=>{u.invalidateQueries({queryKey:["tasks",i]}),a({to:"/",search:F=>F})})},children:"Delete"})]})]})]})})}function gh({children:t}){return S.jsx("div",{className:pe(xl,"flex h-7 items-center gap-1.5 px-2.5 text-sm"),children:t})}function Kee(){const t=Li();return S.jsxs(Pee,{className:"flex-1",children:[S.jsxs(Oee,{children:[S.jsx(Lee,{children:"Task not found"}),S.jsx(zee,{children:"It may have been deleted, or it lives on another board."})]}),S.jsx(Xe,{variant:"outline",size:"sm",onPress:()=>{t({to:"/",search:e=>e})},children:"Back to the board"})]})}function jee(t){return{...t.board==null?{}:{board:String(t.board)},...t.ref==null?{}:{ref:String(t.ref)}}}const V1=LL({component:dee,validateSearch:jee}),_ee=NS({getParentRoute:()=>V1,path:"/",component:See}),Hee=NS({getParentRoute:()=>V1,path:"/task/$number",component:Fee});function Vee(t,e){return QL({routeTree:V1.addChildren([_ee,Hee]),defaultPreload:"intent",defaultErrorComponent:fee,defaultNotFoundComponent:hee,history:t,basepath:e})}window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",t=>{document.documentElement.classList.toggle("dark",t.matches)});CP.createRoot(document.getElementById("root")).render(S.jsx(D.StrictMode,{children:S.jsx(n_,{router:Vee()})}));
|