From 101cac6a215ad21f2a444361ead4c4e3fb8674ac Mon Sep 17 00:00:00 2001 From: Jan Skurovec Date: Tue, 11 Oct 2022 22:10:29 +0200 Subject: [PATCH 01/11] reintroduce fix for m1 from PR#579 missing after merge Make results reproducible (so runs with the same seed produce the same result). Implements fix by @wbowling referenced in https://github.com/invoke-ai/InvokeAI/issues/397#issuecomment-1240679294 --- ldm/generate.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ldm/generate.py b/ldm/generate.py index 22fb27e0a8..f9fc364cf3 100644 --- a/ldm/generate.py +++ b/ldm/generate.py @@ -34,6 +34,24 @@ from ldm.invoke.image_util import InitImageResizer from ldm.invoke.devices import choose_torch_device, choose_precision from ldm.invoke.conditioning import get_uc_and_c +def fix_func(orig): + if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available(): + def new_func(*args, **kw): + device = kw.get("device", "mps") + kw["device"]="cpu" + return orig(*args, **kw).to(device) + return new_func + return orig + +torch.rand = fix_func(torch.rand) +torch.rand_like = fix_func(torch.rand_like) +torch.randn = fix_func(torch.randn) +torch.randn_like = fix_func(torch.randn_like) +torch.randint = fix_func(torch.randint) +torch.randint_like = fix_func(torch.randint_like) +torch.bernoulli = fix_func(torch.bernoulli) +torch.multinomial = fix_func(torch.multinomial) + """Simplified text to image API for stable diffusion/latent diffusion Example Usage: From c15a902e8d9d6f9866b1dc32f1364c4fa4bfab35 Mon Sep 17 00:00:00 2001 From: Chloe Date: Tue, 11 Oct 2022 20:24:27 -0400 Subject: [PATCH 02/11] Update Stable_Diffusion_AI_Notebook.ipynb Making Stable_Diffusion_AI_Notebook.ipynb work smoothly on Google Colab --- notebooks/Stable_Diffusion_AI_Notebook.ipynb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/notebooks/Stable_Diffusion_AI_Notebook.ipynb b/notebooks/Stable_Diffusion_AI_Notebook.ipynb index 6766727c18..6c3571773e 100644 --- a/notebooks/Stable_Diffusion_AI_Notebook.ipynb +++ b/notebooks/Stable_Diffusion_AI_Notebook.ipynb @@ -58,7 +58,7 @@ "from os.path import exists\n", "\n", "!git clone --quiet https://github.com/invoke-ai/InvokeAI.git # Original repo\n", - "%cd /content/stable-diffusion/\n", + "%cd /content/InvokeAI/\n", "!git checkout --quiet tags/release-1.14.1" ] }, @@ -79,6 +79,7 @@ "!pip install colab-xterm\n", "!pip install -r requirements-lin-win-colab-CUDA.txt\n", "!pip install clean-fid torchtext\n", + "!pip install transformers\n", "gc.collect()" ] }, @@ -106,7 +107,7 @@ "source": [ "#@title 5. Load small ML models required\n", "import gc\n", - "%cd /content/stable-diffusion/\n", + "%cd /content/InvokeAI/\n", "!python scripts/preload_models.py\n", "gc.collect()" ] @@ -171,18 +172,18 @@ "import os \n", "\n", "# Folder creation if it doesn't exist\n", - "if exists(\"/content/stable-diffusion/models/ldm/stable-diffusion-v1\"):\n", + "if exists(\"/content/InvokeAI/models/ldm/stable-diffusion-v1\"):\n", " print(\"❗ Dir stable-diffusion-v1 already exists\")\n", "else:\n", - " %mkdir /content/stable-diffusion/models/ldm/stable-diffusion-v1\n", + " %mkdir /content/InvokeAI/models/ldm/stable-diffusion-v1\n", " print(\"✅ Dir stable-diffusion-v1 created\")\n", "\n", "# Symbolic link if it doesn't exist\n", - "if exists(\"/content/stable-diffusion/models/ldm/stable-diffusion-v1/model.ckpt\"):\n", + "if exists(\"/content/InvokeAI/models/ldm/stable-diffusion-v1/model.ckpt\"):\n", " print(\"❗ Symlink already created\")\n", "else: \n", " src = model_path\n", - " dst = '/content/stable-diffusion/models/ldm/stable-diffusion-v1/model.ckpt'\n", + " dst = '/content/InvokeAI/models/ldm/stable-diffusion-v1/model.ckpt'\n", " os.symlink(src, dst) \n", " print(\"✅ Symbolic link created successfully\")" ] @@ -233,7 +234,7 @@ "%matplotlib inline\n", "\n", "images = []\n", - "for img_path in sorted(glob.glob('/content/stable-diffusion/outputs/img-samples/*.png'), reverse=True):\n", + "for img_path in sorted(glob.glob('/content/InvokeAI/outputs/img-samples/*.png'), reverse=True):\n", " images.append(mpimg.imread(img_path))\n", "\n", "images = images[:15] \n", From c82e94811b3cf95104bf3bae9fbcd9d65b67ae84 Mon Sep 17 00:00:00 2001 From: Chloe Date: Tue, 11 Oct 2022 20:46:16 -0400 Subject: [PATCH 03/11] Update Stable_Diffusion_AI_Notebook.ipynb --- notebooks/Stable_Diffusion_AI_Notebook.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notebooks/Stable_Diffusion_AI_Notebook.ipynb b/notebooks/Stable_Diffusion_AI_Notebook.ipynb index 6c3571773e..b8755ff32e 100644 --- a/notebooks/Stable_Diffusion_AI_Notebook.ipynb +++ b/notebooks/Stable_Diffusion_AI_Notebook.ipynb @@ -6,7 +6,7 @@ "id": "ycYWcsEKc6w7" }, "source": [ - "# Stable Diffusion AI Notebook (Release 1.14)\n", + "# Stable Diffusion AI Notebook (Release 2.0.0)\n", "\n", "\"stable-diffusion-ai\"
\n", "#### Instructions:\n", @@ -59,7 +59,7 @@ "\n", "!git clone --quiet https://github.com/invoke-ai/InvokeAI.git # Original repo\n", "%cd /content/InvokeAI/\n", - "!git checkout --quiet tags/release-1.14.1" + "!git checkout --quiet tags/v2.0.0" ] }, { @@ -208,7 +208,7 @@ "source": [ "#@title 9. Run Terminal and Execute Dream bot\n", "#@markdown Steps:
\n", - "#@markdown 1. Execute command `python scripts/dream.py` to run dream bot.
\n", + "#@markdown 1. Execute command `python scripts/invoke.py` to run InvokeAI.
\n", "#@markdown 2. After initialized you'll see `Dream>` line.
\n", "#@markdown 3. Example text: `Astronaut floating in a distant galaxy`
\n", "#@markdown 4. To quit Dream bot use: `q` command.
\n", From 057fc95aa3c9a174a9893b8dfbb81cef2aeb6a57 Mon Sep 17 00:00:00 2001 From: Daniel Manzke Date: Wed, 12 Oct 2022 22:38:33 +0200 Subject: [PATCH 04/11] Print out the device type which is used Print out the device type which is used for generating images. --- ldm/generate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ldm/generate.py b/ldm/generate.py index f9fc364cf3..d7b40f965f 100644 --- a/ldm/generate.py +++ b/ldm/generate.py @@ -172,6 +172,7 @@ class Generate: # device to Generate(). However the device was then ignored, so # it wasn't actually doing anything. This logic could be reinstated. device_type = choose_torch_device() + print(f'>> Using device_type {device_type}') self.device = torch.device(device_type) if full_precision: if self.precision != 'auto': From 7e335600104d31b28961cc20e01b4f83beba128d Mon Sep 17 00:00:00 2001 From: hipsterusername Date: Fri, 7 Oct 2022 16:56:38 -0400 Subject: [PATCH 05/11] Hires Addition Updated ImageMetaDataViewer with correct values Updated tooltip text Add arguments for Hires & Seamless Metadata --- backend/invoke_ai_web_server.py | 1 + backend/modules/parameters.py | 2 + backend/server.py | 1 + frontend/dist/assets/index.560edd47.js | 483 ++++++++++++++++++ frontend/dist/assets/index.989a0ca2.js | 483 ------------------ frontend/dist/index.html | 2 +- frontend/src/app/constants.ts | 1 + frontend/src/app/features.ts | 18 +- frontend/src/app/invokeai.d.ts | 1 + .../src/common/util/parameterTranslation.ts | 4 + .../ImageMetadataViewer.tsx | 12 +- .../src/features/options/HiresOptions.tsx | 32 ++ .../src/features/options/OutputOptions.tsx | 25 +- .../src/features/options/SeamlessOptions.tsx | 28 + frontend/src/features/options/optionsSlice.ts | 8 + ldm/generate.py | 3 + ldm/invoke/server.py | 1 + server/models.py | 2 + server/services.py | 1 + 19 files changed, 595 insertions(+), 513 deletions(-) create mode 100644 frontend/dist/assets/index.560edd47.js delete mode 100644 frontend/dist/assets/index.989a0ca2.js create mode 100644 frontend/src/features/options/HiresOptions.tsx create mode 100644 frontend/src/features/options/SeamlessOptions.tsx diff --git a/backend/invoke_ai_web_server.py b/backend/invoke_ai_web_server.py index ddff39a7bc..685039afd2 100644 --- a/backend/invoke_ai_web_server.py +++ b/backend/invoke_ai_web_server.py @@ -723,6 +723,7 @@ class InvokeAIWebServer: 'height', 'extra', 'seamless', + 'hires_fix', ] rfc_dict = {} diff --git a/backend/modules/parameters.py b/backend/modules/parameters.py index 0fae7ef729..aa4a4255e2 100644 --- a/backend/modules/parameters.py +++ b/backend/modules/parameters.py @@ -36,6 +36,8 @@ def parameters_to_command(params): switches.append(f'-A {params["sampler_name"]}') if "seamless" in params and params["seamless"] == True: switches.append(f"--seamless") + if "hires_fix" in params and params["hires_fix"] == True: + switches.append(f"--hires") if "init_img" in params and len(params["init_img"]) > 0: switches.append(f'-I {params["init_img"]}') if "init_mask" in params and len(params["init_mask"]) > 0: diff --git a/backend/server.py b/backend/server.py index cc0996dc66..c95b6cf1ec 100644 --- a/backend/server.py +++ b/backend/server.py @@ -493,6 +493,7 @@ def parameters_to_generated_image_metadata(parameters): "height", "extra", "seamless", + "hires_fix", ] rfc_dict = {} diff --git a/frontend/dist/assets/index.560edd47.js b/frontend/dist/assets/index.560edd47.js new file mode 100644 index 0000000000..ffdf7061f1 --- /dev/null +++ b/frontend/dist/assets/index.560edd47.js @@ -0,0 +1,483 @@ +function GF(e,t){for(var n=0;nr[o]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const s of i.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&r(s)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerpolicy&&(i.referrerPolicy=o.referrerpolicy),o.crossorigin==="use-credentials"?i.credentials="include":o.crossorigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();var Vi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function ZF(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Ye={};/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var sf=Symbol.for("react.element"),KF=Symbol.for("react.portal"),qF=Symbol.for("react.fragment"),YF=Symbol.for("react.strict_mode"),XF=Symbol.for("react.profiler"),QF=Symbol.for("react.provider"),JF=Symbol.for("react.context"),eB=Symbol.for("react.forward_ref"),tB=Symbol.for("react.suspense"),nB=Symbol.for("react.memo"),rB=Symbol.for("react.lazy"),fx=Symbol.iterator;function oB(e){return e===null||typeof e!="object"?null:(e=fx&&e[fx]||e["@@iterator"],typeof e=="function"?e:null)}var yC={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},bC=Object.assign,xC={};function Tu(e,t,n){this.props=e,this.context=t,this.refs=xC,this.updater=n||yC}Tu.prototype.isReactComponent={};Tu.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};Tu.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function wC(){}wC.prototype=Tu.prototype;function h5(e,t,n){this.props=e,this.context=t,this.refs=xC,this.updater=n||yC}var m5=h5.prototype=new wC;m5.constructor=h5;bC(m5,Tu.prototype);m5.isPureReactComponent=!0;var px=Array.isArray,SC=Object.prototype.hasOwnProperty,g5={current:null},CC={key:!0,ref:!0,__self:!0,__source:!0};function _C(e,t,n){var r,o={},i=null,s=null;if(t!=null)for(r in t.ref!==void 0&&(s=t.ref),t.key!==void 0&&(i=""+t.key),t)SC.call(t,r)&&!CC.hasOwnProperty(r)&&(o[r]=t[r]);var u=arguments.length-2;if(u===1)o.children=n;else if(1>>1,H=j[O];if(0>>1;Oo(ye,K))beo(Pe,ye)?(j[O]=Pe,j[be]=K,O=be):(j[O]=ye,j[de]=K,O=de);else if(beo(Pe,K))j[O]=Pe,j[be]=K,O=be;else break e}}return Y}function o(j,Y){var K=j.sortIndex-Y.sortIndex;return K!==0?K:j.id-Y.id}if(typeof performance=="object"&&typeof performance.now=="function"){var i=performance;e.unstable_now=function(){return i.now()}}else{var s=Date,u=s.now();e.unstable_now=function(){return s.now()-u}}var c=[],d=[],f=1,h=null,m=3,g=!1,b=!1,w=!1,k=typeof setTimeout=="function"?setTimeout:null,S=typeof clearTimeout=="function"?clearTimeout:null,x=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function _(j){for(var Y=n(d);Y!==null;){if(Y.callback===null)r(d);else if(Y.startTime<=j)r(d),Y.sortIndex=Y.expirationTime,t(c,Y);else break;Y=n(d)}}function L(j){if(w=!1,_(j),!b)if(n(c)!==null)b=!0,ge(T);else{var Y=n(d);Y!==null&&ne(L,Y.startTime-j)}}function T(j,Y){b=!1,w&&(w=!1,S(F),F=-1),g=!0;var K=m;try{for(_(Y),h=n(c);h!==null&&(!(h.expirationTime>Y)||j&&!J());){var O=h.callback;if(typeof O=="function"){h.callback=null,m=h.priorityLevel;var H=O(h.expirationTime<=Y);Y=e.unstable_now(),typeof H=="function"?h.callback=H:h===n(c)&&r(c),_(Y)}else r(c);h=n(c)}if(h!==null)var se=!0;else{var de=n(d);de!==null&&ne(L,de.startTime-Y),se=!1}return se}finally{h=null,m=K,g=!1}}var R=!1,N=null,F=-1,G=5,W=-1;function J(){return!(e.unstable_now()-Wj||125O?(j.sortIndex=K,t(d,j),n(c)===null&&j===n(d)&&(w?(S(F),F=-1):w=!0,ne(L,K-O))):(j.sortIndex=H,t(c,j),b||g||(b=!0,ge(T))),j},e.unstable_shouldYield=J,e.unstable_wrapCallback=function(j){var Y=m;return function(){var K=m;m=Y;try{return j.apply(this,arguments)}finally{m=K}}}})(EC);(function(e){e.exports=EC})(kC);/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var LC=C.exports,Wr=kC.exports;function le(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Z2=Object.prototype.hasOwnProperty,uB=/^[: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]*$/,gx={},vx={};function cB(e){return Z2.call(vx,e)?!0:Z2.call(gx,e)?!1:uB.test(e)?vx[e]=!0:(gx[e]=!0,!1)}function dB(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function fB(e,t,n,r){if(t===null||typeof t>"u"||dB(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function ur(e,t,n,r,o,i,s){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=s}var zn={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){zn[e]=new ur(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];zn[t]=new ur(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){zn[e]=new ur(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){zn[e]=new ur(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){zn[e]=new ur(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){zn[e]=new ur(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){zn[e]=new ur(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){zn[e]=new ur(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){zn[e]=new ur(e,5,!1,e.toLowerCase(),null,!1,!1)});var y5=/[\-:]([a-z])/g;function b5(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(y5,b5);zn[t]=new ur(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(y5,b5);zn[t]=new ur(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(y5,b5);zn[t]=new ur(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){zn[e]=new ur(e,1,!1,e.toLowerCase(),null,!1,!1)});zn.xlinkHref=new ur("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){zn[e]=new ur(e,1,!1,e.toLowerCase(),null,!0,!0)});function x5(e,t,n,r){var o=zn.hasOwnProperty(t)?zn[t]:null;(o!==null?o.type!==0:r||!(2u||o[s]!==i[u]){var c=` +`+o[s].replace(" at new "," at ");return e.displayName&&c.includes("")&&(c=c.replace("",e.displayName)),c}while(1<=s&&0<=u);break}}}finally{Ev=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Dc(e):""}function pB(e){switch(e.tag){case 5:return Dc(e.type);case 16:return Dc("Lazy");case 13:return Dc("Suspense");case 19:return Dc("SuspenseList");case 0:case 2:case 15:return e=Lv(e.type,!1),e;case 11:return e=Lv(e.type.render,!1),e;case 1:return e=Lv(e.type,!0),e;default:return""}}function X2(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Rl:return"Fragment";case Ml:return"Portal";case K2:return"Profiler";case w5:return"StrictMode";case q2:return"Suspense";case Y2:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case TC:return(e.displayName||"Context")+".Consumer";case AC:return(e._context.displayName||"Context")+".Provider";case S5:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case C5:return t=e.displayName||null,t!==null?t:X2(e.type)||"Memo";case Sa:t=e._payload,e=e._init;try{return X2(e(t))}catch{}}return null}function hB(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return X2(t);case 8:return t===w5?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function Ha(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function OC(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function mB(e){var t=OC(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=""+s,i.call(this,s)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(s){r=""+s},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function jp(e){e._valueTracker||(e._valueTracker=mB(e))}function MC(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=OC(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function m1(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Q2(e,t){var n=t.checked;return Ut({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function bx(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=Ha(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function RC(e,t){t=t.checked,t!=null&&x5(e,"checked",t,!1)}function J2(e,t){RC(e,t);var n=Ha(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?ey(e,t.type,n):t.hasOwnProperty("defaultValue")&&ey(e,t.type,Ha(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function xx(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function ey(e,t,n){(t!=="number"||m1(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var zc=Array.isArray;function Yl(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o"+t.valueOf().toString()+"",t=Hp.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function gd(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Gc={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},gB=["Webkit","ms","Moz","O"];Object.keys(Gc).forEach(function(e){gB.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Gc[t]=Gc[e]})});function FC(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Gc.hasOwnProperty(e)&&Gc[e]?(""+t).trim():t+"px"}function BC(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,o=FC(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}var vB=Ut({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ry(e,t){if(t){if(vB[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(le(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(le(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(le(61))}if(t.style!=null&&typeof t.style!="object")throw Error(le(62))}}function oy(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){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 iy=null;function _5(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var ay=null,Xl=null,Ql=null;function Cx(e){if(e=cf(e)){if(typeof ay!="function")throw Error(le(280));var t=e.stateNode;t&&(t=E0(t),ay(e.stateNode,e.type,t))}}function $C(e){Xl?Ql?Ql.push(e):Ql=[e]:Xl=e}function VC(){if(Xl){var e=Xl,t=Ql;if(Ql=Xl=null,Cx(e),t)for(e=0;e>>=0,e===0?32:31-(PB(e)/AB|0)|0}var Up=64,Gp=4194304;function Fc(e){switch(e&-e){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: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 e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function b1(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,o=e.suspendedLanes,i=e.pingedLanes,s=n&268435455;if(s!==0){var u=s&~o;u!==0?r=Fc(u):(i&=s,i!==0&&(r=Fc(i)))}else s=n&~o,s!==0?r=Fc(s):i!==0&&(r=Fc(i));if(r===0)return 0;if(t!==0&&t!==r&&(t&o)===0&&(o=r&-r,i=t&-t,o>=i||o===16&&(i&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function lf(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Do(t),e[t]=n}function MB(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Kc),Ox=String.fromCharCode(32),Mx=!1;function s_(e,t){switch(e){case"keyup":return s$.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function l_(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Nl=!1;function u$(e,t){switch(e){case"compositionend":return l_(t);case"keypress":return t.which!==32?null:(Mx=!0,Ox);case"textInput":return e=t.data,e===Ox&&Mx?null:e;default:return null}}function c$(e,t){if(Nl)return e==="compositionend"||!O5&&s_(e,t)?(e=i_(),zh=A5=Aa=null,Nl=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=zx(n)}}function f_(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?f_(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function p_(){for(var e=window,t=m1();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=m1(e.document)}return t}function M5(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function b$(e){var t=p_(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&f_(n.ownerDocument.documentElement,n)){if(r!==null&&M5(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var o=n.textContent.length,i=Math.min(r.start,o);r=r.end===void 0?i:Math.min(r.end,o),!e.extend&&i>r&&(o=r,r=i,i=o),o=Fx(n,i);var s=Fx(n,r);o&&s&&(e.rangeCount!==1||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&(t=t.createRange(),t.setStart(o.node,o.offset),e.removeAllRanges(),i>r?(e.addRange(t),e.extend(s.node,s.offset)):(t.setEnd(s.node,s.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Dl=null,fy=null,Yc=null,py=!1;function Bx(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;py||Dl==null||Dl!==m1(r)||(r=Dl,"selectionStart"in r&&M5(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Yc&&Sd(Yc,r)||(Yc=r,r=S1(fy,"onSelect"),0Bl||(e.current=by[Bl],by[Bl]=null,Bl--)}function At(e,t){Bl++,by[Bl]=e.current,e.current=t}var Ua={},Zn=Ja(Ua),xr=Ja(!1),Ns=Ua;function pu(e,t){var n=e.type.contextTypes;if(!n)return Ua;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o={},i;for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function wr(e){return e=e.childContextTypes,e!=null}function _1(){Rt(xr),Rt(Zn)}function Gx(e,t,n){if(Zn.current!==Ua)throw Error(le(168));At(Zn,t),At(xr,n)}function S_(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var o in r)if(!(o in t))throw Error(le(108,hB(e)||"Unknown",o));return Ut({},n,r)}function k1(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Ua,Ns=Zn.current,At(Zn,e),At(xr,xr.current),!0}function Zx(e,t,n){var r=e.stateNode;if(!r)throw Error(le(169));n?(e=S_(e,t,Ns),r.__reactInternalMemoizedMergedChildContext=e,Rt(xr),Rt(Zn),At(Zn,e)):Rt(xr),At(xr,n)}var $i=null,L0=!1,Vv=!1;function C_(e){$i===null?$i=[e]:$i.push(e)}function I$(e){L0=!0,C_(e)}function es(){if(!Vv&&$i!==null){Vv=!0;var e=0,t=mt;try{var n=$i;for(mt=1;e>=s,o-=s,ji=1<<32-Do(t)+o|n<F?(G=N,N=null):G=N.sibling;var W=m(S,N,_[F],L);if(W===null){N===null&&(N=G);break}e&&N&&W.alternate===null&&t(S,N),x=i(W,x,F),R===null?T=W:R.sibling=W,R=W,N=G}if(F===_.length)return n(S,N),Ft&&gs(S,F),T;if(N===null){for(;F<_.length;F++)N=h(S,_[F],L),N!==null&&(x=i(N,x,F),R===null?T=N:R.sibling=N,R=N);return Ft&&gs(S,F),T}for(N=r(S,N);F<_.length;F++)G=g(N,S,F,_[F],L),G!==null&&(e&&G.alternate!==null&&N.delete(G.key===null?F:G.key),x=i(G,x,F),R===null?T=G:R.sibling=G,R=G);return e&&N.forEach(function(J){return t(S,J)}),Ft&&gs(S,F),T}function w(S,x,_,L){var T=bc(_);if(typeof T!="function")throw Error(le(150));if(_=T.call(_),_==null)throw Error(le(151));for(var R=T=null,N=x,F=x=0,G=null,W=_.next();N!==null&&!W.done;F++,W=_.next()){N.index>F?(G=N,N=null):G=N.sibling;var J=m(S,N,W.value,L);if(J===null){N===null&&(N=G);break}e&&N&&J.alternate===null&&t(S,N),x=i(J,x,F),R===null?T=J:R.sibling=J,R=J,N=G}if(W.done)return n(S,N),Ft&&gs(S,F),T;if(N===null){for(;!W.done;F++,W=_.next())W=h(S,W.value,L),W!==null&&(x=i(W,x,F),R===null?T=W:R.sibling=W,R=W);return Ft&&gs(S,F),T}for(N=r(S,N);!W.done;F++,W=_.next())W=g(N,S,F,W.value,L),W!==null&&(e&&W.alternate!==null&&N.delete(W.key===null?F:W.key),x=i(W,x,F),R===null?T=W:R.sibling=W,R=W);return e&&N.forEach(function(Ee){return t(S,Ee)}),Ft&&gs(S,F),T}function k(S,x,_,L){if(typeof _=="object"&&_!==null&&_.type===Rl&&_.key===null&&(_=_.props.children),typeof _=="object"&&_!==null){switch(_.$$typeof){case Wp:e:{for(var T=_.key,R=x;R!==null;){if(R.key===T){if(T=_.type,T===Rl){if(R.tag===7){n(S,R.sibling),x=o(R,_.props.children),x.return=S,S=x;break e}}else if(R.elementType===T||typeof T=="object"&&T!==null&&T.$$typeof===Sa&&ew(T)===R.type){n(S,R.sibling),x=o(R,_.props),x.ref=_c(S,R,_),x.return=S,S=x;break e}n(S,R);break}else t(S,R);R=R.sibling}_.type===Rl?(x=Ts(_.props.children,S.mode,L,_.key),x.return=S,S=x):(L=Uh(_.type,_.key,_.props,null,S.mode,L),L.ref=_c(S,x,_),L.return=S,S=L)}return s(S);case Ml:e:{for(R=_.key;x!==null;){if(x.key===R)if(x.tag===4&&x.stateNode.containerInfo===_.containerInfo&&x.stateNode.implementation===_.implementation){n(S,x.sibling),x=o(x,_.children||[]),x.return=S,S=x;break e}else{n(S,x);break}else t(S,x);x=x.sibling}x=qv(_,S.mode,L),x.return=S,S=x}return s(S);case Sa:return R=_._init,k(S,x,R(_._payload),L)}if(zc(_))return b(S,x,_,L);if(bc(_))return w(S,x,_,L);Jp(S,_)}return typeof _=="string"&&_!==""||typeof _=="number"?(_=""+_,x!==null&&x.tag===6?(n(S,x.sibling),x=o(x,_),x.return=S,S=x):(n(S,x),x=Kv(_,S.mode,L),x.return=S,S=x),s(S)):n(S,x)}return k}var mu=I_(!0),O_=I_(!1),df={},ii=Ja(df),Ed=Ja(df),Ld=Ja(df);function ks(e){if(e===df)throw Error(le(174));return e}function W5(e,t){switch(At(Ld,t),At(Ed,e),At(ii,df),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:ny(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=ny(t,e)}Rt(ii),At(ii,t)}function gu(){Rt(ii),Rt(Ed),Rt(Ld)}function M_(e){ks(Ld.current);var t=ks(ii.current),n=ny(t,e.type);t!==n&&(At(Ed,e),At(ii,n))}function j5(e){Ed.current===e&&(Rt(ii),Rt(Ed))}var jt=Ja(0);function I1(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Wv=[];function H5(){for(var e=0;en?n:4,e(!0);var r=jv.transition;jv.transition={};try{e(!1),t()}finally{mt=n,jv.transition=r}}function q_(){return fo().memoizedState}function N$(e,t,n){var r=Va(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Y_(e))X_(t,n);else if(n=L_(e,t,n,r),n!==null){var o=ar();zo(n,e,r,o),Q_(n,t,r)}}function D$(e,t,n){var r=Va(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Y_(e))X_(t,o);else{var i=e.alternate;if(e.lanes===0&&(i===null||i.lanes===0)&&(i=t.lastRenderedReducer,i!==null))try{var s=t.lastRenderedState,u=i(s,n);if(o.hasEagerState=!0,o.eagerState=u,Bo(u,s)){var c=t.interleaved;c===null?(o.next=o,$5(t)):(o.next=c.next,c.next=o),t.interleaved=o;return}}catch{}finally{}n=L_(e,t,o,r),n!==null&&(o=ar(),zo(n,e,r,o),Q_(n,t,r))}}function Y_(e){var t=e.alternate;return e===Ht||t!==null&&t===Ht}function X_(e,t){Xc=O1=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Q_(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,E5(e,n)}}var M1={readContext:co,useCallback:Vn,useContext:Vn,useEffect:Vn,useImperativeHandle:Vn,useInsertionEffect:Vn,useLayoutEffect:Vn,useMemo:Vn,useReducer:Vn,useRef:Vn,useState:Vn,useDebugValue:Vn,useDeferredValue:Vn,useTransition:Vn,useMutableSource:Vn,useSyncExternalStore:Vn,useId:Vn,unstable_isNewReconciler:!1},z$={readContext:co,useCallback:function(e,t){return qo().memoizedState=[e,t===void 0?null:t],e},useContext:co,useEffect:nw,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Vh(4194308,4,H_.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Vh(4194308,4,e,t)},useInsertionEffect:function(e,t){return Vh(4,2,e,t)},useMemo:function(e,t){var n=qo();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=qo();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=N$.bind(null,Ht,e),[r.memoizedState,e]},useRef:function(e){var t=qo();return e={current:e},t.memoizedState=e},useState:tw,useDebugValue:q5,useDeferredValue:function(e){return qo().memoizedState=e},useTransition:function(){var e=tw(!1),t=e[0];return e=R$.bind(null,e[1]),qo().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=Ht,o=qo();if(Ft){if(n===void 0)throw Error(le(407));n=n()}else{if(n=t(),_n===null)throw Error(le(349));(zs&30)!==0||D_(r,t,n)}o.memoizedState=n;var i={value:n,getSnapshot:t};return o.queue=i,nw(F_.bind(null,r,i,e),[e]),r.flags|=2048,Td(9,z_.bind(null,r,i,n,t),void 0,null),n},useId:function(){var e=qo(),t=_n.identifierPrefix;if(Ft){var n=Hi,r=ji;n=(r&~(1<<32-Do(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Pd++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),n==="select"&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[ei]=t,e[kd]=r,sk(e,t,!1,!1),t.stateNode=e;e:{switch(s=oy(n,r),n){case"dialog":Ot("cancel",e),Ot("close",e),o=r;break;case"iframe":case"object":case"embed":Ot("load",e),o=r;break;case"video":case"audio":for(o=0;oyu&&(t.flags|=128,r=!0,kc(i,!1),t.lanes=4194304)}else{if(!r)if(e=I1(s),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),kc(i,!0),i.tail===null&&i.tailMode==="hidden"&&!s.alternate&&!Ft)return Wn(t),null}else 2*nn()-i.renderingStartTime>yu&&n!==1073741824&&(t.flags|=128,r=!0,kc(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(n=i.last,n!==null?n.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(t=i.tail,i.rendering=t,i.tail=t.sibling,i.renderingStartTime=nn(),t.sibling=null,n=jt.current,At(jt,r?n&1|2:n&1),t):(Wn(t),null);case 22:case 23:return t3(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(Dr&1073741824)!==0&&(Wn(t),t.subtreeFlags&6&&(t.flags|=8192)):Wn(t),null;case 24:return null;case 25:return null}throw Error(le(156,t.tag))}function U$(e,t){switch(N5(t),t.tag){case 1:return wr(t.type)&&_1(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return gu(),Rt(xr),Rt(Zn),H5(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return j5(t),null;case 13:if(Rt(jt),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(le(340));hu()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Rt(jt),null;case 4:return gu(),null;case 10:return B5(t.type._context),null;case 22:case 23:return t3(),null;case 24:return null;default:return null}}var th=!1,Un=!1,G$=typeof WeakSet=="function"?WeakSet:Set,ke=null;function jl(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){qt(e,t,r)}else n.current=null}function Iy(e,t,n){try{n()}catch(r){qt(e,t,r)}}var dw=!1;function Z$(e,t){if(hy=x1,e=p_(),M5(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var o=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{n.nodeType,i.nodeType}catch{n=null;break e}var s=0,u=-1,c=-1,d=0,f=0,h=e,m=null;t:for(;;){for(var g;h!==n||o!==0&&h.nodeType!==3||(u=s+o),h!==i||r!==0&&h.nodeType!==3||(c=s+r),h.nodeType===3&&(s+=h.nodeValue.length),(g=h.firstChild)!==null;)m=h,h=g;for(;;){if(h===e)break t;if(m===n&&++d===o&&(u=s),m===i&&++f===r&&(c=s),(g=h.nextSibling)!==null)break;h=m,m=h.parentNode}h=g}n=u===-1||c===-1?null:{start:u,end:c}}else n=null}n=n||{start:0,end:0}}else n=null;for(my={focusedElem:e,selectionRange:n},x1=!1,ke=t;ke!==null;)if(t=ke,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,ke=e;else for(;ke!==null;){t=ke;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var w=b.memoizedProps,k=b.memoizedState,S=t.stateNode,x=S.getSnapshotBeforeUpdate(t.elementType===t.type?w:To(t.type,w),k);S.__reactInternalSnapshotBeforeUpdate=x}break;case 3:var _=t.stateNode.containerInfo;_.nodeType===1?_.textContent="":_.nodeType===9&&_.documentElement&&_.removeChild(_.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(le(163))}}catch(L){qt(t,t.return,L)}if(e=t.sibling,e!==null){e.return=t.return,ke=e;break}ke=t.return}return b=dw,dw=!1,b}function Qc(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var o=r=r.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,i!==void 0&&Iy(t,n,i)}o=o.next}while(o!==r)}}function T0(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Oy(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function ck(e){var t=e.alternate;t!==null&&(e.alternate=null,ck(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[ei],delete t[kd],delete t[yy],delete t[A$],delete t[T$])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function dk(e){return e.tag===5||e.tag===3||e.tag===4}function fw(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||dk(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function My(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=C1));else if(r!==4&&(e=e.child,e!==null))for(My(e,t,n),e=e.sibling;e!==null;)My(e,t,n),e=e.sibling}function Ry(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Ry(e,t,n),e=e.sibling;e!==null;)Ry(e,t,n),e=e.sibling}var On=null,Io=!1;function ma(e,t,n){for(n=n.child;n!==null;)fk(e,t,n),n=n.sibling}function fk(e,t,n){if(oi&&typeof oi.onCommitFiberUnmount=="function")try{oi.onCommitFiberUnmount(S0,n)}catch{}switch(n.tag){case 5:Un||jl(n,t);case 6:var r=On,o=Io;On=null,ma(e,t,n),On=r,Io=o,On!==null&&(Io?(e=On,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):On.removeChild(n.stateNode));break;case 18:On!==null&&(Io?(e=On,n=n.stateNode,e.nodeType===8?$v(e.parentNode,n):e.nodeType===1&&$v(e,n),xd(e)):$v(On,n.stateNode));break;case 4:r=On,o=Io,On=n.stateNode.containerInfo,Io=!0,ma(e,t,n),On=r,Io=o;break;case 0:case 11:case 14:case 15:if(!Un&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){o=r=r.next;do{var i=o,s=i.destroy;i=i.tag,s!==void 0&&((i&2)!==0||(i&4)!==0)&&Iy(n,t,s),o=o.next}while(o!==r)}ma(e,t,n);break;case 1:if(!Un&&(jl(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(u){qt(n,t,u)}ma(e,t,n);break;case 21:ma(e,t,n);break;case 22:n.mode&1?(Un=(r=Un)||n.memoizedState!==null,ma(e,t,n),Un=r):ma(e,t,n);break;default:ma(e,t,n)}}function pw(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new G$),t.forEach(function(r){var o=nV.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))})}}function ko(e,t){var n=t.deletions;if(n!==null)for(var r=0;ro&&(o=s),r&=~i}if(r=o,r=nn()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*q$(r/1960))-r,10e?16:e,Ta===null)var r=!1;else{if(e=Ta,Ta=null,D1=0,(et&6)!==0)throw Error(le(331));var o=et;for(et|=4,ke=e.current;ke!==null;){var i=ke,s=i.child;if((ke.flags&16)!==0){var u=i.deletions;if(u!==null){for(var c=0;cnn()-J5?As(e,0):Q5|=n),Sr(e,t)}function xk(e,t){t===0&&((e.mode&1)===0?t=1:(t=Gp,Gp<<=1,(Gp&130023424)===0&&(Gp=4194304)));var n=ar();e=qi(e,t),e!==null&&(lf(e,t,n),Sr(e,n))}function tV(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),xk(e,n)}function nV(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;o!==null&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(le(314))}r!==null&&r.delete(t),xk(e,n)}var wk;wk=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||xr.current)br=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return br=!1,j$(e,t,n);br=(e.flags&131072)!==0}else br=!1,Ft&&(t.flags&1048576)!==0&&__(t,L1,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Wh(e,t),e=t.pendingProps;var o=pu(t,Zn.current);eu(t,n),o=G5(null,t,r,e,o,n);var i=Z5();return t.flags|=1,typeof o=="object"&&o!==null&&typeof o.render=="function"&&o.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,wr(r)?(i=!0,k1(t)):i=!1,t.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,V5(t),o.updater=P0,t.stateNode=o,o._reactInternals=t,_y(t,r,e,n),t=Ly(null,t,r,!0,i,n)):(t.tag=0,Ft&&i&&R5(t),ir(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Wh(e,t),e=t.pendingProps,o=r._init,r=o(r._payload),t.type=r,o=t.tag=oV(r),e=To(r,e),o){case 0:t=Ey(null,t,r,e,n);break e;case 1:t=lw(null,t,r,e,n);break e;case 11:t=aw(null,t,r,e,n);break e;case 14:t=sw(null,t,r,To(r.type,e),n);break e}throw Error(le(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),Ey(e,t,r,o,n);case 1:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),lw(e,t,r,o,n);case 3:e:{if(ok(t),e===null)throw Error(le(387));r=t.pendingProps,i=t.memoizedState,o=i.element,P_(e,t),T1(t,r,null,n);var s=t.memoizedState;if(r=s.element,i.isDehydrated)if(i={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=i,t.memoizedState=i,t.flags&256){o=vu(Error(le(423)),t),t=uw(e,t,r,n,o);break e}else if(r!==o){o=vu(Error(le(424)),t),t=uw(e,t,r,n,o);break e}else for(Fr=Fa(t.stateNode.containerInfo.firstChild),$r=t,Ft=!0,Mo=null,n=O_(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(hu(),r===o){t=Yi(e,t,n);break e}ir(e,t,r,n)}t=t.child}return t;case 5:return M_(t),e===null&&wy(t),r=t.type,o=t.pendingProps,i=e!==null?e.memoizedProps:null,s=o.children,gy(r,o)?s=null:i!==null&&gy(r,i)&&(t.flags|=32),rk(e,t),ir(e,t,s,n),t.child;case 6:return e===null&&wy(t),null;case 13:return ik(e,t,n);case 4:return W5(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=mu(t,null,r,n):ir(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),aw(e,t,r,o,n);case 7:return ir(e,t,t.pendingProps,n),t.child;case 8:return ir(e,t,t.pendingProps.children,n),t.child;case 12:return ir(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,i=t.memoizedProps,s=o.value,At(P1,r._currentValue),r._currentValue=s,i!==null)if(Bo(i.value,s)){if(i.children===o.children&&!xr.current){t=Yi(e,t,n);break e}}else for(i=t.child,i!==null&&(i.return=t);i!==null;){var u=i.dependencies;if(u!==null){s=i.child;for(var c=u.firstContext;c!==null;){if(c.context===r){if(i.tag===1){c=Gi(-1,n&-n),c.tag=2;var d=i.updateQueue;if(d!==null){d=d.shared;var f=d.pending;f===null?c.next=c:(c.next=f.next,f.next=c),d.pending=c}}i.lanes|=n,c=i.alternate,c!==null&&(c.lanes|=n),Sy(i.return,n,t),u.lanes|=n;break}c=c.next}}else if(i.tag===10)s=i.type===t.type?null:i.child;else if(i.tag===18){if(s=i.return,s===null)throw Error(le(341));s.lanes|=n,u=s.alternate,u!==null&&(u.lanes|=n),Sy(s,n,t),s=i.sibling}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===t){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}ir(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,eu(t,n),o=co(o),r=r(o),t.flags|=1,ir(e,t,r,n),t.child;case 14:return r=t.type,o=To(r,t.pendingProps),o=To(r.type,o),sw(e,t,r,o,n);case 15:return tk(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),Wh(e,t),t.tag=1,wr(r)?(e=!0,k1(t)):e=!1,eu(t,n),T_(t,r,o),_y(t,r,o,n),Ly(null,t,r,!0,e,n);case 19:return ak(e,t,n);case 22:return nk(e,t,n)}throw Error(le(156,t.tag))};function Sk(e,t){return KC(e,t)}function rV(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function so(e,t,n,r){return new rV(e,t,n,r)}function r3(e){return e=e.prototype,!(!e||!e.isReactComponent)}function oV(e){if(typeof e=="function")return r3(e)?1:0;if(e!=null){if(e=e.$$typeof,e===S5)return 11;if(e===C5)return 14}return 2}function Wa(e,t){var n=e.alternate;return n===null?(n=so(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Uh(e,t,n,r,o,i){var s=2;if(r=e,typeof e=="function")r3(e)&&(s=1);else if(typeof e=="string")s=5;else e:switch(e){case Rl:return Ts(n.children,o,i,t);case w5:s=8,o|=8;break;case K2:return e=so(12,n,t,o|2),e.elementType=K2,e.lanes=i,e;case q2:return e=so(13,n,t,o),e.elementType=q2,e.lanes=i,e;case Y2:return e=so(19,n,t,o),e.elementType=Y2,e.lanes=i,e;case IC:return O0(n,o,i,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case AC:s=10;break e;case TC:s=9;break e;case S5:s=11;break e;case C5:s=14;break e;case Sa:s=16,r=null;break e}throw Error(le(130,e==null?e:typeof e,""))}return t=so(s,n,t,o),t.elementType=e,t.type=r,t.lanes=i,t}function Ts(e,t,n,r){return e=so(7,e,r,t),e.lanes=n,e}function O0(e,t,n,r){return e=so(22,e,r,t),e.elementType=IC,e.lanes=n,e.stateNode={isHidden:!1},e}function Kv(e,t,n){return e=so(6,e,null,t),e.lanes=n,e}function qv(e,t,n){return t=so(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function iV(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Av(0),this.expirationTimes=Av(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Av(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function o3(e,t,n,r,o,i,s,u,c){return e=new iV(e,t,n,u,c),t===1?(t=1,i===!0&&(t|=8)):t=0,i=so(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},V5(i),e}function aV(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=Ur})(Iu);var ww=Iu.exports;G2.createRoot=ww.createRoot,G2.hydrateRoot=ww.hydrateRoot;var ai=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,z0={exports:{}},F0={};/** + * @license React + * react-jsx-runtime.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var dV=C.exports,fV=Symbol.for("react.element"),pV=Symbol.for("react.fragment"),hV=Object.prototype.hasOwnProperty,mV=dV.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,gV={key:!0,ref:!0,__self:!0,__source:!0};function Ek(e,t,n){var r,o={},i=null,s=null;n!==void 0&&(i=""+n),t.key!==void 0&&(i=""+t.key),t.ref!==void 0&&(s=t.ref);for(r in t)hV.call(t,r)&&!gV.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)o[r]===void 0&&(o[r]=t[r]);return{$$typeof:fV,type:e,key:i,ref:s,props:o,_owner:mV.current}}F0.Fragment=pV;F0.jsx=Ek;F0.jsxs=Ek;(function(e){e.exports=F0})(z0);const yn=z0.exports.Fragment,v=z0.exports.jsx,q=z0.exports.jsxs;var l3=C.exports.createContext({});l3.displayName="ColorModeContext";function u3(){const e=C.exports.useContext(l3);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var oh={light:"chakra-ui-light",dark:"chakra-ui-dark"};function vV(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const o=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,o?.()},setClassName(r){document.body.classList.add(r?oh.dark:oh.light),document.body.classList.remove(r?oh.light:oh.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const o=n.query(),i=s=>{r(s.matches?"dark":"light")};return typeof o.addListener=="function"?o.addListener(i):o.addEventListener("change",i),()=>{typeof o.removeListener=="function"?o.removeListener(i):o.removeEventListener("change",i)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var yV="chakra-ui-color-mode";function bV(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var xV=bV(yV),Sw=()=>{};function Cw(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function Lk(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:o,disableTransitionOnChange:i}={},colorModeManager:s=xV}=e,u=o==="dark"?"dark":"light",[c,d]=C.exports.useState(()=>Cw(s,u)),[f,h]=C.exports.useState(()=>Cw(s)),{getSystemTheme:m,setClassName:g,setDataset:b,addListener:w}=C.exports.useMemo(()=>vV({preventTransition:i}),[i]),k=o==="system"&&!c?f:c,S=C.exports.useCallback(L=>{const T=L==="system"?m():L;d(T),g(T==="dark"),b(T),s.set(T)},[s,m,g,b]);ai(()=>{o==="system"&&h(m())},[]),C.exports.useEffect(()=>{const L=s.get();if(L){S(L);return}if(o==="system"){S("system");return}S(u)},[s,u,o,S]);const x=C.exports.useCallback(()=>{S(k==="dark"?"light":"dark")},[k,S]);C.exports.useEffect(()=>{if(!!r)return w(S)},[r,w,S]);const _=C.exports.useMemo(()=>({colorMode:t??k,toggleColorMode:t?Sw:x,setColorMode:t?Sw:S}),[k,x,S,t]);return v(l3.Provider,{value:_,children:n})}Lk.displayName="ColorModeProvider";var wV=new Set(["dark","light","system"]);function SV(e){let t=e;return wV.has(t)||(t="light"),t}function CV(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,o=SV(t),i=n==="cookie",s=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${o}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); + `,u=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${o}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); + `;return`!${i?s:u}`.trim()}function _V(e={}){return v("script",{id:"chakra-script",dangerouslySetInnerHTML:{__html:CV(e)}})}var By={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",o=800,i=16,s=9007199254740991,u="[object Arguments]",c="[object Array]",d="[object AsyncFunction]",f="[object Boolean]",h="[object Date]",m="[object Error]",g="[object Function]",b="[object GeneratorFunction]",w="[object Map]",k="[object Number]",S="[object Null]",x="[object Object]",_="[object Proxy]",L="[object RegExp]",T="[object Set]",R="[object String]",N="[object Undefined]",F="[object WeakMap]",G="[object ArrayBuffer]",W="[object DataView]",J="[object Float32Array]",Ee="[object Float64Array]",he="[object Int8Array]",me="[object Int16Array]",ce="[object Int32Array]",ge="[object Uint8Array]",ne="[object Uint8ClampedArray]",j="[object Uint16Array]",Y="[object Uint32Array]",K=/[\\^$.*+?()[\]{}|]/g,O=/^\[object .+?Constructor\]$/,H=/^(?:0|[1-9]\d*)$/,se={};se[J]=se[Ee]=se[he]=se[me]=se[ce]=se[ge]=se[ne]=se[j]=se[Y]=!0,se[u]=se[c]=se[G]=se[f]=se[W]=se[h]=se[m]=se[g]=se[w]=se[k]=se[x]=se[L]=se[T]=se[R]=se[F]=!1;var de=typeof Vi=="object"&&Vi&&Vi.Object===Object&&Vi,ye=typeof self=="object"&&self&&self.Object===Object&&self,be=de||ye||Function("return this")(),Pe=t&&!t.nodeType&&t,fe=Pe&&!0&&e&&!e.nodeType&&e,_e=fe&&fe.exports===Pe,De=_e&&de.process,st=function(){try{var I=fe&&fe.require&&fe.require("util").types;return I||De&&De.binding&&De.binding("util")}catch{}}(),It=st&&st.isTypedArray;function bn(I,z,U){switch(U.length){case 0:return I.call(z);case 1:return I.call(z,U[0]);case 2:return I.call(z,U[0],U[1]);case 3:return I.call(z,U[0],U[1],U[2])}return I.apply(z,U)}function xe(I,z){for(var U=-1,we=Array(I);++U-1}function Qm(I,z){var U=this.__data__,we=Ci(U,I);return we<0?(++this.size,U.push([I,z])):U[we][1]=z,this}bo.prototype.clear=Gu,bo.prototype.delete=Ym,bo.prototype.get=Zu,bo.prototype.has=Xm,bo.prototype.set=Qm;function oa(I){var z=-1,U=I==null?0:I.length;for(this.clear();++z1?U[Ze-1]:void 0,$e=Ze>2?U[2]:void 0;for(pt=I.length>3&&typeof pt=="function"?(Ze--,pt):void 0,$e&&Uf(U[0],U[1],$e)&&(pt=Ze<3?void 0:pt,Ze=1),z=Object(z);++we-1&&I%1==0&&I0){if(++z>=o)return arguments[0]}else z=0;return I.apply(void 0,arguments)}}function Yf(I){if(I!=null){try{return Jt.call(I)}catch{}try{return I+""}catch{}}return""}function ol(I,z){return I===z||I!==I&&z!==z}var ec=qu(function(){return arguments}())?qu:function(I){return is(I)&&Gt.call(I,"callee")&&!$o.call(I,"callee")},tc=Array.isArray;function il(I){return I!=null&&Qf(I.length)&&!nc(I)}function vg(I){return is(I)&&il(I)}var Xf=os||xg;function nc(I){if(!xo(I))return!1;var z=Js(I);return z==g||z==b||z==d||z==_}function Qf(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=s}function xo(I){var z=typeof I;return I!=null&&(z=="object"||z=="function")}function is(I){return I!=null&&typeof I=="object"}function yg(I){if(!is(I)||Js(I)!=x)return!1;var z=Fn(I);if(z===null)return!0;var U=Gt.call(z,"constructor")&&z.constructor;return typeof U=="function"&&U instanceof U&&Jt.call(U)==ft}var Jf=It?Ie(It):Df;function bg(I){return Vf(I,ep(I))}function ep(I){return il(I)?ug(I,!0):fg(I)}var _t=el(function(I,z,U,we){zf(I,z,U,we)});function xt(I){return function(){return I}}function tp(I){return I}function xg(){return!1}e.exports=_t})(By,By.exports);const Ga=By.exports;function ri(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function Ul(e,...t){return kV(e)?e(...t):e}var kV=e=>typeof e=="function",EV=e=>/!(important)?$/.test(e),_w=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,$y=(e,t)=>n=>{const r=String(t),o=EV(r),i=_w(r),s=e?`${e}.${i}`:i;let u=ri(n.__cssMap)&&s in n.__cssMap?n.__cssMap[s].varRef:t;return u=_w(u),o?`${u} !important`:u};function Od(e){const{scale:t,transform:n,compose:r}=e;return(i,s)=>{const u=$y(t,i)(s);let c=n?.(u,s)??u;return r&&(c=r(c,s)),c}}var ih=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Eo(e,t){return n=>{const r={property:n,scale:e};return r.transform=Od({scale:e,transform:t}),r}}var LV=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function PV(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:LV(t),transform:n?Od({scale:n,compose:r}):r}}var Pk=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function AV(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...Pk].join(" ")}function TV(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...Pk].join(" ")}var IV={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},OV={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function MV(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var RV={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},Ak="& > :not(style) ~ :not(style)",NV={[Ak]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},DV={[Ak]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},Vy={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},zV=new Set(Object.values(Vy)),Tk=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),FV=e=>e.trim();function BV(e,t){var n;if(e==null||Tk.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:o,values:i}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!o||!i)return e;const s=o.includes("-gradient")?o:`${o}-gradient`,[u,...c]=i.split(",").map(FV).filter(Boolean);if(c?.length===0)return e;const d=u in Vy?Vy[u]:u;c.unshift(d);const f=c.map(h=>{if(zV.has(h))return h;const m=h.indexOf(" "),[g,b]=m!==-1?[h.substr(0,m),h.substr(m+1)]:[h],w=Ik(b)?b:b&&b.split(" "),k=`colors.${g}`,S=k in t.__cssMap?t.__cssMap[k].varRef:g;return w?[S,...Array.isArray(w)?w:[w]].join(" "):S});return`${s}(${f.join(", ")})`}var Ik=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),$V=(e,t)=>BV(e,t??{});function VV(e){return/^var\(--.+\)$/.test(e)}var WV=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},Uo=e=>t=>`${e}(${t})`,Je={filter(e){return e!=="auto"?e:IV},backdropFilter(e){return e!=="auto"?e:OV},ring(e){return MV(Je.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?AV():e==="auto-gpu"?TV():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=WV(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(VV(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:$V,blur:Uo("blur"),opacity:Uo("opacity"),brightness:Uo("brightness"),contrast:Uo("contrast"),dropShadow:Uo("drop-shadow"),grayscale:Uo("grayscale"),hueRotate:Uo("hue-rotate"),invert:Uo("invert"),saturate:Uo("saturate"),sepia:Uo("sepia"),bgImage(e){return e==null||Ik(e)||Tk.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=RV[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},B={borderWidths:Eo("borderWidths"),borderStyles:Eo("borderStyles"),colors:Eo("colors"),borders:Eo("borders"),radii:Eo("radii",Je.px),space:Eo("space",ih(Je.vh,Je.px)),spaceT:Eo("space",ih(Je.vh,Je.px)),degreeT(e){return{property:e,transform:Je.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:Od({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Eo("sizes",ih(Je.vh,Je.px)),sizesT:Eo("sizes",ih(Je.vh,Je.fraction)),shadows:Eo("shadows"),logical:PV,blur:Eo("blur",Je.blur)},Gh={background:B.colors("background"),backgroundColor:B.colors("backgroundColor"),backgroundImage:B.propT("backgroundImage",Je.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:Je.bgClip},bgSize:B.prop("backgroundSize"),bgPosition:B.prop("backgroundPosition"),bg:B.colors("background"),bgColor:B.colors("backgroundColor"),bgPos:B.prop("backgroundPosition"),bgRepeat:B.prop("backgroundRepeat"),bgAttachment:B.prop("backgroundAttachment"),bgGradient:B.propT("backgroundImage",Je.gradient),bgClip:{transform:Je.bgClip}};Object.assign(Gh,{bgImage:Gh.backgroundImage,bgImg:Gh.backgroundImage});var ot={border:B.borders("border"),borderWidth:B.borderWidths("borderWidth"),borderStyle:B.borderStyles("borderStyle"),borderColor:B.colors("borderColor"),borderRadius:B.radii("borderRadius"),borderTop:B.borders("borderTop"),borderBlockStart:B.borders("borderBlockStart"),borderTopLeftRadius:B.radii("borderTopLeftRadius"),borderStartStartRadius:B.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:B.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:B.radii("borderTopRightRadius"),borderStartEndRadius:B.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:B.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:B.borders("borderRight"),borderInlineEnd:B.borders("borderInlineEnd"),borderBottom:B.borders("borderBottom"),borderBlockEnd:B.borders("borderBlockEnd"),borderBottomLeftRadius:B.radii("borderBottomLeftRadius"),borderBottomRightRadius:B.radii("borderBottomRightRadius"),borderLeft:B.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:B.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:B.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:B.borders(["borderLeft","borderRight"]),borderInline:B.borders("borderInline"),borderY:B.borders(["borderTop","borderBottom"]),borderBlock:B.borders("borderBlock"),borderTopWidth:B.borderWidths("borderTopWidth"),borderBlockStartWidth:B.borderWidths("borderBlockStartWidth"),borderTopColor:B.colors("borderTopColor"),borderBlockStartColor:B.colors("borderBlockStartColor"),borderTopStyle:B.borderStyles("borderTopStyle"),borderBlockStartStyle:B.borderStyles("borderBlockStartStyle"),borderBottomWidth:B.borderWidths("borderBottomWidth"),borderBlockEndWidth:B.borderWidths("borderBlockEndWidth"),borderBottomColor:B.colors("borderBottomColor"),borderBlockEndColor:B.colors("borderBlockEndColor"),borderBottomStyle:B.borderStyles("borderBottomStyle"),borderBlockEndStyle:B.borderStyles("borderBlockEndStyle"),borderLeftWidth:B.borderWidths("borderLeftWidth"),borderInlineStartWidth:B.borderWidths("borderInlineStartWidth"),borderLeftColor:B.colors("borderLeftColor"),borderInlineStartColor:B.colors("borderInlineStartColor"),borderLeftStyle:B.borderStyles("borderLeftStyle"),borderInlineStartStyle:B.borderStyles("borderInlineStartStyle"),borderRightWidth:B.borderWidths("borderRightWidth"),borderInlineEndWidth:B.borderWidths("borderInlineEndWidth"),borderRightColor:B.colors("borderRightColor"),borderInlineEndColor:B.colors("borderInlineEndColor"),borderRightStyle:B.borderStyles("borderRightStyle"),borderInlineEndStyle:B.borderStyles("borderInlineEndStyle"),borderTopRadius:B.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:B.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:B.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:B.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(ot,{rounded:ot.borderRadius,roundedTop:ot.borderTopRadius,roundedTopLeft:ot.borderTopLeftRadius,roundedTopRight:ot.borderTopRightRadius,roundedTopStart:ot.borderStartStartRadius,roundedTopEnd:ot.borderStartEndRadius,roundedBottom:ot.borderBottomRadius,roundedBottomLeft:ot.borderBottomLeftRadius,roundedBottomRight:ot.borderBottomRightRadius,roundedBottomStart:ot.borderEndStartRadius,roundedBottomEnd:ot.borderEndEndRadius,roundedLeft:ot.borderLeftRadius,roundedRight:ot.borderRightRadius,roundedStart:ot.borderInlineStartRadius,roundedEnd:ot.borderInlineEndRadius,borderStart:ot.borderInlineStart,borderEnd:ot.borderInlineEnd,borderTopStartRadius:ot.borderStartStartRadius,borderTopEndRadius:ot.borderStartEndRadius,borderBottomStartRadius:ot.borderEndStartRadius,borderBottomEndRadius:ot.borderEndEndRadius,borderStartRadius:ot.borderInlineStartRadius,borderEndRadius:ot.borderInlineEndRadius,borderStartWidth:ot.borderInlineStartWidth,borderEndWidth:ot.borderInlineEndWidth,borderStartColor:ot.borderInlineStartColor,borderEndColor:ot.borderInlineEndColor,borderStartStyle:ot.borderInlineStartStyle,borderEndStyle:ot.borderInlineEndStyle});var jV={color:B.colors("color"),textColor:B.colors("color"),fill:B.colors("fill"),stroke:B.colors("stroke")},Wy={boxShadow:B.shadows("boxShadow"),mixBlendMode:!0,blendMode:B.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:B.prop("backgroundBlendMode"),opacity:!0};Object.assign(Wy,{shadow:Wy.boxShadow});var HV={filter:{transform:Je.filter},blur:B.blur("--chakra-blur"),brightness:B.propT("--chakra-brightness",Je.brightness),contrast:B.propT("--chakra-contrast",Je.contrast),hueRotate:B.degreeT("--chakra-hue-rotate"),invert:B.propT("--chakra-invert",Je.invert),saturate:B.propT("--chakra-saturate",Je.saturate),dropShadow:B.propT("--chakra-drop-shadow",Je.dropShadow),backdropFilter:{transform:Je.backdropFilter},backdropBlur:B.blur("--chakra-backdrop-blur"),backdropBrightness:B.propT("--chakra-backdrop-brightness",Je.brightness),backdropContrast:B.propT("--chakra-backdrop-contrast",Je.contrast),backdropHueRotate:B.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:B.propT("--chakra-backdrop-invert",Je.invert),backdropSaturate:B.propT("--chakra-backdrop-saturate",Je.saturate)},B1={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:Je.flexDirection},experimental_spaceX:{static:NV,transform:Od({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:DV,transform:Od({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:B.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:B.space("gap"),rowGap:B.space("rowGap"),columnGap:B.space("columnGap")};Object.assign(B1,{flexDir:B1.flexDirection});var Ok={gridGap:B.space("gridGap"),gridColumnGap:B.space("gridColumnGap"),gridRowGap:B.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},UV={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:Je.outline},outlineOffset:!0,outlineColor:B.colors("outlineColor")},oo={width:B.sizesT("width"),inlineSize:B.sizesT("inlineSize"),height:B.sizes("height"),blockSize:B.sizes("blockSize"),boxSize:B.sizes(["width","height"]),minWidth:B.sizes("minWidth"),minInlineSize:B.sizes("minInlineSize"),minHeight:B.sizes("minHeight"),minBlockSize:B.sizes("minBlockSize"),maxWidth:B.sizes("maxWidth"),maxInlineSize:B.sizes("maxInlineSize"),maxHeight:B.sizes("maxHeight"),maxBlockSize:B.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:B.propT("float",Je.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(oo,{w:oo.width,h:oo.height,minW:oo.minWidth,maxW:oo.maxWidth,minH:oo.minHeight,maxH:oo.maxHeight,overscroll:oo.overscrollBehavior,overscrollX:oo.overscrollBehaviorX,overscrollY:oo.overscrollBehaviorY});var GV={listStyleType:!0,listStylePosition:!0,listStylePos:B.prop("listStylePosition"),listStyleImage:!0,listStyleImg:B.prop("listStyleImage")};function ZV(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const u=t.get(r);if(u.has(o))return u.get(o);const c=e(r,o,i,s);return u.set(o,c),c}},qV=KV(ZV),YV={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},XV={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},Yv=(e,t,n)=>{const r={},o=qV(e,t,{});for(const i in o)i in n&&n[i]!=null||(r[i]=o[i]);return r},QV={srOnly:{transform(e){return e===!0?YV:e==="focusable"?XV:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>Yv(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>Yv(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>Yv(t,e,n)}},td={position:!0,pos:B.prop("position"),zIndex:B.prop("zIndex","zIndices"),inset:B.spaceT("inset"),insetX:B.spaceT(["left","right"]),insetInline:B.spaceT("insetInline"),insetY:B.spaceT(["top","bottom"]),insetBlock:B.spaceT("insetBlock"),top:B.spaceT("top"),insetBlockStart:B.spaceT("insetBlockStart"),bottom:B.spaceT("bottom"),insetBlockEnd:B.spaceT("insetBlockEnd"),left:B.spaceT("left"),insetInlineStart:B.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:B.spaceT("right"),insetInlineEnd:B.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(td,{insetStart:td.insetInlineStart,insetEnd:td.insetInlineEnd});var JV={ring:{transform:Je.ring},ringColor:B.colors("--chakra-ring-color"),ringOffset:B.prop("--chakra-ring-offset-width"),ringOffsetColor:B.colors("--chakra-ring-offset-color"),ringInset:B.prop("--chakra-ring-inset")},Mt={margin:B.spaceT("margin"),marginTop:B.spaceT("marginTop"),marginBlockStart:B.spaceT("marginBlockStart"),marginRight:B.spaceT("marginRight"),marginInlineEnd:B.spaceT("marginInlineEnd"),marginBottom:B.spaceT("marginBottom"),marginBlockEnd:B.spaceT("marginBlockEnd"),marginLeft:B.spaceT("marginLeft"),marginInlineStart:B.spaceT("marginInlineStart"),marginX:B.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:B.spaceT("marginInline"),marginY:B.spaceT(["marginTop","marginBottom"]),marginBlock:B.spaceT("marginBlock"),padding:B.space("padding"),paddingTop:B.space("paddingTop"),paddingBlockStart:B.space("paddingBlockStart"),paddingRight:B.space("paddingRight"),paddingBottom:B.space("paddingBottom"),paddingBlockEnd:B.space("paddingBlockEnd"),paddingLeft:B.space("paddingLeft"),paddingInlineStart:B.space("paddingInlineStart"),paddingInlineEnd:B.space("paddingInlineEnd"),paddingX:B.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:B.space("paddingInline"),paddingY:B.space(["paddingTop","paddingBottom"]),paddingBlock:B.space("paddingBlock")};Object.assign(Mt,{m:Mt.margin,mt:Mt.marginTop,mr:Mt.marginRight,me:Mt.marginInlineEnd,marginEnd:Mt.marginInlineEnd,mb:Mt.marginBottom,ml:Mt.marginLeft,ms:Mt.marginInlineStart,marginStart:Mt.marginInlineStart,mx:Mt.marginX,my:Mt.marginY,p:Mt.padding,pt:Mt.paddingTop,py:Mt.paddingY,px:Mt.paddingX,pb:Mt.paddingBottom,pl:Mt.paddingLeft,ps:Mt.paddingInlineStart,paddingStart:Mt.paddingInlineStart,pr:Mt.paddingRight,pe:Mt.paddingInlineEnd,paddingEnd:Mt.paddingInlineEnd});var eW={textDecorationColor:B.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:B.shadows("textShadow")},tW={clipPath:!0,transform:B.propT("transform",Je.transform),transformOrigin:!0,translateX:B.spaceT("--chakra-translate-x"),translateY:B.spaceT("--chakra-translate-y"),skewX:B.degreeT("--chakra-skew-x"),skewY:B.degreeT("--chakra-skew-y"),scaleX:B.prop("--chakra-scale-x"),scaleY:B.prop("--chakra-scale-y"),scale:B.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:B.degreeT("--chakra-rotate")},nW={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:B.prop("transitionDuration","transition.duration"),transitionProperty:B.prop("transitionProperty","transition.property"),transitionTimingFunction:B.prop("transitionTimingFunction","transition.easing")},rW={fontFamily:B.prop("fontFamily","fonts"),fontSize:B.prop("fontSize","fontSizes",Je.px),fontWeight:B.prop("fontWeight","fontWeights"),lineHeight:B.prop("lineHeight","lineHeights"),letterSpacing:B.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},oW={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:B.spaceT("scrollMargin"),scrollMarginTop:B.spaceT("scrollMarginTop"),scrollMarginBottom:B.spaceT("scrollMarginBottom"),scrollMarginLeft:B.spaceT("scrollMarginLeft"),scrollMarginRight:B.spaceT("scrollMarginRight"),scrollMarginX:B.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:B.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:B.spaceT("scrollPadding"),scrollPaddingTop:B.spaceT("scrollPaddingTop"),scrollPaddingBottom:B.spaceT("scrollPaddingBottom"),scrollPaddingLeft:B.spaceT("scrollPaddingLeft"),scrollPaddingRight:B.spaceT("scrollPaddingRight"),scrollPaddingX:B.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:B.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function Mk(e){return ri(e)&&e.reference?e.reference:String(e)}var B0=(e,...t)=>t.map(Mk).join(` ${e} `).replace(/calc/g,""),kw=(...e)=>`calc(${B0("+",...e)})`,Ew=(...e)=>`calc(${B0("-",...e)})`,jy=(...e)=>`calc(${B0("*",...e)})`,Lw=(...e)=>`calc(${B0("/",...e)})`,Pw=e=>{const t=Mk(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:jy(t,-1)},bs=Object.assign(e=>({add:(...t)=>bs(kw(e,...t)),subtract:(...t)=>bs(Ew(e,...t)),multiply:(...t)=>bs(jy(e,...t)),divide:(...t)=>bs(Lw(e,...t)),negate:()=>bs(Pw(e)),toString:()=>e.toString()}),{add:kw,subtract:Ew,multiply:jy,divide:Lw,negate:Pw});function iW(e,t="-"){return e.replace(/\s+/g,t)}function aW(e){const t=iW(e.toString());return lW(sW(t))}function sW(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function lW(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function uW(e,t=""){return[t,e].filter(Boolean).join("-")}function cW(e,t){return`var(${e}${t?`, ${t}`:""})`}function dW(e,t=""){return aW(`--${uW(e,t)}`)}function ts(e,t,n){const r=dW(e,n);return{variable:r,reference:cW(r,t)}}function fW(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function pW(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function hW(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function Hy(e){if(e==null)return e;const{unitless:t}=hW(e);return t||typeof e=="number"?`${e}px`:e}var Rk=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,c3=e=>Object.fromEntries(Object.entries(e).sort(Rk));function Aw(e){const t=c3(e);return Object.assign(Object.values(t),t)}function mW(e){const t=Object.keys(c3(e));return new Set(t)}function Tw(e){if(!e)return e;e=Hy(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function $c(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${Hy(e)})`),t&&n.push("and",`(max-width: ${Hy(t)})`),n.join(" ")}function gW(e){if(!e)return null;e.base=e.base??"0px";const t=Aw(e),n=Object.entries(e).sort(Rk).map(([i,s],u,c)=>{let[,d]=c[u+1]??[];return d=parseFloat(d)>0?Tw(d):void 0,{_minW:Tw(s),breakpoint:i,minW:s,maxW:d,maxWQuery:$c(null,d),minWQuery:$c(s),minMaxQuery:$c(s,d)}}),r=mW(e),o=Array.from(r.values());return{keys:r,normalized:t,isResponsive(i){const s=Object.keys(i);return s.length>0&&s.every(u=>r.has(u))},asObject:c3(e),asArray:Aw(e),details:n,media:[null,...t.map(i=>$c(i)).slice(1)],toArrayValue(i){if(!fW(i))throw new Error("toArrayValue: value must be an object");const s=o.map(u=>i[u]??null);for(;pW(s)===null;)s.pop();return s},toObjectValue(i){if(!Array.isArray(i))throw new Error("toObjectValue: value must be an array");return i.reduce((s,u,c)=>{const d=o[c];return d!=null&&u!=null&&(s[d]=u),s},{})}}}var An={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},ga=e=>Nk(t=>e(t,"&"),"[role=group]","[data-group]",".group"),Ri=e=>Nk(t=>e(t,"~ &"),"[data-peer]",".peer"),Nk=(e,...t)=>t.map(e).join(", "),$0={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:ga(An.hover),_peerHover:Ri(An.hover),_groupFocus:ga(An.focus),_peerFocus:Ri(An.focus),_groupFocusVisible:ga(An.focusVisible),_peerFocusVisible:Ri(An.focusVisible),_groupActive:ga(An.active),_peerActive:Ri(An.active),_groupDisabled:ga(An.disabled),_peerDisabled:Ri(An.disabled),_groupInvalid:ga(An.invalid),_peerInvalid:Ri(An.invalid),_groupChecked:ga(An.checked),_peerChecked:Ri(An.checked),_groupFocusWithin:ga(An.focusWithin),_peerFocusWithin:Ri(An.focusWithin),_peerPlaceholderShown:Ri(An.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},vW=Object.keys($0);function Iw(e,t){return ts(String(e).replace(/\./g,"-"),void 0,t)}function yW(e,t){let n={};const r={};for(const[o,i]of Object.entries(e)){const{isSemantic:s,value:u}=i,{variable:c,reference:d}=Iw(o,t?.cssVarPrefix);if(!s){if(o.startsWith("space")){const m=o.split("."),[g,...b]=m,w=`${g}.-${b.join(".")}`,k=bs.negate(u),S=bs.negate(d);r[w]={value:k,var:c,varRef:S}}n[c]=u,r[o]={value:u,var:c,varRef:d};continue}const f=m=>{const b=[String(o).split(".")[0],m].join(".");if(!e[b])return m;const{reference:k}=Iw(b,t?.cssVarPrefix);return k},h=ri(u)?u:{default:u};n=Ga(n,Object.entries(h).reduce((m,[g,b])=>{var w;const k=f(b);if(g==="default")return m[c]=k,m;const S=((w=$0)==null?void 0:w[g])??g;return m[S]={[c]:k},m},{})),r[o]={value:d,var:c,varRef:d}}return{cssVars:n,cssMap:r}}function bW(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xW(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var wW=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function SW(e){return xW(e,wW)}function CW(e){return e.semanticTokens}function _W(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...o}=e;return o}function kW({tokens:e,semanticTokens:t}){const n=Object.entries(Uy(e)??{}).map(([o,i])=>[o,{isSemantic:!1,value:i}]),r=Object.entries(Uy(t,1)??{}).map(([o,i])=>[o,{isSemantic:!0,value:i}]);return Object.fromEntries([...n,...r])}function Uy(e,t=1/0){return!ri(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,o])=>(ri(o)||Array.isArray(o)?Object.entries(Uy(o,t-1)).forEach(([i,s])=>{n[`${r}.${i}`]=s}):n[r]=o,n),{})}function EW(e){var t;const n=_W(e),r=SW(n),o=CW(n),i=kW({tokens:r,semanticTokens:o}),s=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:u,cssVars:c}=yW(i,{cssVarPrefix:s});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...c},__cssMap:u,__breakpoints:gW(n.breakpoints)}),n}var d3=Ga({},Gh,ot,jV,B1,oo,HV,JV,UV,Ok,QV,td,Wy,Mt,oW,rW,eW,tW,GV,nW),LW=Object.assign({},Mt,oo,B1,Ok,td),PW=Object.keys(LW),AW=[...Object.keys(d3),...vW],TW={...d3,...$0},IW=e=>e in TW;function OW(e){return/^var\(--.+\)$/.test(e)}var MW=(e,t)=>e.startsWith("--")&&typeof t=="string"&&!OW(t),RW=(e,t)=>{if(t==null)return t;const n=u=>{var c,d;return(d=(c=e.__cssMap)==null?void 0:c[u])==null?void 0:d.varRef},r=u=>n(u)??u,o=t.split(",").map(u=>u.trim()),[i,s]=o;return t=n(i)??r(s)??r(t),t};function NW(e){const{configs:t={},pseudos:n={},theme:r}=e;if(!r.__breakpoints)return()=>({});const{isResponsive:o,toArrayValue:i,media:s}=r.__breakpoints,u=(c,d=!1)=>{var f;const h=Ul(c,r);let m={};for(let g in h){let b=Ul(h[g],r);if(b==null)continue;if(Array.isArray(b)||ri(b)&&o(b)){let x=Array.isArray(b)?b:i(b);x=x.slice(0,s.length);for(let _=0;_t=>NW({theme:t,pseudos:$0,configs:d3})(e);function Bt(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function DW(e,t){if(Array.isArray(e))return e;if(ri(e))return t(e);if(e!=null)return[e]}function zW(e,t){for(let n=t+1;n{Ga(d,{[_]:m?x[_]:{[S]:x[_]}})});continue}if(!g){m?Ga(d,x):d[S]=x;continue}d[S]=x}}return d}}function BW(e){return t=>{const{variant:n,size:r,theme:o}=t,i=FW(o);return Ga({},Ul(e.baseStyle??{},t),i(e,"sizes",r,t),i(e,"variants",n,t))}}function $W(e,t,n){var r,o;return((o=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:o.varRef)??n}function vt(e){return bW(e,["styleConfig","size","variant","colorScheme"])}function VW(e){if(e.sheet)return e.sheet;for(var t=0;t0?vr(Ru,--kr):0,bu--,ln===10&&(bu=1,W0--),ln}function Vr(){return ln=kr<$k?vr(Ru,kr++):0,bu++,ln===10&&(bu=1,W0++),ln}function si(){return vr(Ru,kr)}function Zh(){return kr}function ff(e,t){return Md(Ru,e,t)}function Rd(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Vk(e){return W0=bu=1,$k=Qo(Ru=e),kr=0,[]}function Wk(e){return Ru="",e}function Kh(e){return Bk(ff(kr-1,Zy(e===91?e+2:e===40?e+1:e)))}function QW(e){for(;(ln=si())&&ln<33;)Vr();return Rd(e)>2||Rd(ln)>3?"":" "}function JW(e,t){for(;--t&&Vr()&&!(ln<48||ln>102||ln>57&&ln<65||ln>70&&ln<97););return ff(e,Zh()+(t<6&&si()==32&&Vr()==32))}function Zy(e){for(;Vr();)switch(ln){case e:return kr;case 34:case 39:e!==34&&e!==39&&Zy(ln);break;case 40:e===41&&Zy(e);break;case 92:Vr();break}return kr}function ej(e,t){for(;Vr()&&e+ln!==47+10;)if(e+ln===42+42&&si()===47)break;return"/*"+ff(t,kr-1)+"*"+V0(e===47?e:Vr())}function tj(e){for(;!Rd(si());)Vr();return ff(e,kr)}function nj(e){return Wk(qh("",null,null,null,[""],e=Vk(e),0,[0],e))}function qh(e,t,n,r,o,i,s,u,c){for(var d=0,f=0,h=s,m=0,g=0,b=0,w=1,k=1,S=1,x=0,_="",L=o,T=i,R=r,N=_;k;)switch(b=x,x=Vr()){case 40:if(b!=108&&N.charCodeAt(h-1)==58){Gy(N+=dt(Kh(x),"&","&\f"),"&\f")!=-1&&(S=-1);break}case 34:case 39:case 91:N+=Kh(x);break;case 9:case 10:case 13:case 32:N+=QW(b);break;case 92:N+=JW(Zh()-1,7);continue;case 47:switch(si()){case 42:case 47:ah(rj(ej(Vr(),Zh()),t,n),c);break;default:N+="/"}break;case 123*w:u[d++]=Qo(N)*S;case 125*w:case 59:case 0:switch(x){case 0:case 125:k=0;case 59+f:g>0&&Qo(N)-h&&ah(g>32?Mw(N+";",r,n,h-1):Mw(dt(N," ","")+";",r,n,h-2),c);break;case 59:N+=";";default:if(ah(R=Ow(N,t,n,d,f,o,u,_,L=[],T=[],h),i),x===123)if(f===0)qh(N,t,R,R,L,i,h,u,T);else switch(m){case 100:case 109:case 115:qh(e,R,R,r&&ah(Ow(e,R,R,0,0,o,u,_,o,L=[],h),T),o,T,h,u,r?L:T);break;default:qh(N,R,R,R,[""],T,0,u,T)}}d=f=g=0,w=S=1,_=N="",h=s;break;case 58:h=1+Qo(N),g=b;default:if(w<1){if(x==123)--w;else if(x==125&&w++==0&&XW()==125)continue}switch(N+=V0(x),x*w){case 38:S=f>0?1:(N+="\f",-1);break;case 44:u[d++]=(Qo(N)-1)*S,S=1;break;case 64:si()===45&&(N+=Kh(Vr())),m=si(),f=h=Qo(_=N+=tj(Zh())),x++;break;case 45:b===45&&Qo(N)==2&&(w=0)}}return i}function Ow(e,t,n,r,o,i,s,u,c,d,f){for(var h=o-1,m=o===0?i:[""],g=h3(m),b=0,w=0,k=0;b0?m[S]+" "+x:dt(x,/&\f/g,m[S])))&&(c[k++]=_);return j0(e,t,n,o===0?f3:u,c,d,f)}function rj(e,t,n){return j0(e,t,n,zk,V0(YW()),Md(e,2,-2),0)}function Mw(e,t,n,r){return j0(e,t,n,p3,Md(e,0,r),Md(e,r+1,-1),r)}function jk(e,t){switch(ZW(e,t)){case 5103:return it+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return it+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return it+e+$1+e+jn+e+e;case 6828:case 4268:return it+e+jn+e+e;case 6165:return it+e+jn+"flex-"+e+e;case 5187:return it+e+dt(e,/(\w+).+(:[^]+)/,it+"box-$1$2"+jn+"flex-$1$2")+e;case 5443:return it+e+jn+"flex-item-"+dt(e,/flex-|-self/,"")+e;case 4675:return it+e+jn+"flex-line-pack"+dt(e,/align-content|flex-|-self/,"")+e;case 5548:return it+e+jn+dt(e,"shrink","negative")+e;case 5292:return it+e+jn+dt(e,"basis","preferred-size")+e;case 6060:return it+"box-"+dt(e,"-grow","")+it+e+jn+dt(e,"grow","positive")+e;case 4554:return it+dt(e,/([^-])(transform)/g,"$1"+it+"$2")+e;case 6187:return dt(dt(dt(e,/(zoom-|grab)/,it+"$1"),/(image-set)/,it+"$1"),e,"")+e;case 5495:case 3959:return dt(e,/(image-set\([^]*)/,it+"$1$`$1");case 4968:return dt(dt(e,/(.+:)(flex-)?(.*)/,it+"box-pack:$3"+jn+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+it+e+e;case 4095:case 3583:case 4068:case 2532:return dt(e,/(.+)-inline(.+)/,it+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Qo(e)-1-t>6)switch(vr(e,t+1)){case 109:if(vr(e,t+4)!==45)break;case 102:return dt(e,/(.+:)(.+)-([^]+)/,"$1"+it+"$2-$3$1"+$1+(vr(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Gy(e,"stretch")?jk(dt(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(vr(e,t+1)!==115)break;case 6444:switch(vr(e,Qo(e)-3-(~Gy(e,"!important")&&10))){case 107:return dt(e,":",":"+it)+e;case 101:return dt(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+it+(vr(e,14)===45?"inline-":"")+"box$3$1"+it+"$2$3$1"+jn+"$2box$3")+e}break;case 5936:switch(vr(e,t+11)){case 114:return it+e+jn+dt(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return it+e+jn+dt(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return it+e+jn+dt(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return it+e+jn+e+e}return e}function nu(e,t){for(var n="",r=h3(e),o=0;o-1&&!e.return)switch(e.type){case p3:e.return=jk(e.value,e.length);break;case Fk:return nu([Lc(e,{value:dt(e.value,"@","@"+it)})],r);case f3:if(e.length)return qW(e.props,function(o){switch(KW(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return nu([Lc(e,{props:[dt(o,/:(read-\w+)/,":"+$1+"$1")]})],r);case"::placeholder":return nu([Lc(e,{props:[dt(o,/:(plac\w+)/,":"+it+"input-$1")]}),Lc(e,{props:[dt(o,/:(plac\w+)/,":"+$1+"$1")]}),Lc(e,{props:[dt(o,/:(plac\w+)/,jn+"input-$1")]})],r)}return""})}}var Rw=function(t){var n=new WeakMap;return function(r){if(n.has(r))return n.get(r);var o=t(r);return n.set(r,o),o}};function Hk(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var lj=function(t,n,r){for(var o=0,i=0;o=i,i=si(),o===38&&i===12&&(n[r]=1),!Rd(i);)Vr();return ff(t,kr)},uj=function(t,n){var r=-1,o=44;do switch(Rd(o)){case 0:o===38&&si()===12&&(n[r]=1),t[r]+=lj(kr-1,n,r);break;case 2:t[r]+=Kh(o);break;case 4:if(o===44){t[++r]=si()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=V0(o)}while(o=Vr());return t},cj=function(t,n){return Wk(uj(Vk(t),n))},Nw=new WeakMap,dj=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,o=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!Nw.get(r))&&!o){Nw.set(t,!0);for(var i=[],s=cj(n,i),u=r.props,c=0,d=0;c=4;++r,o-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(o){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var kj={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},Ej=/[A-Z]|^ms/g,Lj=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Xk=function(t){return t.charCodeAt(1)===45},Dw=function(t){return t!=null&&typeof t!="boolean"},Xv=Hk(function(e){return Xk(e)?e:e.replace(Ej,"-$&").toLowerCase()}),zw=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(Lj,function(r,o,i){return Jo={name:o,styles:i,next:Jo},o})}return kj[t]!==1&&!Xk(t)&&typeof n=="number"&&n!==0?n+"px":n};function Dd(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return Jo={name:n.name,styles:n.styles,next:Jo},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)Jo={name:r.name,styles:r.styles,next:Jo},r=r.next;var o=n.styles+";";return o}return Pj(e,t,n)}case"function":{if(e!==void 0){var i=Jo,s=n(e);return Jo=i,Dd(e,t,s)}break}}if(t==null)return n;var u=t[n];return u!==void 0?u:n}function Pj(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o{t.includes(r)||(n[r]=e[r])}),n}function zj(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const u=t.get(r);if(u.has(o))return u.get(o);const c=e(r,o,i,s);return u.set(o,c),c}},nE=Fj(zj);function rE(e,t){const n={};return Object.keys(e).forEach(r=>{const o=e[r];t(o,r,e)&&(n[r]=o)}),n}var oE=e=>rE(e,t=>t!=null);function b3(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function tm(e){if(!b3(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function Bj(e){var t;return b3(e)?((t=hf(e))==null?void 0:t.defaultView)??window:window}function hf(e){return b3(e)?e.ownerDocument??document:document}function $j(e){return e.view??window}function Vj(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var mf=Vj();function Wj(e){const t=hf(e);return t?.activeElement}function x3(e,t){return e?e===t||e.contains(t):!1}var iE=e=>e.hasAttribute("tabindex"),jj=e=>iE(e)&&e.tabIndex===-1;function Hj(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function Uj(e){return tm(e)&&e.localName==="input"&&"select"in e}function aE(e){return(tm(e)?hf(e):document).activeElement===e}function sE(e){return e.parentElement&&sE(e.parentElement)?!0:e.hidden}function Gj(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function lE(e){if(!tm(e)||sE(e)||Hj(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():Gj(e)?!0:iE(e)}function Zj(e){return e?tm(e)&&lE(e)&&!jj(e):!1}var Kj=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],qj=Kj.join(),Yj=e=>e.offsetWidth>0&&e.offsetHeight>0;function Xj(e){const t=Array.from(e.querySelectorAll(qj));return t.unshift(e),t.filter(n=>lE(n)&&Yj(n))}function V1(e,...t){return Gl(e)?e(...t):e}function Qj(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Jj(e){let t;return function(...r){return e&&(t=e.apply(this,r),e=null),t}}var eH=Jj(e=>()=>{const{condition:t,message:n}=e;t&&Nj&&console.warn(n)}),tH=(...e)=>t=>e.reduce((n,r)=>r(n),t);function W1(e,t={}){const{isActive:n=aE,nextTick:r,preventScroll:o=!0,selectTextIfInput:i=!0}=t;if(!e||n(e))return-1;function s(){if(!e){eH({condition:!0,message:"[chakra-ui]: can't call focus() on `null` or `undefined` element"});return}if(nH())e.focus({preventScroll:o});else if(e.focus(),o){const u=rH(e);oH(u)}if(i){if(Uj(e))e.select();else if("setSelectionRange"in e){const u=e;u.setSelectionRange(u.value.length,u.value.length)}}}return r?requestAnimationFrame(s):(s(),-1)}var sh=null;function nH(){if(sh==null){sh=!1;try{document.createElement("div").focus({get preventScroll(){return sh=!0,!0}})}catch{}}return sh}function rH(e){const t=hf(e),n=t.defaultView??window;let r=e.parentNode;const o=[],i=t.scrollingElement||t.documentElement;for(;r instanceof n.HTMLElement&&r!==i;)(r.offsetHeight{const n=$j(t),r=t instanceof n.MouseEvent;(!r||r&&t.button===0)&&e(t)}}var sH={pageX:0,pageY:0};function lH(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||sH;return{x:r[`${t}X`],y:r[`${t}Y`]}}function uH(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function cH(e,t="page"){return{point:iH(e)?lH(e,t):uH(e,t)}}var dH=(e,t=!1)=>{const n=r=>e(r,cH(r));return t?aH(n):n},fH=()=>mf&&window.onpointerdown===null,pH=()=>mf&&window.ontouchstart===null,hH=()=>mf&&window.onmousedown===null,mH={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},gH={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function vH(e){return fH()?e:pH()?gH[e]:hH()?mH[e]:e}Object.freeze(["base","sm","md","lg","xl","2xl"]);function yH(e){const{userAgent:t,vendor:n}=e,r=/(android)/i.test(t);switch(!0){case/CriOS/.test(t):return"Chrome for iOS";case/Edg\//.test(t):return"Edge";case(r&&/Silk\//.test(t)):return"Silk";case(/Chrome/.test(t)&&/Google Inc/.test(n)):return"Chrome";case/Firefox\/\d+\.\d+$/.test(t):return"Firefox";case r:return"AOSP";case/MSIE|Trident/.test(t):return"IE";case(/Safari/.test(e.userAgent)&&/Apple Computer/.test(t)):return"Safari";case/AppleWebKit/.test(t):return"WebKit";default:return null}}function bH(e){return mf?yH(window.navigator)===e:!1}function xH(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,o=C.exports.createContext(void 0);o.displayName=r;function i(){var s;const u=C.exports.useContext(o);if(!u&&t){const c=new Error(n);throw c.name="ContextError",(s=Error.captureStackTrace)==null||s.call(Error,c,i),c}return u}return[o.Provider,i,o]}var wH=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,SH=Hk(function(e){return wH.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),CH=SH,_H=function(t){return t!=="theme"},$w=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?CH:_H},Vw=function(t,n,r){var o;if(n){var i=n.shouldForwardProp;o=t.__emotion_forwardProp&&i?function(s){return t.__emotion_forwardProp(s)&&i(s)}:i}return typeof o!="function"&&r&&(o=t.__emotion_forwardProp),o},kH=function(t){var n=t.cache,r=t.serialized,o=t.isStringTag;return qk(n,r,o),Tj(function(){return Yk(n,r,o)}),null},EH=function e(t,n){var r=t.__emotion_real===t,o=r&&t.__emotion_base||t,i,s;n!==void 0&&(i=n.label,s=n.target);var u=Vw(t,n,r),c=u||$w(o),d=!c("as");return function(){var f=arguments,h=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(i!==void 0&&h.push("label:"+i+";"),f[0]==null||f[0].raw===void 0)h.push.apply(h,f);else{h.push(f[0][0]);for(var m=f.length,g=1;g` or ``");return e}function uE(){const e=u3(),t=nm();return{...e,theme:t}}function MH(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__breakpoints)==null?void 0:i.asArray)==null?void 0:s[o]};return r(t)??r(n)??n}function RH(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__cssMap)==null?void 0:i[o])==null?void 0:s.value};return r(t)??r(n)??n}function NH(e,t,n){const r=Array.isArray(t)?t:[t],o=Array.isArray(n)?n:[n];return i=>{const s=o.filter(Boolean),u=r.map((c,d)=>{if(e==="breakpoints")return MH(i,c,s[d]??c);const f=`${e}.${c}`;return RH(i,f,s[d]??c)});return Array.isArray(t)?u:u[0]}}function DH(e){const{cssVarsRoot:t,theme:n,children:r}=e,o=C.exports.useMemo(()=>EW(n),[n]);return q(Mj,{theme:o,children:[v(zH,{root:t}),r]})}function zH({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return v(em,{styles:n=>({[t]:n.__cssVars})})}xH({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function FH(){const{colorMode:e}=u3();return v(em,{styles:t=>{const n=nE(t,"styles.global"),r=V1(n,{theme:t,colorMode:e});return r?Dk(r)(t):void 0}})}var BH=new Set([...AW,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),$H=new Set(["htmlWidth","htmlHeight","htmlSize"]);function VH(e){return $H.has(e)||!BH.has(e)}var WH=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:o,sx:i,...s}=t,u=rE(s,(h,m)=>IW(m)),c=V1(e,t),d=Object.assign({},o,c,oE(u),i),f=Dk(d)(t.theme);return r?[f,r]:f};function Qv(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=VH);const o=WH({baseStyle:n});return Ky(e,r)(o)}function ue(e){return C.exports.forwardRef(e)}function cE(e,t={}){const{styleConfig:n,...r}=t,{theme:o,colorMode:i}=uE(),s=nE(o,`components.${e}`),u=n||s,c=Ga({theme:o,colorMode:i},u?.defaultProps??{},oE(Dj(r,["children"]))),d=C.exports.useRef({});if(u){const h=BW(u)(c);OH(d.current,h)||(d.current=h)}return d.current}function cr(e,t={}){return cE(e,t)}function dr(e,t={}){return cE(e,t)}function jH(){const e=new Map;return new Proxy(Qv,{apply(t,n,r){return Qv(...r)},get(t,n){return e.has(n)||e.set(n,Qv(n)),e.get(n)}})}var oe=jH();function HH(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function Tt(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:o="Provider",errorMessage:i}=e,s=C.exports.createContext(void 0);s.displayName=t;function u(){var c;const d=C.exports.useContext(s);if(!d&&n){const f=new Error(i??HH(r,o));throw f.name="ContextError",(c=Error.captureStackTrace)==null||c.call(Error,f,u),f}return d}return[s.Provider,u,s]}function UH(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function Yt(...e){return t=>{e.forEach(n=>{UH(n,t)})}}function GH(...e){return C.exports.useMemo(()=>Yt(...e),e)}function Ww(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var ZH=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function jw(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function Hw(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var qy=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,j1=e=>e,KH=class{descendants=new Map;register=e=>{if(e!=null)return ZH(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=Ww(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=jw(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=jw(r,this.enabledCount(),t);return this.enabledItem(o)};prev=(e,t=!0)=>{const n=Hw(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=Hw(r,this.enabledCount()-1,t);return this.enabledItem(o)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=Ww(n);t?.disabled&&(t.disabled=!!t.disabled);const o={node:e,index:-1,...t};this.descendants.set(e,o),this.assignIndex(r)}};function qH(){const e=C.exports.useRef(new KH);return qy(()=>()=>e.current.destroy()),e.current}var[YH,dE]=Tt({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function XH(e){const t=dE(),[n,r]=C.exports.useState(-1),o=C.exports.useRef(null);qy(()=>()=>{!o.current||t.unregister(o.current)},[]),qy(()=>{if(!o.current)return;const s=Number(o.current.dataset.index);n!=s&&!Number.isNaN(s)&&r(s)});const i=j1(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(o.current),register:Yt(i,o)}}function fE(){return[j1(YH),()=>j1(dE()),()=>qH(),o=>XH(o)]}var Qt=(...e)=>e.filter(Boolean).join(" "),Uw={path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},Kr=ue((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:u,__css:c,...d}=e,f=Qt("chakra-icon",u),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??Uw.viewBox;if(n&&typeof n!="string")return X.createElement(oe.svg,{as:n,...m,...d});const b=s??Uw.path;return X.createElement(oe.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});Kr.displayName="Icon";function Nu(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=ue((u,c)=>v(Kr,{ref:c,viewBox:t,...o,...u,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}function Gn(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function pE(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:o=(m,g)=>m!==g}=e,i=Gn(r),s=Gn(o),[u,c]=C.exports.useState(n),d=t!==void 0,f=d?t:u,h=C.exports.useCallback(m=>{const b=typeof m=="function"?m(f):m;!s(f,b)||(d||c(b),i(b))},[d,i,f,s]);return[f,h]}const w3=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),rm=C.exports.createContext({});function QH(){return C.exports.useContext(rm).visualElement}const Du=C.exports.createContext(null),Hs=typeof document<"u",H1=Hs?C.exports.useLayoutEffect:C.exports.useEffect,hE=C.exports.createContext({strict:!1});function JH(e,t,n,r){const o=QH(),i=C.exports.useContext(hE),s=C.exports.useContext(Du),u=C.exports.useContext(w3).reducedMotion,c=C.exports.useRef(void 0);r=r||i.renderer,!c.current&&r&&(c.current=r(e,{visualState:t,parent:o,props:n,presenceId:s?s.id:void 0,blockInitialAnimation:s?s.initial===!1:!1,reducedMotionConfig:u}));const d=c.current;return H1(()=>{d&&d.syncRender()}),C.exports.useEffect(()=>{d&&d.animationState&&d.animationState.animateChanges()}),H1(()=>()=>d&&d.notifyUnmount(),[]),d}function Zl(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function eU(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):Zl(n)&&(n.current=r))},[t])}function Fd(e){return typeof e=="string"||Array.isArray(e)}function om(e){return typeof e=="object"&&typeof e.start=="function"}const tU=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function im(e){return om(e.animate)||tU.some(t=>Fd(e[t]))}function mE(e){return Boolean(im(e)||e.variants)}function nU(e,t){if(im(e)){const{initial:n,animate:r}=e;return{initial:n===!1||Fd(n)?n:void 0,animate:Fd(r)?r:void 0}}return e.inherit!==!1?t:{}}function rU(e){const{initial:t,animate:n}=nU(e,C.exports.useContext(rm));return C.exports.useMemo(()=>({initial:t,animate:n}),[Gw(t),Gw(n)])}function Gw(e){return Array.isArray(e)?e.join(" "):e}const Ni=e=>({isEnabled:t=>e.some(n=>!!t[n])}),Bd={measureLayout:Ni(["layout","layoutId","drag"]),animation:Ni(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:Ni(["exit"]),drag:Ni(["drag","dragControls"]),focus:Ni(["whileFocus"]),hover:Ni(["whileHover","onHoverStart","onHoverEnd"]),tap:Ni(["whileTap","onTap","onTapStart","onTapCancel"]),pan:Ni(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:Ni(["whileInView","onViewportEnter","onViewportLeave"])};function oU(e){for(const t in e)t==="projectionNodeConstructor"?Bd.projectionNodeConstructor=e[t]:Bd[t].Component=e[t]}function am(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const nd={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let iU=1;function aU(){return am(()=>{if(nd.hasEverUpdated)return iU++})}const S3=C.exports.createContext({});class sU extends X.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const gE=C.exports.createContext({}),lU=Symbol.for("motionComponentSymbol");function uU({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:o,Component:i}){e&&oU(e);function s(c,d){const f={...C.exports.useContext(w3),...c,layoutId:cU(c)},{isStatic:h}=f;let m=null;const g=rU(c),b=h?void 0:aU(),w=o(c,h);if(!h&&Hs){g.visualElement=JH(i,w,f,t);const k=C.exports.useContext(hE).strict,S=C.exports.useContext(gE);g.visualElement&&(m=g.visualElement.loadFeatures(f,k,e,b,n||Bd.projectionNodeConstructor,S))}return q(sU,{visualElement:g.visualElement,props:f,children:[m,v(rm.Provider,{value:g,children:r(i,c,b,eU(w,g.visualElement,d),w,h,g.visualElement)})]})}const u=C.exports.forwardRef(s);return u[lU]=i,u}function cU({layoutId:e}){const t=C.exports.useContext(S3).id;return t&&e!==void 0?t+"-"+e:e}function dU(e){function t(r,o={}){return uU(e(r,o))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,o)=>(n.has(o)||n.set(o,t(o)),n.get(o))})}const fU=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function C3(e){return typeof e!="string"||e.includes("-")?!1:!!(fU.indexOf(e)>-1||/[A-Z]/.test(e))}const U1={};function pU(e){Object.assign(U1,e)}const G1=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],gf=new Set(G1);function vE(e,{layout:t,layoutId:n}){return gf.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!U1[e]||e==="opacity")}const hi=e=>!!e?.getVelocity,hU={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},mU=(e,t)=>G1.indexOf(e)-G1.indexOf(t);function gU({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},o,i){let s="";t.sort(mU);for(const u of t)s+=`${hU[u]||u}(${e[u]}) `;return n&&!e.z&&(s+="translateZ(0)"),s=s.trim(),i?s=i(e,o?"":s):r&&o&&(s="none"),s}function yE(e){return e.startsWith("--")}const vU=(e,t)=>t&&typeof e=="number"?t.transform(e):e,bE=(e,t)=>n=>Math.max(Math.min(n,t),e),rd=e=>e%1?Number(e.toFixed(5)):e,$d=/(-)?([\d]*\.?[\d])+/g,Yy=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,yU=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function vf(e){return typeof e=="string"}const Us={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},od=Object.assign(Object.assign({},Us),{transform:bE(0,1)}),lh=Object.assign(Object.assign({},Us),{default:1}),yf=e=>({test:t=>vf(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),ba=yf("deg"),li=yf("%"),Ne=yf("px"),bU=yf("vh"),xU=yf("vw"),Zw=Object.assign(Object.assign({},li),{parse:e=>li.parse(e)/100,transform:e=>li.transform(e*100)}),_3=(e,t)=>n=>Boolean(vf(n)&&yU.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),xE=(e,t,n)=>r=>{if(!vf(r))return r;const[o,i,s,u]=r.match($d);return{[e]:parseFloat(o),[t]:parseFloat(i),[n]:parseFloat(s),alpha:u!==void 0?parseFloat(u):1}},Es={test:_3("hsl","hue"),parse:xE("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+li.transform(rd(t))+", "+li.transform(rd(n))+", "+rd(od.transform(r))+")"},wU=bE(0,255),Jv=Object.assign(Object.assign({},Us),{transform:e=>Math.round(wU(e))}),Ia={test:_3("rgb","red"),parse:xE("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Jv.transform(e)+", "+Jv.transform(t)+", "+Jv.transform(n)+", "+rd(od.transform(r))+")"};function SU(e){let t="",n="",r="",o="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),o=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),o=e.substr(4,1),t+=t,n+=n,r+=r,o+=o),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:o?parseInt(o,16)/255:1}}const Xy={test:_3("#"),parse:SU,transform:Ia.transform},or={test:e=>Ia.test(e)||Xy.test(e)||Es.test(e),parse:e=>Ia.test(e)?Ia.parse(e):Es.test(e)?Es.parse(e):Xy.parse(e),transform:e=>vf(e)?e:e.hasOwnProperty("red")?Ia.transform(e):Es.transform(e)},wE="${c}",SE="${n}";function CU(e){var t,n,r,o;return isNaN(e)&&vf(e)&&((n=(t=e.match($d))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((o=(r=e.match(Yy))===null||r===void 0?void 0:r.length)!==null&&o!==void 0?o:0)>0}function CE(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(Yy);r&&(n=r.length,e=e.replace(Yy,wE),t.push(...r.map(or.parse)));const o=e.match($d);return o&&(e=e.replace($d,SE),t.push(...o.map(Us.parse))),{values:t,numColors:n,tokenised:e}}function _E(e){return CE(e).values}function kE(e){const{values:t,numColors:n,tokenised:r}=CE(e),o=t.length;return i=>{let s=r;for(let u=0;utypeof e=="number"?0:e;function kU(e){const t=_E(e);return kE(e)(t.map(_U))}const Xi={test:CU,parse:_E,createTransformer:kE,getAnimatableNone:kU},EU=new Set(["brightness","contrast","saturate","opacity"]);function LU(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match($d)||[];if(!r)return e;const o=n.replace(r,"");let i=EU.has(t)?1:0;return r!==n&&(i*=100),t+"("+i+o+")"}const PU=/([a-z-]*)\(.*?\)/g,Qy=Object.assign(Object.assign({},Xi),{getAnimatableNone:e=>{const t=e.match(PU);return t?t.map(LU).join(" "):e}}),Kw={...Us,transform:Math.round},EE={borderWidth:Ne,borderTopWidth:Ne,borderRightWidth:Ne,borderBottomWidth:Ne,borderLeftWidth:Ne,borderRadius:Ne,radius:Ne,borderTopLeftRadius:Ne,borderTopRightRadius:Ne,borderBottomRightRadius:Ne,borderBottomLeftRadius:Ne,width:Ne,maxWidth:Ne,height:Ne,maxHeight:Ne,size:Ne,top:Ne,right:Ne,bottom:Ne,left:Ne,padding:Ne,paddingTop:Ne,paddingRight:Ne,paddingBottom:Ne,paddingLeft:Ne,margin:Ne,marginTop:Ne,marginRight:Ne,marginBottom:Ne,marginLeft:Ne,rotate:ba,rotateX:ba,rotateY:ba,rotateZ:ba,scale:lh,scaleX:lh,scaleY:lh,scaleZ:lh,skew:ba,skewX:ba,skewY:ba,distance:Ne,translateX:Ne,translateY:Ne,translateZ:Ne,x:Ne,y:Ne,z:Ne,perspective:Ne,transformPerspective:Ne,opacity:od,originX:Zw,originY:Zw,originZ:Ne,zIndex:Kw,fillOpacity:od,strokeOpacity:od,numOctaves:Kw};function k3(e,t,n,r){const{style:o,vars:i,transform:s,transformKeys:u,transformOrigin:c}=e;u.length=0;let d=!1,f=!1,h=!0;for(const m in t){const g=t[m];if(yE(m)){i[m]=g;continue}const b=EE[m],w=vU(g,b);if(gf.has(m)){if(d=!0,s[m]=w,u.push(m),!h)continue;g!==(b.default||0)&&(h=!1)}else m.startsWith("origin")?(f=!0,c[m]=w):o[m]=w}if(d||r?o.transform=gU(e,n,h,r):!t.transform&&o.transform&&(o.transform="none"),f){const{originX:m="50%",originY:g="50%",originZ:b=0}=c;o.transformOrigin=`${m} ${g} ${b}`}}const E3=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function LE(e,t,n){for(const r in t)!hi(t[r])&&!vE(r,n)&&(e[r]=t[r])}function AU({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=E3();return k3(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function TU(e,t,n){const r=e.style||{},o={};return LE(o,r,e),Object.assign(o,AU(e,t,n)),e.transformValues?e.transformValues(o):o}function IU(e,t,n){const r={},o=TU(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout="none",o.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=o,r}const OU=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],MU=["whileTap","onTap","onTapStart","onTapCancel"],RU=["onPan","onPanStart","onPanSessionStart","onPanEnd"],NU=["whileInView","onViewportEnter","onViewportLeave","viewport"],DU=new Set(["initial","style","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...NU,...MU,...OU,...RU]);function Z1(e){return DU.has(e)}let PE=e=>!Z1(e);function zU(e){!e||(PE=t=>t.startsWith("on")?!Z1(t):e(t))}try{zU(require("@emotion/is-prop-valid").default)}catch{}function FU(e,t,n){const r={};for(const o in e)(PE(o)||n===!0&&Z1(o)||!t&&!Z1(o)||e.draggable&&o.startsWith("onDrag"))&&(r[o]=e[o]);return r}function qw(e,t,n){return typeof e=="string"?e:Ne.transform(t+n*e)}function BU(e,t,n){const r=qw(t,e.x,e.width),o=qw(n,e.y,e.height);return`${r} ${o}`}const $U={offset:"stroke-dashoffset",array:"stroke-dasharray"},VU={offset:"strokeDashoffset",array:"strokeDasharray"};function WU(e,t,n=1,r=0,o=!0){e.pathLength=1;const i=o?$U:VU;e[i.offset]=Ne.transform(-r);const s=Ne.transform(t),u=Ne.transform(n);e[i.array]=`${s} ${u}`}function L3(e,{attrX:t,attrY:n,originX:r,originY:o,pathLength:i,pathSpacing:s=1,pathOffset:u=0,...c},d,f){k3(e,c,d,f),e.attrs=e.style,e.style={};const{attrs:h,style:m,dimensions:g}=e;h.transform&&(g&&(m.transform=h.transform),delete h.transform),g&&(r!==void 0||o!==void 0||m.transform)&&(m.transformOrigin=BU(g,r!==void 0?r:.5,o!==void 0?o:.5)),t!==void 0&&(h.x=t),n!==void 0&&(h.y=n),i!==void 0&&WU(h,i,s,u,!1)}const AE=()=>({...E3(),attrs:{}});function jU(e,t){const n=C.exports.useMemo(()=>{const r=AE();return L3(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};LE(r,e.style,e),n.style={...r,...n.style}}return n}function HU(e=!1){return(n,r,o,i,{latestValues:s},u)=>{const d=(C3(n)?jU:IU)(r,s,u),h={...FU(r,typeof n=="string",e),...d,ref:i};return o&&(h["data-projection-id"]=o),C.exports.createElement(n,h)}}const TE=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function IE(e,{style:t,vars:n},r,o){Object.assign(e.style,t,o&&o.getProjectionStyles(r));for(const i in n)e.style.setProperty(i,n[i])}const OE=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function ME(e,t,n,r){IE(e,t,void 0,r);for(const o in t.attrs)e.setAttribute(OE.has(o)?o:TE(o),t.attrs[o])}function P3(e){const{style:t}=e,n={};for(const r in t)(hi(t[r])||vE(r,e))&&(n[r]=t[r]);return n}function RE(e){const t=P3(e);for(const n in e)if(hi(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function NE(e,t,n,r={},o={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),t}const Vd=e=>Array.isArray(e),UU=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),DE=e=>Vd(e)?e[e.length-1]||0:e;function Xh(e){const t=hi(e)?e.get():e;return UU(t)?t.toValue():t}function GU({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,o,i){const s={latestValues:ZU(r,o,i,e),renderState:t()};return n&&(s.mount=u=>n(r,u,s)),s}const zE=e=>(t,n)=>{const r=C.exports.useContext(rm),o=C.exports.useContext(Du),i=()=>GU(e,t,r,o);return n?i():am(i)};function ZU(e,t,n,r){const o={},i=r(e);for(const m in i)o[m]=Xh(i[m]);let{initial:s,animate:u}=e;const c=im(e),d=mE(e);t&&d&&!c&&e.inherit!==!1&&(s===void 0&&(s=t.initial),u===void 0&&(u=t.animate));let f=n?n.initial===!1:!1;f=f||s===!1;const h=f?u:s;return h&&typeof h!="boolean"&&!om(h)&&(Array.isArray(h)?h:[h]).forEach(g=>{const b=NE(e,g);if(!b)return;const{transitionEnd:w,transition:k,...S}=b;for(const x in S){let _=S[x];if(Array.isArray(_)){const L=f?_.length-1:0;_=_[L]}_!==null&&(o[x]=_)}for(const x in w)o[x]=w[x]}),o}const KU={useVisualState:zE({scrapeMotionValuesFromProps:RE,createRenderState:AE,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}L3(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),ME(t,n)}})},qU={useVisualState:zE({scrapeMotionValuesFromProps:P3,createRenderState:E3})};function YU(e,{forwardMotionProps:t=!1},n,r,o){return{...C3(e)?KU:qU,preloadedFeatures:n,useRender:HU(t),createVisualElement:r,projectionNodeConstructor:o,Component:e}}var Lt;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(Lt||(Lt={}));function sm(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function Jy(e,t,n,r){C.exports.useEffect(()=>{const o=e.current;if(n&&o)return sm(o,t,n,r)},[e,t,n,r])}function XU({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(Lt.Focus,!0)},o=()=>{n&&n.setActive(Lt.Focus,!1)};Jy(t,"focus",e?r:void 0),Jy(t,"blur",e?o:void 0)}function FE(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function BE(e){return!!e.touches}function QU(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const JU={pageX:0,pageY:0};function eG(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||JU;return{x:r[t+"X"],y:r[t+"Y"]}}function tG(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function A3(e,t="page"){return{point:BE(e)?eG(e,t):tG(e,t)}}const $E=(e,t=!1)=>{const n=r=>e(r,A3(r));return t?QU(n):n},nG=()=>Hs&&window.onpointerdown===null,rG=()=>Hs&&window.ontouchstart===null,oG=()=>Hs&&window.onmousedown===null,iG={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},aG={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function VE(e){return nG()?e:rG()?aG[e]:oG()?iG[e]:e}function ru(e,t,n,r){return sm(e,VE(t),$E(n,t==="pointerdown"),r)}function K1(e,t,n,r){return Jy(e,VE(t),n&&$E(n,t==="pointerdown"),r)}function WE(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const Yw=WE("dragHorizontal"),Xw=WE("dragVertical");function jE(e){let t=!1;if(e==="y")t=Xw();else if(e==="x")t=Yw();else{const n=Yw(),r=Xw();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function HE(){const e=jE(!0);return e?(e(),!1):!0}function Qw(e,t,n){return(r,o)=>{!FE(r)||HE()||(e.animationState&&e.animationState.setActive(Lt.Hover,t),n&&n(r,o))}}function sG({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){K1(r,"pointerenter",e||n?Qw(r,!0,e):void 0,{passive:!e}),K1(r,"pointerleave",t||n?Qw(r,!1,t):void 0,{passive:!t})}const UE=(e,t)=>t?e===t?!0:UE(e,t.parentElement):!1;function T3(e){return C.exports.useEffect(()=>()=>e(),[])}var ti=function(){return ti=Object.assign||function(t){for(var n,r=1,o=arguments.length;r0&&i[i.length-1])&&(d[0]===6||d[0]===2)){n=0;continue}if(d[0]===3&&(!i||d[1]>i[0]&&d[1]0)&&!(o=r.next()).done;)i.push(o.value)}catch(u){s={error:u}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i}function e4(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;rMath.min(Math.max(n,e),t),e2=.001,uG=.01,eS=10,cG=.05,dG=1;function fG({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let o,i;lG(e<=eS*1e3);let s=1-t;s=Y1(cG,dG,s),e=Y1(uG,eS,e/1e3),s<1?(o=d=>{const f=d*s,h=f*e,m=f-n,g=t4(d,s),b=Math.exp(-h);return e2-m/g*b},i=d=>{const h=d*s*e,m=h*n+n,g=Math.pow(s,2)*Math.pow(d,2)*e,b=Math.exp(-h),w=t4(Math.pow(d,2),s);return(-o(d)+e2>0?-1:1)*((m-g)*b)/w}):(o=d=>{const f=Math.exp(-d*e),h=(d-n)*e+1;return-e2+f*h},i=d=>{const f=Math.exp(-d*e),h=(n-d)*(e*e);return f*h});const u=5/e,c=hG(o,i,u);if(e=e*1e3,isNaN(c))return{stiffness:100,damping:10,duration:e};{const d=Math.pow(c,2)*r;return{stiffness:d,damping:s*2*Math.sqrt(r*d),duration:e}}}const pG=12;function hG(e,t,n){let r=n;for(let o=1;oe[n]!==void 0)}function vG(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!tS(e,gG)&&tS(e,mG)){const n=fG(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function I3(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:o}=e,i=lm(e,["from","to","restSpeed","restDelta"]);const s={done:!1,value:t};let{stiffness:u,damping:c,mass:d,velocity:f,duration:h,isResolvedFromDuration:m}=vG(i),g=nS,b=nS;function w(){const k=f?-(f/1e3):0,S=n-t,x=c/(2*Math.sqrt(u*d)),_=Math.sqrt(u/d)/1e3;if(o===void 0&&(o=Math.min(Math.abs(n-t)/100,.4)),x<1){const L=t4(_,x);g=T=>{const R=Math.exp(-x*_*T);return n-R*((k+x*_*S)/L*Math.sin(L*T)+S*Math.cos(L*T))},b=T=>{const R=Math.exp(-x*_*T);return x*_*R*(Math.sin(L*T)*(k+x*_*S)/L+S*Math.cos(L*T))-R*(Math.cos(L*T)*(k+x*_*S)-L*S*Math.sin(L*T))}}else if(x===1)g=L=>n-Math.exp(-_*L)*(S+(k+_*S)*L);else{const L=_*Math.sqrt(x*x-1);g=T=>{const R=Math.exp(-x*_*T),N=Math.min(L*T,300);return n-R*((k+x*_*S)*Math.sinh(N)+L*S*Math.cosh(N))/L}}}return w(),{next:k=>{const S=g(k);if(m)s.done=k>=h;else{const x=b(k)*1e3,_=Math.abs(x)<=r,L=Math.abs(n-S)<=o;s.done=_&&L}return s.value=s.done?n:S,s},flipTarget:()=>{f=-f,[t,n]=[n,t],w()}}}I3.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const nS=e=>0,Wd=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Xt=(e,t,n)=>-n*e+n*t+e;function t2(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function rS({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let o=0,i=0,s=0;if(!t)o=i=s=n;else{const u=n<.5?n*(1+t):n+t-n*t,c=2*n-u;o=t2(c,u,e+1/3),i=t2(c,u,e),s=t2(c,u,e-1/3)}return{red:Math.round(o*255),green:Math.round(i*255),blue:Math.round(s*255),alpha:r}}const yG=(e,t,n)=>{const r=e*e,o=t*t;return Math.sqrt(Math.max(0,n*(o-r)+r))},bG=[Xy,Ia,Es],oS=e=>bG.find(t=>t.test(e)),GE=(e,t)=>{let n=oS(e),r=oS(t),o=n.parse(e),i=r.parse(t);n===Es&&(o=rS(o),n=Ia),r===Es&&(i=rS(i),r=Ia);const s=Object.assign({},o);return u=>{for(const c in s)c!=="alpha"&&(s[c]=yG(o[c],i[c],u));return s.alpha=Xt(o.alpha,i.alpha,u),n.transform(s)}},n4=e=>typeof e=="number",xG=(e,t)=>n=>t(e(n)),um=(...e)=>e.reduce(xG);function ZE(e,t){return n4(e)?n=>Xt(e,t,n):or.test(e)?GE(e,t):qE(e,t)}const KE=(e,t)=>{const n=[...e],r=n.length,o=e.map((i,s)=>ZE(i,t[s]));return i=>{for(let s=0;s{const n=Object.assign(Object.assign({},e),t),r={};for(const o in n)e[o]!==void 0&&t[o]!==void 0&&(r[o]=ZE(e[o],t[o]));return o=>{for(const i in r)n[i]=r[i](o);return n}};function iS(e){const t=Xi.parse(e),n=t.length;let r=0,o=0,i=0;for(let s=0;s{const n=Xi.createTransformer(t),r=iS(e),o=iS(t);return r.numHSL===o.numHSL&&r.numRGB===o.numRGB&&r.numNumbers>=o.numNumbers?um(KE(r.parsed,o.parsed),n):s=>`${s>0?t:e}`},SG=(e,t)=>n=>Xt(e,t,n);function CG(e){if(typeof e=="number")return SG;if(typeof e=="string")return or.test(e)?GE:qE;if(Array.isArray(e))return KE;if(typeof e=="object")return wG}function _G(e,t,n){const r=[],o=n||CG(e[0]),i=e.length-1;for(let s=0;sn(Wd(e,t,r))}function EG(e,t){const n=e.length,r=n-1;return o=>{let i=0,s=!1;if(o<=e[0]?s=!0:o>=e[r]&&(i=r-1,s=!0),!s){let c=1;for(;co||c===r);c++);i=c-1}const u=Wd(e[i],e[i+1],o);return t[i](u)}}function YE(e,t,{clamp:n=!0,ease:r,mixer:o}={}){const i=e.length;q1(i===t.length),q1(!r||!Array.isArray(r)||r.length===i-1),e[0]>e[i-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const s=_G(t,r,o),u=i===2?kG(e,s):EG(e,s);return n?c=>u(Y1(e[0],e[i-1],c)):u}const cm=e=>t=>1-e(1-t),O3=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,LG=e=>t=>Math.pow(t,e),XE=e=>t=>t*t*((e+1)*t-e),PG=e=>{const t=XE(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},QE=1.525,AG=4/11,TG=8/11,IG=9/10,M3=e=>e,R3=LG(2),OG=cm(R3),JE=O3(R3),eL=e=>1-Math.sin(Math.acos(e)),N3=cm(eL),MG=O3(N3),D3=XE(QE),RG=cm(D3),NG=O3(D3),DG=PG(QE),zG=4356/361,FG=35442/1805,BG=16061/1805,X1=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-X1(1-e*2)):.5*X1(e*2-1)+.5;function WG(e,t){return e.map(()=>t||JE).splice(0,e.length-1)}function jG(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function HG(e,t){return e.map(n=>n*t)}function Qh({from:e=0,to:t=1,ease:n,offset:r,duration:o=300}){const i={done:!1,value:e},s=Array.isArray(t)?t:[e,t],u=HG(r&&r.length===s.length?r:jG(s),o);function c(){return YE(u,s,{ease:Array.isArray(n)?n:WG(s,n)})}let d=c();return{next:f=>(i.value=d(f),i.done=f>=o,i),flipTarget:()=>{s.reverse(),d=c()}}}function UG({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:o=.5,modifyTarget:i}){const s={done:!1,value:t};let u=n*e;const c=t+u,d=i===void 0?c:i(c);return d!==c&&(u=d-t),{next:f=>{const h=-u*Math.exp(-f/r);return s.done=!(h>o||h<-o),s.value=s.done?d:d+h,s},flipTarget:()=>{}}}const aS={keyframes:Qh,spring:I3,decay:UG};function GG(e){if(Array.isArray(e.to))return Qh;if(aS[e.type])return aS[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?Qh:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?I3:Qh}const tL=1/60*1e3,ZG=typeof performance<"u"?()=>performance.now():()=>Date.now(),nL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(ZG()),tL);function KG(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,u={schedule:(c,d=!1,f=!1)=>{const h=f&&o,m=h?t:n;return d&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const d=n.indexOf(c);d!==-1&&n.splice(d,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=KG(()=>jd=!0),e),{}),YG=bf.reduce((e,t)=>{const n=dm[t];return e[t]=(r,o=!1,i=!1)=>(jd||JG(),n.schedule(r,o,i)),e},{}),XG=bf.reduce((e,t)=>(e[t]=dm[t].cancel,e),{});bf.reduce((e,t)=>(e[t]=()=>dm[t].process(ou),e),{});const QG=e=>dm[e].process(ou),rL=e=>{jd=!1,ou.delta=r4?tL:Math.max(Math.min(e-ou.timestamp,qG),1),ou.timestamp=e,o4=!0,bf.forEach(QG),o4=!1,jd&&(r4=!1,nL(rL))},JG=()=>{jd=!0,r4=!0,o4||nL(rL)},eZ=()=>ou;function oL(e,t,n=0){return e-t-n}function tZ(e,t,n=0,r=!0){return r?oL(t+-e,t,n):t-(e-t)+n}function nZ(e,t,n,r){return r?e>=t+n:e<=-n}const rZ=e=>{const t=({delta:n})=>e(n);return{start:()=>YG.update(t,!0),stop:()=>XG.update(t)}};function iL(e){var t,n,{from:r,autoplay:o=!0,driver:i=rZ,elapsed:s=0,repeat:u=0,repeatType:c="loop",repeatDelay:d=0,onPlay:f,onStop:h,onComplete:m,onRepeat:g,onUpdate:b}=e,w=lm(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:k}=w,S,x=0,_=w.duration,L,T=!1,R=!0,N;const F=GG(w);!((n=(t=F).needsInterpolation)===null||n===void 0)&&n.call(t,r,k)&&(N=YE([0,100],[r,k],{clamp:!1}),r=0,k=100);const G=F(Object.assign(Object.assign({},w),{from:r,to:k}));function W(){x++,c==="reverse"?(R=x%2===0,s=tZ(s,_,d,R)):(s=oL(s,_,d),c==="mirror"&&G.flipTarget()),T=!1,g&&g()}function J(){S.stop(),m&&m()}function Ee(me){if(R||(me=-me),s+=me,!T){const ce=G.next(Math.max(0,s));L=ce.value,N&&(L=N(L)),T=R?ce.done:s<=0}b?.(L),T&&(x===0&&(_??(_=s)),x{h?.(),S.stop()}}}function aL(e,t){return t?e*(1e3/t):0}function oZ({from:e=0,velocity:t=0,min:n,max:r,power:o=.8,timeConstant:i=750,bounceStiffness:s=500,bounceDamping:u=10,restDelta:c=1,modifyTarget:d,driver:f,onUpdate:h,onComplete:m,onStop:g}){let b;function w(_){return n!==void 0&&_r}function k(_){return n===void 0?r:r===void 0||Math.abs(n-_){var T;h?.(L),(T=_.onUpdate)===null||T===void 0||T.call(_,L)},onComplete:m,onStop:g}))}function x(_){S(Object.assign({type:"spring",stiffness:s,damping:u,restDelta:c},_))}if(w(e))x({from:e,velocity:t,to:k(e)});else{let _=o*t+e;typeof d<"u"&&(_=d(_));const L=k(_),T=L===n?-1:1;let R,N;const F=G=>{R=N,N=G,t=aL(G-R,eZ().delta),(T===1&&G>L||T===-1&&Gb?.stop()}}const i4=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),sS=e=>i4(e)&&e.hasOwnProperty("z"),uh=(e,t)=>Math.abs(e-t);function z3(e,t){if(n4(e)&&n4(t))return uh(e,t);if(i4(e)&&i4(t)){const n=uh(e.x,t.x),r=uh(e.y,t.y),o=sS(e)&&sS(t)?uh(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(o,2))}}const sL=(e,t)=>1-3*t+3*e,lL=(e,t)=>3*t-6*e,uL=e=>3*e,Q1=(e,t,n)=>((sL(t,n)*e+lL(t,n))*e+uL(t))*e,cL=(e,t,n)=>3*sL(t,n)*e*e+2*lL(t,n)*e+uL(t),iZ=1e-7,aZ=10;function sZ(e,t,n,r,o){let i,s,u=0;do s=t+(n-t)/2,i=Q1(s,r,o)-e,i>0?n=s:t=s;while(Math.abs(i)>iZ&&++u=uZ?cZ(s,h,e,n):m===0?h:sZ(s,u,u+ch,e,n)}return s=>s===0||s===1?s:Q1(i(s),t,r)}function fZ({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(!1),u=C.exports.useRef(null),c={passive:!(t||e||n||g)};function d(){u.current&&u.current(),u.current=null}function f(){return d(),s.current=!1,o.animationState&&o.animationState.setActive(Lt.Tap,!1),!HE()}function h(b,w){!f()||(UE(o.getInstance(),b.target)?e&&e(b,w):n&&n(b,w))}function m(b,w){!f()||n&&n(b,w)}function g(b,w){d(),!s.current&&(s.current=!0,u.current=um(ru(window,"pointerup",h,c),ru(window,"pointercancel",m,c)),o.animationState&&o.animationState.setActive(Lt.Tap,!0),t&&t(b,w))}K1(o,"pointerdown",i?g:void 0,c),T3(d)}const pZ="production",dL=typeof process>"u"||process.env===void 0?pZ:"production",lS=new Set;function fL(e,t,n){e||lS.has(t)||(console.warn(t),n&&console.warn(n),lS.add(t))}const a4=new WeakMap,n2=new WeakMap,hZ=e=>{const t=a4.get(e.target);t&&t(e)},mZ=e=>{e.forEach(hZ)};function gZ({root:e,...t}){const n=e||document;n2.has(n)||n2.set(n,{});const r=n2.get(n),o=JSON.stringify(t);return r[o]||(r[o]=new IntersectionObserver(mZ,{root:e,...t})),r[o]}function vZ(e,t,n){const r=gZ(t);return a4.set(e,n),r.observe(e),()=>{a4.delete(e),r.unobserve(e)}}function yZ({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:o={}}){const i=C.exports.useRef({hasEnteredView:!1,isInView:!1});let s=Boolean(t||n||r);o.once&&i.current.hasEnteredView&&(s=!1),(typeof IntersectionObserver>"u"?wZ:xZ)(s,i.current,e,o)}const bZ={some:0,all:1};function xZ(e,t,n,{root:r,margin:o,amount:i="some",once:s}){C.exports.useEffect(()=>{if(!e)return;const u={root:r?.current,rootMargin:o,threshold:typeof i=="number"?i:bZ[i]},c=d=>{const{isIntersecting:f}=d;if(t.isInView===f||(t.isInView=f,s&&!f&&t.hasEnteredView))return;f&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(Lt.InView,f);const h=n.getProps(),m=f?h.onViewportEnter:h.onViewportLeave;m&&m(d)};return vZ(n.getInstance(),u,c)},[e,r,o,i])}function wZ(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(dL!=="production"&&fL(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:o}=n.getProps();o&&o(null),n.animationState&&n.animationState.setActive(Lt.InView,!0)}))},[e])}const Oa=e=>t=>(e(t),null),SZ={inView:Oa(yZ),tap:Oa(fZ),focus:Oa(XU),hover:Oa(sG)};function F3(){const e=C.exports.useContext(Du);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,o=C.exports.useId();return C.exports.useEffect(()=>r(o),[]),!t&&n?[!1,()=>n&&n(o)]:[!0]}function CZ(){return _Z(C.exports.useContext(Du))}function _Z(e){return e===null?!0:e.isPresent}function pL(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,kZ={linear:M3,easeIn:R3,easeInOut:JE,easeOut:OG,circIn:eL,circInOut:MG,circOut:N3,backIn:D3,backInOut:NG,backOut:RG,anticipate:DG,bounceIn:$G,bounceInOut:VG,bounceOut:X1},uS=e=>{if(Array.isArray(e)){q1(e.length===4);const[t,n,r,o]=e;return dZ(t,n,r,o)}else if(typeof e=="string")return kZ[e];return e},EZ=e=>Array.isArray(e)&&typeof e[0]!="number",cS=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&Xi.test(t)&&!t.startsWith("url(")),hs=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),dh=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),r2=()=>({type:"keyframes",ease:"linear",duration:.3}),LZ=e=>({type:"keyframes",duration:.8,values:e}),dS={x:hs,y:hs,z:hs,rotate:hs,rotateX:hs,rotateY:hs,rotateZ:hs,scaleX:dh,scaleY:dh,scale:dh,opacity:r2,backgroundColor:r2,color:r2,default:dh},PZ=(e,t)=>{let n;return Vd(t)?n=LZ:n=dS[e]||dS.default,{to:t,...n(t)}},AZ={...EE,color:or,backgroundColor:or,outlineColor:or,fill:or,stroke:or,borderColor:or,borderTopColor:or,borderRightColor:or,borderBottomColor:or,borderLeftColor:or,filter:Qy,WebkitFilter:Qy},B3=e=>AZ[e];function $3(e,t){var n;let r=B3(e);return r!==Qy&&(r=Xi),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const TZ={current:!1};function IZ({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:o,repeat:i,repeatType:s,repeatDelay:u,from:c,...d}){return!!Object.keys(d).length}function OZ({ease:e,times:t,yoyo:n,flip:r,loop:o,...i}){const s={...i};return t&&(s.offset=t),i.duration&&(s.duration=J1(i.duration)),i.repeatDelay&&(s.repeatDelay=J1(i.repeatDelay)),e&&(s.ease=EZ(e)?e.map(uS):uS(e)),i.type==="tween"&&(s.type="keyframes"),(n||o||r)&&(n?s.repeatType="reverse":o?s.repeatType="loop":r&&(s.repeatType="mirror"),s.repeat=o||n||r||i.repeat),i.type!=="spring"&&(s.type="keyframes"),s}function MZ(e,t){var n,r;return(r=(n=(V3(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function RZ(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function NZ(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),RZ(t),IZ(e)||(e={...e,...PZ(n,t.to)}),{...t,...OZ(e)}}function DZ(e,t,n,r,o){const i=V3(r,e)||{};let s=i.from!==void 0?i.from:t.get();const u=cS(e,n);s==="none"&&u&&typeof n=="string"?s=$3(e,n):fS(s)&&typeof n=="string"?s=pS(n):!Array.isArray(n)&&fS(n)&&typeof s=="string"&&(n=pS(s));const c=cS(e,s);function d(){const h={from:s,to:n,velocity:t.getVelocity(),onComplete:o,onUpdate:m=>t.set(m)};return i.type==="inertia"||i.type==="decay"?oZ({...h,...i}):iL({...NZ(i,h,e),onUpdate:m=>{h.onUpdate(m),i.onUpdate&&i.onUpdate(m)},onComplete:()=>{h.onComplete(),i.onComplete&&i.onComplete()}})}function f(){const h=DE(n);return t.set(h),o(),i.onUpdate&&i.onUpdate(h),i.onComplete&&i.onComplete(),{stop:()=>{}}}return!c||!u||i.type===!1?f:d}function fS(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function pS(e){return typeof e=="number"?0:$3("",e)}function V3(e,t){return e[t]||e.default||e}function W3(e,t,n,r={}){return TZ.current&&(r={type:!1}),t.start(o=>{let i,s;const u=DZ(e,t,n,r,o),c=MZ(r,e),d=()=>s=u();return c?i=window.setTimeout(d,J1(c)):d(),()=>{clearTimeout(i),s&&s.stop()}})}const zZ=e=>/^\-?\d*\.?\d+$/.test(e),FZ=e=>/^0[^.\s]+$/.test(e),hL=1/60*1e3,BZ=typeof performance<"u"?()=>performance.now():()=>Date.now(),mL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(BZ()),hL);function $Z(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,u={schedule:(c,d=!1,f=!1)=>{const h=f&&o,m=h?t:n;return d&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const d=n.indexOf(c);d!==-1&&n.splice(d,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=$Z(()=>Hd=!0),e),{}),ui=xf.reduce((e,t)=>{const n=fm[t];return e[t]=(r,o=!1,i=!1)=>(Hd||jZ(),n.schedule(r,o,i)),e},{}),Ud=xf.reduce((e,t)=>(e[t]=fm[t].cancel,e),{}),o2=xf.reduce((e,t)=>(e[t]=()=>fm[t].process(iu),e),{}),WZ=e=>fm[e].process(iu),gL=e=>{Hd=!1,iu.delta=s4?hL:Math.max(Math.min(e-iu.timestamp,VZ),1),iu.timestamp=e,l4=!0,xf.forEach(WZ),l4=!1,Hd&&(s4=!1,mL(gL))},jZ=()=>{Hd=!0,s4=!0,l4||mL(gL)},u4=()=>iu;function j3(e,t){e.indexOf(t)===-1&&e.push(t)}function H3(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class id{constructor(){this.subscriptions=[]}add(t){return j3(this.subscriptions,t),()=>H3(this.subscriptions,t)}notify(t,n,r){const o=this.subscriptions.length;if(!!o)if(o===1)this.subscriptions[0](t,n,r);else for(let i=0;i!isNaN(parseFloat(e));class UZ{constructor(t){this.version="7.3.5",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new id,this.velocityUpdateSubscribers=new id,this.renderSubscribers=new id,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:o,timestamp:i}=u4();this.lastUpdated!==i&&(this.timeDelta=o,this.lastUpdated=i,ui.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>ui.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=HZ(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?aL(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function xu(e){return new UZ(e)}const vL=e=>t=>t.test(e),GZ={test:e=>e==="auto",parse:e=>e},yL=[Us,Ne,li,ba,xU,bU,GZ],Pc=e=>yL.find(vL(e)),ZZ=[...yL,or,Xi],KZ=e=>ZZ.find(vL(e));function qZ(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function YZ(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function pm(e,t,n){const r=e.getProps();return NE(r,t,n!==void 0?n:r.custom,qZ(e),YZ(e))}function XZ(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,xu(n))}function QZ(e,t){const n=pm(e,t);let{transitionEnd:r={},transition:o={},...i}=n?e.makeTargetAnimatable(n,!1):{};i={...i,...r};for(const s in i){const u=DE(i[s]);XZ(e,s,u)}}function JZ(e,t,n){var r,o;const i=Object.keys(t).filter(u=>!e.hasValue(u)),s=i.length;if(!!s)for(let u=0;uc4(e,i,n));r=Promise.all(o)}else if(typeof t=="string")r=c4(e,t,n);else{const o=typeof t=="function"?pm(e,t,n.custom):t;r=bL(e,o,n)}return r.then(()=>e.notifyAnimationComplete(t))}function c4(e,t,n={}){var r;const o=pm(e,t,n.custom);let{transition:i=e.getDefaultTransition()||{}}=o||{};n.transitionOverride&&(i=n.transitionOverride);const s=o?()=>bL(e,o,n):()=>Promise.resolve(),u=!((r=e.variantChildren)===null||r===void 0)&&r.size?(d=0)=>{const{delayChildren:f=0,staggerChildren:h,staggerDirection:m}=i;return rK(e,t,f+d,h,m,n)}:()=>Promise.resolve(),{when:c}=i;if(c){const[d,f]=c==="beforeChildren"?[s,u]:[u,s];return d().then(f)}else return Promise.all([s(),u(n.delay)])}function bL(e,t,{delay:n=0,transitionOverride:r,type:o}={}){var i;let{transition:s=e.getDefaultTransition(),transitionEnd:u,...c}=e.makeTargetAnimatable(t);const d=e.getValue("willChange");r&&(s=r);const f=[],h=o&&((i=e.animationState)===null||i===void 0?void 0:i.getState()[o]);for(const m in c){const g=e.getValue(m),b=c[m];if(!g||b===void 0||h&&iK(h,m))continue;let w={delay:n,...s};e.shouldReduceMotion&&gf.has(m)&&(w={...w,type:!1,delay:0});let k=W3(m,g,b,w);e0(d)&&(d.add(m),k=k.then(()=>d.remove(m))),f.push(k)}return Promise.all(f).then(()=>{u&&QZ(e,u)})}function rK(e,t,n=0,r=0,o=1,i){const s=[],u=(e.variantChildren.size-1)*r,c=o===1?(d=0)=>d*r:(d=0)=>u-d*r;return Array.from(e.variantChildren).sort(oK).forEach((d,f)=>{s.push(c4(d,t,{...i,delay:n+c(f)}).then(()=>d.notifyAnimationComplete(t)))}),Promise.all(s)}function oK(e,t){return e.sortNodePosition(t)}function iK({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const U3=[Lt.Animate,Lt.InView,Lt.Focus,Lt.Hover,Lt.Tap,Lt.Drag,Lt.Exit],aK=[...U3].reverse(),sK=U3.length;function lK(e){return t=>Promise.all(t.map(({animation:n,options:r})=>nK(e,n,r)))}function uK(e){let t=lK(e);const n=dK();let r=!0;const o=(c,d)=>{const f=pm(e,d);if(f){const{transition:h,transitionEnd:m,...g}=f;c={...c,...g,...m}}return c};function i(c){t=c(e)}function s(c,d){var f;const h=e.getProps(),m=e.getVariantContext(!0)||{},g=[],b=new Set;let w={},k=1/0;for(let x=0;xk&&R;const J=Array.isArray(T)?T:[T];let Ee=J.reduce(o,{});N===!1&&(Ee={});const{prevResolvedValues:he={}}=L,me={...he,...Ee},ce=ge=>{W=!0,b.delete(ge),L.needsAnimating[ge]=!0};for(const ge in me){const ne=Ee[ge],j=he[ge];w.hasOwnProperty(ge)||(ne!==j?Vd(ne)&&Vd(j)?!pL(ne,j)||G?ce(ge):L.protectedKeys[ge]=!0:ne!==void 0?ce(ge):b.add(ge):ne!==void 0&&b.has(ge)?ce(ge):L.protectedKeys[ge]=!0)}L.prevProp=T,L.prevResolvedValues=Ee,L.isActive&&(w={...w,...Ee}),r&&e.blockInitialAnimation&&(W=!1),W&&!F&&g.push(...J.map(ge=>({animation:ge,options:{type:_,...c}})))}if(b.size){const x={};b.forEach(_=>{const L=e.getBaseTarget(_);L!==void 0&&(x[_]=L)}),g.push({animation:x})}let S=Boolean(g.length);return r&&h.initial===!1&&!e.manuallyAnimateOnMount&&(S=!1),r=!1,S?t(g):Promise.resolve()}function u(c,d,f){var h;if(n[c].isActive===d)return Promise.resolve();(h=e.variantChildren)===null||h===void 0||h.forEach(g=>{var b;return(b=g.animationState)===null||b===void 0?void 0:b.setActive(c,d)}),n[c].isActive=d;const m=s(f,c);for(const g in n)n[g].protectedKeys={};return m}return{animateChanges:s,setActive:u,setAnimateFunction:i,getState:()=>n}}function cK(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!pL(t,e):!1}function ms(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function dK(){return{[Lt.Animate]:ms(!0),[Lt.InView]:ms(),[Lt.Hover]:ms(),[Lt.Tap]:ms(),[Lt.Drag]:ms(),[Lt.Focus]:ms(),[Lt.Exit]:ms()}}const fK={animation:Oa(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=uK(e)),om(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:Oa(e=>{const{custom:t,visualElement:n}=e,[r,o]=F3(),i=C.exports.useContext(Du);C.exports.useEffect(()=>{n.isPresent=r;const s=n.animationState&&n.animationState.setActive(Lt.Exit,!r,{custom:i&&i.custom||t});s&&!r&&s.then(o)},[r])})};class xL{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=a2(this.lastMoveEventInfo,this.history),f=this.startEvent!==null,h=z3(d.offset,{x:0,y:0})>=3;if(!f&&!h)return;const{point:m}=d,{timestamp:g}=u4();this.history.push({...m,timestamp:g});const{onStart:b,onMove:w}=this.handlers;f||(b&&b(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),w&&w(this.lastMoveEvent,d)},this.handlePointerMove=(d,f)=>{if(this.lastMoveEvent=d,this.lastMoveEventInfo=i2(f,this.transformPagePoint),FE(d)&&d.buttons===0){this.handlePointerUp(d,f);return}ui.update(this.updatePoint,!0)},this.handlePointerUp=(d,f)=>{this.end();const{onEnd:h,onSessionEnd:m}=this.handlers,g=a2(i2(f,this.transformPagePoint),this.history);this.startEvent&&h&&h(d,g),m&&m(d,g)},BE(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const o=A3(t),i=i2(o,this.transformPagePoint),{point:s}=i,{timestamp:u}=u4();this.history=[{...s,timestamp:u}];const{onSessionStart:c}=n;c&&c(t,a2(i,this.history)),this.removeListeners=um(ru(window,"pointermove",this.handlePointerMove),ru(window,"pointerup",this.handlePointerUp),ru(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),Ud.update(this.updatePoint)}}function i2(e,t){return t?{point:t(e.point)}:e}function hS(e,t){return{x:e.x-t.x,y:e.y-t.y}}function a2({point:e},t){return{point:e,delta:hS(e,wL(t)),offset:hS(e,pK(t)),velocity:hK(t,.1)}}function pK(e){return e[0]}function wL(e){return e[e.length-1]}function hK(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const o=wL(e);for(;n>=0&&(r=e[n],!(o.timestamp-r.timestamp>J1(t)));)n--;if(!r)return{x:0,y:0};const i=(o.timestamp-r.timestamp)/1e3;if(i===0)return{x:0,y:0};const s={x:(o.x-r.x)/i,y:(o.y-r.y)/i};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}function jr(e){return e.max-e.min}function mS(e,t=0,n=.01){return z3(e,t)n&&(e=r?Xt(n,e,r.max):Math.min(e,n)),e}function bS(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function vK(e,{top:t,left:n,bottom:r,right:o}){return{x:bS(e.x,n,o),y:bS(e.y,t,r)}}function xS(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=Wd(t.min,t.max-r,e.min):r>o&&(n=Wd(e.min,e.max-o,t.min)),Y1(0,1,n)}function xK(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const d4=.35;function wK(e=d4){return e===!1?e=0:e===!0&&(e=d4),{x:wS(e,"left","right"),y:wS(e,"top","bottom")}}function wS(e,t,n){return{min:SS(e,t),max:SS(e,n)}}function SS(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const CS=()=>({translate:0,scale:1,origin:0,originPoint:0}),ld=()=>({x:CS(),y:CS()}),_S=()=>({min:0,max:0}),In=()=>({x:_S(),y:_S()});function Yo(e){return[e("x"),e("y")]}function SL({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function SK({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function CK(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function s2(e){return e===void 0||e===1}function CL({scale:e,scaleX:t,scaleY:n}){return!s2(e)||!s2(t)||!s2(n)}function xa(e){return CL(e)||kS(e.x)||kS(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function kS(e){return e&&e!=="0%"}function t0(e,t,n){const r=e-n,o=t*r;return n+o}function ES(e,t,n,r,o){return o!==void 0&&(e=t0(e,o,r)),t0(e,n,r)+t}function f4(e,t=0,n=1,r,o){e.min=ES(e.min,t,n,r,o),e.max=ES(e.max,t,n,r,o)}function _L(e,{x:t,y:n}){f4(e.x,t.translate,t.scale,t.originPoint),f4(e.y,n.translate,n.scale,n.originPoint)}function _K(e,t,n,r=!1){var o,i;const s=n.length;if(!s)return;t.x=t.y=1;let u,c;for(let d=0;d{this.stopAnimation(),n&&this.snapToCursor(A3(u,"page").point)},o=(u,c)=>{var d;const{drag:f,dragPropagation:h,onDragStart:m}=this.getProps();f&&!h&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=jE(f),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Yo(g=>{var b,w;let k=this.getAxisMotionValue(g).get()||0;if(li.test(k)){const S=(w=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||w===void 0?void 0:w.actual[g];S&&(k=jr(S)*(parseFloat(k)/100))}this.originPoint[g]=k}),m?.(u,c),(d=this.visualElement.animationState)===null||d===void 0||d.setActive(Lt.Drag,!0))},i=(u,c)=>{const{dragPropagation:d,dragDirectionLock:f,onDirectionLock:h,onDrag:m}=this.getProps();if(!d&&!this.openGlobalLock)return;const{offset:g}=c;if(f&&this.currentDirection===null){this.currentDirection=TK(g),this.currentDirection!==null&&h?.(this.currentDirection);return}this.updateAxis("x",c.point,g),this.updateAxis("y",c.point,g),this.visualElement.syncRender(),m?.(u,c)},s=(u,c)=>this.stop(u,c);this.panSession=new xL(t,{onSessionStart:r,onStart:o,onMove:i,onSessionEnd:s},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:o}=n;this.startAnimation(o);const{onDragEnd:i}=this.getProps();i?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Lt.Drag,!1)}updateAxis(t,n,r){const{drag:o}=this.getProps();if(!r||!fh(t,o,this.currentDirection))return;const i=this.getAxisMotionValue(t);let s=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(s=gK(s,this.constraints[t],this.elastic[t])),i.set(s)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},o=this.constraints;t&&Zl(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=vK(r.actual,t):this.constraints=!1,this.elastic=wK(n),o!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&Yo(i=>{this.getAxisMotionValue(i)&&(this.constraints[i]=xK(r.actual[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Zl(t))return!1;const r=t.current,{projection:o}=this.visualElement;if(!o||!o.layout)return!1;const i=LK(r,o.root,this.visualElement.getTransformPagePoint());let s=yK(o.layout.actual,i);if(n){const u=n(SK(s));this.hasMutatedConstraints=!!u,u&&(s=SL(u))}return s}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:o,dragTransition:i,dragSnapToOrigin:s,onDragTransitionEnd:u}=this.getProps(),c=this.constraints||{},d=Yo(f=>{var h;if(!fh(f,n,this.currentDirection))return;let m=(h=c?.[f])!==null&&h!==void 0?h:{};s&&(m={min:0,max:0});const g=o?200:1e6,b=o?40:1e7,w={type:"inertia",velocity:r?t[f]:0,bounceStiffness:g,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...i,...m};return this.startAxisValueAnimation(f,w)});return Promise.all(d).then(u)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return W3(t,r,0,n)}stopAnimation(){Yo(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const o="_drag"+t.toUpperCase(),i=this.visualElement.getProps()[o];return i||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){Yo(n=>{const{drag:r}=this.getProps();if(!fh(n,r,this.currentDirection))return;const{projection:o}=this.visualElement,i=this.getAxisMotionValue(n);if(o&&o.layout){const{min:s,max:u}=o.layout.actual[n];i.set(t[n]-Xt(s,u,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:o}=this.visualElement;if(!Zl(r)||!o||!this.constraints)return;this.stopAnimation();const i={x:0,y:0};Yo(u=>{const c=this.getAxisMotionValue(u);if(c){const d=c.get();i[u]=bK({min:d,max:d},this.constraints[u])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=s?s({},""):"none",(t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout(),this.resolveConstraints(),Yo(u=>{if(!fh(u,n,null))return;const c=this.getAxisMotionValue(u),{min:d,max:f}=this.constraints[u];c.set(Xt(d,f,i[u]))})}addListeners(){var t;PK.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=ru(n,"pointerdown",d=>{const{drag:f,dragListener:h=!0}=this.getProps();f&&h&&this.start(d)}),o=()=>{const{dragConstraints:d}=this.getProps();Zl(d)&&(this.constraints=this.resolveRefConstraints())},{projection:i}=this.visualElement,s=i.addEventListener("measure",o);i&&!i.layout&&((t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout()),o();const u=sm(window,"resize",()=>this.scalePositionWithinConstraints()),c=i.addEventListener("didUpdate",({delta:d,hasLayoutChanged:f})=>{this.isDragging&&f&&(Yo(h=>{const m=this.getAxisMotionValue(h);!m||(this.originPoint[h]+=d[h].translate,m.set(m.get()+d[h].translate))}),this.visualElement.syncRender())});return()=>{u(),r(),s(),c?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:o=!1,dragConstraints:i=!1,dragElastic:s=d4,dragMomentum:u=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:o,dragConstraints:i,dragElastic:s,dragMomentum:u}}}function fh(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function TK(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function IK(e){const{dragControls:t,visualElement:n}=e,r=am(()=>new AK(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function OK({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(null),{transformPagePoint:u}=C.exports.useContext(w3),c={onSessionStart:r,onStart:t,onMove:e,onEnd:(f,h)=>{s.current=null,n&&n(f,h)}};C.exports.useEffect(()=>{s.current!==null&&s.current.updateHandlers(c)});function d(f){s.current=new xL(f,c,{transformPagePoint:u})}K1(o,"pointerdown",i&&d),T3(()=>s.current&&s.current.end())}const MK={pan:Oa(OK),drag:Oa(IK)},p4={current:null},EL={current:!1};function RK(){if(EL.current=!0,!!Hs)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>p4.current=e.matches;e.addListener(t),t()}else p4.current=!1}const ph=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function NK(){const e=ph.map(()=>new id),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{ph.forEach(o=>{var i;const s="on"+o,u=r[s];(i=t[o])===null||i===void 0||i.call(t),u&&(t[o]=n[s](u))})}};return e.forEach((r,o)=>{n["on"+ph[o]]=i=>r.add(i),n["notify"+ph[o]]=(...i)=>r.notify(...i)}),n}function DK(e,t,n){const{willChange:r}=t;for(const o in t){const i=t[o],s=n[o];if(hi(i))e.addValue(o,i),e0(r)&&r.add(o);else if(hi(s))e.addValue(o,xu(i)),e0(r)&&r.remove(o);else if(s!==i)if(e.hasValue(o)){const u=e.getValue(o);!u.hasAnimated&&u.set(i)}else{const u=e.getStaticValue(o);e.addValue(o,xu(u!==void 0?u:i))}}for(const o in n)t[o]===void 0&&e.removeValue(o);return t}const LL=Object.keys(Bd),zK=LL.length,PL=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:o,render:i,readValueFromInstance:s,removeValueFromRenderState:u,sortNodePosition:c,scrapeMotionValuesFromProps:d})=>({parent:f,props:h,presenceId:m,blockInitialAnimation:g,visualState:b,reducedMotionConfig:w},k={})=>{let S=!1;const{latestValues:x,renderState:_}=b;let L;const T=NK(),R=new Map,N=new Map;let F={};const G={...x};let W;function J(){!L||!S||(Ee(),i(L,_,h.style,Y.projection))}function Ee(){t(Y,_,x,k,h)}function he(){T.notifyUpdate(x)}function me(K,O){const H=O.onChange(de=>{x[K]=de,h.onUpdate&&ui.update(he,!1,!0)}),se=O.onRenderRequest(Y.scheduleRender);N.set(K,()=>{H(),se()})}const{willChange:ce,...ge}=d(h);for(const K in ge){const O=ge[K];x[K]!==void 0&&hi(O)&&(O.set(x[K],!1),e0(ce)&&ce.add(K))}const ne=im(h),j=mE(h),Y={treeType:e,current:null,depth:f?f.depth+1:0,parent:f,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:j?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(f?.isMounted()),blockInitialAnimation:g,isMounted:()=>Boolean(L),mount(K){S=!0,L=Y.current=K,Y.projection&&Y.projection.mount(K),j&&f&&!ne&&(W=f?.addVariantChild(Y)),R.forEach((O,H)=>me(H,O)),EL.current||RK(),Y.shouldReduceMotion=w==="never"?!1:w==="always"?!0:p4.current,f?.children.add(Y),Y.setProps(h)},unmount(){var K;(K=Y.projection)===null||K===void 0||K.unmount(),Ud.update(he),Ud.render(J),N.forEach(O=>O()),W?.(),f?.children.delete(Y),T.clearAllListeners(),L=void 0,S=!1},loadFeatures(K,O,H,se,de,ye){const be=[];for(let Pe=0;PeY.scheduleRender(),animationType:typeof fe=="string"?fe:"both",initialPromotionConfig:ye,layoutScroll:st})}return be},addVariantChild(K){var O;const H=Y.getClosestVariantNode();if(H)return(O=H.variantChildren)===null||O===void 0||O.add(K),()=>H.variantChildren.delete(K)},sortNodePosition(K){return!c||e!==K.treeType?0:c(Y.getInstance(),K.getInstance())},getClosestVariantNode:()=>j?Y:f?.getClosestVariantNode(),getLayoutId:()=>h.layoutId,getInstance:()=>L,getStaticValue:K=>x[K],setStaticValue:(K,O)=>x[K]=O,getLatestValues:()=>x,setVisibility(K){Y.isVisible!==K&&(Y.isVisible=K,Y.scheduleRender())},makeTargetAnimatable(K,O=!0){return r(Y,K,h,O)},measureViewportBox(){return o(L,h)},addValue(K,O){Y.hasValue(K)&&Y.removeValue(K),R.set(K,O),x[K]=O.get(),me(K,O)},removeValue(K){var O;R.delete(K),(O=N.get(K))===null||O===void 0||O(),N.delete(K),delete x[K],u(K,_)},hasValue:K=>R.has(K),getValue(K,O){let H=R.get(K);return H===void 0&&O!==void 0&&(H=xu(O),Y.addValue(K,H)),H},forEachValue:K=>R.forEach(K),readValue:K=>x[K]!==void 0?x[K]:s(L,K,k),setBaseTarget(K,O){G[K]=O},getBaseTarget(K){if(n){const O=n(h,K);if(O!==void 0&&!hi(O))return O}return G[K]},...T,build(){return Ee(),_},scheduleRender(){ui.render(J,!1,!0)},syncRender:J,setProps(K){(K.transformTemplate||h.transformTemplate)&&Y.scheduleRender(),h=K,T.updatePropListeners(K),F=DK(Y,d(h),F)},getProps:()=>h,getVariant:K=>{var O;return(O=h.variants)===null||O===void 0?void 0:O[K]},getDefaultTransition:()=>h.transition,getTransformPagePoint:()=>h.transformPagePoint,getVariantContext(K=!1){if(K)return f?.getVariantContext();if(!ne){const H=f?.getVariantContext()||{};return h.initial!==void 0&&(H.initial=h.initial),H}const O={};for(let H=0;H{const i=o.get();if(!h4(i))return;const s=m4(i,r);s&&o.set(s)});for(const o in t){const i=t[o];if(!h4(i))continue;const s=m4(i,r);!s||(t[o]=s,n&&n[o]===void 0&&(n[o]=i))}return{target:t,transitionEnd:n}}const VK=new Set(["width","height","top","left","right","bottom","x","y"]),IL=e=>VK.has(e),WK=e=>Object.keys(e).some(IL),OL=(e,t)=>{e.set(t,!1),e.set(t)},PS=e=>e===Us||e===Ne;var AS;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(AS||(AS={}));const TS=(e,t)=>parseFloat(e.split(", ")[t]),IS=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const o=r.match(/^matrix3d\((.+)\)$/);if(o)return TS(o[1],t);{const i=r.match(/^matrix\((.+)\)$/);return i?TS(i[1],e):0}},jK=new Set(["x","y","z"]),HK=G1.filter(e=>!jK.has(e));function UK(e){const t=[];return HK.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const OS={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:IS(4,13),y:IS(5,14)},GK=(e,t,n)=>{const r=t.measureViewportBox(),o=t.getInstance(),i=getComputedStyle(o),{display:s}=i,u={};s==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(d=>{u[d]=OS[d](r,i)}),t.syncRender();const c=t.measureViewportBox();return n.forEach(d=>{const f=t.getValue(d);OL(f,u[d]),e[d]=OS[d](c,i)}),e},ZK=(e,t,n={},r={})=>{t={...t},r={...r};const o=Object.keys(t).filter(IL);let i=[],s=!1;const u=[];if(o.forEach(c=>{const d=e.getValue(c);if(!e.hasValue(c))return;let f=n[c],h=Pc(f);const m=t[c];let g;if(Vd(m)){const b=m.length,w=m[0]===null?1:0;f=m[w],h=Pc(f);for(let k=w;k=0?window.pageYOffset:null,d=GK(t,e,u);return i.length&&i.forEach(([f,h])=>{e.getValue(f).set(h)}),e.syncRender(),Hs&&c!==null&&window.scrollTo({top:c}),{target:d,transitionEnd:r}}else return{target:t,transitionEnd:r}};function KK(e,t,n,r){return WK(t)?ZK(e,t,n,r):{target:t,transitionEnd:r}}const qK=(e,t,n,r)=>{const o=$K(e,t,r);return t=o.target,r=o.transitionEnd,KK(e,t,n,r)};function YK(e){return window.getComputedStyle(e)}const ML={treeType:"dom",readValueFromInstance(e,t){if(gf.has(t)){const n=B3(t);return n&&n.default||0}else{const n=YK(e),r=(yE(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return kL(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:o},i=!0){let s=tK(r,t||{},e);if(o&&(n&&(n=o(n)),r&&(r=o(r)),s&&(s=o(s))),i){JZ(e,r,s);const u=qK(e,r,s,n);n=u.transitionEnd,r=u.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:P3,build(e,t,n,r,o){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),k3(t,n,r,o.transformTemplate)},render:IE},XK=PL(ML),QK=PL({...ML,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return gf.has(t)?((n=B3(t))===null||n===void 0?void 0:n.default)||0:(t=OE.has(t)?t:TE(t),e.getAttribute(t))},scrapeMotionValuesFromProps:RE,build(e,t,n,r,o){L3(t,n,r,o.transformTemplate)},render:ME}),JK=(e,t)=>C3(e)?QK(t,{enableHardwareAcceleration:!1}):XK(t,{enableHardwareAcceleration:!0});function MS(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const Ac={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(Ne.test(e))e=parseFloat(e);else return e;const n=MS(e,t.target.x),r=MS(e,t.target.y);return`${n}% ${r}%`}},RS="_$css",eq={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,o=e.includes("var("),i=[];o&&(e=e.replace(TL,g=>(i.push(g),RS)));const s=Xi.parse(e);if(s.length>5)return r;const u=Xi.createTransformer(e),c=typeof s[0]!="number"?1:0,d=n.x.scale*t.x,f=n.y.scale*t.y;s[0+c]/=d,s[1+c]/=f;const h=Xt(d,f,.5);typeof s[2+c]=="number"&&(s[2+c]/=h),typeof s[3+c]=="number"&&(s[3+c]/=h);let m=u(s);if(o){let g=0;m=m.replace(RS,()=>{const b=i[g];return g++,b})}return m}};class tq extends X.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:o}=this.props,{projection:i}=t;pU(rq),i&&(n.group&&n.group.add(i),r&&r.register&&o&&r.register(i),i.root.didUpdate(),i.addEventListener("animationComplete",()=>{this.safeToRemove()}),i.setOptions({...i.options,onExitComplete:()=>this.safeToRemove()})),nd.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:o,isPresent:i}=this.props,s=r.projection;return s&&(s.isPresent=i,o||t.layoutDependency!==n||n===void 0?s.willUpdate():this.safeToRemove(),t.isPresent!==i&&(i?s.promote():s.relegate()||ui.postRender(()=>{var u;!((u=s.getStack())===null||u===void 0)&&u.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:o}=t;o&&(o.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(o),r?.deregister&&r.deregister(o))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function nq(e){const[t,n]=F3(),r=C.exports.useContext(S3);return v(tq,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(gE),isPresent:t,safeToRemove:n})}const rq={borderRadius:{...Ac,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Ac,borderTopRightRadius:Ac,borderBottomLeftRadius:Ac,borderBottomRightRadius:Ac,boxShadow:eq},oq={measureLayout:nq};function iq(e,t,n={}){const r=hi(e)?e:xu(e);return W3("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const RL=["TopLeft","TopRight","BottomLeft","BottomRight"],aq=RL.length,NS=e=>typeof e=="string"?parseFloat(e):e,DS=e=>typeof e=="number"||Ne.test(e);function sq(e,t,n,r,o,i){var s,u,c,d;o?(e.opacity=Xt(0,(s=n.opacity)!==null&&s!==void 0?s:1,lq(r)),e.opacityExit=Xt((u=t.opacity)!==null&&u!==void 0?u:1,0,uq(r))):i&&(e.opacity=Xt((c=t.opacity)!==null&&c!==void 0?c:1,(d=n.opacity)!==null&&d!==void 0?d:1,r));for(let f=0;frt?1:n(Wd(e,t,r))}function FS(e,t){e.min=t.min,e.max=t.max}function Lo(e,t){FS(e.x,t.x),FS(e.y,t.y)}function BS(e,t,n,r,o){return e-=t,e=t0(e,1/n,r),o!==void 0&&(e=t0(e,1/o,r)),e}function cq(e,t=0,n=1,r=.5,o,i=e,s=e){if(li.test(t)&&(t=parseFloat(t),t=Xt(s.min,s.max,t/100)-s.min),typeof t!="number")return;let u=Xt(i.min,i.max,r);e===i&&(u-=t),e.min=BS(e.min,t,n,u,o),e.max=BS(e.max,t,n,u,o)}function $S(e,t,[n,r,o],i,s){cq(e,t[n],t[r],t[o],t.scale,i,s)}const dq=["x","scaleX","originX"],fq=["y","scaleY","originY"];function VS(e,t,n,r){$S(e.x,t,dq,n?.x,r?.x),$S(e.y,t,fq,n?.y,r?.y)}function WS(e){return e.translate===0&&e.scale===1}function DL(e){return WS(e.x)&&WS(e.y)}function zL(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function jS(e){return jr(e.x)/jr(e.y)}function pq(e,t,n=.01){return z3(e,t)<=n}class hq{constructor(){this.members=[]}add(t){j3(this.members,t),t.scheduleRender()}remove(t){if(H3(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(o=>t===o);if(n===0)return!1;let r;for(let o=n;o>=0;o--){const i=this.members[o];if(i.isPresent!==!1){r=i;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:i}=t.options;i===!1&&o.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,o,i,s;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(s=(o=t.resumingFrom)===null||o===void 0?void 0:(i=o.options).onExitComplete)===null||s===void 0||s.call(i)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const mq="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function HS(e,t,n){const r=e.x.translate/t.x,o=e.y.translate/t.y;let i=`translate3d(${r}px, ${o}px, 0) `;if(i+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:c,rotateX:d,rotateY:f}=n;c&&(i+=`rotate(${c}deg) `),d&&(i+=`rotateX(${d}deg) `),f&&(i+=`rotateY(${f}deg) `)}const s=e.x.scale*t.x,u=e.y.scale*t.y;return i+=`scale(${s}, ${u})`,i===mq?"none":i}const gq=(e,t)=>e.depth-t.depth;class vq{constructor(){this.children=[],this.isDirty=!1}add(t){j3(this.children,t),this.isDirty=!0}remove(t){H3(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(gq),this.isDirty=!1,this.children.forEach(t)}}const US=["","X","Y","Z"],GS=1e3;function FL({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:o}){return class{constructor(s,u={},c=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(Cq),this.nodes.forEach(_q)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=s,this.latestValues=u,this.root=c?c.root||c:this,this.path=c?[...c.path,c]:[],this.parent=c,this.depth=c?c.depth+1:0,s&&this.root.registerPotentialNode(s,this);for(let d=0;dthis.root.updateBlockedByResize=!1;e(s,()=>{this.root.updateBlockedByResize=!0,clearTimeout(m),m=window.setTimeout(g,250),nd.hasAnimatedSinceResize&&(nd.hasAnimatedSinceResize=!1,this.nodes.forEach(Sq))})}d&&this.root.registerSharedNode(d,this),this.options.animate!==!1&&h&&(d||f)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:g,hasRelativeTargetChanged:b,layout:w})=>{var k,S,x,_,L;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const T=(S=(k=this.options.transition)!==null&&k!==void 0?k:h.getDefaultTransition())!==null&&S!==void 0?S:Aq,{onLayoutAnimationStart:R,onLayoutAnimationComplete:N}=h.getProps(),F=!this.targetLayout||!zL(this.targetLayout,w)||b,G=!g&&b;if(((x=this.resumeFrom)===null||x===void 0?void 0:x.instance)||G||g&&(F||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,G);const W={...V3(T,"layout"),onPlay:R,onComplete:N};h.shouldReduceMotion&&(W.delay=0,W.type=!1),this.startAnimation(W)}else!g&&this.animationProgress===0&&this.finishAnimation(),this.isLead()&&((L=(_=this.options).onExitComplete)===null||L===void 0||L.call(_));this.targetLayout=w})}unmount(){var s,u;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(s=this.getStack())===null||s===void 0||s.remove(this),(u=this.parent)===null||u===void 0||u.children.delete(this),this.instance=void 0,Ud.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var s;return this.isAnimationBlocked||((s=this.parent)===null||s===void 0?void 0:s.isTreeAnimationBlocked())||!1}startUpdate(){var s;this.isUpdateBlocked()||(this.isUpdating=!0,(s=this.nodes)===null||s===void 0||s.forEach(kq))}willUpdate(s=!0){var u,c,d;if(this.root.isUpdateBlocked()){(c=(u=this.options).onExitComplete)===null||c===void 0||c.call(u);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let g=0;g{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const s=this.measure(),u=this.removeTransform(this.removeElementScroll(s));XS(u),this.snapshot={measured:s,layout:u,latestValues:{}}}updateLayout(){var s;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let d=0;d{var x;const _=S/1e3;KS(m.x,s.x,_),KS(m.y,s.y,_),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((x=this.relativeParent)===null||x===void 0?void 0:x.layout)&&(sd(g,this.layout.actual,this.relativeParent.layout.actual),Lq(this.relativeTarget,this.relativeTargetOrigin,g,_)),b&&(this.animationValues=h,sq(h,f,this.latestValues,_,k,w)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=_},this.mixTargetDelta(0)}startAnimation(s){var u,c;this.notifyListeners("animationStart"),(u=this.currentAnimation)===null||u===void 0||u.stop(),this.resumingFrom&&((c=this.resumingFrom.currentAnimation)===null||c===void 0||c.stop()),this.pendingAnimation&&(Ud.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=ui.update(()=>{nd.hasAnimatedSinceResize=!0,this.currentAnimation=iq(0,GS,{...s,onUpdate:d=>{var f;this.mixTargetDelta(d),(f=s.onUpdate)===null||f===void 0||f.call(s,d)},onComplete:()=>{var d;(d=s.onComplete)===null||d===void 0||d.call(s),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var s;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(s=this.getStack())===null||s===void 0||s.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var s;this.currentAnimation&&((s=this.mixTargetDelta)===null||s===void 0||s.call(this,GS),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const s=this.getLead();let{targetWithTransforms:u,target:c,layout:d,latestValues:f}=s;if(!(!u||!c||!d)){if(this!==s&&this.layout&&d&&BL(this.options.animationType,this.layout.actual,d.actual)){c=this.target||In();const h=jr(this.layout.actual.x);c.x.min=s.target.x.min,c.x.max=c.x.min+h;const m=jr(this.layout.actual.y);c.y.min=s.target.y.min,c.y.max=c.y.min+m}Lo(u,c),Kl(u,f),ad(this.projectionDeltaWithTransform,this.layoutCorrected,u,f)}}registerSharedNode(s,u){var c,d,f;this.sharedNodes.has(s)||this.sharedNodes.set(s,new hq),this.sharedNodes.get(s).add(u),u.promote({transition:(c=u.options.initialPromotionConfig)===null||c===void 0?void 0:c.transition,preserveFollowOpacity:(f=(d=u.options.initialPromotionConfig)===null||d===void 0?void 0:d.shouldPreserveFollowOpacity)===null||f===void 0?void 0:f.call(d,u)})}isLead(){const s=this.getStack();return s?s.lead===this:!0}getLead(){var s;const{layoutId:u}=this.options;return u?((s=this.getStack())===null||s===void 0?void 0:s.lead)||this:this}getPrevLead(){var s;const{layoutId:u}=this.options;return u?(s=this.getStack())===null||s===void 0?void 0:s.prevLead:void 0}getStack(){const{layoutId:s}=this.options;if(s)return this.root.sharedNodes.get(s)}promote({needsReset:s,transition:u,preserveFollowOpacity:c}={}){const d=this.getStack();d&&d.promote(this,c),s&&(this.projectionDelta=void 0,this.needsReset=!0),u&&this.setOptions({transition:u})}relegate(){const s=this.getStack();return s?s.relegate(this):!1}resetRotation(){const{visualElement:s}=this.options;if(!s)return;let u=!1;const c={};for(let d=0;d{var u;return(u=s.currentAnimation)===null||u===void 0?void 0:u.stop()}),this.root.nodes.forEach(ZS),this.root.sharedNodes.clear()}}}function yq(e){e.updateLayout()}function bq(e){var t,n,r;const o=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&o&&e.hasListeners("didUpdate")){const{actual:i,measured:s}=e.layout,{animationType:u}=e.options;u==="size"?Yo(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=jr(g);g.min=i[m].min,g.max=g.min+b}):BL(u,o.layout,i)&&Yo(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=jr(i[m]);g.max=g.min+b});const c=ld();ad(c,i,o.layout);const d=ld();o.isShared?ad(d,e.applyTransform(s,!0),o.measured):ad(d,i,o.layout);const f=!DL(c);let h=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:g}=e.relativeParent;if(m&&g){const b=In();sd(b,o.layout,m.layout);const w=In();sd(w,i,g.actual),zL(b,w)||(h=!0)}}e.notifyListeners("didUpdate",{layout:i,snapshot:o,delta:d,layoutDelta:c,hasLayoutChanged:f,hasRelativeTargetChanged:h})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function xq(e){e.clearSnapshot()}function ZS(e){e.clearMeasurements()}function wq(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function Sq(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function Cq(e){e.resolveTargetDelta()}function _q(e){e.calcProjection()}function kq(e){e.resetRotation()}function Eq(e){e.removeLeadSnapshot()}function KS(e,t,n){e.translate=Xt(t.translate,0,n),e.scale=Xt(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function qS(e,t,n,r){e.min=Xt(t.min,n.min,r),e.max=Xt(t.max,n.max,r)}function Lq(e,t,n,r){qS(e.x,t.x,n.x,r),qS(e.y,t.y,n.y,r)}function Pq(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const Aq={duration:.45,ease:[.4,0,.1,1]};function Tq(e,t){let n=e.root;for(let i=e.path.length-1;i>=0;i--)if(Boolean(e.path[i].instance)){n=e.path[i];break}const o=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);o&&e.mount(o,!0)}function YS(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function XS(e){YS(e.x),YS(e.y)}function BL(e,t,n){return e==="position"||e==="preserve-aspect"&&!pq(jS(t),jS(n))}const Iq=FL({attachResizeListener:(e,t)=>sm(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),l2={current:void 0},Oq=FL({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!l2.current){const e=new Iq(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),l2.current=e}return l2.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),Mq={...fK,...SZ,...MK,...oq},go=dU((e,t)=>YU(e,t,Mq,JK,Oq));function $L(){const e=C.exports.useRef(!1);return H1(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function Rq(){const e=$L(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>ui.postRender(r),[r]),t]}class Nq extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function Dq({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),o=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:i,height:s,top:u,left:c}=o.current;if(t||!r.current||!i||!s)return;r.current.dataset.motionPopId=n;const d=document.createElement("style");return document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` + [data-motion-pop-id="${n}"] { + position: absolute !important; + width: ${i}px !important; + height: ${s}px !important; + top: ${u}px !important; + left: ${c}px !important; + } + `),()=>{document.head.removeChild(d)}},[t]),v(Nq,{isPresent:t,childRef:r,sizeRef:o,children:C.exports.cloneElement(e,{ref:r})})}const u2=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:o,presenceAffectsLayout:i,mode:s})=>{const u=am(zq),c=C.exports.useId(),d=C.exports.useMemo(()=>({id:c,initial:t,isPresent:n,custom:o,onExitComplete:f=>{u.set(f,!0);for(const h of u.values())if(!h)return;r&&r()},register:f=>(u.set(f,!1),()=>u.delete(f))}),i?void 0:[n]);return C.exports.useMemo(()=>{u.forEach((f,h)=>u.set(h,!1))},[n]),C.exports.useEffect(()=>{!n&&!u.size&&r&&r()},[n]),s==="popLayout"&&(e=v(Dq,{isPresent:n,children:e})),v(Du.Provider,{value:d,children:e})};function zq(){return new Map}const Il=e=>e.key||"";function Fq(e,t){e.forEach(n=>{const r=Il(n);t.set(r,n)})}function Bq(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const na=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:o,presenceAffectsLayout:i=!0,mode:s="sync"})=>{o&&(s="wait",fL(!1,"Replace exitBeforeEnter with mode='wait'"));let[u]=Rq();const c=C.exports.useContext(S3).forceRender;c&&(u=c);const d=$L(),f=Bq(e);let h=f;const m=new Set,g=C.exports.useRef(h),b=C.exports.useRef(new Map).current,w=C.exports.useRef(!0);if(H1(()=>{w.current=!1,Fq(f,b),g.current=h}),T3(()=>{w.current=!0,b.clear(),m.clear()}),w.current)return v(yn,{children:h.map(_=>v(u2,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:i,mode:s,children:_},Il(_)))});h=[...h];const k=g.current.map(Il),S=f.map(Il),x=k.length;for(let _=0;_{if(S.indexOf(_)!==-1)return;const L=b.get(_);if(!L)return;const T=k.indexOf(_),R=()=>{b.delete(_),m.delete(_);const N=g.current.findIndex(F=>F.key===_);if(g.current.splice(N,1),!m.size){if(g.current=f,d.current===!1)return;u(),r&&r()}};h.splice(T,0,v(u2,{isPresent:!1,onExitComplete:R,custom:t,presenceAffectsLayout:i,mode:s,children:L},Il(L)))}),h=h.map(_=>{const L=_.key;return m.has(L)?_:v(u2,{isPresent:!0,presenceAffectsLayout:i,mode:s,children:_},Il(_))}),dL!=="production"&&s==="wait"&&h.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),v(yn,{children:m.size?h:h.map(_=>C.exports.cloneElement(_))})};var wf=(...e)=>e.filter(Boolean).join(" ");function $q(){return!1}var Vq=e=>{const{condition:t,message:n}=e;t&&$q()&&console.warn(n)},Ls={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},Tc={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function g4(e){switch(e?.direction??"right"){case"right":return Tc.slideRight;case"left":return Tc.slideLeft;case"bottom":return Tc.slideDown;case"top":return Tc.slideUp;default:return Tc.slideRight}}var Is={enter:{duration:.2,ease:Ls.easeOut},exit:{duration:.1,ease:Ls.easeIn}},Fo={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},Wq=e=>e!=null&&parseInt(e.toString(),10)>0,QS={exit:{height:{duration:.2,ease:Ls.ease},opacity:{duration:.3,ease:Ls.ease}},enter:{height:{duration:.3,ease:Ls.ease},opacity:{duration:.4,ease:Ls.ease}}},jq={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:Wq(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Fo.exit(QS.exit,o)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Fo.enter(QS.enter,o)})},VL=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:o=!0,startingHeight:i=0,endingHeight:s="auto",style:u,className:c,transition:d,transitionEnd:f,...h}=e,[m,g]=C.exports.useState(!1);C.exports.useEffect(()=>{const x=setTimeout(()=>{g(!0)});return()=>clearTimeout(x)},[]),Vq({condition:Boolean(i>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(i.toString())>0,w={startingHeight:i,endingHeight:s,animateOpacity:o,transition:m?d:{enter:{duration:0}},transitionEnd:{enter:f?.enter,exit:r?f?.exit:{...f?.exit,display:b?"block":"none"}}},k=r?n:!0,S=n||r?"enter":"exit";return v(na,{initial:!1,custom:w,children:k&&X.createElement(go.div,{ref:t,...h,className:wf("chakra-collapse",c),style:{overflow:"hidden",display:"block",...u},custom:w,variants:jq,initial:r?"exit":!1,animate:S,exit:"exit"})})});VL.displayName="Collapse";var Hq={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Fo.enter(Is.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Fo.exit(Is.exit,n),transitionEnd:t?.exit})},WL={initial:"exit",animate:"enter",exit:"exit",variants:Hq},Uq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,className:i,transition:s,transitionEnd:u,delay:c,...d}=t,f=o||r?"enter":"exit",h=r?o&&r:!0,m={transition:s,transitionEnd:u,delay:c};return v(na,{custom:m,children:h&&X.createElement(go.div,{ref:n,className:wf("chakra-fade",i),custom:m,...WL,animate:f,...d})})});Uq.displayName="Fade";var Gq={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Fo.exit(Is.exit,o)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Fo.enter(Is.enter,n),transitionEnd:e?.enter})},jL={initial:"exit",animate:"enter",exit:"exit",variants:Gq},Zq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,initialScale:s=.95,className:u,transition:c,transitionEnd:d,delay:f,...h}=t,m=r?o&&r:!0,g=o||r?"enter":"exit",b={initialScale:s,reverse:i,transition:c,transitionEnd:d,delay:f};return v(na,{custom:b,children:m&&X.createElement(go.div,{ref:n,className:wf("chakra-offset-slide",u),...jL,animate:g,custom:b,...h})})});Zq.displayName="ScaleFade";var JS={exit:{duration:.15,ease:Ls.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},Kq={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:o}=g4({direction:e});return{...o,transition:t?.exit??Fo.exit(JS.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:o}=g4({direction:e});return{...o,transition:n?.enter??Fo.enter(JS.enter,r),transitionEnd:t?.enter}}},HL=C.exports.forwardRef(function(t,n){const{direction:r="right",style:o,unmountOnExit:i,in:s,className:u,transition:c,transitionEnd:d,delay:f,...h}=t,m=g4({direction:r}),g=Object.assign({position:"fixed"},m.position,o),b=i?s&&i:!0,w=s||i?"enter":"exit",k={transitionEnd:d,transition:c,direction:r,delay:f};return v(na,{custom:k,children:b&&X.createElement(go.div,{...h,ref:n,initial:"exit",className:wf("chakra-slide",u),animate:w,exit:"exit",custom:k,variants:Kq,style:g})})});HL.displayName="Slide";var qq={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,x:e,y:t,transition:n?.exit??Fo.exit(Is.exit,o),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Fo.enter(Is.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:o,delay:i})=>{const s={x:t,y:e};return{opacity:0,transition:n?.exit??Fo.exit(Is.exit,i),...o?{...s,transitionEnd:r?.exit}:{transitionEnd:{...s,...r?.exit}}}}},v4={initial:"initial",animate:"enter",exit:"exit",variants:qq},Yq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,className:s,offsetX:u=0,offsetY:c=8,transition:d,transitionEnd:f,delay:h,...m}=t,g=r?o&&r:!0,b=o||r?"enter":"exit",w={offsetX:u,offsetY:c,reverse:i,transition:d,transitionEnd:f,delay:h};return v(na,{custom:w,children:g&&X.createElement(go.div,{ref:n,className:wf("chakra-offset-slide",s),custom:w,...v4,animate:b,...m})})});Yq.displayName="SlideFade";var Sf=(...e)=>e.filter(Boolean).join(" ");function Xq(){return!1}var hm=e=>{const{condition:t,message:n}=e;t&&Xq()&&console.warn(n)};function c2(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Qq,mm]=Tt({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[Jq,G3]=Tt({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[eY,k0e,tY,nY]=fE(),UL=ue(function(t,n){const{getButtonProps:r}=G3(),o=r(t,n),i=mm(),s={display:"flex",alignItems:"center",width:"100%",outline:0,...i.button};return X.createElement(oe.button,{...o,className:Sf("chakra-accordion__button",t.className),__css:s})});UL.displayName="AccordionButton";function rY(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:o,allowToggle:i,...s}=e;aY(e),sY(e);const u=tY(),[c,d]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{d(-1)},[]);const[f,h]=pE({value:r,defaultValue(){return o?n??[]:n??-1},onChange:t});return{index:f,setIndex:h,htmlProps:s,getAccordionItemProps:g=>{let b=!1;return g!==null&&(b=Array.isArray(f)?f.includes(g):f===g),{isOpen:b,onChange:k=>{if(g!==null)if(o&&Array.isArray(f)){const S=k?f.concat(g):f.filter(x=>x!==g);h(S)}else k?h(g):i&&h(-1)}}},focusedIndex:c,setFocusedIndex:d,descendants:u}}var[oY,Z3]=Tt({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function iY(e){const{isDisabled:t,isFocusable:n,id:r,...o}=e,{getAccordionItemProps:i,setFocusedIndex:s}=Z3(),u=C.exports.useRef(null),c=C.exports.useId(),d=r??c,f=`accordion-button-${d}`,h=`accordion-panel-${d}`;lY(e);const{register:m,index:g,descendants:b}=nY({disabled:t&&!n}),{isOpen:w,onChange:k}=i(g===-1?null:g);uY({isOpen:w,isDisabled:t});const S=()=>{k?.(!0)},x=()=>{k?.(!1)},_=C.exports.useCallback(()=>{k?.(!w),s(g)},[g,s,w,k]),L=C.exports.useCallback(F=>{const W={ArrowDown:()=>{const J=b.nextEnabled(g);J?.node.focus()},ArrowUp:()=>{const J=b.prevEnabled(g);J?.node.focus()},Home:()=>{const J=b.firstEnabled();J?.node.focus()},End:()=>{const J=b.lastEnabled();J?.node.focus()}}[F.key];W&&(F.preventDefault(),W(F))},[b,g]),T=C.exports.useCallback(()=>{s(g)},[s,g]),R=C.exports.useCallback(function(G={},W=null){return{...G,type:"button",ref:Yt(m,u,W),id:f,disabled:!!t,"aria-expanded":!!w,"aria-controls":h,onClick:c2(G.onClick,_),onFocus:c2(G.onFocus,T),onKeyDown:c2(G.onKeyDown,L)}},[f,t,w,_,T,L,h,m]),N=C.exports.useCallback(function(G={},W=null){return{...G,ref:W,role:"region",id:h,"aria-labelledby":f,hidden:!w}},[f,w,h]);return{isOpen:w,isDisabled:t,isFocusable:n,onOpen:S,onClose:x,getButtonProps:R,getPanelProps:N,htmlProps:o}}function aY(e){const t=e.index||e.defaultIndex,n=t==null&&!Array.isArray(t)&&e.allowMultiple;hm({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function sY(e){hm({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function lY(e){hm({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. + `})}function uY(e){hm({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function GL(e){const{isOpen:t,isDisabled:n}=G3(),{reduceMotion:r}=Z3(),o=Sf("chakra-accordion__icon",e.className),i=mm(),s={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...i.icon};return v(Kr,{viewBox:"0 0 24 24","aria-hidden":!0,className:o,__css:s,...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}GL.displayName="AccordionIcon";var ZL=ue(function(t,n){const{children:r,className:o}=t,{htmlProps:i,...s}=iY(t),c={...mm().container,overflowAnchor:"none"},d=C.exports.useMemo(()=>s,[s]);return X.createElement(Jq,{value:d},X.createElement(oe.div,{ref:n,...i,className:Sf("chakra-accordion__item",o),__css:c},typeof r=="function"?r({isExpanded:!!s.isOpen,isDisabled:!!s.isDisabled}):r))});ZL.displayName="AccordionItem";var KL=ue(function(t,n){const{reduceMotion:r}=Z3(),{getPanelProps:o,isOpen:i}=G3(),s=o(t,n),u=Sf("chakra-accordion__panel",t.className),c=mm();r||delete s.hidden;const d=X.createElement(oe.div,{...s,__css:c.panel,className:u});return r?d:v(VL,{in:i,children:d})});KL.displayName="AccordionPanel";var qL=ue(function({children:t,reduceMotion:n,...r},o){const i=dr("Accordion",r),s=vt(r),{htmlProps:u,descendants:c,...d}=rY(s),f=C.exports.useMemo(()=>({...d,reduceMotion:!!n}),[d,n]);return X.createElement(eY,{value:c},X.createElement(oY,{value:f},X.createElement(Qq,{value:i},X.createElement(oe.div,{ref:o,...u,className:Sf("chakra-accordion",r.className),__css:i.root},t))))});qL.displayName="Accordion";var cY=(...e)=>e.filter(Boolean).join(" "),dY=pf({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),gm=ue((e,t)=>{const n=cr("Spinner",e),{label:r="Loading...",thickness:o="2px",speed:i="0.45s",emptyColor:s="transparent",className:u,...c}=vt(e),d=cY("chakra-spinner",u),f={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:o,borderBottomColor:s,borderLeftColor:s,animation:`${dY} ${i} linear infinite`,...n};return X.createElement(oe.div,{ref:t,__css:f,className:d,...c},r&&X.createElement(oe.span,{srOnly:!0},r))});gm.displayName="Spinner";var vm=(...e)=>e.filter(Boolean).join(" ");function fY(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function pY(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function e8(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[hY,mY]=Tt({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[gY,K3]=Tt({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),YL={info:{icon:pY,colorScheme:"blue"},warning:{icon:e8,colorScheme:"orange"},success:{icon:fY,colorScheme:"green"},error:{icon:e8,colorScheme:"red"},loading:{icon:gm,colorScheme:"blue"}};function vY(e){return YL[e].colorScheme}function yY(e){return YL[e].icon}var XL=ue(function(t,n){const{status:r="info",addRole:o=!0,...i}=vt(t),s=t.colorScheme??vY(r),u=dr("Alert",{...t,colorScheme:s}),c={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...u.container};return X.createElement(hY,{value:{status:r}},X.createElement(gY,{value:u},X.createElement(oe.div,{role:o?"alert":void 0,ref:n,...i,className:vm("chakra-alert",t.className),__css:c})))});XL.displayName="Alert";var QL=ue(function(t,n){const r=K3(),o={display:"inline",...r.description};return X.createElement(oe.div,{ref:n,...t,className:vm("chakra-alert__desc",t.className),__css:o})});QL.displayName="AlertDescription";function JL(e){const{status:t}=mY(),n=yY(t),r=K3(),o=t==="loading"?r.spinner:r.icon;return X.createElement(oe.span,{display:"inherit",...e,className:vm("chakra-alert__icon",e.className),__css:o},e.children||v(n,{h:"100%",w:"100%"}))}JL.displayName="AlertIcon";var eP=ue(function(t,n){const r=K3();return X.createElement(oe.div,{ref:n,...t,className:vm("chakra-alert__title",t.className),__css:r.title})});eP.displayName="AlertTitle";function bY(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xY(e){const{loading:t,src:n,srcSet:r,onLoad:o,onError:i,crossOrigin:s,sizes:u,ignoreFallback:c}=e,[d,f]=C.exports.useState("pending");C.exports.useEffect(()=>{f(n?"loading":"pending")},[n]);const h=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;g();const b=new Image;b.src=n,s&&(b.crossOrigin=s),r&&(b.srcset=r),u&&(b.sizes=u),t&&(b.loading=t),b.onload=w=>{g(),f("loaded"),o?.(w)},b.onerror=w=>{g(),f("failed"),i?.(w)},h.current=b},[n,s,r,u,o,i,t]),g=()=>{h.current&&(h.current.onload=null,h.current.onerror=null,h.current=null)};return ai(()=>{if(!c)return d==="loading"&&m(),()=>{g()}},[d,m,c]),c?"loaded":d}var wY=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",n0=ue(function(t,n){const{htmlWidth:r,htmlHeight:o,alt:i,...s}=t;return v("img",{width:r,height:o,ref:n,alt:i,...s})});n0.displayName="NativeImage";var ym=ue(function(t,n){const{fallbackSrc:r,fallback:o,src:i,srcSet:s,align:u,fit:c,loading:d,ignoreFallback:f,crossOrigin:h,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:g,...b}=t,w=r!==void 0||o!==void 0,k=d!=null||f||!w,S=xY({...t,ignoreFallback:k}),x=wY(S,m),_={ref:n,objectFit:c,objectPosition:u,...k?b:bY(b,["onError","onLoad"])};return x?o||X.createElement(oe.img,{as:n0,className:"chakra-image__placeholder",src:r,..._}):X.createElement(oe.img,{as:n0,src:i,srcSet:s,crossOrigin:h,loading:d,referrerPolicy:g,className:"chakra-image",..._})});ym.displayName="Image";ue((e,t)=>X.createElement(oe.img,{ref:t,as:n0,className:"chakra-image",...e}));var SY=Object.create,tP=Object.defineProperty,CY=Object.getOwnPropertyDescriptor,nP=Object.getOwnPropertyNames,_Y=Object.getPrototypeOf,kY=Object.prototype.hasOwnProperty,rP=(e,t)=>function(){return t||(0,e[nP(e)[0]])((t={exports:{}}).exports,t),t.exports},EY=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of nP(t))!kY.call(e,o)&&o!==n&&tP(e,o,{get:()=>t[o],enumerable:!(r=CY(t,o))||r.enumerable});return e},LY=(e,t,n)=>(n=e!=null?SY(_Y(e)):{},EY(t||!e||!e.__esModule?tP(n,"default",{value:e,enumerable:!0}):n,e)),PY=rP({"../../node_modules/.pnpm/react@18.2.0/node_modules/react/cjs/react.production.min.js"(e){var t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),u=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),m=Symbol.iterator;function g(O){return O===null||typeof O!="object"?null:(O=m&&O[m]||O["@@iterator"],typeof O=="function"?O:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},w=Object.assign,k={};function S(O,H,se){this.props=O,this.context=H,this.refs=k,this.updater=se||b}S.prototype.isReactComponent={},S.prototype.setState=function(O,H){if(typeof O!="object"&&typeof O!="function"&&O!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,O,H,"setState")},S.prototype.forceUpdate=function(O){this.updater.enqueueForceUpdate(this,O,"forceUpdate")};function x(){}x.prototype=S.prototype;function _(O,H,se){this.props=O,this.context=H,this.refs=k,this.updater=se||b}var L=_.prototype=new x;L.constructor=_,w(L,S.prototype),L.isPureReactComponent=!0;var T=Array.isArray,R=Object.prototype.hasOwnProperty,N={current:null},F={key:!0,ref:!0,__self:!0,__source:!0};function G(O,H,se){var de,ye={},be=null,Pe=null;if(H!=null)for(de in H.ref!==void 0&&(Pe=H.ref),H.key!==void 0&&(be=""+H.key),H)R.call(H,de)&&!F.hasOwnProperty(de)&&(ye[de]=H[de]);var fe=arguments.length-2;if(fe===1)ye.children=se;else if(1(0,t8.isValidElement)(t))}/** + * @license React + * react.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + *//** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var xm=(...e)=>e.filter(Boolean).join(" "),n8=e=>e?"":void 0,[TY,IY]=Tt({strict:!1,name:"ButtonGroupContext"});function y4(e){const{children:t,className:n,...r}=e,o=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,i=xm("chakra-button__icon",n);return X.createElement(oe.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:i},o)}y4.displayName="ButtonIcon";function b4(e){const{label:t,placement:n,spacing:r="0.5rem",children:o=v(gm,{color:"currentColor",width:"1em",height:"1em"}),className:i,__css:s,...u}=e,c=xm("chakra-button__spinner",i),d=n==="start"?"marginEnd":"marginStart",f=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[d]:t?r:0,fontSize:"1em",lineHeight:"normal",...s}),[s,t,d,r]);return X.createElement(oe.div,{className:c,...u,__css:f},o)}b4.displayName="ButtonSpinner";function OY(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(i=>{!i||n(i.tagName==="BUTTON")},[]),type:t?"button":void 0}}var mi=ue((e,t)=>{const n=IY(),r=cr("Button",{...n,...e}),{isDisabled:o=n?.isDisabled,isLoading:i,isActive:s,children:u,leftIcon:c,rightIcon:d,loadingText:f,iconSpacing:h="0.5rem",type:m,spinner:g,spinnerPlacement:b="start",className:w,as:k,...S}=vt(e),x=C.exports.useMemo(()=>{const R={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:R}}},[r,n]),{ref:_,type:L}=OY(k),T={rightIcon:d,leftIcon:c,iconSpacing:h,children:u};return X.createElement(oe.button,{disabled:o||i,ref:GH(t,_),as:k,type:m??L,"data-active":n8(s),"data-loading":n8(i),__css:x,className:xm("chakra-button",w),...S},i&&b==="start"&&v(b4,{className:"chakra-button__spinner--start",label:f,placement:"start",spacing:h,children:g}),i?f||X.createElement(oe.span,{opacity:0},v(r8,{...T})):v(r8,{...T}),i&&b==="end"&&v(b4,{className:"chakra-button__spinner--end",label:f,placement:"end",spacing:h,children:g}))});mi.displayName="Button";function r8(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:o}=e;return q(yn,{children:[t&&v(y4,{marginEnd:o,children:t}),r,n&&v(y4,{marginStart:o,children:n})]})}var MY=ue(function(t,n){const{size:r,colorScheme:o,variant:i,className:s,spacing:u="0.5rem",isAttached:c,isDisabled:d,...f}=t,h=xm("chakra-button__group",s),m=C.exports.useMemo(()=>({size:r,colorScheme:o,variant:i,isDisabled:d}),[r,o,i,d]);let g={display:"inline-flex"};return c?g={...g,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:g={...g,"& > *:not(style) ~ *:not(style)":{marginStart:u}},X.createElement(TY,{value:m},X.createElement(oe.div,{ref:n,role:"group",__css:g,className:h,"data-attached":c?"":void 0,...f}))});MY.displayName="ButtonGroup";var un=ue((e,t)=>{const{icon:n,children:r,isRound:o,"aria-label":i,...s}=e,u=n||r,c=C.exports.isValidElement(u)?C.exports.cloneElement(u,{"aria-hidden":!0,focusable:!1}):null;return v(mi,{padding:"0",borderRadius:o?"full":void 0,ref:t,"aria-label":i,...s,children:c})});un.displayName="IconButton";var Bu=(...e)=>e.filter(Boolean).join(" "),hh=e=>e?"":void 0,d2=e=>e?!0:void 0;function o8(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[RY,oP]=Tt({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[NY,$u]=Tt({strict:!1,name:"FormControlContext"});function DY(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:o,isReadOnly:i,...s}=e,u=C.exports.useId(),c=t||`field-${u}`,d=`${c}-label`,f=`${c}-feedback`,h=`${c}-helptext`,[m,g]=C.exports.useState(!1),[b,w]=C.exports.useState(!1),[k,S]=C.exports.useState(!1),x=C.exports.useCallback((N={},F=null)=>({id:h,...N,ref:Yt(F,G=>{!G||w(!0)})}),[h]),_=C.exports.useCallback((N={},F=null)=>({...N,ref:F,"data-focus":hh(k),"data-disabled":hh(o),"data-invalid":hh(r),"data-readonly":hh(i),id:N.id??d,htmlFor:N.htmlFor??c}),[c,o,k,r,i,d]),L=C.exports.useCallback((N={},F=null)=>({id:f,...N,ref:Yt(F,G=>{!G||g(!0)}),"aria-live":"polite"}),[f]),T=C.exports.useCallback((N={},F=null)=>({...N,...s,ref:F,role:"group"}),[s]),R=C.exports.useCallback((N={},F=null)=>({...N,ref:F,role:"presentation","aria-hidden":!0,children:N.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!i,isDisabled:!!o,isFocused:!!k,onFocus:()=>S(!0),onBlur:()=>S(!1),hasFeedbackText:m,setHasFeedbackText:g,hasHelpText:b,setHasHelpText:w,id:c,labelId:d,feedbackId:f,helpTextId:h,htmlProps:s,getHelpTextProps:x,getErrorMessageProps:L,getRootProps:T,getLabelProps:_,getRequiredIndicatorProps:R}}var ns=ue(function(t,n){const r=dr("Form",t),o=vt(t),{getRootProps:i,htmlProps:s,...u}=DY(o),c=Bu("chakra-form-control",t.className);return X.createElement(NY,{value:u},X.createElement(RY,{value:r},X.createElement(oe.div,{...i({},n),className:c,__css:r.container})))});ns.displayName="FormControl";var zY=ue(function(t,n){const r=$u(),o=oP(),i=Bu("chakra-form__helper-text",t.className);return X.createElement(oe.div,{...r?.getHelpTextProps(t,n),__css:o.helperText,className:i})});zY.displayName="FormHelperText";function q3(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:o,...i}=Y3(e);return{...i,disabled:t,readOnly:r,required:o,"aria-invalid":d2(n),"aria-required":d2(o),"aria-readonly":d2(r)}}function Y3(e){const t=$u(),{id:n,disabled:r,readOnly:o,required:i,isRequired:s,isInvalid:u,isReadOnly:c,isDisabled:d,onFocus:f,onBlur:h,...m}=e,g=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&g.push(t.feedbackId),t?.hasHelpText&&g.push(t.helpTextId),{...m,"aria-describedby":g.join(" ")||void 0,id:n??t?.id,isDisabled:r??d??t?.isDisabled,isReadOnly:o??c??t?.isReadOnly,isRequired:i??s??t?.isRequired,isInvalid:u??t?.isInvalid,onFocus:o8(t?.onFocus,f),onBlur:o8(t?.onBlur,h)}}var[FY,BY]=Tt({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),$Y=ue((e,t)=>{const n=dr("FormError",e),r=vt(e),o=$u();return o?.isInvalid?X.createElement(FY,{value:n},X.createElement(oe.div,{...o?.getErrorMessageProps(r,t),className:Bu("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});$Y.displayName="FormErrorMessage";var VY=ue((e,t)=>{const n=BY(),r=$u();if(!r?.isInvalid)return null;const o=Bu("chakra-form__error-icon",e.className);return v(Kr,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:o,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});VY.displayName="FormErrorIcon";var Gs=ue(function(t,n){const r=cr("FormLabel",t),o=vt(t),{className:i,children:s,requiredIndicator:u=v(iP,{}),optionalIndicator:c=null,...d}=o,f=$u(),h=f?.getLabelProps(d,n)??{ref:n,...d};return X.createElement(oe.label,{...h,className:Bu("chakra-form__label",o.className),__css:{display:"block",textAlign:"start",...r}},s,f?.isRequired?u:c)});Gs.displayName="FormLabel";var iP=ue(function(t,n){const r=$u(),o=oP();if(!r?.isRequired)return null;const i=Bu("chakra-form__required-indicator",t.className);return X.createElement(oe.span,{...r?.getRequiredIndicatorProps(t,n),__css:o.requiredIndicator,className:i})});iP.displayName="RequiredIndicator";function r0(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var X3={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},WY=oe("span",{baseStyle:X3});WY.displayName="VisuallyHidden";var jY=oe("input",{baseStyle:X3});jY.displayName="VisuallyHiddenInput";var i8=!1,wm=null,wu=!1,x4=new Set,HY=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function UY(e){return!(e.metaKey||!HY&&e.altKey||e.ctrlKey)}function Q3(e,t){x4.forEach(n=>n(e,t))}function a8(e){wu=!0,UY(e)&&(wm="keyboard",Q3("keyboard",e))}function Sl(e){wm="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(wu=!0,Q3("pointer",e))}function GY(e){e.target===window||e.target===document||(wu||(wm="keyboard",Q3("keyboard",e)),wu=!1)}function ZY(){wu=!1}function s8(){return wm!=="pointer"}function KY(){if(typeof window>"u"||i8)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){wu=!0,e.apply(this,n)},document.addEventListener("keydown",a8,!0),document.addEventListener("keyup",a8,!0),window.addEventListener("focus",GY,!0),window.addEventListener("blur",ZY,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",Sl,!0),document.addEventListener("pointermove",Sl,!0),document.addEventListener("pointerup",Sl,!0)):(document.addEventListener("mousedown",Sl,!0),document.addEventListener("mousemove",Sl,!0),document.addEventListener("mouseup",Sl,!0)),i8=!0}function qY(e){KY(),e(s8());const t=()=>e(s8());return x4.add(t),()=>{x4.delete(t)}}var[E0e,YY]=Tt({name:"CheckboxGroupContext",strict:!1}),XY=(...e)=>e.filter(Boolean).join(" "),tr=e=>e?"":void 0;function ro(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function QY(...e){return function(n){e.forEach(r=>{r?.(n)})}}function JY(e){const t=go;return"custom"in t&&typeof t.custom=="function"?t.custom(e):t(e)}var aP=JY(oe.svg);function eX(e){return v(aP,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:v("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function tX(e){return v(aP,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:v("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function nX({open:e,children:t}){return v(na,{initial:!1,children:e&&X.createElement(go.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function rX(e){const{isIndeterminate:t,isChecked:n,...r}=e;return v(nX,{open:n||t,children:v(t?tX:eX,{...r})})}function oX(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function sP(e={}){const t=Y3(e),{isDisabled:n,isReadOnly:r,isRequired:o,isInvalid:i,id:s,onBlur:u,onFocus:c,"aria-describedby":d}=t,{defaultChecked:f,isChecked:h,isFocusable:m,onChange:g,isIndeterminate:b,name:w,value:k,tabIndex:S=void 0,"aria-label":x,"aria-labelledby":_,"aria-invalid":L,...T}=e,R=oX(T,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),N=Gn(g),F=Gn(u),G=Gn(c),[W,J]=C.exports.useState(!1),[Ee,he]=C.exports.useState(!1),[me,ce]=C.exports.useState(!1),[ge,ne]=C.exports.useState(!1);C.exports.useEffect(()=>qY(J),[]);const j=C.exports.useRef(null),[Y,K]=C.exports.useState(!0),[O,H]=C.exports.useState(!!f),se=h!==void 0,de=se?h:O,ye=C.exports.useCallback(xe=>{if(r||n){xe.preventDefault();return}se||H(de?xe.target.checked:b?!0:xe.target.checked),N?.(xe)},[r,n,de,se,b,N]);ai(()=>{j.current&&(j.current.indeterminate=Boolean(b))},[b]),r0(()=>{n&&he(!1)},[n,he]),ai(()=>{const xe=j.current;!xe?.form||(xe.form.onreset=()=>{H(!!f)})},[]);const be=n&&!m,Pe=C.exports.useCallback(xe=>{xe.key===" "&&ne(!0)},[ne]),fe=C.exports.useCallback(xe=>{xe.key===" "&&ne(!1)},[ne]);ai(()=>{if(!j.current)return;j.current.checked!==de&&H(j.current.checked)},[j.current]);const _e=C.exports.useCallback((xe={},Ie=null)=>{const tt=ze=>{Ee&&ze.preventDefault(),ne(!0)};return{...xe,ref:Ie,"data-active":tr(ge),"data-hover":tr(me),"data-checked":tr(de),"data-focus":tr(Ee),"data-focus-visible":tr(Ee&&W),"data-indeterminate":tr(b),"data-disabled":tr(n),"data-invalid":tr(i),"data-readonly":tr(r),"aria-hidden":!0,onMouseDown:ro(xe.onMouseDown,tt),onMouseUp:ro(xe.onMouseUp,()=>ne(!1)),onMouseEnter:ro(xe.onMouseEnter,()=>ce(!0)),onMouseLeave:ro(xe.onMouseLeave,()=>ce(!1))}},[ge,de,n,Ee,W,me,b,i,r]),De=C.exports.useCallback((xe={},Ie=null)=>({...R,...xe,ref:Yt(Ie,tt=>{!tt||K(tt.tagName==="LABEL")}),onClick:ro(xe.onClick,()=>{var tt;Y||((tt=j.current)==null||tt.click(),requestAnimationFrame(()=>{var ze;(ze=j.current)==null||ze.focus()}))}),"data-disabled":tr(n),"data-checked":tr(de),"data-invalid":tr(i)}),[R,n,de,i,Y]),st=C.exports.useCallback((xe={},Ie=null)=>({...xe,ref:Yt(j,Ie),type:"checkbox",name:w,value:k,id:s,tabIndex:S,onChange:ro(xe.onChange,ye),onBlur:ro(xe.onBlur,F,()=>he(!1)),onFocus:ro(xe.onFocus,G,()=>he(!0)),onKeyDown:ro(xe.onKeyDown,Pe),onKeyUp:ro(xe.onKeyUp,fe),required:o,checked:de,disabled:be,readOnly:r,"aria-label":x,"aria-labelledby":_,"aria-invalid":L?Boolean(L):i,"aria-describedby":d,"aria-disabled":n,style:X3}),[w,k,s,ye,F,G,Pe,fe,o,de,be,r,x,_,L,i,d,n,S]),It=C.exports.useCallback((xe={},Ie=null)=>({...xe,ref:Ie,onMouseDown:ro(xe.onMouseDown,l8),onTouchStart:ro(xe.onTouchStart,l8),"data-disabled":tr(n),"data-checked":tr(de),"data-invalid":tr(i)}),[de,n,i]);return{state:{isInvalid:i,isFocused:Ee,isChecked:de,isActive:ge,isHovered:me,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:o},getRootProps:De,getCheckboxProps:_e,getInputProps:st,getLabelProps:It,htmlProps:R}}function l8(e){e.preventDefault(),e.stopPropagation()}var iX=oe("span",{baseStyle:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0}}),aX=oe("label",{baseStyle:{cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"}}),sX=ue(function(t,n){const r=YY(),o={...r,...t},i=dr("Checkbox",o),s=vt(t),{spacing:u="0.5rem",className:c,children:d,iconColor:f,iconSize:h,icon:m=v(rX,{}),isChecked:g,isDisabled:b=r?.isDisabled,onChange:w,inputProps:k,...S}=s;let x=g;r?.value&&s.value&&(x=r.value.includes(s.value));let _=w;r?.onChange&&s.value&&(_=QY(r.onChange,w));const{state:L,getInputProps:T,getCheckboxProps:R,getLabelProps:N,getRootProps:F}=sP({...S,isDisabled:b,isChecked:x,onChange:_}),G=C.exports.useMemo(()=>({opacity:L.isChecked||L.isIndeterminate?1:0,transform:L.isChecked||L.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:h,color:f,...i.icon}),[f,h,L.isChecked,L.isIndeterminate,i.icon]),W=C.exports.cloneElement(m,{__css:G,isIndeterminate:L.isIndeterminate,isChecked:L.isChecked});return q(aX,{__css:i.container,className:XY("chakra-checkbox",c),...F(),children:[v("input",{className:"chakra-checkbox__input",...T(k,n)}),v(iX,{__css:i.control,className:"chakra-checkbox__control",...R(),children:W}),d&&X.createElement(oe.span,{className:"chakra-checkbox__label",...N(),__css:{marginStart:u,...i.label}},d)]})});sX.displayName="Checkbox";function lX(e){return v(Kr,{focusable:"false","aria-hidden":!0,...e,children:v("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var Sm=ue(function(t,n){const r=cr("CloseButton",t),{children:o,isDisabled:i,__css:s,...u}=vt(t),c={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return X.createElement(oe.button,{type:"button","aria-label":"Close",ref:n,disabled:i,__css:{...c,...r,...s},...u},o||v(lX,{width:"1em",height:"1em"}))});Sm.displayName="CloseButton";function uX(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function lP(e,t){let n=uX(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function u8(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function cX(e,t,n){return e==null?e:(nr==null?"":f2(r,i,n)??""),m=typeof o<"u",g=m?o:f,b=uP(wa(g),i),w=n??b,k=C.exports.useCallback(W=>{W!==g&&(m||h(W.toString()),d?.(W.toString(),wa(W)))},[d,m,g]),S=C.exports.useCallback(W=>{let J=W;return c&&(J=cX(J,s,u)),lP(J,w)},[w,c,u,s]),x=C.exports.useCallback((W=i)=>{let J;g===""?J=wa(W):J=wa(g)+W,J=S(J),k(J)},[S,i,k,g]),_=C.exports.useCallback((W=i)=>{let J;g===""?J=wa(-W):J=wa(g)-W,J=S(J),k(J)},[S,i,k,g]),L=C.exports.useCallback(()=>{let W;r==null?W="":W=f2(r,i,n)??s,k(W)},[r,n,i,k,s]),T=C.exports.useCallback(W=>{const J=f2(W,i,w)??s;k(J)},[w,i,k,s]),R=wa(g);return{isOutOfRange:R>u||Rv(em,{styles:cP}),pX=()=>v(em,{styles:` + html { + line-height: 1.5; + -webkit-text-size-adjust: 100%; + font-family: system-ui, sans-serif; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + -moz-osx-font-smoothing: grayscale; + touch-action: manipulation; + } + + body { + position: relative; + min-height: 100%; + font-feature-settings: 'kern'; + } + + *, + *::before, + *::after { + border-width: 0; + border-style: solid; + box-sizing: border-box; + } + + main { + display: block; + } + + hr { + border-top-width: 1px; + box-sizing: content-box; + height: 0; + overflow: visible; + } + + pre, + code, + kbd, + samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; + font-size: 1em; + } + + a { + background-color: transparent; + color: inherit; + text-decoration: inherit; + } + + abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + } + + b, + strong { + font-weight: bold; + } + + small { + font-size: 80%; + } + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + img { + border-style: none; + } + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; + font-size: 100%; + line-height: 1.15; + margin: 0; + } + + button, + input { + overflow: visible; + } + + button, + select { + text-transform: none; + } + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal; + } + + progress { + vertical-align: baseline; + } + + textarea { + overflow: auto; + } + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; + padding: 0; + } + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none !important; + } + + input[type="number"] { + -moz-appearance: textfield; + } + + [type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; + } + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none !important; + } + + ::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; + } + + details { + display: block; + } + + summary { + display: list-item; + } + + template { + display: none; + } + + [hidden] { + display: none !important; + } + + body, + blockquote, + dl, + dd, + h1, + h2, + h3, + h4, + h5, + h6, + hr, + figure, + p, + pre { + margin: 0; + } + + button { + background: transparent; + padding: 0; + } + + fieldset { + margin: 0; + padding: 0; + } + + ol, + ul { + margin: 0; + padding: 0; + } + + textarea { + resize: vertical; + } + + button, + [role="button"] { + cursor: pointer; + } + + button::-moz-focus-inner { + border: 0 !important; + } + + table { + border-collapse: collapse; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-size: inherit; + font-weight: inherit; + } + + button, + input, + optgroup, + select, + textarea { + padding: 0; + line-height: inherit; + color: inherit; + } + + img, + svg, + video, + canvas, + audio, + iframe, + embed, + object { + display: block; + } + + img, + video { + max-width: 100%; + height: auto; + } + + [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { + outline: none; + box-shadow: none; + } + + select::-ms-expand { + display: none; + } + + ${cP} + `});function w4(e,t,n,r){const o=Gn(n);return C.exports.useEffect(()=>{const i=typeof e=="function"?e():e??document;if(!(!n||!i))return i.addEventListener(t,o,r),()=>{i.removeEventListener(t,o,r)}},[t,e,r,o,n]),()=>{const i=typeof e=="function"?e():e??document;i?.removeEventListener(t,o,r)}}var hX=mf?C.exports.useLayoutEffect:C.exports.useEffect;function S4(e,t=[]){const n=C.exports.useRef(e);return hX(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function J3(e,t,n,r){const o=S4(t);return C.exports.useEffect(()=>{const i=V1(n)??document;if(!!t)return i.addEventListener(e,o,r),()=>{i.removeEventListener(e,o,r)}},[e,n,r,o,t]),()=>{(V1(n)??document).removeEventListener(e,o,r)}}function mX(e){const{isOpen:t,ref:n}=e,[r,o]=C.exports.useState(t),[i,s]=C.exports.useState(!1);return C.exports.useEffect(()=>{i||(o(t),s(!0))},[t,i,r]),J3("animationend",()=>{o(t)},()=>n.current),{present:!(t?!1:!r),onComplete(){var c;const d=Bj(n.current),f=new d.CustomEvent("animationend",{bubbles:!0});(c=n.current)==null||c.dispatchEvent(f)}}}function gX(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function vX(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function o0(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=S4(n),s=S4(t),[u,c]=C.exports.useState(e.defaultIsOpen||!1),[d,f]=gX(r,u),h=vX(o,"disclosure"),m=C.exports.useCallback(()=>{d||c(!1),s?.()},[d,s]),g=C.exports.useCallback(()=>{d||c(!0),i?.()},[d,i]),b=C.exports.useCallback(()=>{(f?m:g)()},[f,g,m]);return{isOpen:!!f,onOpen:g,onClose:m,onToggle:b,isControlled:d,getButtonProps:(w={})=>({...w,"aria-expanded":f,"aria-controls":h,onClick:Qj(w.onClick,b)}),getDisclosureProps:(w={})=>({...w,hidden:!f,id:h})}}var dP=(e,t)=>{const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])};function yX(e){const t=e.current;if(!t)return!1;const n=Wj(t);return!n||x3(t,n)?!1:!!Zj(n)}function bX(e,t){const{shouldFocus:n,visible:r,focusRef:o}=t,i=n&&!r;dP(()=>{if(!i||yX(e))return;const s=o?.current||e.current;s&&W1(s,{nextTick:!0})},[i,e,o])}function xX(e,t,n,r){return J3(vH(t),dH(n,t==="pointerdown"),e,r)}function wX(e){const{ref:t,elements:n,enabled:r}=e,o=bH("Safari");xX(()=>hf(t.current),"pointerdown",s=>{if(!o||!r)return;const u=s.target,d=(n??[t]).some(f=>{const h=tE(f)?f.current:f;return x3(h,u)});!aE(u)&&d&&(s.preventDefault(),W1(u))})}var SX={preventScroll:!0,shouldFocus:!1};function CX(e,t=SX){const{focusRef:n,preventScroll:r,shouldFocus:o,visible:i}=t,s=tE(e)?e.current:e,u=o&&i,c=C.exports.useCallback(()=>{if(!(!s||!u)&&!x3(s,document.activeElement))if(n?.current)W1(n.current,{preventScroll:r,nextTick:!0});else{const d=Xj(s);d.length>0&&W1(d[0],{preventScroll:r,nextTick:!0})}},[u,r,s,n]);dP(()=>{c()},[c]),J3("transitionend",c,s)}function eb(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var tb=ue(function(t,n){const{htmlSize:r,...o}=t,i=dr("Input",o),s=vt(o),u=q3(s),c=Qt("chakra-input",t.className);return X.createElement(oe.input,{size:r,...u,__css:i.field,ref:n,className:c})});tb.displayName="Input";tb.id="Input";var[_X,fP]=Tt({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),kX=ue(function(t,n){const r=dr("Input",t),{children:o,className:i,...s}=vt(t),u=Qt("chakra-input__group",i),c={},d=bm(o),f=r.field;d.forEach(m=>{!r||(f&&m.type.id==="InputLeftElement"&&(c.paddingStart=f.height??f.h),f&&m.type.id==="InputRightElement"&&(c.paddingEnd=f.height??f.h),m.type.id==="InputRightAddon"&&(c.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(c.borderStartRadius=0))});const h=d.map(m=>{var g,b;const w=eb({size:((g=m.props)==null?void 0:g.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,w):C.exports.cloneElement(m,Object.assign(w,c,m.props))});return X.createElement(oe.div,{className:u,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...s},v(_X,{value:r,children:h}))});kX.displayName="InputGroup";var EX={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},LX=oe("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),nb=ue(function(t,n){const{placement:r="left",...o}=t,i=EX[r]??{},s=fP();return v(LX,{ref:n,...o,__css:{...s.addon,...i}})});nb.displayName="InputAddon";var pP=ue(function(t,n){return v(nb,{ref:n,placement:"left",...t,className:Qt("chakra-input__left-addon",t.className)})});pP.displayName="InputLeftAddon";pP.id="InputLeftAddon";var hP=ue(function(t,n){return v(nb,{ref:n,placement:"right",...t,className:Qt("chakra-input__right-addon",t.className)})});hP.displayName="InputRightAddon";hP.id="InputRightAddon";var PX=oe("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),Cm=ue(function(t,n){const{placement:r="left",...o}=t,i=fP(),s=i.field,c={[r==="left"?"insetStart":"insetEnd"]:"0",width:s?.height??s?.h,height:s?.height??s?.h,fontSize:s?.fontSize,...i.element};return v(PX,{ref:n,__css:c,...o})});Cm.id="InputElement";Cm.displayName="InputElement";var mP=ue(function(t,n){const{className:r,...o}=t,i=Qt("chakra-input__left-element",r);return v(Cm,{ref:n,placement:"left",className:i,...o})});mP.id="InputLeftElement";mP.displayName="InputLeftElement";var gP=ue(function(t,n){const{className:r,...o}=t,i=Qt("chakra-input__right-element",r);return v(Cm,{ref:n,placement:"right",className:i,...o})});gP.id="InputRightElement";gP.displayName="InputRightElement";function AX(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function Za(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):AX(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var TX=ue(function(e,t){const{ratio:n=4/3,children:r,className:o,...i}=e,s=C.exports.Children.only(r),u=Qt("chakra-aspect-ratio",o);return X.createElement(oe.div,{ref:t,position:"relative",className:u,_before:{height:0,content:'""',display:"block",paddingBottom:Za(n,c=>`${1/c*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...i},s)});TX.displayName="AspectRatio";var IX=ue(function(t,n){const r=cr("Badge",t),{className:o,...i}=vt(t);return X.createElement(oe.span,{ref:n,className:Qt("chakra-badge",t.className),...i,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});IX.displayName="Badge";var po=oe("div");po.displayName="Box";var vP=ue(function(t,n){const{size:r,centerContent:o=!0,...i}=t;return v(po,{ref:n,boxSize:r,__css:{...o?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...i})});vP.displayName="Square";var OX=ue(function(t,n){const{size:r,...o}=t;return v(vP,{size:r,ref:n,borderRadius:"9999px",...o})});OX.displayName="Circle";var yP=oe("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});yP.displayName="Center";var MX={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};ue(function(t,n){const{axis:r="both",...o}=t;return X.createElement(oe.div,{ref:n,__css:MX[r],...o,position:"absolute"})});var RX=ue(function(t,n){const r=cr("Code",t),{className:o,...i}=vt(t);return X.createElement(oe.code,{ref:n,className:Qt("chakra-code",t.className),...i,__css:{display:"inline-block",...r}})});RX.displayName="Code";var NX=ue(function(t,n){const{className:r,centerContent:o,...i}=vt(t),s=cr("Container",t);return X.createElement(oe.div,{ref:n,className:Qt("chakra-container",r),...i,__css:{...s,...o&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});NX.displayName="Container";var DX=ue(function(t,n){const{borderLeftWidth:r,borderBottomWidth:o,borderTopWidth:i,borderRightWidth:s,borderWidth:u,borderStyle:c,borderColor:d,...f}=cr("Divider",t),{className:h,orientation:m="horizontal",__css:g,...b}=vt(t),w={vertical:{borderLeftWidth:r||s||u||"1px",height:"100%"},horizontal:{borderBottomWidth:o||i||u||"1px",width:"100%"}};return X.createElement(oe.hr,{ref:n,"aria-orientation":m,...b,__css:{...f,border:"0",borderColor:d,borderStyle:c,...w[m],...g},className:Qt("chakra-divider",h)})});DX.displayName="Divider";var Pt=ue(function(t,n){const{direction:r,align:o,justify:i,wrap:s,basis:u,grow:c,shrink:d,...f}=t,h={display:"flex",flexDirection:r,alignItems:o,justifyContent:i,flexWrap:s,flexBasis:u,flexGrow:c,flexShrink:d};return X.createElement(oe.div,{ref:n,__css:h,...f})});Pt.displayName="Flex";var bP=ue(function(t,n){const{templateAreas:r,gap:o,rowGap:i,columnGap:s,column:u,row:c,autoFlow:d,autoRows:f,templateRows:h,autoColumns:m,templateColumns:g,...b}=t,w={display:"grid",gridTemplateAreas:r,gridGap:o,gridRowGap:i,gridColumnGap:s,gridAutoColumns:m,gridColumn:u,gridRow:c,gridAutoFlow:d,gridAutoRows:f,gridTemplateRows:h,gridTemplateColumns:g};return X.createElement(oe.div,{ref:n,__css:w,...b})});bP.displayName="Grid";function c8(e){return Za(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var zX=ue(function(t,n){const{area:r,colSpan:o,colStart:i,colEnd:s,rowEnd:u,rowSpan:c,rowStart:d,...f}=t,h=eb({gridArea:r,gridColumn:c8(o),gridRow:c8(c),gridColumnStart:i,gridColumnEnd:s,gridRowStart:d,gridRowEnd:u});return X.createElement(oe.div,{ref:n,__css:h,...f})});zX.displayName="GridItem";var rb=ue(function(t,n){const r=cr("Heading",t),{className:o,...i}=vt(t);return X.createElement(oe.h2,{ref:n,className:Qt("chakra-heading",t.className),...i,__css:r})});rb.displayName="Heading";ue(function(t,n){const r=cr("Mark",t),o=vt(t);return v(po,{ref:n,...o,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var FX=ue(function(t,n){const r=cr("Kbd",t),{className:o,...i}=vt(t);return X.createElement(oe.kbd,{ref:n,className:Qt("chakra-kbd",o),...i,__css:{fontFamily:"mono",...r}})});FX.displayName="Kbd";var au=ue(function(t,n){const r=cr("Link",t),{className:o,isExternal:i,...s}=vt(t);return X.createElement(oe.a,{target:i?"_blank":void 0,rel:i?"noopener":void 0,ref:n,className:Qt("chakra-link",o),...s,__css:r})});au.displayName="Link";ue(function(t,n){const{isExternal:r,target:o,rel:i,className:s,...u}=t;return X.createElement(oe.a,{...u,ref:n,className:Qt("chakra-linkbox__overlay",s),rel:r?"noopener noreferrer":i,target:r?"_blank":o,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});ue(function(t,n){const{className:r,...o}=t;return X.createElement(oe.div,{ref:n,position:"relative",...o,className:Qt("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[BX,xP]=Tt({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),ob=ue(function(t,n){const r=dr("List",t),{children:o,styleType:i="none",stylePosition:s,spacing:u,...c}=vt(t),d=bm(o),h=u?{["& > *:not(style) ~ *:not(style)"]:{mt:u}}:{};return X.createElement(BX,{value:r},X.createElement(oe.ul,{ref:n,listStyleType:i,listStylePosition:s,role:"list",__css:{...r.container,...h},...c},d))});ob.displayName="List";var $X=ue((e,t)=>{const{as:n,...r}=e;return v(ob,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});$X.displayName="OrderedList";var VX=ue(function(t,n){const{as:r,...o}=t;return v(ob,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...o})});VX.displayName="UnorderedList";var WX=ue(function(t,n){const r=xP();return X.createElement(oe.li,{ref:n,...t,__css:r.item})});WX.displayName="ListItem";var jX=ue(function(t,n){const r=xP();return v(Kr,{ref:n,role:"presentation",...t,__css:r.icon})});jX.displayName="ListIcon";var HX=ue(function(t,n){const{columns:r,spacingX:o,spacingY:i,spacing:s,minChildWidth:u,...c}=t,d=nm(),f=u?GX(u,d):ZX(r);return v(bP,{ref:n,gap:s,columnGap:o,rowGap:i,templateColumns:f,...c})});HX.displayName="SimpleGrid";function UX(e){return typeof e=="number"?`${e}px`:e}function GX(e,t){return Za(e,n=>{const r=NH("sizes",n,UX(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function ZX(e){return Za(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var KX=oe("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});KX.displayName="Spacer";var C4="& > *:not(style) ~ *:not(style)";function qX(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[C4]:Za(n,o=>r[o])}}function YX(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":Za(n,o=>r[o])}}var wP=e=>X.createElement(oe.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});wP.displayName="StackItem";var ib=ue((e,t)=>{const{isInline:n,direction:r,align:o,justify:i,spacing:s="0.5rem",wrap:u,children:c,divider:d,className:f,shouldWrapChildren:h,...m}=e,g=n?"row":r??"column",b=C.exports.useMemo(()=>qX({direction:g,spacing:s}),[g,s]),w=C.exports.useMemo(()=>YX({spacing:s,direction:g}),[s,g]),k=!!d,S=!h&&!k,x=bm(c),_=S?x:x.map((T,R)=>{const N=typeof T.key<"u"?T.key:R,F=R+1===x.length,W=h?v(wP,{children:T},N):T;if(!k)return W;const J=C.exports.cloneElement(d,{__css:w}),Ee=F?null:J;return q(C.exports.Fragment,{children:[W,Ee]},N)}),L=Qt("chakra-stack",f);return X.createElement(oe.div,{ref:t,display:"flex",alignItems:o,justifyContent:i,flexDirection:b.flexDirection,flexWrap:u,className:L,__css:k?{}:{[C4]:b[C4]},...m},_)});ib.displayName="Stack";var XX=ue((e,t)=>v(ib,{align:"center",...e,direction:"row",ref:t}));XX.displayName="HStack";var QX=ue((e,t)=>v(ib,{align:"center",...e,direction:"column",ref:t}));QX.displayName="VStack";var zr=ue(function(t,n){const r=cr("Text",t),{className:o,align:i,decoration:s,casing:u,...c}=vt(t),d=eb({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return X.createElement(oe.p,{ref:n,className:Qt("chakra-text",t.className),...d,...c,__css:r})});zr.displayName="Text";function d8(e){return typeof e=="number"?`${e}px`:e}var JX=ue(function(t,n){const{spacing:r="0.5rem",spacingX:o,spacingY:i,children:s,justify:u,direction:c,align:d,className:f,shouldWrapChildren:h,...m}=t,g=C.exports.useMemo(()=>{const{spacingX:w=r,spacingY:k=r}={spacingX:o,spacingY:i};return{"--chakra-wrap-x-spacing":S=>Za(w,x=>d8($y("space",x)(S))),"--chakra-wrap-y-spacing":S=>Za(k,x=>d8($y("space",x)(S))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:u,alignItems:d,flexDirection:c,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,o,i,u,d,c]),b=h?C.exports.Children.map(s,(w,k)=>v(SP,{children:w},k)):s;return X.createElement(oe.div,{ref:n,className:Qt("chakra-wrap",f),overflow:"hidden",...m},X.createElement(oe.ul,{className:"chakra-wrap__list",__css:g},b))});JX.displayName="Wrap";var SP=ue(function(t,n){const{className:r,...o}=t;return X.createElement(oe.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:Qt("chakra-wrap__listitem",r),...o})});SP.displayName="WrapItem";var eQ={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},CP=eQ,Cl=()=>{},tQ={document:CP,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:Cl,removeEventListener:Cl,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:Cl,removeListener:Cl}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:Cl,setInterval:()=>0,clearInterval:Cl},nQ=tQ,rQ={window:nQ,document:CP},_P=typeof window<"u"?{window,document}:rQ,kP=C.exports.createContext(_P);kP.displayName="EnvironmentContext";function EP(e){const{children:t,environment:n}=e,[r,o]=C.exports.useState(null),[i,s]=C.exports.useState(!1);C.exports.useEffect(()=>s(!0),[]);const u=C.exports.useMemo(()=>{if(n)return n;const c=r?.ownerDocument,d=r?.ownerDocument.defaultView;return c?{document:c,window:d}:_P},[r,n]);return q(kP.Provider,{value:u,children:[t,!n&&i&&v("span",{id:"__chakra_env",hidden:!0,ref:c=>{C.exports.startTransition(()=>{c&&o(c)})}})]})}EP.displayName="EnvironmentProvider";var oQ=e=>e?"":void 0;function iQ(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((o,i,s,u)=>{e.current.set(s,{type:i,el:o,options:u}),o.addEventListener(i,s,u)},[]),r=C.exports.useCallback((o,i,s,u)=>{o.removeEventListener(i,s,u),e.current.delete(s)},[]);return C.exports.useEffect(()=>()=>{t.forEach((o,i)=>{r(o.el,o.type,i,o.options)})},[r,t]),{add:n,remove:r}}function p2(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function aQ(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:o=!0,clickOnSpace:i=!0,onMouseDown:s,onMouseUp:u,onClick:c,onKeyDown:d,onKeyUp:f,tabIndex:h,onMouseOver:m,onMouseLeave:g,...b}=e,[w,k]=C.exports.useState(!0),[S,x]=C.exports.useState(!1),_=iQ(),L=ne=>{!ne||ne.tagName!=="BUTTON"&&k(!1)},T=w?h:h||0,R=n&&!r,N=C.exports.useCallback(ne=>{if(n){ne.stopPropagation(),ne.preventDefault();return}ne.currentTarget.focus(),c?.(ne)},[n,c]),F=C.exports.useCallback(ne=>{S&&p2(ne)&&(ne.preventDefault(),ne.stopPropagation(),x(!1),_.remove(document,"keyup",F,!1))},[S,_]),G=C.exports.useCallback(ne=>{if(d?.(ne),n||ne.defaultPrevented||ne.metaKey||!p2(ne.nativeEvent)||w)return;const j=o&&ne.key==="Enter";i&&ne.key===" "&&(ne.preventDefault(),x(!0)),j&&(ne.preventDefault(),ne.currentTarget.click()),_.add(document,"keyup",F,!1)},[n,w,d,o,i,_,F]),W=C.exports.useCallback(ne=>{if(f?.(ne),n||ne.defaultPrevented||ne.metaKey||!p2(ne.nativeEvent)||w)return;i&&ne.key===" "&&(ne.preventDefault(),x(!1),ne.currentTarget.click())},[i,w,n,f]),J=C.exports.useCallback(ne=>{ne.button===0&&(x(!1),_.remove(document,"mouseup",J,!1))},[_]),Ee=C.exports.useCallback(ne=>{if(ne.button!==0)return;if(n){ne.stopPropagation(),ne.preventDefault();return}w||x(!0),ne.currentTarget.focus({preventScroll:!0}),_.add(document,"mouseup",J,!1),s?.(ne)},[n,w,s,_,J]),he=C.exports.useCallback(ne=>{ne.button===0&&(w||x(!1),u?.(ne))},[u,w]),me=C.exports.useCallback(ne=>{if(n){ne.preventDefault();return}m?.(ne)},[n,m]),ce=C.exports.useCallback(ne=>{S&&(ne.preventDefault(),x(!1)),g?.(ne)},[S,g]),ge=Yt(t,L);return w?{...b,ref:ge,type:"button","aria-disabled":R?void 0:n,disabled:R,onClick:N,onMouseDown:s,onMouseUp:u,onKeyUp:f,onKeyDown:d,onMouseOver:m,onMouseLeave:g}:{...b,ref:ge,role:"button","data-active":oQ(S),"aria-disabled":n?"true":void 0,tabIndex:R?void 0:T,onClick:N,onMouseDown:Ee,onMouseUp:he,onKeyUp:W,onKeyDown:G,onMouseOver:me,onMouseLeave:ce}}function sQ(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function lQ(e){if(!sQ(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}var uQ=e=>e.hasAttribute("tabindex");function cQ(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function LP(e){return e.parentElement&&LP(e.parentElement)?!0:e.hidden}function dQ(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function fQ(e){if(!lQ(e)||LP(e)||cQ(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():dQ(e)?!0:uQ(e)}var pQ=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],hQ=pQ.join(),mQ=e=>e.offsetWidth>0&&e.offsetHeight>0;function gQ(e){const t=Array.from(e.querySelectorAll(hQ));return t.unshift(e),t.filter(n=>fQ(n)&&mQ(n))}var Cr="top",ho="bottom",mo="right",_r="left",ab="auto",Cf=[Cr,ho,mo,_r],Su="start",Gd="end",vQ="clippingParents",PP="viewport",Ic="popper",yQ="reference",f8=Cf.reduce(function(e,t){return e.concat([t+"-"+Su,t+"-"+Gd])},[]),AP=[].concat(Cf,[ab]).reduce(function(e,t){return e.concat([t,t+"-"+Su,t+"-"+Gd])},[]),bQ="beforeRead",xQ="read",wQ="afterRead",SQ="beforeMain",CQ="main",_Q="afterMain",kQ="beforeWrite",EQ="write",LQ="afterWrite",PQ=[bQ,xQ,wQ,SQ,CQ,_Q,kQ,EQ,LQ];function gi(e){return e?(e.nodeName||"").toLowerCase():null}function vo(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function $s(e){var t=vo(e).Element;return e instanceof t||e instanceof Element}function uo(e){var t=vo(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function sb(e){if(typeof ShadowRoot>"u")return!1;var t=vo(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function AQ(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},o=t.attributes[n]||{},i=t.elements[n];!uo(i)||!gi(i)||(Object.assign(i.style,r),Object.keys(o).forEach(function(s){var u=o[s];u===!1?i.removeAttribute(s):i.setAttribute(s,u===!0?"":u)}))})}function TQ(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var o=t.elements[r],i=t.attributes[r]||{},s=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),u=s.reduce(function(c,d){return c[d]="",c},{});!uo(o)||!gi(o)||(Object.assign(o.style,u),Object.keys(i).forEach(function(c){o.removeAttribute(c)}))})}}const IQ={name:"applyStyles",enabled:!0,phase:"write",fn:AQ,effect:TQ,requires:["computeStyles"]};function ci(e){return e.split("-")[0]}var Os=Math.max,i0=Math.min,Cu=Math.round;function _4(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function TP(){return!/^((?!chrome|android).)*safari/i.test(_4())}function _u(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),o=1,i=1;t&&uo(e)&&(o=e.offsetWidth>0&&Cu(r.width)/e.offsetWidth||1,i=e.offsetHeight>0&&Cu(r.height)/e.offsetHeight||1);var s=$s(e)?vo(e):window,u=s.visualViewport,c=!TP()&&n,d=(r.left+(c&&u?u.offsetLeft:0))/o,f=(r.top+(c&&u?u.offsetTop:0))/i,h=r.width/o,m=r.height/i;return{width:h,height:m,top:f,right:d+h,bottom:f+m,left:d,x:d,y:f}}function lb(e){var t=_u(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function IP(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&sb(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function Qi(e){return vo(e).getComputedStyle(e)}function OQ(e){return["table","td","th"].indexOf(gi(e))>=0}function rs(e){return(($s(e)?e.ownerDocument:e.document)||window.document).documentElement}function _m(e){return gi(e)==="html"?e:e.assignedSlot||e.parentNode||(sb(e)?e.host:null)||rs(e)}function p8(e){return!uo(e)||Qi(e).position==="fixed"?null:e.offsetParent}function MQ(e){var t=/firefox/i.test(_4()),n=/Trident/i.test(_4());if(n&&uo(e)){var r=Qi(e);if(r.position==="fixed")return null}var o=_m(e);for(sb(o)&&(o=o.host);uo(o)&&["html","body"].indexOf(gi(o))<0;){var i=Qi(o);if(i.transform!=="none"||i.perspective!=="none"||i.contain==="paint"||["transform","perspective"].indexOf(i.willChange)!==-1||t&&i.willChange==="filter"||t&&i.filter&&i.filter!=="none")return o;o=o.parentNode}return null}function _f(e){for(var t=vo(e),n=p8(e);n&&OQ(n)&&Qi(n).position==="static";)n=p8(n);return n&&(gi(n)==="html"||gi(n)==="body"&&Qi(n).position==="static")?t:n||MQ(e)||t}function ub(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function ud(e,t,n){return Os(e,i0(t,n))}function RQ(e,t,n){var r=ud(e,t,n);return r>n?n:r}function OP(){return{top:0,right:0,bottom:0,left:0}}function MP(e){return Object.assign({},OP(),e)}function RP(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var NQ=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,MP(typeof t!="number"?t:RP(t,Cf))};function DQ(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,s=n.modifiersData.popperOffsets,u=ci(n.placement),c=ub(u),d=[_r,mo].indexOf(u)>=0,f=d?"height":"width";if(!(!i||!s)){var h=NQ(o.padding,n),m=lb(i),g=c==="y"?Cr:_r,b=c==="y"?ho:mo,w=n.rects.reference[f]+n.rects.reference[c]-s[c]-n.rects.popper[f],k=s[c]-n.rects.reference[c],S=_f(i),x=S?c==="y"?S.clientHeight||0:S.clientWidth||0:0,_=w/2-k/2,L=h[g],T=x-m[f]-h[b],R=x/2-m[f]/2+_,N=ud(L,R,T),F=c;n.modifiersData[r]=(t={},t[F]=N,t.centerOffset=N-R,t)}}function zQ(e){var t=e.state,n=e.options,r=n.element,o=r===void 0?"[data-popper-arrow]":r;o!=null&&(typeof o=="string"&&(o=t.elements.popper.querySelector(o),!o)||!IP(t.elements.popper,o)||(t.elements.arrow=o))}const FQ={name:"arrow",enabled:!0,phase:"main",fn:DQ,effect:zQ,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ku(e){return e.split("-")[1]}var BQ={top:"auto",right:"auto",bottom:"auto",left:"auto"};function $Q(e){var t=e.x,n=e.y,r=window,o=r.devicePixelRatio||1;return{x:Cu(t*o)/o||0,y:Cu(n*o)/o||0}}function h8(e){var t,n=e.popper,r=e.popperRect,o=e.placement,i=e.variation,s=e.offsets,u=e.position,c=e.gpuAcceleration,d=e.adaptive,f=e.roundOffsets,h=e.isFixed,m=s.x,g=m===void 0?0:m,b=s.y,w=b===void 0?0:b,k=typeof f=="function"?f({x:g,y:w}):{x:g,y:w};g=k.x,w=k.y;var S=s.hasOwnProperty("x"),x=s.hasOwnProperty("y"),_=_r,L=Cr,T=window;if(d){var R=_f(n),N="clientHeight",F="clientWidth";if(R===vo(n)&&(R=rs(n),Qi(R).position!=="static"&&u==="absolute"&&(N="scrollHeight",F="scrollWidth")),R=R,o===Cr||(o===_r||o===mo)&&i===Gd){L=ho;var G=h&&R===T&&T.visualViewport?T.visualViewport.height:R[N];w-=G-r.height,w*=c?1:-1}if(o===_r||(o===Cr||o===ho)&&i===Gd){_=mo;var W=h&&R===T&&T.visualViewport?T.visualViewport.width:R[F];g-=W-r.width,g*=c?1:-1}}var J=Object.assign({position:u},d&&BQ),Ee=f===!0?$Q({x:g,y:w}):{x:g,y:w};if(g=Ee.x,w=Ee.y,c){var he;return Object.assign({},J,(he={},he[L]=x?"0":"",he[_]=S?"0":"",he.transform=(T.devicePixelRatio||1)<=1?"translate("+g+"px, "+w+"px)":"translate3d("+g+"px, "+w+"px, 0)",he))}return Object.assign({},J,(t={},t[L]=x?w+"px":"",t[_]=S?g+"px":"",t.transform="",t))}function VQ(e){var t=e.state,n=e.options,r=n.gpuAcceleration,o=r===void 0?!0:r,i=n.adaptive,s=i===void 0?!0:i,u=n.roundOffsets,c=u===void 0?!0:u,d={placement:ci(t.placement),variation:ku(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,h8(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:c})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,h8(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:c})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const WQ={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:VQ,data:{}};var mh={passive:!0};function jQ(e){var t=e.state,n=e.instance,r=e.options,o=r.scroll,i=o===void 0?!0:o,s=r.resize,u=s===void 0?!0:s,c=vo(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&d.forEach(function(f){f.addEventListener("scroll",n.update,mh)}),u&&c.addEventListener("resize",n.update,mh),function(){i&&d.forEach(function(f){f.removeEventListener("scroll",n.update,mh)}),u&&c.removeEventListener("resize",n.update,mh)}}const HQ={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:jQ,data:{}};var UQ={left:"right",right:"left",bottom:"top",top:"bottom"};function e1(e){return e.replace(/left|right|bottom|top/g,function(t){return UQ[t]})}var GQ={start:"end",end:"start"};function m8(e){return e.replace(/start|end/g,function(t){return GQ[t]})}function cb(e){var t=vo(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function db(e){return _u(rs(e)).left+cb(e).scrollLeft}function ZQ(e,t){var n=vo(e),r=rs(e),o=n.visualViewport,i=r.clientWidth,s=r.clientHeight,u=0,c=0;if(o){i=o.width,s=o.height;var d=TP();(d||!d&&t==="fixed")&&(u=o.offsetLeft,c=o.offsetTop)}return{width:i,height:s,x:u+db(e),y:c}}function KQ(e){var t,n=rs(e),r=cb(e),o=(t=e.ownerDocument)==null?void 0:t.body,i=Os(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=Os(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),u=-r.scrollLeft+db(e),c=-r.scrollTop;return Qi(o||n).direction==="rtl"&&(u+=Os(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:s,x:u,y:c}}function fb(e){var t=Qi(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function NP(e){return["html","body","#document"].indexOf(gi(e))>=0?e.ownerDocument.body:uo(e)&&fb(e)?e:NP(_m(e))}function cd(e,t){var n;t===void 0&&(t=[]);var r=NP(e),o=r===((n=e.ownerDocument)==null?void 0:n.body),i=vo(r),s=o?[i].concat(i.visualViewport||[],fb(r)?r:[]):r,u=t.concat(s);return o?u:u.concat(cd(_m(s)))}function k4(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function qQ(e,t){var n=_u(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function g8(e,t,n){return t===PP?k4(ZQ(e,n)):$s(t)?qQ(t,n):k4(KQ(rs(e)))}function YQ(e){var t=cd(_m(e)),n=["absolute","fixed"].indexOf(Qi(e).position)>=0,r=n&&uo(e)?_f(e):e;return $s(r)?t.filter(function(o){return $s(o)&&IP(o,r)&&gi(o)!=="body"}):[]}function XQ(e,t,n,r){var o=t==="clippingParents"?YQ(e):[].concat(t),i=[].concat(o,[n]),s=i[0],u=i.reduce(function(c,d){var f=g8(e,d,r);return c.top=Os(f.top,c.top),c.right=i0(f.right,c.right),c.bottom=i0(f.bottom,c.bottom),c.left=Os(f.left,c.left),c},g8(e,s,r));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function DP(e){var t=e.reference,n=e.element,r=e.placement,o=r?ci(r):null,i=r?ku(r):null,s=t.x+t.width/2-n.width/2,u=t.y+t.height/2-n.height/2,c;switch(o){case Cr:c={x:s,y:t.y-n.height};break;case ho:c={x:s,y:t.y+t.height};break;case mo:c={x:t.x+t.width,y:u};break;case _r:c={x:t.x-n.width,y:u};break;default:c={x:t.x,y:t.y}}var d=o?ub(o):null;if(d!=null){var f=d==="y"?"height":"width";switch(i){case Su:c[d]=c[d]-(t[f]/2-n[f]/2);break;case Gd:c[d]=c[d]+(t[f]/2-n[f]/2);break}}return c}function Zd(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=r===void 0?e.placement:r,i=n.strategy,s=i===void 0?e.strategy:i,u=n.boundary,c=u===void 0?vQ:u,d=n.rootBoundary,f=d===void 0?PP:d,h=n.elementContext,m=h===void 0?Ic:h,g=n.altBoundary,b=g===void 0?!1:g,w=n.padding,k=w===void 0?0:w,S=MP(typeof k!="number"?k:RP(k,Cf)),x=m===Ic?yQ:Ic,_=e.rects.popper,L=e.elements[b?x:m],T=XQ($s(L)?L:L.contextElement||rs(e.elements.popper),c,f,s),R=_u(e.elements.reference),N=DP({reference:R,element:_,strategy:"absolute",placement:o}),F=k4(Object.assign({},_,N)),G=m===Ic?F:R,W={top:T.top-G.top+S.top,bottom:G.bottom-T.bottom+S.bottom,left:T.left-G.left+S.left,right:G.right-T.right+S.right},J=e.modifiersData.offset;if(m===Ic&&J){var Ee=J[o];Object.keys(W).forEach(function(he){var me=[mo,ho].indexOf(he)>=0?1:-1,ce=[Cr,ho].indexOf(he)>=0?"y":"x";W[he]+=Ee[ce]*me})}return W}function QQ(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,s=n.padding,u=n.flipVariations,c=n.allowedAutoPlacements,d=c===void 0?AP:c,f=ku(r),h=f?u?f8:f8.filter(function(b){return ku(b)===f}):Cf,m=h.filter(function(b){return d.indexOf(b)>=0});m.length===0&&(m=h);var g=m.reduce(function(b,w){return b[w]=Zd(e,{placement:w,boundary:o,rootBoundary:i,padding:s})[ci(w)],b},{});return Object.keys(g).sort(function(b,w){return g[b]-g[w]})}function JQ(e){if(ci(e)===ab)return[];var t=e1(e);return[m8(e),t,m8(t)]}function eJ(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,u=s===void 0?!0:s,c=n.fallbackPlacements,d=n.padding,f=n.boundary,h=n.rootBoundary,m=n.altBoundary,g=n.flipVariations,b=g===void 0?!0:g,w=n.allowedAutoPlacements,k=t.options.placement,S=ci(k),x=S===k,_=c||(x||!b?[e1(k)]:JQ(k)),L=[k].concat(_).reduce(function(de,ye){return de.concat(ci(ye)===ab?QQ(t,{placement:ye,boundary:f,rootBoundary:h,padding:d,flipVariations:b,allowedAutoPlacements:w}):ye)},[]),T=t.rects.reference,R=t.rects.popper,N=new Map,F=!0,G=L[0],W=0;W=0,ce=me?"width":"height",ge=Zd(t,{placement:J,boundary:f,rootBoundary:h,altBoundary:m,padding:d}),ne=me?he?mo:_r:he?ho:Cr;T[ce]>R[ce]&&(ne=e1(ne));var j=e1(ne),Y=[];if(i&&Y.push(ge[Ee]<=0),u&&Y.push(ge[ne]<=0,ge[j]<=0),Y.every(function(de){return de})){G=J,F=!1;break}N.set(J,Y)}if(F)for(var K=b?3:1,O=function(ye){var be=L.find(function(Pe){var fe=N.get(Pe);if(fe)return fe.slice(0,ye).every(function(_e){return _e})});if(be)return G=be,"break"},H=K;H>0;H--){var se=O(H);if(se==="break")break}t.placement!==G&&(t.modifiersData[r]._skip=!0,t.placement=G,t.reset=!0)}}const tJ={name:"flip",enabled:!0,phase:"main",fn:eJ,requiresIfExists:["offset"],data:{_skip:!1}};function v8(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function y8(e){return[Cr,mo,ho,_r].some(function(t){return e[t]>=0})}function nJ(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,s=Zd(t,{elementContext:"reference"}),u=Zd(t,{altBoundary:!0}),c=v8(s,r),d=v8(u,o,i),f=y8(c),h=y8(d);t.modifiersData[n]={referenceClippingOffsets:c,popperEscapeOffsets:d,isReferenceHidden:f,hasPopperEscaped:h},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":f,"data-popper-escaped":h})}const rJ={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:nJ};function oJ(e,t,n){var r=ci(e),o=[_r,Cr].indexOf(r)>=0?-1:1,i=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,s=i[0],u=i[1];return s=s||0,u=(u||0)*o,[_r,mo].indexOf(r)>=0?{x:u,y:s}:{x:s,y:u}}function iJ(e){var t=e.state,n=e.options,r=e.name,o=n.offset,i=o===void 0?[0,0]:o,s=AP.reduce(function(f,h){return f[h]=oJ(h,t.rects,i),f},{}),u=s[t.placement],c=u.x,d=u.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=c,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=s}const aJ={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:iJ};function sJ(e){var t=e.state,n=e.name;t.modifiersData[n]=DP({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const lJ={name:"popperOffsets",enabled:!0,phase:"read",fn:sJ,data:{}};function uJ(e){return e==="x"?"y":"x"}function cJ(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,u=s===void 0?!1:s,c=n.boundary,d=n.rootBoundary,f=n.altBoundary,h=n.padding,m=n.tether,g=m===void 0?!0:m,b=n.tetherOffset,w=b===void 0?0:b,k=Zd(t,{boundary:c,rootBoundary:d,padding:h,altBoundary:f}),S=ci(t.placement),x=ku(t.placement),_=!x,L=ub(S),T=uJ(L),R=t.modifiersData.popperOffsets,N=t.rects.reference,F=t.rects.popper,G=typeof w=="function"?w(Object.assign({},t.rects,{placement:t.placement})):w,W=typeof G=="number"?{mainAxis:G,altAxis:G}:Object.assign({mainAxis:0,altAxis:0},G),J=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,Ee={x:0,y:0};if(!!R){if(i){var he,me=L==="y"?Cr:_r,ce=L==="y"?ho:mo,ge=L==="y"?"height":"width",ne=R[L],j=ne+k[me],Y=ne-k[ce],K=g?-F[ge]/2:0,O=x===Su?N[ge]:F[ge],H=x===Su?-F[ge]:-N[ge],se=t.elements.arrow,de=g&&se?lb(se):{width:0,height:0},ye=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:OP(),be=ye[me],Pe=ye[ce],fe=ud(0,N[ge],de[ge]),_e=_?N[ge]/2-K-fe-be-W.mainAxis:O-fe-be-W.mainAxis,De=_?-N[ge]/2+K+fe+Pe+W.mainAxis:H+fe+Pe+W.mainAxis,st=t.elements.arrow&&_f(t.elements.arrow),It=st?L==="y"?st.clientTop||0:st.clientLeft||0:0,bn=(he=J?.[L])!=null?he:0,xe=ne+_e-bn-It,Ie=ne+De-bn,tt=ud(g?i0(j,xe):j,ne,g?Os(Y,Ie):Y);R[L]=tt,Ee[L]=tt-ne}if(u){var ze,$t=L==="x"?Cr:_r,xn=L==="x"?ho:mo,lt=R[T],Ct=T==="y"?"height":"width",Jt=lt+k[$t],Gt=lt-k[xn],pe=[Cr,_r].indexOf(S)!==-1,Le=(ze=J?.[T])!=null?ze:0,ft=pe?Jt:lt-N[Ct]-F[Ct]-Le+W.altAxis,ut=pe?lt+N[Ct]+F[Ct]-Le-W.altAxis:Gt,ie=g&&pe?RQ(ft,lt,ut):ud(g?ft:Jt,lt,g?ut:Gt);R[T]=ie,Ee[T]=ie-lt}t.modifiersData[r]=Ee}}const dJ={name:"preventOverflow",enabled:!0,phase:"main",fn:cJ,requiresIfExists:["offset"]};function fJ(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function pJ(e){return e===vo(e)||!uo(e)?cb(e):fJ(e)}function hJ(e){var t=e.getBoundingClientRect(),n=Cu(t.width)/e.offsetWidth||1,r=Cu(t.height)/e.offsetHeight||1;return n!==1||r!==1}function mJ(e,t,n){n===void 0&&(n=!1);var r=uo(t),o=uo(t)&&hJ(t),i=rs(t),s=_u(e,o,n),u={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(r||!r&&!n)&&((gi(t)!=="body"||fb(i))&&(u=pJ(t)),uo(t)?(c=_u(t,!0),c.x+=t.clientLeft,c.y+=t.clientTop):i&&(c.x=db(i))),{x:s.left+u.scrollLeft-c.x,y:s.top+u.scrollTop-c.y,width:s.width,height:s.height}}function gJ(e){var t=new Map,n=new Set,r=[];e.forEach(function(i){t.set(i.name,i)});function o(i){n.add(i.name);var s=[].concat(i.requires||[],i.requiresIfExists||[]);s.forEach(function(u){if(!n.has(u)){var c=t.get(u);c&&o(c)}}),r.push(i)}return e.forEach(function(i){n.has(i.name)||o(i)}),r}function vJ(e){var t=gJ(e);return PQ.reduce(function(n,r){return n.concat(t.filter(function(o){return o.phase===r}))},[])}function yJ(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function bJ(e){var t=e.reduce(function(n,r){var o=n[r.name];return n[r.name]=o?Object.assign({},o,r,{options:Object.assign({},o.options,r.options),data:Object.assign({},o.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var b8={placement:"bottom",modifiers:[],strategy:"absolute"};function x8(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),cn={arrowShadowColor:_l("--popper-arrow-shadow-color"),arrowSize:_l("--popper-arrow-size","8px"),arrowSizeHalf:_l("--popper-arrow-size-half"),arrowBg:_l("--popper-arrow-bg"),transformOrigin:_l("--popper-transform-origin"),arrowOffset:_l("--popper-arrow-offset")};function CJ(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var _J={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},kJ=e=>_J[e],w8={scroll:!0,resize:!0};function EJ(e){let t;return typeof e=="object"?t={enabled:!0,options:{...w8,...e}}:t={enabled:e,options:w8},t}var LJ={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},PJ={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{S8(e)},effect:({state:e})=>()=>{S8(e)}},S8=e=>{e.elements.popper.style.setProperty(cn.transformOrigin.var,kJ(e.placement))},AJ={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{TJ(e)}},TJ=e=>{var t;if(!e.placement)return;const n=IJ(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:cn.arrowSize.varRef,height:cn.arrowSize.varRef,zIndex:-1});const r={[cn.arrowSizeHalf.var]:`calc(${cn.arrowSize.varRef} / 2)`,[cn.arrowOffset.var]:`calc(${cn.arrowSizeHalf.varRef} * -1)`};for(const o in r)e.elements.arrow.style.setProperty(o,r[o])}},IJ=e=>{if(e.startsWith("top"))return{property:"bottom",value:cn.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:cn.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:cn.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:cn.arrowOffset.varRef}},OJ={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{C8(e)},effect:({state:e})=>()=>{C8(e)}},C8=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:cn.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:CJ(e.placement)})},MJ={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},RJ={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function NJ(e,t="ltr"){var n;const r=((n=MJ[e])==null?void 0:n[t])||e;return t==="ltr"?r:RJ[e]??r}function zP(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:o="absolute",arrowPadding:i=8,eventListeners:s=!0,offset:u,gutter:c=8,flip:d=!0,boundary:f="clippingParents",preventOverflow:h=!0,matchWidth:m,direction:g="ltr"}=e,b=C.exports.useRef(null),w=C.exports.useRef(null),k=C.exports.useRef(null),S=NJ(r,g),x=C.exports.useRef(()=>{}),_=C.exports.useCallback(()=>{var W;!t||!b.current||!w.current||((W=x.current)==null||W.call(x),k.current=SJ(b.current,w.current,{placement:S,modifiers:[OJ,AJ,PJ,{...LJ,enabled:!!m},{name:"eventListeners",...EJ(s)},{name:"arrow",options:{padding:i}},{name:"offset",options:{offset:u??[0,c]}},{name:"flip",enabled:!!d,options:{padding:8}},{name:"preventOverflow",enabled:!!h,options:{boundary:f}},...n??[]],strategy:o}),k.current.forceUpdate(),x.current=k.current.destroy)},[S,t,n,m,s,i,u,c,d,h,f,o]);C.exports.useEffect(()=>()=>{var W;!b.current&&!w.current&&((W=k.current)==null||W.destroy(),k.current=null)},[]);const L=C.exports.useCallback(W=>{b.current=W,_()},[_]),T=C.exports.useCallback((W={},J=null)=>({...W,ref:Yt(L,J)}),[L]),R=C.exports.useCallback(W=>{w.current=W,_()},[_]),N=C.exports.useCallback((W={},J=null)=>({...W,ref:Yt(R,J),style:{...W.style,position:o,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[o,R,m]),F=C.exports.useCallback((W={},J=null)=>{const{size:Ee,shadowColor:he,bg:me,style:ce,...ge}=W;return{...ge,ref:J,"data-popper-arrow":"",style:DJ(W)}},[]),G=C.exports.useCallback((W={},J=null)=>({...W,ref:J,"data-popper-arrow-inner":""}),[]);return{update(){var W;(W=k.current)==null||W.update()},forceUpdate(){var W;(W=k.current)==null||W.forceUpdate()},transformOrigin:cn.transformOrigin.varRef,referenceRef:L,popperRef:R,getPopperProps:N,getArrowProps:F,getArrowInnerProps:G,getReferenceProps:T}}function DJ(e){const{size:t,shadowColor:n,bg:r,style:o}=e,i={...o,position:"absolute"};return t&&(i["--popper-arrow-size"]=t),n&&(i["--popper-arrow-shadow-color"]=n),r&&(i["--popper-arrow-bg"]=r),i}function FP(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=Gn(n),s=Gn(t),[u,c]=C.exports.useState(e.defaultIsOpen||!1),d=r!==void 0?r:u,f=r!==void 0,h=o??`disclosure-${C.exports.useId()}`,m=C.exports.useCallback(()=>{f||c(!1),s?.()},[f,s]),g=C.exports.useCallback(()=>{f||c(!0),i?.()},[f,i]),b=C.exports.useCallback(()=>{d?m():g()},[d,g,m]);function w(S={}){return{...S,"aria-expanded":d,"aria-controls":h,onClick(x){var _;(_=S.onClick)==null||_.call(S,x),b()}}}function k(S={}){return{...S,hidden:!d,id:h}}return{isOpen:d,onOpen:g,onClose:m,onToggle:b,isControlled:f,getButtonProps:w,getDisclosureProps:k}}function BP(e){const{wasSelected:t,enabled:n,isSelected:r,mode:o="unmount"}=e;return!!(!n||r||o==="keepMounted"&&t)}var[zJ,FJ]=Tt({strict:!1,name:"PortalManagerContext"});function $P(e){const{children:t,zIndex:n}=e;return v(zJ,{value:{zIndex:n},children:t})}$P.displayName="PortalManager";var[VP,BJ]=Tt({strict:!1,name:"PortalContext"}),pb="chakra-portal",$J=".chakra-portal",VJ=e=>v("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),WJ=e=>{const{appendToParentPortal:t,children:n}=e,[r,o]=C.exports.useState(null),i=C.exports.useRef(null),[,s]=C.exports.useState({});C.exports.useEffect(()=>s({}),[]);const u=BJ(),c=FJ();ai(()=>{if(!r)return;const f=r.ownerDocument,h=t?u??f.body:f.body;if(!h)return;i.current=f.createElement("div"),i.current.className=pb,h.appendChild(i.current),s({});const m=i.current;return()=>{h.contains(m)&&h.removeChild(m)}},[r]);const d=c?.zIndex?v(VJ,{zIndex:c?.zIndex,children:n}):n;return i.current?Iu.exports.createPortal(v(VP,{value:i.current,children:d}),i.current):v("span",{ref:f=>{f&&o(f)}})},jJ=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,o=n.current,i=o??(typeof window<"u"?document.body:void 0),s=C.exports.useMemo(()=>{const c=o?.ownerDocument.createElement("div");return c&&(c.className=pb),c},[o]),[,u]=C.exports.useState({});return ai(()=>u({}),[]),ai(()=>{if(!(!s||!i))return i.appendChild(s),()=>{i.removeChild(s)}},[s,i]),i&&s?Iu.exports.createPortal(v(VP,{value:r?s:null,children:t}),s):null};function Zs(e){const{containerRef:t,...n}=e;return t?v(jJ,{containerRef:t,...n}):v(WJ,{...n})}Zs.defaultProps={appendToParentPortal:!0};Zs.className=pb;Zs.selector=$J;Zs.displayName="Portal";var HJ=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},kl=new WeakMap,gh=new WeakMap,vh={},h2=0,UJ=function(e,t,n,r){var o=Array.isArray(e)?e:[e];vh[n]||(vh[n]=new WeakMap);var i=vh[n],s=[],u=new Set,c=new Set(o),d=function(h){!h||u.has(h)||(u.add(h),d(h.parentNode))};o.forEach(d);var f=function(h){!h||c.has(h)||Array.prototype.forEach.call(h.children,function(m){if(u.has(m))f(m);else{var g=m.getAttribute(r),b=g!==null&&g!=="false",w=(kl.get(m)||0)+1,k=(i.get(m)||0)+1;kl.set(m,w),i.set(m,k),s.push(m),w===1&&b&&gh.set(m,!0),k===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return f(t),u.clear(),h2++,function(){s.forEach(function(h){var m=kl.get(h)-1,g=i.get(h)-1;kl.set(h,m),i.set(h,g),m||(gh.has(h)||h.removeAttribute(r),gh.delete(h)),g||h.removeAttribute(n)}),h2--,h2||(kl=new WeakMap,kl=new WeakMap,gh=new WeakMap,vh={})}},GJ=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=t||HJ(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live]"))),UJ(r,o,n,"aria-hidden")):function(){return null}};function ZJ(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var wt={exports:{}},KJ="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",qJ=KJ,YJ=qJ;function WP(){}function jP(){}jP.resetWarningCache=WP;var XJ=function(){function e(r,o,i,s,u,c){if(c!==YJ){var d=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw d.name="Invariant Violation",d}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:jP,resetWarningCache:WP};return n.PropTypes=n,n};wt.exports=XJ();var E4="data-focus-lock",HP="data-focus-lock-disabled",QJ="data-no-focus-lock",JJ="data-autofocus-inside",eee="data-no-autofocus";function tee(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function nee(e,t){var n=C.exports.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}function UP(e,t){return nee(t||null,function(n){return e.forEach(function(r){return tee(r,n)})})}var m2={width:"1px",height:"0px",padding:0,overflow:"hidden",position:"fixed",top:"1px",left:"1px"};function GP(e){return e}function ZP(e,t){t===void 0&&(t=GP);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(u){return u!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(u){return i(u)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var u=n;n=[],u.forEach(i),s=n}var c=function(){var f=s;s=[],f.forEach(i)},d=function(){return Promise.resolve().then(c)};d(),n={push:function(f){s.push(f),d()},filter:function(f){return s=s.filter(f),n}}}};return o}function hb(e,t){return t===void 0&&(t=GP),ZP(e,t)}function KP(e){e===void 0&&(e={});var t=ZP(null);return t.options=ti({async:!0,ssr:!1},e),t}var qP=function(e){var t=e.sideCar,n=lm(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return v(r,{...ti({},n)})};qP.isSideCarExport=!0;function ree(e,t){return e.useMedium(t),qP}var YP=hb({},function(e){var t=e.target,n=e.currentTarget;return{target:t,currentTarget:n}}),XP=hb(),oee=hb(),iee=KP({async:!0}),aee=[],mb=C.exports.forwardRef(function(t,n){var r,o=C.exports.useState(),i=o[0],s=o[1],u=C.exports.useRef(),c=C.exports.useRef(!1),d=C.exports.useRef(null),f=t.children,h=t.disabled,m=t.noFocusGuards,g=t.persistentFocus,b=t.crossFrame,w=t.autoFocus;t.allowTextSelection;var k=t.group,S=t.className,x=t.whiteList,_=t.hasPositiveIndices,L=t.shards,T=L===void 0?aee:L,R=t.as,N=R===void 0?"div":R,F=t.lockProps,G=F===void 0?{}:F,W=t.sideCar,J=t.returnFocus,Ee=t.focusOptions,he=t.onActivation,me=t.onDeactivation,ce=C.exports.useState({}),ge=ce[0],ne=C.exports.useCallback(function(){d.current=d.current||document&&document.activeElement,u.current&&he&&he(u.current),c.current=!0},[he]),j=C.exports.useCallback(function(){c.current=!1,me&&me(u.current)},[me]);C.exports.useEffect(function(){h||(d.current=null)},[]);var Y=C.exports.useCallback(function(Pe){var fe=d.current;if(fe&&fe.focus){var _e=typeof J=="function"?J(fe):J;if(_e){var De=typeof _e=="object"?_e:void 0;d.current=null,Pe?Promise.resolve().then(function(){return fe.focus(De)}):fe.focus(De)}}},[J]),K=C.exports.useCallback(function(Pe){c.current&&YP.useMedium(Pe)},[]),O=XP.useMedium,H=C.exports.useCallback(function(Pe){u.current!==Pe&&(u.current=Pe,s(Pe))},[]),se=Nd((r={},r[HP]=h&&"disabled",r[E4]=k,r),G),de=m!==!0,ye=de&&m!=="tail",be=UP([n,H]);return q(yn,{children:[de&&[v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:m2},"guard-first"),_?v("div",{"data-focus-guard":!0,tabIndex:h?-1:1,style:m2},"guard-nearest"):null],!h&&v(W,{id:ge,sideCar:iee,observed:i,disabled:h,persistentFocus:g,crossFrame:b,autoFocus:w,whiteList:x,shards:T,onActivation:ne,onDeactivation:j,returnFocus:Y,focusOptions:Ee}),v(N,{ref:be,...se,className:S,onBlur:O,onFocus:K,children:f}),ye&&v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:m2})]})});mb.propTypes={};mb.defaultProps={children:void 0,disabled:!1,returnFocus:!1,focusOptions:void 0,noFocusGuards:!1,autoFocus:!0,persistentFocus:!1,crossFrame:!0,hasPositiveIndices:void 0,allowTextSelection:void 0,group:void 0,className:void 0,whiteList:void 0,shards:void 0,as:"div",lockProps:{},onActivation:void 0,onDeactivation:void 0};const QP=mb;function L4(e,t){return L4=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,o){return r.__proto__=o,r},L4(e,t)}function see(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,L4(e,t)}function JP(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function lee(e,t){function n(r){return r.displayName||r.name||"Component"}return function(o){var i=[],s;function u(){s=e(i.map(function(d){return d.props})),t(s)}var c=function(d){see(f,d);function f(){return d.apply(this,arguments)||this}f.peek=function(){return s};var h=f.prototype;return h.componentDidMount=function(){i.push(this),u()},h.componentDidUpdate=function(){u()},h.componentWillUnmount=function(){var g=i.indexOf(this);i.splice(g,1),u()},h.render=function(){return v(o,{...this.props})},f}(C.exports.PureComponent);return JP(c,"displayName","SideEffect("+n(o)+")"),c}}var yi=function(e){for(var t=Array(e.length),n=0;n=0}).sort(gee)},vee=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],vb=vee.join(","),yee="".concat(vb,", [data-focus-guard]"),lA=function(e,t){var n;return yi(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,o){return r.concat(o.matches(t?yee:vb)?[o]:[],lA(o))},[])},yb=function(e,t){return e.reduce(function(n,r){return n.concat(lA(r,t),r.parentNode?yi(r.parentNode.querySelectorAll(vb)).filter(function(o){return o===r}):[])},[])},bee=function(e){var t=e.querySelectorAll("[".concat(JJ,"]"));return yi(t).map(function(n){return yb([n])}).reduce(function(n,r){return n.concat(r)},[])},bb=function(e,t){return yi(e).filter(function(n){return nA(t,n)}).filter(function(n){return pee(n)})},_8=function(e,t){return t===void 0&&(t=new Map),yi(e).filter(function(n){return rA(t,n)})},A4=function(e,t,n){return sA(bb(yb(e,n),t),!0,n)},k8=function(e,t){return sA(bb(yb(e),t),!1)},xee=function(e,t){return bb(bee(e),t)},Kd=function(e,t){return(e.shadowRoot?Kd(e.shadowRoot,t):Object.getPrototypeOf(e).contains.call(e,t))||yi(e.children).some(function(n){return Kd(n,t)})},wee=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(o),(i&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(s,u){return!t.has(u)})},uA=function(e){return e.parentNode?uA(e.parentNode):e},xb=function(e){var t=P4(e);return t.filter(Boolean).reduce(function(n,r){var o=r.getAttribute(E4);return n.push.apply(n,o?wee(yi(uA(r).querySelectorAll("[".concat(E4,'="').concat(o,'"]:not([').concat(HP,'="disabled"])')))):[r]),n},[])},cA=function(e){return e.activeElement?e.activeElement.shadowRoot?cA(e.activeElement.shadowRoot):e.activeElement:void 0},wb=function(){return document.activeElement?document.activeElement.shadowRoot?cA(document.activeElement.shadowRoot):document.activeElement:void 0},See=function(e){return e===document.activeElement},Cee=function(e){return Boolean(yi(e.querySelectorAll("iframe")).some(function(t){return See(t)}))},dA=function(e){var t=document&&wb();return!t||t.dataset&&t.dataset.focusGuard?!1:xb(e).some(function(n){return Kd(n,t)||Cee(n)})},_ee=function(){var e=document&&wb();return e?yi(document.querySelectorAll("[".concat(QJ,"]"))).some(function(t){return Kd(t,e)}):!1},kee=function(e,t){return t.filter(aA).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},Sb=function(e,t){return aA(e)&&e.name?kee(e,t):e},Eee=function(e){var t=new Set;return e.forEach(function(n){return t.add(Sb(n,e))}),e.filter(function(n){return t.has(n)})},E8=function(e){return e[0]&&e.length>1?Sb(e[0],e):e[0]},L8=function(e,t){return e.length>1?e.indexOf(Sb(e[t],e)):t},fA="NEW_FOCUS",Lee=function(e,t,n,r){var o=e.length,i=e[0],s=e[o-1],u=gb(n);if(!(n&&e.indexOf(n)>=0)){var c=n!==void 0?t.indexOf(n):-1,d=r?t.indexOf(r):c,f=r?e.indexOf(r):-1,h=c-d,m=t.indexOf(i),g=t.indexOf(s),b=Eee(t),w=n!==void 0?b.indexOf(n):-1,k=w-(r?b.indexOf(r):c),S=L8(e,0),x=L8(e,o-1);if(c===-1||f===-1)return fA;if(!h&&f>=0)return f;if(c<=m&&u&&Math.abs(h)>1)return x;if(c>=g&&u&&Math.abs(h)>1)return S;if(h&&Math.abs(k)>1)return f;if(c<=m)return x;if(c>g)return S;if(h)return Math.abs(h)>1?f:(o+f+h)%o}},T4=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&T4(e.parentNode.host||e.parentNode,t),t},g2=function(e,t){for(var n=T4(e),r=T4(t),o=0;o=0)return i}return!1},pA=function(e,t,n){var r=P4(e),o=P4(t),i=r[0],s=!1;return o.filter(Boolean).forEach(function(u){s=g2(s||u,u)||s,n.filter(Boolean).forEach(function(c){var d=g2(i,c);d&&(!s||Kd(d,s)?s=d:s=g2(d,s))})}),s},Pee=function(e,t){return e.reduce(function(n,r){return n.concat(xee(r,t))},[])},Aee=function(e){return function(t){var n;return t.autofocus||!!(!((n=oA(t))===null||n===void 0)&&n.autofocus)||e.indexOf(t)>=0}},Tee=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(mee)},Iee=function(e,t){var n=document&&wb(),r=xb(e).filter(a0),o=pA(n||e,e,r),i=new Map,s=k8(r,i),u=A4(r,i).filter(function(g){var b=g.node;return a0(b)});if(!(!u[0]&&(u=s,!u[0]))){var c=k8([o],i).map(function(g){var b=g.node;return b}),d=Tee(c,u),f=d.map(function(g){var b=g.node;return b}),h=Lee(f,c,n,t);if(h===fA){var m=_8(s.map(function(g){var b=g.node;return b})).filter(Aee(Pee(r,i)));return{node:m&&m.length?E8(m):E8(_8(f))}}return h===void 0?h:d[h]}},Oee=function(e){var t=xb(e).filter(a0),n=pA(e,e,t),r=new Map,o=A4([n],r,!0),i=A4(t,r).filter(function(s){var u=s.node;return a0(u)}).map(function(s){var u=s.node;return u});return o.map(function(s){var u=s.node,c=s.index;return{node:u,index:c,lockItem:i.indexOf(u)>=0,guard:gb(u)}})},Mee=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},v2=0,y2=!1,Ree=function(e,t,n){n===void 0&&(n={});var r=Iee(e,t);if(!y2&&r){if(v2>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),y2=!0,setTimeout(function(){y2=!1},1);return}v2++,Mee(r.node,n.focusOptions),v2--}};const hA=Ree;function mA(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var Nee=function(){return document&&document.activeElement===document.body},Dee=function(){return Nee()||_ee()},su=null,ql=null,lu=null,qd=!1,zee=function(){return!0},Fee=function(t){return(su.whiteList||zee)(t)},Bee=function(t,n){lu={observerNode:t,portaledElement:n}},$ee=function(t){return lu&&lu.portaledElement===t};function P8(e,t,n,r){var o=null,i=e;do{var s=r[i];if(s.guard)s.node.dataset.focusAutoGuard&&(o=s);else if(s.lockItem){if(i!==e)return;o=null}else break}while((i+=n)!==t);o&&(o.node.tabIndex=0)}var Vee=function(t){return t&&"current"in t?t.current:t},Wee=function(t){return t?Boolean(qd):qd==="meanwhile"},jee=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},Hee=function(t,n){return n.some(function(r){return jee(t,r,r)})},s0=function(){var t=!1;if(su){var n=su,r=n.observed,o=n.persistentFocus,i=n.autoFocus,s=n.shards,u=n.crossFrame,c=n.focusOptions,d=r||lu&&lu.portaledElement,f=document&&document.activeElement;if(d){var h=[d].concat(s.map(Vee).filter(Boolean));if((!f||Fee(f))&&(o||Wee(u)||!Dee()||!ql&&i)&&(d&&!(dA(h)||f&&Hee(f,h)||$ee(f))&&(document&&!ql&&f&&!i?(f.blur&&f.blur(),document.body.focus()):(t=hA(h,ql,{focusOptions:c}),lu={})),qd=!1,ql=document&&document.activeElement),document){var m=document&&document.activeElement,g=Oee(h),b=g.map(function(w){var k=w.node;return k}).indexOf(m);b>-1&&(g.filter(function(w){var k=w.guard,S=w.node;return k&&S.dataset.focusAutoGuard}).forEach(function(w){var k=w.node;return k.removeAttribute("tabIndex")}),P8(b,g.length,1,g),P8(b,-1,-1,g))}}}return t},gA=function(t){s0()&&t&&(t.stopPropagation(),t.preventDefault())},Cb=function(){return mA(s0)},Uee=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||Bee(r,n)},Gee=function(){return null},vA=function(){qd="just",setTimeout(function(){qd="meanwhile"},0)},Zee=function(){document.addEventListener("focusin",gA),document.addEventListener("focusout",Cb),window.addEventListener("blur",vA)},Kee=function(){document.removeEventListener("focusin",gA),document.removeEventListener("focusout",Cb),window.removeEventListener("blur",vA)};function qee(e){return e.filter(function(t){var n=t.disabled;return!n})}function Yee(e){var t=e.slice(-1)[0];t&&!su&&Zee();var n=su,r=n&&t&&t.id===n.id;su=t,n&&!r&&(n.onDeactivation(),e.filter(function(o){var i=o.id;return i===n.id}).length||n.returnFocus(!t)),t?(ql=null,(!r||n.observed!==t.observed)&&t.onActivation(),s0(),mA(s0)):(Kee(),ql=null)}YP.assignSyncMedium(Uee);XP.assignMedium(Cb);oee.assignMedium(function(e){return e({moveFocusInside:hA,focusInside:dA})});const Xee=lee(qee,Yee)(Gee);var yA=C.exports.forwardRef(function(t,n){return v(QP,{sideCar:Xee,ref:n,...t})}),bA=QP.propTypes||{};bA.sideCar;ZJ(bA,["sideCar"]);yA.propTypes={};const Qee=yA;var xA=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:o,children:i,isDisabled:s,autoFocus:u,persistentFocus:c,lockFocusAcrossFrames:d}=e,f=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&gQ(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),h=C.exports.useCallback(()=>{var g;(g=n?.current)==null||g.focus()},[n]);return v(Qee,{crossFrame:d,persistentFocus:c,autoFocus:u,disabled:s,onActivation:f,onDeactivation:h,returnFocus:o&&!n,children:i})};xA.displayName="FocusLock";var t1="right-scroll-bar-position",n1="width-before-scroll-bar",Jee="with-scroll-bars-hidden",ete="--removed-body-scroll-bar-size",wA=KP(),b2=function(){},km=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:b2,onWheelCapture:b2,onTouchMoveCapture:b2}),o=r[0],i=r[1],s=e.forwardProps,u=e.children,c=e.className,d=e.removeScrollBar,f=e.enabled,h=e.shards,m=e.sideCar,g=e.noIsolation,b=e.inert,w=e.allowPinchZoom,k=e.as,S=k===void 0?"div":k,x=lm(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),_=m,L=UP([n,t]),T=ti(ti({},x),o);return q(yn,{children:[f&&v(_,{sideCar:wA,removeScrollBar:d,shards:h,noIsolation:g,inert:b,setCallbacks:i,allowPinchZoom:!!w,lockRef:n}),s?C.exports.cloneElement(C.exports.Children.only(u),ti(ti({},T),{ref:L})):v(S,{...ti({},T,{className:c,ref:L}),children:u})]})});km.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};km.classNames={fullWidth:n1,zeroRight:t1};var tte=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function nte(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=tte();return t&&e.setAttribute("nonce",t),e}function rte(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function ote(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var ite=function(){var e=0,t=null;return{add:function(n){e==0&&(t=nte())&&(rte(t,n),ote(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},ate=function(){var e=ite();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},SA=function(){var e=ate(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},ste={left:0,top:0,right:0,gap:0},x2=function(e){return parseInt(e||"",10)||0},lte=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],o=t[e==="padding"?"paddingRight":"marginRight"];return[x2(n),x2(r),x2(o)]},ute=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return ste;var t=lte(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},cte=SA(),dte=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,u=e.gap;return n===void 0&&(n="margin"),` + .`.concat(Jee,` { + overflow: hidden `).concat(r,`; + padding-right: `).concat(u,"px ").concat(r,`; + } + body { + overflow: hidden `).concat(r,`; + overscroll-behavior: contain; + `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` + padding-left: `.concat(o,`px; + padding-top: `).concat(i,`px; + padding-right: `).concat(s,`px; + margin-left:0; + margin-top:0; + margin-right: `).concat(u,"px ").concat(r,`; + `),n==="padding"&&"padding-right: ".concat(u,"px ").concat(r,";")].filter(Boolean).join(""),` + } + + .`).concat(t1,` { + right: `).concat(u,"px ").concat(r,`; + } + + .`).concat(n1,` { + margin-right: `).concat(u,"px ").concat(r,`; + } + + .`).concat(t1," .").concat(t1,` { + right: 0 `).concat(r,`; + } + + .`).concat(n1," .").concat(n1,` { + margin-right: 0 `).concat(r,`; + } + + body { + `).concat(ete,": ").concat(u,`px; + } +`)},fte=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r,i=C.exports.useMemo(function(){return ute(o)},[o]);return v(cte,{styles:dte(i,!t,o,n?"":"!important")})},I4=!1;if(typeof window<"u")try{var yh=Object.defineProperty({},"passive",{get:function(){return I4=!0,!0}});window.addEventListener("test",yh,yh),window.removeEventListener("test",yh,yh)}catch{I4=!1}var El=I4?{passive:!1}:!1,pte=function(e){return e.tagName==="TEXTAREA"},CA=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!pte(e)&&n[t]==="visible")},hte=function(e){return CA(e,"overflowY")},mte=function(e){return CA(e,"overflowX")},A8=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=_A(e,n);if(r){var o=kA(e,n),i=o[1],s=o[2];if(i>s)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},gte=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},vte=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},_A=function(e,t){return e==="v"?hte(t):mte(t)},kA=function(e,t){return e==="v"?gte(t):vte(t)},yte=function(e,t){return e==="h"&&t==="rtl"?-1:1},bte=function(e,t,n,r,o){var i=yte(e,window.getComputedStyle(t).direction),s=i*r,u=n.target,c=t.contains(u),d=!1,f=s>0,h=0,m=0;do{var g=kA(e,u),b=g[0],w=g[1],k=g[2],S=w-k-i*b;(b||S)&&_A(e,u)&&(h+=S,m+=b),u=u.parentNode}while(!c&&u!==document.body||c&&(t.contains(u)||t===u));return(f&&(o&&h===0||!o&&s>h)||!f&&(o&&m===0||!o&&-s>m))&&(d=!0),d},bh=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},T8=function(e){return[e.deltaX,e.deltaY]},I8=function(e){return e&&"current"in e?e.current:e},xte=function(e,t){return e[0]===t[0]&&e[1]===t[1]},wte=function(e){return` + .block-interactivity-`.concat(e,` {pointer-events: none;} + .allow-interactivity-`).concat(e,` {pointer-events: all;} +`)},Ste=0,Ll=[];function Cte(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),o=C.exports.useState(Ste++)[0],i=C.exports.useState(function(){return SA()})[0],s=C.exports.useRef(e);C.exports.useEffect(function(){s.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var w=e4([e.lockRef.current],(e.shards||[]).map(I8),!0).filter(Boolean);return w.forEach(function(k){return k.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),w.forEach(function(k){return k.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var u=C.exports.useCallback(function(w,k){if("touches"in w&&w.touches.length===2)return!s.current.allowPinchZoom;var S=bh(w),x=n.current,_="deltaX"in w?w.deltaX:x[0]-S[0],L="deltaY"in w?w.deltaY:x[1]-S[1],T,R=w.target,N=Math.abs(_)>Math.abs(L)?"h":"v";if("touches"in w&&N==="h"&&R.type==="range")return!1;var F=A8(N,R);if(!F)return!0;if(F?T=N:(T=N==="v"?"h":"v",F=A8(N,R)),!F)return!1;if(!r.current&&"changedTouches"in w&&(_||L)&&(r.current=T),!T)return!0;var G=r.current||T;return bte(G,k,w,G==="h"?_:L,!0)},[]),c=C.exports.useCallback(function(w){var k=w;if(!(!Ll.length||Ll[Ll.length-1]!==i)){var S="deltaY"in k?T8(k):bh(k),x=t.current.filter(function(T){return T.name===k.type&&T.target===k.target&&xte(T.delta,S)})[0];if(x&&x.should){k.cancelable&&k.preventDefault();return}if(!x){var _=(s.current.shards||[]).map(I8).filter(Boolean).filter(function(T){return T.contains(k.target)}),L=_.length>0?u(k,_[0]):!s.current.noIsolation;L&&k.cancelable&&k.preventDefault()}}},[]),d=C.exports.useCallback(function(w,k,S,x){var _={name:w,delta:k,target:S,should:x};t.current.push(_),setTimeout(function(){t.current=t.current.filter(function(L){return L!==_})},1)},[]),f=C.exports.useCallback(function(w){n.current=bh(w),r.current=void 0},[]),h=C.exports.useCallback(function(w){d(w.type,T8(w),w.target,u(w,e.lockRef.current))},[]),m=C.exports.useCallback(function(w){d(w.type,bh(w),w.target,u(w,e.lockRef.current))},[]);C.exports.useEffect(function(){return Ll.push(i),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:m}),document.addEventListener("wheel",c,El),document.addEventListener("touchmove",c,El),document.addEventListener("touchstart",f,El),function(){Ll=Ll.filter(function(w){return w!==i}),document.removeEventListener("wheel",c,El),document.removeEventListener("touchmove",c,El),document.removeEventListener("touchstart",f,El)}},[]);var g=e.removeScrollBar,b=e.inert;return q(yn,{children:[b?v(i,{styles:wte(o)}):null,g?v(fte,{gapMode:"margin"}):null]})}const _te=ree(wA,Cte);var EA=C.exports.forwardRef(function(e,t){return v(km,{...ti({},e,{ref:t,sideCar:_te})})});EA.classNames=km.classNames;const kte=EA;var Ks=(...e)=>e.filter(Boolean).join(" ");function Vc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Ete=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},O4=new Ete;function Lte(e,t){C.exports.useEffect(()=>(t&&O4.add(e),()=>{O4.remove(e)}),[t,e])}function Pte(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:o=!0,closeOnEsc:i=!0,useInert:s=!0,onOverlayClick:u,onEsc:c}=e,d=C.exports.useRef(null),f=C.exports.useRef(null),[h,m,g]=Tte(r,"chakra-modal","chakra-modal--header","chakra-modal--body");Ate(d,t&&s),Lte(d,t);const b=C.exports.useRef(null),w=C.exports.useCallback(F=>{b.current=F.target},[]),k=C.exports.useCallback(F=>{F.key==="Escape"&&(F.stopPropagation(),i&&n?.(),c?.())},[i,n,c]),[S,x]=C.exports.useState(!1),[_,L]=C.exports.useState(!1),T=C.exports.useCallback((F={},G=null)=>({role:"dialog",...F,ref:Yt(G,d),id:h,tabIndex:-1,"aria-modal":!0,"aria-labelledby":S?m:void 0,"aria-describedby":_?g:void 0,onClick:Vc(F.onClick,W=>W.stopPropagation())}),[g,_,h,m,S]),R=C.exports.useCallback(F=>{F.stopPropagation(),b.current===F.target&&(!O4.isTopModal(d)||(o&&n?.(),u?.()))},[n,o,u]),N=C.exports.useCallback((F={},G=null)=>({...F,ref:Yt(G,f),onClick:Vc(F.onClick,R),onKeyDown:Vc(F.onKeyDown,k),onMouseDown:Vc(F.onMouseDown,w)}),[k,w,R]);return{isOpen:t,onClose:n,headerId:m,bodyId:g,setBodyMounted:L,setHeaderMounted:x,dialogRef:d,overlayRef:f,getDialogProps:T,getDialogContainerProps:N}}function Ate(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return GJ(e.current)},[t,e,n])}function Tte(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(o=>`${o}-${r}`),[r,t])}var[Ite,qs]=Tt({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Ote,Ka]=Tt({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),Eu=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:u,blockScrollOnMount:c,allowPinchZoom:d,preserveScrollBarGap:f,motionPreset:h,lockFocusAcrossFrames:m,onCloseComplete:g}=e,b=dr("Modal",e),k={...Pte(e),autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:u,blockScrollOnMount:c,allowPinchZoom:d,preserveScrollBarGap:f,motionPreset:h,lockFocusAcrossFrames:m};return v(Ote,{value:k,children:v(Ite,{value:b,children:v(na,{onExitComplete:g,children:k.isOpen&&v(Zs,{...t,children:n})})})})};Eu.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};Eu.displayName="Modal";var l0=ue((e,t)=>{const{className:n,...r}=e,{bodyId:o,setBodyMounted:i}=Ka();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=Ks("chakra-modal__body",n),u=qs();return X.createElement(oe.div,{ref:t,className:s,id:o,...r,__css:u.body})});l0.displayName="ModalBody";var _b=ue((e,t)=>{const{onClick:n,className:r,...o}=e,{onClose:i}=Ka(),s=Ks("chakra-modal__close-btn",r),u=qs();return v(Sm,{ref:t,__css:u.closeButton,className:s,onClick:Vc(n,c=>{c.stopPropagation(),i()}),...o})});_b.displayName="ModalCloseButton";function LA(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:o,blockScrollOnMount:i,allowPinchZoom:s,finalFocusRef:u,returnFocusOnClose:c,preserveScrollBarGap:d,lockFocusAcrossFrames:f}=Ka(),[h,m]=F3();return C.exports.useEffect(()=>{!h&&m&&setTimeout(m)},[h,m]),v(xA,{autoFocus:t,isDisabled:!n,initialFocusRef:o,finalFocusRef:u,restoreFocus:c,contentRef:r,lockFocusAcrossFrames:f,children:v(kte,{removeScrollBar:!d,allowPinchZoom:s,enabled:i,forwardProps:!0,children:e.children})})}var Mte={slideInBottom:{...v4,custom:{offsetY:16,reverse:!0}},slideInRight:{...v4,custom:{offsetX:16,reverse:!0}},scale:{...jL,custom:{initialScale:.95,reverse:!0}},none:{}},Rte=oe(go.section),PA=C.exports.forwardRef((e,t)=>{const{preset:n,...r}=e,o=Mte[n];return v(Rte,{ref:t,...o,...r})});PA.displayName="ModalTransition";var Yd=ue((e,t)=>{const{className:n,children:r,containerProps:o,...i}=e,{getDialogProps:s,getDialogContainerProps:u}=Ka(),c=s(i,t),d=u(o),f=Ks("chakra-modal__content",n),h=qs(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh","@supports(height: -webkit-fill-available)":{height:"-webkit-fill-available"},position:"fixed",left:0,top:0,...h.dialogContainer},{motionPreset:b}=Ka();return X.createElement(LA,null,X.createElement(oe.div,{...d,className:"chakra-modal__content-container",tabIndex:-1,__css:g},v(PA,{preset:b,className:f,...c,__css:m,children:r})))});Yd.displayName="ModalContent";var kb=ue((e,t)=>{const{className:n,...r}=e,o=Ks("chakra-modal__footer",n),i=qs(),s={display:"flex",alignItems:"center",justifyContent:"flex-end",...i.footer};return X.createElement(oe.footer,{ref:t,...r,__css:s,className:o})});kb.displayName="ModalFooter";var Eb=ue((e,t)=>{const{className:n,...r}=e,{headerId:o,setHeaderMounted:i}=Ka();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=Ks("chakra-modal__header",n),u=qs(),c={flex:0,...u.header};return X.createElement(oe.header,{ref:t,className:s,id:o,...r,__css:c})});Eb.displayName="ModalHeader";var Nte=oe(go.div),Xd=ue((e,t)=>{const{className:n,transition:r,...o}=e,i=Ks("chakra-modal__overlay",n),s=qs(),u={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...s.overlay},{motionPreset:c}=Ka();return v(Nte,{...c==="none"?{}:WL,__css:u,ref:t,className:i,...o})});Xd.displayName="ModalOverlay";function Dte(e){const{leastDestructiveRef:t,...n}=e;return v(Eu,{...n,initialFocusRef:t})}var zte=ue((e,t)=>v(Yd,{ref:t,role:"alertdialog",...e})),[L0e,Fte]=Tt(),Bte=oe(HL),$te=ue((e,t)=>{const{className:n,children:r,...o}=e,{getDialogProps:i,getDialogContainerProps:s,isOpen:u}=Ka(),c=i(o,t),d=s(),f=Ks("chakra-modal__content",n),h=qs(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh",position:"fixed",left:0,top:0,...h.dialogContainer},{placement:b}=Fte();return X.createElement(oe.div,{...d,className:"chakra-modal__content-container",__css:g},v(LA,{children:v(Bte,{direction:b,in:u,className:f,...c,__css:m,children:r})}))});$te.displayName="DrawerContent";function Vte(e,t){const n=Gn(e);C.exports.useEffect(()=>{let r=null;const o=()=>n();return t!==null&&(r=window.setInterval(o,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var AA=(...e)=>e.filter(Boolean).join(" "),w2=e=>e?!0:void 0;function Go(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Wte=e=>v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),jte=e=>v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function O8(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const o=e.current.ownerDocument.defaultView??window,i=Array.isArray(t)?t:[t],s=new o.MutationObserver(u=>{for(const c of u)c.type==="attributes"&&c.attributeName&&i.includes(c.attributeName)&&n(c)});return s.observe(e.current,{attributes:!0,attributeFilter:i}),()=>s.disconnect()})}var Hte=50,M8=300;function Ute(e,t){const[n,r]=C.exports.useState(!1),[o,i]=C.exports.useState(null),[s,u]=C.exports.useState(!0),c=C.exports.useRef(null),d=()=>clearTimeout(c.current);Vte(()=>{o==="increment"&&e(),o==="decrement"&&t()},n?Hte:null);const f=C.exports.useCallback(()=>{s&&e(),c.current=setTimeout(()=>{u(!1),r(!0),i("increment")},M8)},[e,s]),h=C.exports.useCallback(()=>{s&&t(),c.current=setTimeout(()=>{u(!1),r(!0),i("decrement")},M8)},[t,s]),m=C.exports.useCallback(()=>{u(!0),r(!1),d()},[]);return C.exports.useEffect(()=>()=>d(),[]),{up:f,down:h,stop:m,isSpinning:n}}var Gte=/^[Ee0-9+\-.]$/;function Zte(e){return Gte.test(e)}function Kte(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function qte(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:o=Number.MIN_SAFE_INTEGER,max:i=Number.MAX_SAFE_INTEGER,step:s=1,isReadOnly:u,isDisabled:c,isRequired:d,isInvalid:f,pattern:h="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:g,id:b,onChange:w,precision:k,name:S,"aria-describedby":x,"aria-label":_,"aria-labelledby":L,onFocus:T,onBlur:R,onInvalid:N,getAriaValueText:F,isValidCharacter:G,format:W,parse:J,...Ee}=e,he=Gn(T),me=Gn(R),ce=Gn(N),ge=Gn(G??Zte),ne=Gn(F),j=dX(e),{update:Y,increment:K,decrement:O}=j,[H,se]=C.exports.useState(!1),de=!(u||c),ye=C.exports.useRef(null),be=C.exports.useRef(null),Pe=C.exports.useRef(null),fe=C.exports.useRef(null),_e=C.exports.useCallback(ie=>ie.split("").filter(ge).join(""),[ge]),De=C.exports.useCallback(ie=>J?.(ie)??ie,[J]),st=C.exports.useCallback(ie=>(W?.(ie)??ie).toString(),[W]);r0(()=>{(j.valueAsNumber>i||j.valueAsNumber{if(!ye.current)return;if(ye.current.value!=j.value){const Ge=De(ye.current.value);j.setValue(_e(Ge))}},[De,_e]);const It=C.exports.useCallback((ie=s)=>{de&&K(ie)},[K,de,s]),bn=C.exports.useCallback((ie=s)=>{de&&O(ie)},[O,de,s]),xe=Ute(It,bn);O8(Pe,"disabled",xe.stop,xe.isSpinning),O8(fe,"disabled",xe.stop,xe.isSpinning);const Ie=C.exports.useCallback(ie=>{if(ie.nativeEvent.isComposing)return;const Et=De(ie.currentTarget.value);Y(_e(Et)),be.current={start:ie.currentTarget.selectionStart,end:ie.currentTarget.selectionEnd}},[Y,_e,De]),tt=C.exports.useCallback(ie=>{var Ge;he?.(ie),be.current&&(ie.target.selectionStart=be.current.start??((Ge=ie.currentTarget.value)==null?void 0:Ge.length),ie.currentTarget.selectionEnd=be.current.end??ie.currentTarget.selectionStart)},[he]),ze=C.exports.useCallback(ie=>{if(ie.nativeEvent.isComposing)return;Kte(ie,ge)||ie.preventDefault();const Ge=$t(ie)*s,Et=ie.key,Fn={ArrowUp:()=>It(Ge),ArrowDown:()=>bn(Ge),Home:()=>Y(o),End:()=>Y(i)}[Et];Fn&&(ie.preventDefault(),Fn(ie))},[ge,s,It,bn,Y,o,i]),$t=ie=>{let Ge=1;return(ie.metaKey||ie.ctrlKey)&&(Ge=.1),ie.shiftKey&&(Ge=10),Ge},xn=C.exports.useMemo(()=>{const ie=ne?.(j.value);if(ie!=null)return ie;const Ge=j.value.toString();return Ge||void 0},[j.value,ne]),lt=C.exports.useCallback(()=>{let ie=j.value;ie!==""&&(j.valueAsNumberi&&(ie=i),j.cast(ie))},[j,i,o]),Ct=C.exports.useCallback(()=>{se(!1),n&<()},[n,se,lt]),Jt=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var ie;(ie=ye.current)==null||ie.focus()})},[t]),Gt=C.exports.useCallback(ie=>{ie.preventDefault(),xe.up(),Jt()},[Jt,xe]),pe=C.exports.useCallback(ie=>{ie.preventDefault(),xe.down(),Jt()},[Jt,xe]);w4(()=>ye.current,"wheel",ie=>{var Ge;const En=(((Ge=ye.current)==null?void 0:Ge.ownerDocument)??document).activeElement===ye.current;if(!g||!En)return;ie.preventDefault();const Fn=$t(ie)*s,Lr=Math.sign(ie.deltaY);Lr===-1?It(Fn):Lr===1&&bn(Fn)},{passive:!1});const Le=C.exports.useCallback((ie={},Ge=null)=>{const Et=c||r&&j.isAtMax;return{...ie,ref:Yt(Ge,Pe),role:"button",tabIndex:-1,onPointerDown:Go(ie.onPointerDown,En=>{Et||Gt(En)}),onPointerLeave:Go(ie.onPointerLeave,xe.stop),onPointerUp:Go(ie.onPointerUp,xe.stop),disabled:Et,"aria-disabled":w2(Et)}},[j.isAtMax,r,Gt,xe.stop,c]),ft=C.exports.useCallback((ie={},Ge=null)=>{const Et=c||r&&j.isAtMin;return{...ie,ref:Yt(Ge,fe),role:"button",tabIndex:-1,onPointerDown:Go(ie.onPointerDown,En=>{Et||pe(En)}),onPointerLeave:Go(ie.onPointerLeave,xe.stop),onPointerUp:Go(ie.onPointerUp,xe.stop),disabled:Et,"aria-disabled":w2(Et)}},[j.isAtMin,r,pe,xe.stop,c]),ut=C.exports.useCallback((ie={},Ge=null)=>({name:S,inputMode:m,type:"text",pattern:h,"aria-labelledby":L,"aria-label":_,"aria-describedby":x,id:b,disabled:c,...ie,readOnly:ie.readOnly??u,"aria-readonly":ie.readOnly??u,"aria-required":ie.required??d,required:ie.required??d,ref:Yt(ye,Ge),value:st(j.value),role:"spinbutton","aria-valuemin":o,"aria-valuemax":i,"aria-valuenow":Number.isNaN(j.valueAsNumber)?void 0:j.valueAsNumber,"aria-invalid":w2(f??j.isOutOfRange),"aria-valuetext":xn,autoComplete:"off",autoCorrect:"off",onChange:Go(ie.onChange,Ie),onKeyDown:Go(ie.onKeyDown,ze),onFocus:Go(ie.onFocus,tt,()=>se(!0)),onBlur:Go(ie.onBlur,me,Ct)}),[S,m,h,L,_,st,x,b,c,d,u,f,j.value,j.valueAsNumber,j.isOutOfRange,o,i,xn,Ie,ze,tt,me,Ct]);return{value:st(j.value),valueAsNumber:j.valueAsNumber,isFocused:H,isDisabled:c,isReadOnly:u,getIncrementButtonProps:Le,getDecrementButtonProps:ft,getInputProps:ut,htmlProps:Ee}}var[Yte,Em]=Tt({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Xte,Lb]=Tt({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),TA=ue(function(t,n){const r=dr("NumberInput",t),o=vt(t),i=Y3(o),{htmlProps:s,...u}=qte(i),c=C.exports.useMemo(()=>u,[u]);return X.createElement(Xte,{value:c},X.createElement(Yte,{value:r},X.createElement(oe.div,{...s,ref:n,className:AA("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});TA.displayName="NumberInput";var Qte=ue(function(t,n){const r=Em();return X.createElement(oe.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});Qte.displayName="NumberInputStepper";var IA=ue(function(t,n){const{getInputProps:r}=Lb(),o=r(t,n),i=Em();return X.createElement(oe.input,{...o,className:AA("chakra-numberinput__field",t.className),__css:{width:"100%",...i.field}})});IA.displayName="NumberInputField";var OA=oe("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),MA=ue(function(t,n){const r=Em(),{getDecrementButtonProps:o}=Lb(),i=o(t,n);return v(OA,{...i,__css:r.stepper,children:t.children??v(Wte,{})})});MA.displayName="NumberDecrementStepper";var RA=ue(function(t,n){const{getIncrementButtonProps:r}=Lb(),o=r(t,n),i=Em();return v(OA,{...o,__css:i.stepper,children:t.children??v(jte,{})})});RA.displayName="NumberIncrementStepper";var kf=(...e)=>e.filter(Boolean).join(" ");function Jte(e,...t){return ene(e)?e(...t):e}var ene=e=>typeof e=="function";function Zo(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function tne(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[nne,Ys]=Tt({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[rne,Ef]=Tt({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Pl={click:"click",hover:"hover"};function one(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:o,returnFocusOnClose:i=!0,autoFocus:s=!0,arrowSize:u,arrowShadowColor:c,trigger:d=Pl.click,openDelay:f=200,closeDelay:h=200,isLazy:m,lazyBehavior:g="unmount",computePositionOnMount:b,...w}=e,{isOpen:k,onClose:S,onOpen:x,onToggle:_}=FP(e),L=C.exports.useRef(null),T=C.exports.useRef(null),R=C.exports.useRef(null),N=C.exports.useRef(!1),F=C.exports.useRef(!1);k&&(F.current=!0);const[G,W]=C.exports.useState(!1),[J,Ee]=C.exports.useState(!1),he=C.exports.useId(),me=o??he,[ce,ge,ne,j]=["popover-trigger","popover-content","popover-header","popover-body"].map(Ie=>`${Ie}-${me}`),{referenceRef:Y,getArrowProps:K,getPopperProps:O,getArrowInnerProps:H,forceUpdate:se}=zP({...w,enabled:k||!!b}),de=mX({isOpen:k,ref:R});wX({enabled:k,ref:T}),bX(R,{focusRef:T,visible:k,shouldFocus:i&&d===Pl.click}),CX(R,{focusRef:r,visible:k,shouldFocus:s&&d===Pl.click});const ye=BP({wasSelected:F.current,enabled:m,mode:g,isSelected:de.present}),be=C.exports.useCallback((Ie={},tt=null)=>{const ze={...Ie,style:{...Ie.style,transformOrigin:cn.transformOrigin.varRef,[cn.arrowSize.var]:u?`${u}px`:void 0,[cn.arrowShadowColor.var]:c},ref:Yt(R,tt),children:ye?Ie.children:null,id:ge,tabIndex:-1,role:"dialog",onKeyDown:Zo(Ie.onKeyDown,$t=>{n&&$t.key==="Escape"&&S()}),onBlur:Zo(Ie.onBlur,$t=>{const xn=R8($t),lt=S2(R.current,xn),Ct=S2(T.current,xn);k&&t&&(!lt&&!Ct)&&S()}),"aria-labelledby":G?ne:void 0,"aria-describedby":J?j:void 0};return d===Pl.hover&&(ze.role="tooltip",ze.onMouseEnter=Zo(Ie.onMouseEnter,()=>{N.current=!0}),ze.onMouseLeave=Zo(Ie.onMouseLeave,$t=>{$t.nativeEvent.relatedTarget!==null&&(N.current=!1,setTimeout(S,h))})),ze},[ye,ge,G,ne,J,j,d,n,S,k,t,h,c,u]),Pe=C.exports.useCallback((Ie={},tt=null)=>O({...Ie,style:{visibility:k?"visible":"hidden",...Ie.style}},tt),[k,O]),fe=C.exports.useCallback((Ie,tt=null)=>({...Ie,ref:Yt(tt,L,Y)}),[L,Y]),_e=C.exports.useRef(),De=C.exports.useRef(),st=C.exports.useCallback(Ie=>{L.current==null&&Y(Ie)},[Y]),It=C.exports.useCallback((Ie={},tt=null)=>{const ze={...Ie,ref:Yt(T,tt,st),id:ce,"aria-haspopup":"dialog","aria-expanded":k,"aria-controls":ge};return d===Pl.click&&(ze.onClick=Zo(Ie.onClick,_)),d===Pl.hover&&(ze.onFocus=Zo(Ie.onFocus,()=>{_e.current===void 0&&x()}),ze.onBlur=Zo(Ie.onBlur,$t=>{const xn=R8($t),lt=!S2(R.current,xn);k&&t&<&&S()}),ze.onKeyDown=Zo(Ie.onKeyDown,$t=>{$t.key==="Escape"&&S()}),ze.onMouseEnter=Zo(Ie.onMouseEnter,()=>{N.current=!0,_e.current=window.setTimeout(x,f)}),ze.onMouseLeave=Zo(Ie.onMouseLeave,()=>{N.current=!1,_e.current&&(clearTimeout(_e.current),_e.current=void 0),De.current=window.setTimeout(()=>{N.current===!1&&S()},h)})),ze},[ce,k,ge,d,st,_,x,t,S,f,h]);C.exports.useEffect(()=>()=>{_e.current&&clearTimeout(_e.current),De.current&&clearTimeout(De.current)},[]);const bn=C.exports.useCallback((Ie={},tt=null)=>({...Ie,id:ne,ref:Yt(tt,ze=>{W(!!ze)})}),[ne]),xe=C.exports.useCallback((Ie={},tt=null)=>({...Ie,id:j,ref:Yt(tt,ze=>{Ee(!!ze)})}),[j]);return{forceUpdate:se,isOpen:k,onAnimationComplete:de.onComplete,onClose:S,getAnchorProps:fe,getArrowProps:K,getArrowInnerProps:H,getPopoverPositionerProps:Pe,getPopoverProps:be,getTriggerProps:It,getHeaderProps:bn,getBodyProps:xe}}function S2(e,t){return e===t||e?.contains(t)}function R8(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function Pb(e){const t=dr("Popover",e),{children:n,...r}=vt(e),o=nm(),i=one({...r,direction:o.direction});return v(nne,{value:i,children:v(rne,{value:t,children:Jte(n,{isOpen:i.isOpen,onClose:i.onClose,forceUpdate:i.forceUpdate})})})}Pb.displayName="Popover";function Ab(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:o,getArrowInnerProps:i}=Ys(),s=Ef(),u=t??n??r;return X.createElement(oe.div,{...o(),className:"chakra-popover__arrow-positioner"},X.createElement(oe.div,{className:kf("chakra-popover__arrow",e.className),...i(e),__css:{...s.arrow,"--popper-arrow-bg":u?`colors.${u}, ${u}`:void 0}}))}Ab.displayName="PopoverArrow";var ine=ue(function(t,n){const{getBodyProps:r}=Ys(),o=Ef();return X.createElement(oe.div,{...r(t,n),className:kf("chakra-popover__body",t.className),__css:o.body})});ine.displayName="PopoverBody";var ane=ue(function(t,n){const{onClose:r}=Ys(),o=Ef();return v(Sm,{size:"sm",onClick:r,className:kf("chakra-popover__close-btn",t.className),__css:o.closeButton,ref:n,...t})});ane.displayName="PopoverCloseButton";function sne(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var lne={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},une=go(oe.section),Tb=ue(function(t,n){const{isOpen:r}=Ys();return X.createElement(une,{ref:n,variants:sne(t.variants),...t,initial:!1,animate:r?"enter":"exit"})});Tb.defaultProps={variants:lne};Tb.displayName="PopoverTransition";var Ib=ue(function(t,n){const{rootProps:r,...o}=t,{getPopoverProps:i,getPopoverPositionerProps:s,onAnimationComplete:u}=Ys(),c=Ef(),d={position:"relative",display:"flex",flexDirection:"column",...c.content};return X.createElement(oe.div,{...s(r),__css:c.popper,className:"chakra-popover__popper"},v(Tb,{...i(o,n),onAnimationComplete:tne(u,o.onAnimationComplete),className:kf("chakra-popover__content",t.className),__css:d}))});Ib.displayName="PopoverContent";var NA=ue(function(t,n){const{getHeaderProps:r}=Ys(),o=Ef();return X.createElement(oe.header,{...r(t,n),className:kf("chakra-popover__header",t.className),__css:o.header})});NA.displayName="PopoverHeader";function Ob(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=Ys();return C.exports.cloneElement(t,n(t.props,t.ref))}Ob.displayName="PopoverTrigger";function cne(e,t,n){return(e-t)*100/(n-t)}pf({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}});pf({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}});var dne=pf({"0%":{left:"-40%"},"100%":{left:"100%"}}),fne=pf({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function pne(e){const{value:t=0,min:n,max:r,valueText:o,getValueText:i,isIndeterminate:s}=e,u=cne(t,n,r);return{bind:{"data-indeterminate":s?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":s?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof i=="function"?i(t,u):o})(),role:"progressbar"},percent:u,value:t}}var[hne,mne]=Tt({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),gne=e=>{const{min:t,max:n,value:r,isIndeterminate:o,...i}=e,s=pne({value:r,min:t,max:n,isIndeterminate:o}),u=mne(),c={height:"100%",...u.filledTrack};return X.createElement(oe.div,{style:{width:`${s.percent}%`,...i.style},...s.bind,...i,__css:c})},DA=e=>{var t;const{value:n,min:r=0,max:o=100,hasStripe:i,isAnimated:s,children:u,borderRadius:c,isIndeterminate:d,"aria-label":f,"aria-labelledby":h,...m}=vt(e),g=dr("Progress",e),b=c??((t=g.track)==null?void 0:t.borderRadius),w={animation:`${fne} 1s linear infinite`},x={...!d&&i&&s&&w,...d&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${dne} 1s ease infinite normal none running`}},_={overflow:"hidden",position:"relative",...g.track};return X.createElement(oe.div,{borderRadius:b,__css:_,...m},q(hne,{value:g,children:[v(gne,{"aria-label":f,"aria-labelledby":h,min:r,max:o,value:n,isIndeterminate:d,css:x,borderRadius:b}),u]}))};DA.displayName="Progress";var vne=oe("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});vne.displayName="CircularProgressLabel";var yne=(...e)=>e.filter(Boolean).join(" "),bne=e=>e?"":void 0;function xne(e,t){const n={},r={};for(const[o,i]of Object.entries(e))t.includes(o)?n[o]=i:r[o]=i;return[n,r]}var zA=ue(function(t,n){const{children:r,placeholder:o,className:i,...s}=t;return X.createElement(oe.select,{...s,ref:n,className:yne("chakra-select",i)},o&&v("option",{value:"",children:o}),r)});zA.displayName="SelectField";var FA=ue((e,t)=>{var n;const r=dr("Select",e),{rootProps:o,placeholder:i,icon:s,color:u,height:c,h:d,minH:f,minHeight:h,iconColor:m,iconSize:g,...b}=vt(e),[w,k]=xne(b,PW),S=q3(k),x={width:"100%",height:"fit-content",position:"relative",color:u},_={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return X.createElement(oe.div,{className:"chakra-select__wrapper",__css:x,...w,...o},v(zA,{ref:t,height:d??c,minH:f??h,placeholder:i,...S,__css:_,children:e.children}),v(BA,{"data-disabled":bne(S.disabled),...(m||u)&&{color:m||u},__css:r.icon,...g&&{fontSize:g},children:s}))});FA.displayName="Select";var wne=e=>v("svg",{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),Sne=oe("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),BA=e=>{const{children:t=v(wne,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return v(Sne,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};BA.displayName="SelectIcon";var Cne=(...e)=>e.filter(Boolean).join(" "),N8=e=>e?"":void 0,Lm=ue(function(t,n){const r=dr("Switch",t),{spacing:o="0.5rem",children:i,...s}=vt(t),{state:u,getInputProps:c,getCheckboxProps:d,getRootProps:f,getLabelProps:h}=sP(s),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),g=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:o,...r.label}),[o,r.label]);return X.createElement(oe.label,{...f(),className:Cne("chakra-switch",t.className),__css:m},v("input",{className:"chakra-switch__input",...c({},n)}),X.createElement(oe.span,{...d(),className:"chakra-switch__track",__css:g},X.createElement(oe.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":N8(u.isChecked),"data-hover":N8(u.isHovered)})),i&&X.createElement(oe.span,{className:"chakra-switch__label",...h(),__css:b},i))});Lm.displayName="Switch";var Vu=(...e)=>e.filter(Boolean).join(" ");function M4(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[_ne,$A,kne,Ene]=fE();function Lne(e){const{defaultIndex:t,onChange:n,index:r,isManual:o,isLazy:i,lazyBehavior:s="unmount",orientation:u="horizontal",direction:c="ltr",...d}=e,[f,h]=C.exports.useState(t??0),[m,g]=pE({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&h(r)},[r]);const b=kne(),w=C.exports.useId();return{id:`tabs-${e.id??w}`,selectedIndex:m,focusedIndex:f,setSelectedIndex:g,setFocusedIndex:h,isManual:o,isLazy:i,lazyBehavior:s,orientation:u,descendants:b,direction:c,htmlProps:d}}var[Pne,Lf]=Tt({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function Ane(e){const{focusedIndex:t,orientation:n,direction:r}=Lf(),o=$A(),i=C.exports.useCallback(s=>{const u=()=>{var x;const _=o.nextEnabled(t);_&&((x=_.node)==null||x.focus())},c=()=>{var x;const _=o.prevEnabled(t);_&&((x=_.node)==null||x.focus())},d=()=>{var x;const _=o.firstEnabled();_&&((x=_.node)==null||x.focus())},f=()=>{var x;const _=o.lastEnabled();_&&((x=_.node)==null||x.focus())},h=n==="horizontal",m=n==="vertical",g=s.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",w=r==="ltr"?"ArrowRight":"ArrowLeft",S={[b]:()=>h&&c(),[w]:()=>h&&u(),ArrowDown:()=>m&&u(),ArrowUp:()=>m&&c(),Home:d,End:f}[g];S&&(s.preventDefault(),S(s))},[o,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:M4(e.onKeyDown,i)}}function Tne(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:o,isManual:i,id:s,setFocusedIndex:u,selectedIndex:c}=Lf(),{index:d,register:f}=Ene({disabled:t&&!n}),h=d===c,m=()=>{o(d)},g=()=>{u(d),!i&&!(t&&n)&&o(d)},b=aQ({...r,ref:Yt(f,e.ref),isDisabled:t,isFocusable:n,onClick:M4(e.onClick,m)}),w="button";return{...b,id:VA(s,d),role:"tab",tabIndex:h?0:-1,type:w,"aria-selected":h,"aria-controls":WA(s,d),onFocus:t?void 0:M4(e.onFocus,g)}}var[Ine,One]=Tt({});function Mne(e){const t=Lf(),{id:n,selectedIndex:r}=t,i=bm(e.children).map((s,u)=>C.exports.createElement(Ine,{key:u,value:{isSelected:u===r,id:WA(n,u),tabId:VA(n,u),selectedIndex:r}},s));return{...e,children:i}}function Rne(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:o}=Lf(),{isSelected:i,id:s,tabId:u}=One(),c=C.exports.useRef(!1);i&&(c.current=!0);const d=BP({wasSelected:c.current,isSelected:i,enabled:r,mode:o});return{tabIndex:0,...n,children:d?t:null,role:"tabpanel","aria-labelledby":u,hidden:!i,id:s}}function Nne(){const e=Lf(),t=$A(),{selectedIndex:n,orientation:r}=e,o=r==="horizontal",i=r==="vertical",[s,u]=C.exports.useState(()=>{if(o)return{left:0,width:0};if(i)return{top:0,height:0}}),[c,d]=C.exports.useState(!1);return ai(()=>{if(n==null)return;const f=t.item(n);if(f==null)return;o&&u({left:f.node.offsetLeft,width:f.node.offsetWidth}),i&&u({top:f.node.offsetTop,height:f.node.offsetHeight});const h=requestAnimationFrame(()=>{d(!0)});return()=>{h&&cancelAnimationFrame(h)}},[n,o,i,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:c?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...s}}function VA(e,t){return`${e}--tab-${t}`}function WA(e,t){return`${e}--tabpanel-${t}`}var[Dne,Pf]=Tt({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),jA=ue(function(t,n){const r=dr("Tabs",t),{children:o,className:i,...s}=vt(t),{htmlProps:u,descendants:c,...d}=Lne(s),f=C.exports.useMemo(()=>d,[d]),{isFitted:h,...m}=u;return X.createElement(_ne,{value:c},X.createElement(Pne,{value:f},X.createElement(Dne,{value:r},X.createElement(oe.div,{className:Vu("chakra-tabs",i),ref:n,...m,__css:r.root},o))))});jA.displayName="Tabs";var zne=ue(function(t,n){const r=Nne(),o={...t.style,...r},i=Pf();return X.createElement(oe.div,{ref:n,...t,className:Vu("chakra-tabs__tab-indicator",t.className),style:o,__css:i.indicator})});zne.displayName="TabIndicator";var Fne=ue(function(t,n){const r=Ane({...t,ref:n}),o=Pf(),i={display:"flex",...o.tablist};return X.createElement(oe.div,{...r,className:Vu("chakra-tabs__tablist",t.className),__css:i})});Fne.displayName="TabList";var HA=ue(function(t,n){const r=Rne({...t,ref:n}),o=Pf();return X.createElement(oe.div,{outline:"0",...r,className:Vu("chakra-tabs__tab-panel",t.className),__css:o.tabpanel})});HA.displayName="TabPanel";var UA=ue(function(t,n){const r=Mne(t),o=Pf();return X.createElement(oe.div,{...r,width:"100%",ref:n,className:Vu("chakra-tabs__tab-panels",t.className),__css:o.tabpanels})});UA.displayName="TabPanels";var GA=ue(function(t,n){const r=Pf(),o=Tne({...t,ref:n}),i={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return X.createElement(oe.button,{...o,className:Vu("chakra-tabs__tab",t.className),__css:i})});GA.displayName="Tab";var Bne=(...e)=>e.filter(Boolean).join(" ");function $ne(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var Vne=["h","minH","height","minHeight"],ZA=ue((e,t)=>{const n=cr("Textarea",e),{className:r,rows:o,...i}=vt(e),s=q3(i),u=o?$ne(n,Vne):n;return X.createElement(oe.textarea,{ref:t,rows:o,...s,className:Bne("chakra-textarea",r),__css:u})});ZA.displayName="Textarea";function gt(e,t={}){let n=!1;function r(){if(!n){n=!0;return}throw new Error("[anatomy] .part(...) should only be called once. Did you mean to use .extend(...) ?")}function o(...f){r();for(const h of f)t[h]=c(h);return gt(e,t)}function i(...f){for(const h of f)h in t||(t[h]=c(h));return gt(e,t)}function s(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.selector]))}function u(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.className]))}function c(f){const g=`chakra-${(["container","root"].includes(f??"")?[e]:[e,f]).filter(Boolean).join("__")}`;return{className:g,selector:`.${g}`,toString:()=>f}}return{parts:o,toPart:c,extend:i,selectors:s,classnames:u,get keys(){return Object.keys(t)},__type:{}}}var Wne=gt("accordion").parts("root","container","button","panel").extend("icon"),jne=gt("alert").parts("title","description","container").extend("icon","spinner"),Hne=gt("avatar").parts("label","badge","container").extend("excessLabel","group"),Une=gt("breadcrumb").parts("link","item","container").extend("separator");gt("button").parts();var Gne=gt("checkbox").parts("control","icon","container").extend("label");gt("progress").parts("track","filledTrack").extend("label");var Zne=gt("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Kne=gt("editable").parts("preview","input","textarea"),qne=gt("form").parts("container","requiredIndicator","helperText"),Yne=gt("formError").parts("text","icon"),Xne=gt("input").parts("addon","field","element"),Qne=gt("list").parts("container","item","icon"),Jne=gt("menu").parts("button","list","item").extend("groupTitle","command","divider"),ere=gt("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),tre=gt("numberinput").parts("root","field","stepperGroup","stepper");gt("pininput").parts("field");var nre=gt("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),rre=gt("progress").parts("label","filledTrack","track"),ore=gt("radio").parts("container","control","label"),ire=gt("select").parts("field","icon"),are=gt("slider").parts("container","track","thumb","filledTrack","mark"),sre=gt("stat").parts("container","label","helpText","number","icon"),lre=gt("switch").parts("container","track","thumb"),ure=gt("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),cre=gt("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),dre=gt("tag").parts("container","label","closeButton");function Dn(e,t){fre(e)&&(e="100%");var n=pre(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function xh(e){return Math.min(1,Math.max(0,e))}function fre(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function pre(e){return typeof e=="string"&&e.indexOf("%")!==-1}function KA(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function wh(e){return e<=1?"".concat(Number(e)*100,"%"):e}function Ps(e){return e.length===1?"0"+e:String(e)}function hre(e,t,n){return{r:Dn(e,255)*255,g:Dn(t,255)*255,b:Dn(n,255)*255}}function D8(e,t,n){e=Dn(e,255),t=Dn(t,255),n=Dn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=0,u=(r+o)/2;if(r===o)s=0,i=0;else{var c=r-o;switch(s=u>.5?c/(2-r-o):c/(r+o),r){case e:i=(t-n)/c+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function mre(e,t,n){var r,o,i;if(e=Dn(e,360),t=Dn(t,100),n=Dn(n,100),t===0)o=n,i=n,r=n;else{var s=n<.5?n*(1+t):n+t-n*t,u=2*n-s;r=C2(u,s,e+1/3),o=C2(u,s,e),i=C2(u,s,e-1/3)}return{r:r*255,g:o*255,b:i*255}}function z8(e,t,n){e=Dn(e,255),t=Dn(t,255),n=Dn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=r,u=r-o,c=r===0?0:u/r;if(r===o)i=0;else{switch(r){case e:i=(t-n)/u+(t>16,g:(e&65280)>>8,b:e&255}}var R4={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function xre(e){var t={r:0,g:0,b:0},n=1,r=null,o=null,i=null,s=!1,u=!1;return typeof e=="string"&&(e=Cre(e)),typeof e=="object"&&(Di(e.r)&&Di(e.g)&&Di(e.b)?(t=hre(e.r,e.g,e.b),s=!0,u=String(e.r).substr(-1)==="%"?"prgb":"rgb"):Di(e.h)&&Di(e.s)&&Di(e.v)?(r=wh(e.s),o=wh(e.v),t=gre(e.h,r,o),s=!0,u="hsv"):Di(e.h)&&Di(e.s)&&Di(e.l)&&(r=wh(e.s),i=wh(e.l),t=mre(e.h,r,i),s=!0,u="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=KA(n),{ok:s,format:e.format||u,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var wre="[-\\+]?\\d+%?",Sre="[-\\+]?\\d*\\.\\d+%?",Ma="(?:".concat(Sre,")|(?:").concat(wre,")"),_2="[\\s|\\(]+(".concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")\\s*\\)?"),k2="[\\s|\\(]+(".concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")\\s*\\)?"),Ao={CSS_UNIT:new RegExp(Ma),rgb:new RegExp("rgb"+_2),rgba:new RegExp("rgba"+k2),hsl:new RegExp("hsl"+_2),hsla:new RegExp("hsla"+k2),hsv:new RegExp("hsv"+_2),hsva:new RegExp("hsva"+k2),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function Cre(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(R4[e])e=R4[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=Ao.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=Ao.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=Ao.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=Ao.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=Ao.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=Ao.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=Ao.hex8.exec(e),n?{r:Nr(n[1]),g:Nr(n[2]),b:Nr(n[3]),a:B8(n[4]),format:t?"name":"hex8"}:(n=Ao.hex6.exec(e),n?{r:Nr(n[1]),g:Nr(n[2]),b:Nr(n[3]),format:t?"name":"hex"}:(n=Ao.hex4.exec(e),n?{r:Nr(n[1]+n[1]),g:Nr(n[2]+n[2]),b:Nr(n[3]+n[3]),a:B8(n[4]+n[4]),format:t?"name":"hex8"}:(n=Ao.hex3.exec(e),n?{r:Nr(n[1]+n[1]),g:Nr(n[2]+n[2]),b:Nr(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function Di(e){return Boolean(Ao.CSS_UNIT.exec(String(e)))}var Af=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=bre(t)),this.originalInput=t;var o=xre(t);this.originalInput=t,this.r=o.r,this.g=o.g,this.b=o.b,this.a=o.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:o.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=o.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,o,i=t.r/255,s=t.g/255,u=t.b/255;return i<=.03928?n=i/12.92:n=Math.pow((i+.055)/1.055,2.4),s<=.03928?r=s/12.92:r=Math.pow((s+.055)/1.055,2.4),u<=.03928?o=u/12.92:o=Math.pow((u+.055)/1.055,2.4),.2126*n+.7152*r+.0722*o},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=KA(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=z8(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=z8(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=D8(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=D8(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),F8(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),vre(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(Dn(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(Dn(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+F8(this.r,this.g,this.b,!1),n=0,r=Object.entries(R4);n=0,i=!n&&o&&(t.startsWith("hex")||t==="name");return i?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=xh(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=xh(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=xh(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=xh(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),i=n/100,s={r:(o.r-r.r)*i+r.r,g:(o.g-r.g)*i+r.g,b:(o.b-r.b)*i+r.b,a:(o.a-r.a)*i+r.a};return new e(s)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),o=360/n,i=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,i.push(new e(r));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,i=n.v,s=[],u=1/t;t--;)s.push(new e({h:r,s:o,v:i})),i=(i+u)%1;return s},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],i=360/t,s=1;sn.length;)e.count=null,e.seed&&(e.seed+=1),n.push(qA(e));return e.count=t,n}var r=_re(e.hue,e.seed),o=kre(r,e),i=Ere(r,o,e),s={h:r,s:o,v:i};return e.alpha!==void 0&&(s.a=e.alpha),new Af(s)}function _re(e,t){var n=Pre(e),r=u0(n,t);return r<0&&(r=360+r),r}function kre(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return u0([0,100],t.seed);var n=YA(e).saturationRange,r=n[0],o=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=o-10;break;case"light":o=55;break}return u0([r,o],t.seed)}function Ere(e,t,n){var r=Lre(e,t),o=100;switch(n.luminosity){case"dark":o=r+20;break;case"light":r=(o+r)/2;break;case"random":r=0,o=100;break}return u0([r,o],n.seed)}function Lre(e,t){for(var n=YA(e).lowerBounds,r=0;r=o&&t<=s){var c=(u-i)/(s-o),d=i-c*o;return c*t+d}}return 0}function Pre(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=QA.find(function(s){return s.name===e});if(n){var r=XA(n);if(r.hueRange)return r.hueRange}var o=new Af(e);if(o.isValid){var i=o.toHsv().h;return[i,i]}}return[0,360]}function YA(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=QA;t=o.hueRange[0]&&e<=o.hueRange[1])return o}throw Error("Color not found")}function u0(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var o=t/233280;return Math.floor(r+o*(n-r))}function XA(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],o=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,o]}}var QA=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function Are(e,t,n,r,o){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,vn=(e,t,n)=>{const r=Are(e,`colors.${t}`,t),{isValid:o}=new Af(r);return o?r:n},Ire=e=>t=>{const n=vn(t,e);return new Af(n).isDark()?"dark":"light"},Ore=e=>t=>Ire(e)(t)==="dark",Lu=(e,t)=>n=>{const r=vn(n,e);return new Af(r).setAlpha(t).toRgbString()};function $8(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( + 45deg, + ${t} 25%, + transparent 25%, + transparent 50%, + ${t} 50%, + ${t} 75%, + transparent 75%, + transparent + )`,backgroundSize:`${e} ${e}`}}function Mre(e){const t=qA().toHexString();return!e||Tre(e)?t:e.string&&e.colors?Nre(e.string,e.colors):e.string&&!e.colors?Rre(e.string):e.colors&&!e.string?Dre(e.colors):t}function Rre(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255).toString(16)}`.substr(-2);return n}function Nre(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function Mb(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function zre(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function JA(e){return zre(e)&&e.reference?e.reference:String(e)}var Pm=(e,...t)=>t.map(JA).join(` ${e} `).replace(/calc/g,""),V8=(...e)=>`calc(${Pm("+",...e)})`,W8=(...e)=>`calc(${Pm("-",...e)})`,N4=(...e)=>`calc(${Pm("*",...e)})`,j8=(...e)=>`calc(${Pm("/",...e)})`,H8=e=>{const t=JA(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:N4(t,-1)},Wi=Object.assign(e=>({add:(...t)=>Wi(V8(e,...t)),subtract:(...t)=>Wi(W8(e,...t)),multiply:(...t)=>Wi(N4(e,...t)),divide:(...t)=>Wi(j8(e,...t)),negate:()=>Wi(H8(e)),toString:()=>e.toString()}),{add:V8,subtract:W8,multiply:N4,divide:j8,negate:H8});function Fre(e){return!Number.isInteger(parseFloat(e.toString()))}function Bre(e,t="-"){return e.replace(/\s+/g,t)}function eT(e){const t=Bre(e.toString());return t.includes("\\.")?e:Fre(e)?t.replace(".","\\."):e}function $re(e,t=""){return[t,eT(e)].filter(Boolean).join("-")}function Vre(e,t){return`var(${eT(e)}${t?`, ${t}`:""})`}function Wre(e,t=""){return`--${$re(e,t)}`}function Er(e,t){const n=Wre(e,t?.prefix);return{variable:n,reference:Vre(n,jre(t?.fallback))}}function jre(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:Hre,defineMultiStyleConfig:Ure}=Bt(Wne.keys),Gre={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},Zre={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},Kre={pt:"2",px:"4",pb:"5"},qre={fontSize:"1.25em"},Yre=Hre({container:Gre,button:Zre,panel:Kre,icon:qre}),Xre=Ure({baseStyle:Yre}),{definePartsStyle:Tf,defineMultiStyleConfig:Qre}=Bt(jne.keys),Ji=ts("alert-fg"),If=ts("alert-bg"),Jre=Tf({container:{bg:If.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:Ji.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:Ji.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function Rb(e){const{theme:t,colorScheme:n}=e,r=vn(t,`${n}.100`,n),o=Lu(`${n}.200`,.16)(t);return re(r,o)(e)}var eoe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[If.variable]:Rb(e),[Ji.variable]:`colors.${n}`}}}),toe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[If.variable]:Rb(e),[Ji.variable]:`colors.${n}`,paddingStart:"3",borderStartWidth:"4px",borderStartColor:Ji.reference}}}),noe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[If.variable]:Rb(e),[Ji.variable]:`colors.${n}`,pt:"2",borderTopWidth:"4px",borderTopColor:Ji.reference}}}),roe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e),r=re("white","gray.900")(e);return{container:{[If.variable]:`colors.${n}`,[Ji.variable]:`colors.${r}`,color:Ji.reference}}}),ooe={subtle:eoe,"left-accent":toe,"top-accent":noe,solid:roe},ioe=Qre({baseStyle:Jre,variants:ooe,defaultProps:{variant:"subtle",colorScheme:"blue"}}),tT={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},aoe={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},soe={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},loe={...tT,...aoe,container:soe},nT=loe,uoe=e=>typeof e=="function";function on(e,...t){return uoe(e)?e(...t):e}var{definePartsStyle:rT,defineMultiStyleConfig:coe}=Bt(Hne.keys),doe=e=>({borderRadius:"full",border:"0.2em solid",borderColor:re("white","gray.800")(e)}),foe=e=>({bg:re("gray.200","whiteAlpha.400")(e)}),poe=e=>{const{name:t,theme:n}=e,r=t?Mre({string:t}):"gray.400",o=Ore(r)(n);let i="white";o||(i="gray.800");const s=re("white","gray.800")(e);return{bg:r,color:i,borderColor:s,verticalAlign:"top"}},hoe=rT(e=>({badge:on(doe,e),excessLabel:on(foe,e),container:on(poe,e)}));function va(e){const t=e!=="100%"?nT[e]:void 0;return rT({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var moe={"2xs":va(4),xs:va(6),sm:va(8),md:va(12),lg:va(16),xl:va(24),"2xl":va(32),full:va("100%")},goe=coe({baseStyle:hoe,sizes:moe,defaultProps:{size:"md"}}),voe={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},yoe=e=>{const{colorScheme:t,theme:n}=e,r=Lu(`${t}.500`,.6)(n);return{bg:re(`${t}.500`,r)(e),color:re("white","whiteAlpha.800")(e)}},boe=e=>{const{colorScheme:t,theme:n}=e,r=Lu(`${t}.200`,.16)(n);return{bg:re(`${t}.100`,r)(e),color:re(`${t}.800`,`${t}.200`)(e)}},xoe=e=>{const{colorScheme:t,theme:n}=e,r=Lu(`${t}.200`,.8)(n),o=vn(n,`${t}.500`),i=re(o,r)(e);return{color:i,boxShadow:`inset 0 0 0px 1px ${i}`}},woe={solid:yoe,subtle:boe,outline:xoe},dd={baseStyle:voe,variants:woe,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:Soe,definePartsStyle:Coe}=Bt(Une.keys),_oe={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},koe=Coe({link:_oe}),Eoe=Soe({baseStyle:koe}),Loe={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},oT=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:re("inherit","whiteAlpha.900")(e),_hover:{bg:re("gray.100","whiteAlpha.200")(e)},_active:{bg:re("gray.200","whiteAlpha.300")(e)}};const r=Lu(`${t}.200`,.12)(n),o=Lu(`${t}.200`,.24)(n);return{color:re(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:re(`${t}.50`,r)(e)},_active:{bg:re(`${t}.100`,o)(e)}}},Poe=e=>{const{colorScheme:t}=e,n=re("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...on(oT,e)}},Aoe={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},Toe=e=>{const{colorScheme:t}=e;if(t==="gray"){const u=re("gray.100","whiteAlpha.200")(e);return{bg:u,_hover:{bg:re("gray.200","whiteAlpha.300")(e),_disabled:{bg:u}},_active:{bg:re("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:o=`${t}.600`,activeBg:i=`${t}.700`}=Aoe[t]??{},s=re(n,`${t}.200`)(e);return{bg:s,color:re(r,"gray.800")(e),_hover:{bg:re(o,`${t}.300`)(e),_disabled:{bg:s}},_active:{bg:re(i,`${t}.400`)(e)}}},Ioe=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:re(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:re(`${t}.700`,`${t}.500`)(e)}}},Ooe={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},Moe={ghost:oT,outline:Poe,solid:Toe,link:Ioe,unstyled:Ooe},Roe={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},Noe={baseStyle:Loe,variants:Moe,sizes:Roe,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:r1,defineMultiStyleConfig:Doe}=Bt(Gne.keys),fd=ts("checkbox-size"),zoe=e=>{const{colorScheme:t}=e;return{w:fd.reference,h:fd.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:re(`${t}.500`,`${t}.200`)(e),borderColor:re(`${t}.500`,`${t}.200`)(e),color:re("white","gray.900")(e),_hover:{bg:re(`${t}.600`,`${t}.300`)(e),borderColor:re(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:re("gray.200","transparent")(e),bg:re("gray.200","whiteAlpha.300")(e),color:re("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:re(`${t}.500`,`${t}.200`)(e),borderColor:re(`${t}.500`,`${t}.200`)(e),color:re("white","gray.900")(e)},_disabled:{bg:re("gray.100","whiteAlpha.100")(e),borderColor:re("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:re("red.500","red.300")(e)}}},Foe={_disabled:{cursor:"not-allowed"}},Boe={userSelect:"none",_disabled:{opacity:.4}},$oe={transitionProperty:"transform",transitionDuration:"normal"},Voe=r1(e=>({icon:$oe,container:Foe,control:on(zoe,e),label:Boe})),Woe={sm:r1({control:{[fd.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:r1({control:{[fd.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:r1({control:{[fd.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},c0=Doe({baseStyle:Voe,sizes:Woe,defaultProps:{size:"md",colorScheme:"blue"}}),pd=Er("close-button-size"),joe=e=>{const t=re("blackAlpha.100","whiteAlpha.100")(e),n=re("blackAlpha.200","whiteAlpha.200")(e);return{w:[pd.reference],h:[pd.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},Hoe={lg:{[pd.variable]:"sizes.10",fontSize:"md"},md:{[pd.variable]:"sizes.8",fontSize:"xs"},sm:{[pd.variable]:"sizes.6",fontSize:"2xs"}},Uoe={baseStyle:joe,sizes:Hoe,defaultProps:{size:"md"}},{variants:Goe,defaultProps:Zoe}=dd,Koe={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},qoe={baseStyle:Koe,variants:Goe,defaultProps:Zoe},Yoe={w:"100%",mx:"auto",maxW:"prose",px:"4"},Xoe={baseStyle:Yoe},Qoe={opacity:.6,borderColor:"inherit"},Joe={borderStyle:"solid"},eie={borderStyle:"dashed"},tie={solid:Joe,dashed:eie},nie={baseStyle:Qoe,variants:tie,defaultProps:{variant:"solid"}},{definePartsStyle:D4,defineMultiStyleConfig:rie}=Bt(Zne.keys);function Al(e){return D4(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var oie={bg:"blackAlpha.600",zIndex:"overlay"},iie={display:"flex",zIndex:"modal",justifyContent:"center"},aie=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:re("white","gray.700")(e),color:"inherit",boxShadow:re("lg","dark-lg")(e)}},sie={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},lie={position:"absolute",top:"2",insetEnd:"3"},uie={px:"6",py:"2",flex:"1",overflow:"auto"},cie={px:"6",py:"4"},die=D4(e=>({overlay:oie,dialogContainer:iie,dialog:on(aie,e),header:sie,closeButton:lie,body:uie,footer:cie})),fie={xs:Al("xs"),sm:Al("md"),md:Al("lg"),lg:Al("2xl"),xl:Al("4xl"),full:Al("full")},pie=rie({baseStyle:die,sizes:fie,defaultProps:{size:"xs"}}),{definePartsStyle:hie,defineMultiStyleConfig:mie}=Bt(Kne.keys),gie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},vie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},yie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},bie=hie({preview:gie,input:vie,textarea:yie}),xie=mie({baseStyle:bie}),{definePartsStyle:wie,defineMultiStyleConfig:Sie}=Bt(qne.keys),Cie=e=>({marginStart:"1",color:re("red.500","red.300")(e)}),_ie=e=>({mt:"2",color:re("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),kie=wie(e=>({container:{width:"100%",position:"relative"},requiredIndicator:on(Cie,e),helperText:on(_ie,e)})),Eie=Sie({baseStyle:kie}),{definePartsStyle:Lie,defineMultiStyleConfig:Pie}=Bt(Yne.keys),Aie=e=>({color:re("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),Tie=e=>({marginEnd:"0.5em",color:re("red.500","red.300")(e)}),Iie=Lie(e=>({text:on(Aie,e),icon:on(Tie,e)})),Oie=Pie({baseStyle:Iie}),Mie={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},Rie={baseStyle:Mie},Nie={fontFamily:"heading",fontWeight:"bold"},Die={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},zie={baseStyle:Nie,sizes:Die,defaultProps:{size:"xl"}},{definePartsStyle:Ui,defineMultiStyleConfig:Fie}=Bt(Xne.keys),Bie=Ui({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),ya={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},$ie={lg:Ui({field:ya.lg,addon:ya.lg}),md:Ui({field:ya.md,addon:ya.md}),sm:Ui({field:ya.sm,addon:ya.sm}),xs:Ui({field:ya.xs,addon:ya.xs})};function Nb(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||re("blue.500","blue.300")(e),errorBorderColor:n||re("red.500","red.300")(e)}}var Vie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Nb(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:re("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r),boxShadow:`0 0 0 1px ${vn(t,r)}`},_focusVisible:{zIndex:1,borderColor:vn(t,n),boxShadow:`0 0 0 1px ${vn(t,n)}`}},addon:{border:"1px solid",borderColor:re("inherit","whiteAlpha.50")(e),bg:re("gray.100","whiteAlpha.300")(e)}}}),Wie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Nb(e);return{field:{border:"2px solid",borderColor:"transparent",bg:re("gray.100","whiteAlpha.50")(e),_hover:{bg:re("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r)},_focusVisible:{bg:"transparent",borderColor:vn(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:re("gray.100","whiteAlpha.50")(e)}}}),jie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Nb(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r),boxShadow:`0px 1px 0px 0px ${vn(t,r)}`},_focusVisible:{borderColor:vn(t,n),boxShadow:`0px 1px 0px 0px ${vn(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),Hie=Ui({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),Uie={outline:Vie,filled:Wie,flushed:jie,unstyled:Hie},at=Fie({baseStyle:Bie,sizes:$ie,variants:Uie,defaultProps:{size:"md",variant:"outline"}}),Gie=e=>({bg:re("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),Zie={baseStyle:Gie},Kie={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},qie={baseStyle:Kie},{defineMultiStyleConfig:Yie,definePartsStyle:Xie}=Bt(Qne.keys),Qie={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},Jie=Xie({icon:Qie}),eae=Yie({baseStyle:Jie}),{defineMultiStyleConfig:tae,definePartsStyle:nae}=Bt(Jne.keys),rae=e=>({bg:re("#fff","gray.700")(e),boxShadow:re("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),oae=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:re("gray.100","whiteAlpha.100")(e)},_active:{bg:re("gray.200","whiteAlpha.200")(e)},_expanded:{bg:re("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),iae={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},aae={opacity:.6},sae={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},lae={transitionProperty:"common",transitionDuration:"normal"},uae=nae(e=>({button:lae,list:on(rae,e),item:on(oae,e),groupTitle:iae,command:aae,divider:sae})),cae=tae({baseStyle:uae}),{defineMultiStyleConfig:dae,definePartsStyle:z4}=Bt(ere.keys),fae={bg:"blackAlpha.600",zIndex:"modal"},pae=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},hae=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:re("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:re("lg","dark-lg")(e)}},mae={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},gae={position:"absolute",top:"2",insetEnd:"3"},vae=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},yae={px:"6",py:"4"},bae=z4(e=>({overlay:fae,dialogContainer:on(pae,e),dialog:on(hae,e),header:mae,closeButton:gae,body:on(vae,e),footer:yae}));function Po(e){return z4(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var xae={xs:Po("xs"),sm:Po("sm"),md:Po("md"),lg:Po("lg"),xl:Po("xl"),"2xl":Po("2xl"),"3xl":Po("3xl"),"4xl":Po("4xl"),"5xl":Po("5xl"),"6xl":Po("6xl"),full:Po("full")},wae=dae({baseStyle:bae,sizes:xae,defaultProps:{size:"md"}}),Sae={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},iT=Sae,{defineMultiStyleConfig:Cae,definePartsStyle:aT}=Bt(tre.keys),Db=Er("number-input-stepper-width"),sT=Er("number-input-input-padding"),_ae=Wi(Db).add("0.5rem").toString(),kae={[Db.variable]:"sizes.6",[sT.variable]:_ae},Eae=e=>{var t;return((t=on(at.baseStyle,e))==null?void 0:t.field)??{}},Lae={width:[Db.reference]},Pae=e=>({borderStart:"1px solid",borderStartColor:re("inherit","whiteAlpha.300")(e),color:re("inherit","whiteAlpha.800")(e),_active:{bg:re("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),Aae=aT(e=>({root:kae,field:Eae,stepperGroup:Lae,stepper:on(Pae,e)??{}}));function Sh(e){var t,n;const r=(t=at.sizes)==null?void 0:t[e],o={lg:"md",md:"md",sm:"sm",xs:"sm"},i=((n=r.field)==null?void 0:n.fontSize)??"md",s=iT.fontSizes[i];return aT({field:{...r.field,paddingInlineEnd:sT.reference,verticalAlign:"top"},stepper:{fontSize:Wi(s).multiply(.75).toString(),_first:{borderTopEndRadius:o[e]},_last:{borderBottomEndRadius:o[e],mt:"-1px",borderTopWidth:1}}})}var Tae={xs:Sh("xs"),sm:Sh("sm"),md:Sh("md"),lg:Sh("lg")},Iae=Cae({baseStyle:Aae,sizes:Tae,variants:at.variants,defaultProps:at.defaultProps}),U8,Oae={...(U8=at.baseStyle)==null?void 0:U8.field,textAlign:"center"},Mae={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},G8,Rae={outline:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((G8=at.variants)==null?void 0:G8.unstyled.field)??{}},Nae={baseStyle:Oae,sizes:Mae,variants:Rae,defaultProps:at.defaultProps},{defineMultiStyleConfig:Dae,definePartsStyle:zae}=Bt(nre.keys),E2=Er("popper-bg"),Fae=Er("popper-arrow-bg"),Bae=Er("popper-arrow-shadow-color"),$ae={zIndex:10},Vae=e=>{const t=re("white","gray.700")(e),n=re("gray.200","whiteAlpha.300")(e);return{[E2.variable]:`colors.${t}`,bg:E2.reference,[Fae.variable]:E2.reference,[Bae.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},Wae={px:3,py:2,borderBottomWidth:"1px"},jae={px:3,py:2},Hae={px:3,py:2,borderTopWidth:"1px"},Uae={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},Gae=zae(e=>({popper:$ae,content:Vae(e),header:Wae,body:jae,footer:Hae,closeButton:Uae})),Zae=Dae({baseStyle:Gae}),{defineMultiStyleConfig:Kae,definePartsStyle:Wc}=Bt(rre.keys),qae=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:o}=e,i=re($8(),$8("1rem","rgba(0,0,0,0.1)"))(e),s=re(`${t}.500`,`${t}.200`)(e),u=`linear-gradient( + to right, + transparent 0%, + ${vn(n,s)} 50%, + transparent 100% + )`;return{...!r&&o&&i,...r?{bgImage:u}:{bgColor:s}}},Yae={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},Xae=e=>({bg:re("gray.100","whiteAlpha.300")(e)}),Qae=e=>({transitionProperty:"common",transitionDuration:"slow",...qae(e)}),Jae=Wc(e=>({label:Yae,filledTrack:Qae(e),track:Xae(e)})),ese={xs:Wc({track:{h:"1"}}),sm:Wc({track:{h:"2"}}),md:Wc({track:{h:"3"}}),lg:Wc({track:{h:"4"}})},tse=Kae({sizes:ese,baseStyle:Jae,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:nse,definePartsStyle:o1}=Bt(ore.keys),rse=e=>{var t;const n=(t=on(c0.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},ose=o1(e=>{var t,n,r,o;return{label:(n=(t=c0).baseStyle)==null?void 0:n.call(t,e).label,container:(o=(r=c0).baseStyle)==null?void 0:o.call(r,e).container,control:rse(e)}}),ise={md:o1({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:o1({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:o1({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},ase=nse({baseStyle:ose,sizes:ise,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:sse,definePartsStyle:lse}=Bt(ire.keys),use=e=>{var t;return{...(t=at.baseStyle)==null?void 0:t.field,bg:re("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:re("white","gray.700")(e)}}},cse={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},dse=lse(e=>({field:use(e),icon:cse})),Ch={paddingInlineEnd:"8"},Z8,K8,q8,Y8,X8,Q8,J8,e7,fse={lg:{...(Z8=at.sizes)==null?void 0:Z8.lg,field:{...(K8=at.sizes)==null?void 0:K8.lg.field,...Ch}},md:{...(q8=at.sizes)==null?void 0:q8.md,field:{...(Y8=at.sizes)==null?void 0:Y8.md.field,...Ch}},sm:{...(X8=at.sizes)==null?void 0:X8.sm,field:{...(Q8=at.sizes)==null?void 0:Q8.sm.field,...Ch}},xs:{...(J8=at.sizes)==null?void 0:J8.xs,field:{...(e7=at.sizes)==null?void 0:e7.sm.field,...Ch},icon:{insetEnd:"1"}}},pse=sse({baseStyle:dse,sizes:fse,variants:at.variants,defaultProps:at.defaultProps}),hse=ts("skeleton-start-color"),mse=ts("skeleton-end-color"),gse=e=>{const t=re("gray.100","gray.800")(e),n=re("gray.400","gray.600")(e),{startColor:r=t,endColor:o=n,theme:i}=e,s=vn(i,r),u=vn(i,o);return{[hse.variable]:s,[mse.variable]:u,opacity:.7,borderRadius:"2px",borderColor:s,background:u}},vse={baseStyle:gse},yse=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:re("white","gray.700")(e)}}),bse={baseStyle:yse},{defineMultiStyleConfig:xse,definePartsStyle:Am}=Bt(are.keys),Qd=ts("slider-thumb-size"),Jd=ts("slider-track-size"),wse=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...Mb({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},Sse=e=>({...Mb({orientation:e.orientation,horizontal:{h:Jd.reference},vertical:{w:Jd.reference}}),overflow:"hidden",borderRadius:"sm",bg:re("gray.200","whiteAlpha.200")(e),_disabled:{bg:re("gray.300","whiteAlpha.300")(e)}}),Cse=e=>{const{orientation:t}=e;return{...Mb({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:Qd.reference,h:Qd.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},_se=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:re(`${t}.500`,`${t}.200`)(e)}},kse=Am(e=>({container:wse(e),track:Sse(e),thumb:Cse(e),filledTrack:_se(e)})),Ese=Am({container:{[Qd.variable]:"sizes.4",[Jd.variable]:"sizes.1"}}),Lse=Am({container:{[Qd.variable]:"sizes.3.5",[Jd.variable]:"sizes.1"}}),Pse=Am({container:{[Qd.variable]:"sizes.2.5",[Jd.variable]:"sizes.0.5"}}),Ase={lg:Ese,md:Lse,sm:Pse},Tse=xse({baseStyle:kse,sizes:Ase,defaultProps:{size:"md",colorScheme:"blue"}}),xs=Er("spinner-size"),Ise={width:[xs.reference],height:[xs.reference]},Ose={xs:{[xs.variable]:"sizes.3"},sm:{[xs.variable]:"sizes.4"},md:{[xs.variable]:"sizes.6"},lg:{[xs.variable]:"sizes.8"},xl:{[xs.variable]:"sizes.12"}},Mse={baseStyle:Ise,sizes:Ose,defaultProps:{size:"md"}},{defineMultiStyleConfig:Rse,definePartsStyle:lT}=Bt(sre.keys),Nse={fontWeight:"medium"},Dse={opacity:.8,marginBottom:"2"},zse={verticalAlign:"baseline",fontWeight:"semibold"},Fse={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},Bse=lT({container:{},label:Nse,helpText:Dse,number:zse,icon:Fse}),$se={md:lT({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},Vse=Rse({baseStyle:Bse,sizes:$se,defaultProps:{size:"md"}}),{defineMultiStyleConfig:Wse,definePartsStyle:i1}=Bt(lre.keys),hd=Er("switch-track-width"),Ms=Er("switch-track-height"),L2=Er("switch-track-diff"),jse=Wi.subtract(hd,Ms),F4=Er("switch-thumb-x"),Hse=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[hd.reference],height:[Ms.reference],transitionProperty:"common",transitionDuration:"fast",bg:re("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:re(`${t}.500`,`${t}.200`)(e)}}},Use={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[Ms.reference],height:[Ms.reference],_checked:{transform:`translateX(${F4.reference})`}},Gse=i1(e=>({container:{[L2.variable]:jse,[F4.variable]:L2.reference,_rtl:{[F4.variable]:Wi(L2).negate().toString()}},track:Hse(e),thumb:Use})),Zse={sm:i1({container:{[hd.variable]:"1.375rem",[Ms.variable]:"sizes.3"}}),md:i1({container:{[hd.variable]:"1.875rem",[Ms.variable]:"sizes.4"}}),lg:i1({container:{[hd.variable]:"2.875rem",[Ms.variable]:"sizes.6"}})},Kse=Wse({baseStyle:Gse,sizes:Zse,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:qse,definePartsStyle:uu}=Bt(ure.keys),Yse=uu({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),d0={"&[data-is-numeric=true]":{textAlign:"end"}},Xse=uu(e=>{const{colorScheme:t}=e;return{th:{color:re("gray.600","gray.400")(e),borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},td:{borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},caption:{color:re("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Qse=uu(e=>{const{colorScheme:t}=e;return{th:{color:re("gray.600","gray.400")(e),borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},td:{borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},caption:{color:re("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e)},td:{background:re(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Jse={simple:Xse,striped:Qse,unstyled:{}},ele={sm:uu({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:uu({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:uu({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},tle=qse({baseStyle:Yse,variants:Jse,sizes:ele,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:nle,definePartsStyle:di}=Bt(cre.keys),rle=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},ole=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},ile=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},ale={p:4},sle=di(e=>({root:rle(e),tab:ole(e),tablist:ile(e),tabpanel:ale})),lle={sm:di({tab:{py:1,px:4,fontSize:"sm"}}),md:di({tab:{fontSize:"md",py:2,px:4}}),lg:di({tab:{fontSize:"lg",py:3,px:4}})},ule=di(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",o=n==="vertical"?"borderStart":"borderBottom",i=r?"marginStart":"marginBottom";return{tablist:{[o]:"2px solid",borderColor:"inherit"},tab:{[o]:"2px solid",borderColor:"transparent",[i]:"-2px",_selected:{color:re(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:re("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),cle=di(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:re(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:re("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),dle=di(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:re("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:re("#fff","gray.800")(e),color:re(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),fle=di(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:vn(n,`${t}.700`),bg:vn(n,`${t}.100`)}}}}),ple=di(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:re("gray.600","inherit")(e),_selected:{color:re("#fff","gray.800")(e),bg:re(`${t}.600`,`${t}.300`)(e)}}}}),hle=di({}),mle={line:ule,enclosed:cle,"enclosed-colored":dle,"soft-rounded":fle,"solid-rounded":ple,unstyled:hle},gle=nle({baseStyle:sle,sizes:lle,variants:mle,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:vle,definePartsStyle:Rs}=Bt(dre.keys),yle={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},ble={lineHeight:1.2,overflow:"visible"},xle={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},wle=Rs({container:yle,label:ble,closeButton:xle}),Sle={sm:Rs({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:Rs({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:Rs({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},Cle={subtle:Rs(e=>{var t;return{container:(t=dd.variants)==null?void 0:t.subtle(e)}}),solid:Rs(e=>{var t;return{container:(t=dd.variants)==null?void 0:t.solid(e)}}),outline:Rs(e=>{var t;return{container:(t=dd.variants)==null?void 0:t.outline(e)}})},_le=vle({variants:Cle,baseStyle:wle,sizes:Sle,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),t7,kle={...(t7=at.baseStyle)==null?void 0:t7.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},n7,Ele={outline:e=>{var t;return((t=at.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=at.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=at.variants)==null?void 0:t.filled(e).field)??{}},unstyled:((n7=at.variants)==null?void 0:n7.unstyled.field)??{}},r7,o7,i7,a7,Lle={xs:((r7=at.sizes)==null?void 0:r7.xs.field)??{},sm:((o7=at.sizes)==null?void 0:o7.sm.field)??{},md:((i7=at.sizes)==null?void 0:i7.md.field)??{},lg:((a7=at.sizes)==null?void 0:a7.lg.field)??{}},Ple={baseStyle:kle,sizes:Lle,variants:Ele,defaultProps:{size:"md",variant:"outline"}},P2=Er("tooltip-bg"),s7=Er("tooltip-fg"),Ale=Er("popper-arrow-bg"),Tle=e=>{const t=re("gray.700","gray.300")(e),n=re("whiteAlpha.900","gray.900")(e);return{bg:P2.reference,color:s7.reference,[P2.variable]:`colors.${t}`,[s7.variable]:`colors.${n}`,[Ale.variable]:P2.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},Ile={baseStyle:Tle},Ole={Accordion:Xre,Alert:ioe,Avatar:goe,Badge:dd,Breadcrumb:Eoe,Button:Noe,Checkbox:c0,CloseButton:Uoe,Code:qoe,Container:Xoe,Divider:nie,Drawer:pie,Editable:xie,Form:Eie,FormError:Oie,FormLabel:Rie,Heading:zie,Input:at,Kbd:Zie,Link:qie,List:eae,Menu:cae,Modal:wae,NumberInput:Iae,PinInput:Nae,Popover:Zae,Progress:tse,Radio:ase,Select:pse,Skeleton:vse,SkipLink:bse,Slider:Tse,Spinner:Mse,Stat:Vse,Switch:Kse,Table:tle,Tabs:gle,Tag:_le,Textarea:Ple,Tooltip:Ile},Mle={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},Rle=Mle,Nle={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},Dle=Nle,zle={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},Fle=zle,Ble={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},$le=Ble,Vle={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},Wle=Vle,jle={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Hle={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},Ule={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},Gle={property:jle,easing:Hle,duration:Ule},Zle=Gle,Kle={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},qle=Kle,Yle={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},Xle=Yle,Qle={breakpoints:Dle,zIndices:qle,radii:$le,blur:Xle,colors:Fle,...iT,sizes:nT,shadows:Wle,space:tT,borders:Rle,transition:Zle},Jle={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},eue={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function tue(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var nue=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function rue(e){return tue(e)?nue.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var oue="ltr",iue={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},uT={semanticTokens:Jle,direction:oue,...Qle,components:Ole,styles:eue,config:iue};function aue(e,t){const n=Gn(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function B4(e,...t){return sue(e)?e(...t):e}var sue=e=>typeof e=="function";function lue(e,t){const n=e??"bottom",o={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return o?.[t]??n}var uue=(e,t)=>e.find(n=>n.id===t);function l7(e,t){const n=cT(e,t),r=n?e[n].findIndex(o=>o.id===t):-1;return{position:n,index:r}}function cT(e,t){for(const[n,r]of Object.entries(e))if(uue(r,t))return n}function cue(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function due(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,o=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,i=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",s=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:o,right:i,left:s}}var fue={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},ni=pue(fue);function pue(e){let t=e;const n=new Set,r=o=>{t=o(t),n.forEach(i=>i())};return{getState:()=>t,subscribe:o=>(n.add(o),()=>{r(()=>e),n.delete(o)}),removeToast:(o,i)=>{r(s=>({...s,[i]:s[i].filter(u=>u.id!=o)}))},notify:(o,i)=>{const s=hue(o,i),{position:u,id:c}=s;return r(d=>{const h=u.includes("top")?[s,...d[u]??[]]:[...d[u]??[],s];return{...d,[u]:h}}),c},update:(o,i)=>{!o||r(s=>{const u={...s},{position:c,index:d}=l7(u,o);return c&&d!==-1&&(u[c][d]={...u[c][d],...i,message:dT(i)}),u})},closeAll:({positions:o}={})=>{r(i=>(o??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((c,d)=>(c[d]=i[d].map(f=>({...f,requestClose:!0})),c),{...i}))},close:o=>{r(i=>{const s=cT(i,o);return s?{...i,[s]:i[s].map(u=>u.id==o?{...u,requestClose:!0}:u)}:i})},isActive:o=>Boolean(l7(ni.getState(),o).position)}}var u7=0;function hue(e,t={}){u7+=1;const n=t.id??u7,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>ni.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var mue=e=>{const{status:t,variant:n="solid",id:r,title:o,isClosable:i,onClose:s,description:u,icon:c}=e,d=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return X.createElement(XL,{addRole:!1,status:t,variant:n,id:d?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},v(JL,{children:c}),X.createElement(oe.div,{flex:"1",maxWidth:"100%"},o&&v(eP,{id:d?.title,children:o}),u&&v(QL,{id:d?.description,display:"block",children:u})),i&&v(Sm,{size:"sm",onClick:s,position:"absolute",insetEnd:1,top:1}))};function dT(e={}){const{render:t,toastComponent:n=mue}=e;return o=>typeof t=="function"?t(o):v(n,{...o,...e})}function gue(e,t){const n=o=>({...t,...o,position:lue(o?.position??t?.position,e)}),r=o=>{const i=n(o),s=dT(i);return ni.notify(s,i)};return r.update=(o,i)=>{ni.update(o,n(i))},r.promise=(o,i)=>{const s=r({...i.loading,status:"loading",duration:null});o.then(u=>r.update(s,{status:"success",duration:5e3,...B4(i.success,u)})).catch(u=>r.update(s,{status:"error",duration:5e3,...B4(i.error,u)}))},r.closeAll=ni.closeAll,r.close=ni.close,r.isActive=ni.isActive,r}function fT(e){const{theme:t}=uE();return C.exports.useMemo(()=>gue(t.direction,e),[e,t.direction])}var vue={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},pT=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:o,requestClose:i=!1,position:s="bottom",duration:u=5e3,containerStyle:c,motionVariants:d=vue,toastSpacing:f="0.5rem"}=e,[h,m]=C.exports.useState(u),g=CZ();r0(()=>{g||r?.()},[g]),r0(()=>{m(u)},[u]);const b=()=>m(null),w=()=>m(u),k=()=>{g&&o()};C.exports.useEffect(()=>{g&&i&&o()},[g,i,o]),aue(k,h);const S=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:f,...c}),[c,f]),x=C.exports.useMemo(()=>cue(s),[s]);return X.createElement(go.li,{layout:!0,className:"chakra-toast",variants:d,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:w,custom:{position:s},style:x},X.createElement(oe.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:S},B4(n,{id:t,onClose:k})))});pT.displayName="ToastComponent";var yue=e=>{const t=C.exports.useSyncExternalStore(ni.subscribe,ni.getState,ni.getState),{children:n,motionVariants:r,component:o=pT,portalProps:i}=e,u=Object.keys(t).map(c=>{const d=t[c];return v("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${c}`,style:due(c),children:v(na,{initial:!1,children:d.map(f=>v(o,{motionVariants:r,...f},f.id))})},c)});return q(yn,{children:[n,v(Zs,{...i,children:u})]})};function bue(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xue(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var wue={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function Oc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var $4=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},V4=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function Sue(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:o,closeOnEsc:i=!0,onOpen:s,onClose:u,placement:c,id:d,isOpen:f,defaultIsOpen:h,arrowSize:m=10,arrowShadowColor:g,arrowPadding:b,modifiers:w,isDisabled:k,gutter:S,offset:x,direction:_,...L}=e,{isOpen:T,onOpen:R,onClose:N}=FP({isOpen:f,defaultIsOpen:h,onOpen:s,onClose:u}),{referenceRef:F,getPopperProps:G,getArrowInnerProps:W,getArrowProps:J}=zP({enabled:T,placement:c,arrowPadding:b,modifiers:w,gutter:S,offset:x,direction:_}),Ee=C.exports.useId(),me=`tooltip-${d??Ee}`,ce=C.exports.useRef(null),ge=C.exports.useRef(),ne=C.exports.useRef(),j=C.exports.useCallback(()=>{ne.current&&(clearTimeout(ne.current),ne.current=void 0),N()},[N]),Y=Cue(ce,j),K=C.exports.useCallback(()=>{if(!k&&!ge.current){Y();const fe=V4(ce);ge.current=fe.setTimeout(R,t)}},[Y,k,R,t]),O=C.exports.useCallback(()=>{ge.current&&(clearTimeout(ge.current),ge.current=void 0);const fe=V4(ce);ne.current=fe.setTimeout(j,n)},[n,j]),H=C.exports.useCallback(()=>{T&&r&&O()},[r,O,T]),se=C.exports.useCallback(()=>{T&&o&&O()},[o,O,T]),de=C.exports.useCallback(fe=>{T&&fe.key==="Escape"&&O()},[T,O]);w4(()=>$4(ce),"keydown",i?de:void 0),C.exports.useEffect(()=>()=>{clearTimeout(ge.current),clearTimeout(ne.current)},[]),w4(()=>ce.current,"mouseleave",O);const ye=C.exports.useCallback((fe={},_e=null)=>({...fe,ref:Yt(ce,_e,F),onMouseEnter:Oc(fe.onMouseEnter,K),onClick:Oc(fe.onClick,H),onMouseDown:Oc(fe.onMouseDown,se),onFocus:Oc(fe.onFocus,K),onBlur:Oc(fe.onBlur,O),"aria-describedby":T?me:void 0}),[K,O,se,T,me,H,F]),be=C.exports.useCallback((fe={},_e=null)=>G({...fe,style:{...fe.style,[cn.arrowSize.var]:m?`${m}px`:void 0,[cn.arrowShadowColor.var]:g}},_e),[G,m,g]),Pe=C.exports.useCallback((fe={},_e=null)=>{const De={...fe.style,position:"relative",transformOrigin:cn.transformOrigin.varRef};return{ref:_e,...L,...fe,id:me,role:"tooltip",style:De}},[L,me]);return{isOpen:T,show:K,hide:O,getTriggerProps:ye,getTooltipProps:Pe,getTooltipPositionerProps:be,getArrowProps:J,getArrowInnerProps:W}}var A2="chakra-ui:close-tooltip";function Cue(e,t){return C.exports.useEffect(()=>{const n=$4(e);return n.addEventListener(A2,t),()=>n.removeEventListener(A2,t)},[t,e]),()=>{const n=$4(e),r=V4(e);n.dispatchEvent(new r.CustomEvent(A2))}}var _ue=oe(go.div),Rn=ue((e,t)=>{const n=cr("Tooltip",e),r=vt(e),o=nm(),{children:i,label:s,shouldWrapChildren:u,"aria-label":c,hasArrow:d,bg:f,portalProps:h,background:m,backgroundColor:g,bgColor:b,...w}=r,k=m??g??f??b;if(k){n.bg=k;const F=$W(o,"colors",k);n[cn.arrowBg.var]=F}const S=Sue({...w,direction:o.direction}),x=typeof i=="string"||u;let _;if(x)_=X.createElement(oe.span,{tabIndex:0,...S.getTriggerProps()},i);else{const F=C.exports.Children.only(i);_=C.exports.cloneElement(F,S.getTriggerProps(F.props,F.ref))}const L=!!c,T=S.getTooltipProps({},t),R=L?bue(T,["role","id"]):T,N=xue(T,["role","id"]);return s?q(yn,{children:[_,v(na,{children:S.isOpen&&X.createElement(Zs,{...h},X.createElement(oe.div,{...S.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},q(_ue,{variants:wue,...R,initial:"exit",animate:"enter",exit:"exit",__css:n,children:[s,L&&X.createElement(oe.span,{srOnly:!0,...N},c),d&&X.createElement(oe.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},X.createElement(oe.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):v(yn,{children:i})});Rn.displayName="Tooltip";var kue=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:o=!0,theme:i={},environment:s,cssVarsRoot:u}=e,c=v(EP,{environment:s,children:t});return v(DH,{theme:i,cssVarsRoot:u,children:q(Lk,{colorModeManager:n,options:i.config,children:[o?v(pX,{}):v(fX,{}),v(FH,{}),r?v($P,{zIndex:r,children:c}):c]})})};function Eue({children:e,theme:t=uT,toastOptions:n,...r}){return q(kue,{theme:t,...r,children:[e,v(yue,{...n})]})}function Lue(...e){let t=[...e],n=e[e.length-1];return rue(n)&&t.length>1?t=t.slice(0,t.length-1):n=uT,tH(...t.map(r=>o=>Gl(r)?r(o):Pue(o,r)))(n)}function Pue(...e){return Ga({},...e,hT)}function hT(e,t,n,r){if((Gl(e)||Gl(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...o)=>{const i=Gl(e)?e(...o):e,s=Gl(t)?t(...o):t;return Ga({},i,s,hT)}}function Ro(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:zb(e)?2:Fb(e)?3:0}function cu(e,t){return Wu(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Aue(e,t){return Wu(e)===2?e.get(t):e[t]}function mT(e,t,n){var r=Wu(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function gT(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function zb(e){return Nue&&e instanceof Map}function Fb(e){return Due&&e instanceof Set}function ys(e){return e.o||e.t}function Bb(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=yT(e);delete t[zt];for(var n=du(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=Tue),Object.freeze(e),t&&Vs(e,function(n,r){return $b(r,!0)},!0)),e}function Tue(){Ro(2)}function Vb(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function fi(e){var t=U4[e];return t||Ro(18,e),t}function Iue(e,t){U4[e]||(U4[e]=t)}function W4(){return ef}function T2(e,t){t&&(fi("Patches"),e.u=[],e.s=[],e.v=t)}function f0(e){j4(e),e.p.forEach(Oue),e.p=null}function j4(e){e===ef&&(ef=e.l)}function c7(e){return ef={p:[],l:ef,h:e,m:!0,_:0}}function Oue(e){var t=e[zt];t.i===0||t.i===1?t.j():t.O=!0}function I2(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||fi("ES5").S(t,e,r),r?(n[zt].P&&(f0(t),Ro(4)),ea(e)&&(e=p0(t,e),t.l||h0(t,e)),t.u&&fi("Patches").M(n[zt].t,e,t.u,t.s)):e=p0(t,n,[]),f0(t),t.u&&t.v(t.u,t.s),e!==vT?e:void 0}function p0(e,t,n){if(Vb(t))return t;var r=t[zt];if(!r)return Vs(t,function(i,s){return d7(e,r,t,i,s,n)},!0),t;if(r.A!==e)return t;if(!r.P)return h0(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var o=r.i===4||r.i===5?r.o=Bb(r.k):r.o;Vs(r.i===3?new Set(o):o,function(i,s){return d7(e,r,o,i,s,n)}),h0(e,o,!1),n&&e.u&&fi("Patches").R(r,n,e.u,e.s)}return r.o}function d7(e,t,n,r,o,i){if(qa(o)){var s=p0(e,o,i&&t&&t.i!==3&&!cu(t.D,r)?i.concat(r):void 0);if(mT(n,r,s),!qa(s))return;e.m=!1}if(ea(o)&&!Vb(o)){if(!e.h.F&&e._<1)return;p0(e,o),t&&t.A.l||h0(e,o)}}function h0(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&$b(t,n)}function O2(e,t){var n=e[zt];return(n?ys(n):e)[t]}function f7(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function La(e){e.P||(e.P=!0,e.l&&La(e.l))}function M2(e){e.o||(e.o=Bb(e.t))}function H4(e,t,n){var r=zb(t)?fi("MapSet").N(t,n):Fb(t)?fi("MapSet").T(t,n):e.g?function(o,i){var s=Array.isArray(o),u={i:s?1:0,A:i?i.A:W4(),P:!1,I:!1,D:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=u,d=tf;s&&(c=[u],d=jc);var f=Proxy.revocable(c,d),h=f.revoke,m=f.proxy;return u.k=m,u.j=h,m}(t,n):fi("ES5").J(t,n);return(n?n.A:W4()).p.push(r),r}function Mue(e){return qa(e)||Ro(22,e),function t(n){if(!ea(n))return n;var r,o=n[zt],i=Wu(n);if(o){if(!o.P&&(o.i<4||!fi("ES5").K(o)))return o.t;o.I=!0,r=p7(n,i),o.I=!1}else r=p7(n,i);return Vs(r,function(s,u){o&&Aue(o.t,s)===u||mT(r,s,t(u))}),i===3?new Set(r):r}(e)}function p7(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return Bb(e)}function Rue(){function e(i,s){var u=o[i];return u?u.enumerable=s:o[i]=u={configurable:!0,enumerable:s,get:function(){var c=this[zt];return tf.get(c,i)},set:function(c){var d=this[zt];tf.set(d,i,c)}},u}function t(i){for(var s=i.length-1;s>=0;s--){var u=i[s][zt];if(!u.P)switch(u.i){case 5:r(u)&&La(u);break;case 4:n(u)&&La(u)}}}function n(i){for(var s=i.t,u=i.k,c=du(u),d=c.length-1;d>=0;d--){var f=c[d];if(f!==zt){var h=s[f];if(h===void 0&&!cu(s,f))return!0;var m=u[f],g=m&&m[zt];if(g?g.t!==h:!gT(m,h))return!0}}var b=!!s[zt];return c.length!==du(s).length+(b?0:1)}function r(i){var s=i.k;if(s.length!==i.t.length)return!0;var u=Object.getOwnPropertyDescriptor(s,s.length-1);if(u&&!u.get)return!0;for(var c=0;c1?S-1:0),_=1;_1?f-1:0),m=1;m=0;o--){var i=r[o];if(i.path.length===0&&i.op==="replace"){n=i.value;break}}o>-1&&(r=r.slice(o+1));var s=fi("Patches").$;return qa(n)?s(n,r):this.produce(n,function(u){return s(u,r)})},e}(),Hr=new Fue,bT=Hr.produce;Hr.produceWithPatches.bind(Hr);Hr.setAutoFreeze.bind(Hr);Hr.setUseProxies.bind(Hr);Hr.applyPatches.bind(Hr);Hr.createDraft.bind(Hr);Hr.finishDraft.bind(Hr);function v7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function y7(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(Hn(1));return n(jb)(e,t)}if(typeof e!="function")throw new Error(Hn(2));var o=e,i=t,s=[],u=s,c=!1;function d(){u===s&&(u=s.slice())}function f(){if(c)throw new Error(Hn(3));return i}function h(w){if(typeof w!="function")throw new Error(Hn(4));if(c)throw new Error(Hn(5));var k=!0;return d(),u.push(w),function(){if(!!k){if(c)throw new Error(Hn(6));k=!1,d();var x=u.indexOf(w);u.splice(x,1),s=null}}}function m(w){if(!Bue(w))throw new Error(Hn(7));if(typeof w.type>"u")throw new Error(Hn(8));if(c)throw new Error(Hn(9));try{c=!0,i=o(i,w)}finally{c=!1}for(var k=s=u,S=0;S"u")throw new Error(Hn(12));if(typeof n(void 0,{type:m0.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Hn(13))})}function xT(e){for(var t=Object.keys(e),n={},r=0;r"u")throw d&&d.type,new Error(Hn(14));h[g]=k,f=f||k!==w}return f=f||i.length!==Object.keys(c).length,f?h:c}}function g0(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var d=n[c];return c>0&&(n.splice(c,1),n.unshift(d)),d.value}return v0}function o(u,c){r(u)===v0&&(n.unshift({key:u,value:c}),n.length>e&&n.pop())}function i(){return n}function s(){n=[]}return{get:r,put:o,getEntries:i,clear:s}}var Hue=function(t,n){return t===n};function Uue(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var o=n.length,i=0;i1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?vce:gce;kT.useSyncExternalStore=Pu.useSyncExternalStore!==void 0?Pu.useSyncExternalStore:yce;(function(e){e.exports=kT})(_T);var ET={exports:{}},LT={};/** + * @license React + * use-sync-external-store-shim/with-selector.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Tm=C.exports,bce=_T.exports;function xce(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var wce=typeof Object.is=="function"?Object.is:xce,Sce=bce.useSyncExternalStore,Cce=Tm.useRef,_ce=Tm.useEffect,kce=Tm.useMemo,Ece=Tm.useDebugValue;LT.useSyncExternalStoreWithSelector=function(e,t,n,r,o){var i=Cce(null);if(i.current===null){var s={hasValue:!1,value:null};i.current=s}else s=i.current;i=kce(function(){function c(g){if(!d){if(d=!0,f=g,g=r(g),o!==void 0&&s.hasValue){var b=s.value;if(o(b,g))return h=b}return h=g}if(b=h,wce(f,g))return b;var w=r(g);return o!==void 0&&o(b,w)?b:(f=g,h=w)}var d=!1,f,h,m=n===void 0?null:n;return[function(){return c(t())},m===null?void 0:function(){return c(m())}]},[t,n,r,o]);var u=Sce(e,i[0],i[1]);return _ce(function(){s.hasValue=!0,s.value=u},[u]),Ece(u),u};(function(e){e.exports=LT})(ET);function Lce(e){e()}let PT=Lce;const Pce=e=>PT=e,Ace=()=>PT,Ya=X.createContext(null);function AT(){return C.exports.useContext(Ya)}const Tce=()=>{throw new Error("uSES not initialized!")};let TT=Tce;const Ice=e=>{TT=e},Oce=(e,t)=>e===t;function Mce(e=Ya){const t=e===Ya?AT:()=>C.exports.useContext(e);return function(r,o=Oce){const{store:i,subscription:s,getServerState:u}=t(),c=TT(s.addNestedSub,i.getState,u||i.getState,r,o);return C.exports.useDebugValue(c),c}}const Rce=Mce();var Nce={exports:{}},bt={};/** + * @license React + * react-is.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Gb=Symbol.for("react.element"),Zb=Symbol.for("react.portal"),Im=Symbol.for("react.fragment"),Om=Symbol.for("react.strict_mode"),Mm=Symbol.for("react.profiler"),Rm=Symbol.for("react.provider"),Nm=Symbol.for("react.context"),Dce=Symbol.for("react.server_context"),Dm=Symbol.for("react.forward_ref"),zm=Symbol.for("react.suspense"),Fm=Symbol.for("react.suspense_list"),Bm=Symbol.for("react.memo"),$m=Symbol.for("react.lazy"),zce=Symbol.for("react.offscreen"),IT;IT=Symbol.for("react.module.reference");function yo(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case Gb:switch(e=e.type,e){case Im:case Mm:case Om:case zm:case Fm:return e;default:switch(e=e&&e.$$typeof,e){case Dce:case Nm:case Dm:case $m:case Bm:case Rm:return e;default:return t}}case Zb:return t}}}bt.ContextConsumer=Nm;bt.ContextProvider=Rm;bt.Element=Gb;bt.ForwardRef=Dm;bt.Fragment=Im;bt.Lazy=$m;bt.Memo=Bm;bt.Portal=Zb;bt.Profiler=Mm;bt.StrictMode=Om;bt.Suspense=zm;bt.SuspenseList=Fm;bt.isAsyncMode=function(){return!1};bt.isConcurrentMode=function(){return!1};bt.isContextConsumer=function(e){return yo(e)===Nm};bt.isContextProvider=function(e){return yo(e)===Rm};bt.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===Gb};bt.isForwardRef=function(e){return yo(e)===Dm};bt.isFragment=function(e){return yo(e)===Im};bt.isLazy=function(e){return yo(e)===$m};bt.isMemo=function(e){return yo(e)===Bm};bt.isPortal=function(e){return yo(e)===Zb};bt.isProfiler=function(e){return yo(e)===Mm};bt.isStrictMode=function(e){return yo(e)===Om};bt.isSuspense=function(e){return yo(e)===zm};bt.isSuspenseList=function(e){return yo(e)===Fm};bt.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===Im||e===Mm||e===Om||e===zm||e===Fm||e===zce||typeof e=="object"&&e!==null&&(e.$$typeof===$m||e.$$typeof===Bm||e.$$typeof===Rm||e.$$typeof===Nm||e.$$typeof===Dm||e.$$typeof===IT||e.getModuleId!==void 0)};bt.typeOf=yo;(function(e){e.exports=bt})(Nce);function Fce(){const e=Ace();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],o=t;for(;o;)r.push(o),o=o.next;return r},subscribe(r){let o=!0,i=n={callback:r,next:null,prev:n};return i.prev?i.prev.next=i:t=i,function(){!o||t===null||(o=!1,i.next?i.next.prev=i.prev:n=i.prev,i.prev?i.prev.next=i.next:t=i.next)}}}}const C7={notify(){},get:()=>[]};function Bce(e,t){let n,r=C7;function o(h){return c(),r.subscribe(h)}function i(){r.notify()}function s(){f.onStateChange&&f.onStateChange()}function u(){return Boolean(n)}function c(){n||(n=t?t.addNestedSub(s):e.subscribe(s),r=Fce())}function d(){n&&(n(),n=void 0,r.clear(),r=C7)}const f={addNestedSub:o,notifyNestedSubs:i,handleChangeWrapper:s,isSubscribed:u,trySubscribe:c,tryUnsubscribe:d,getListeners:()=>r};return f}const $ce=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",Vce=$ce?C.exports.useLayoutEffect:C.exports.useEffect;function Wce({store:e,context:t,children:n,serverState:r}){const o=C.exports.useMemo(()=>{const u=Bce(e);return{store:e,subscription:u,getServerState:r?()=>r:void 0}},[e,r]),i=C.exports.useMemo(()=>e.getState(),[e]);return Vce(()=>{const{subscription:u}=o;return u.onStateChange=u.notifyNestedSubs,u.trySubscribe(),i!==e.getState()&&u.notifyNestedSubs(),()=>{u.tryUnsubscribe(),u.onStateChange=void 0}},[o,i]),v((t||Ya).Provider,{value:o,children:n})}function OT(e=Ya){const t=e===Ya?AT:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const jce=OT();function Hce(e=Ya){const t=e===Ya?jce:OT(e);return function(){return t().dispatch}}const Uce=Hce();Ice(ET.exports.useSyncExternalStoreWithSelector);Pce(Iu.exports.unstable_batchedUpdates);var Kb="persist:",MT="persist/FLUSH",qb="persist/REHYDRATE",RT="persist/PAUSE",NT="persist/PERSIST",DT="persist/PURGE",zT="persist/REGISTER",Gce=-1;function a1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?a1=function(n){return typeof n}:a1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},a1(e)}function _7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Zce(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function ode(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var ide=5e3;function FT(e,t){var n=e.version!==void 0?e.version:Gce;e.debug;var r=e.stateReconciler===void 0?qce:e.stateReconciler,o=e.getStoredState||Qce,i=e.timeout!==void 0?e.timeout:ide,s=null,u=!1,c=!0,d=function(h){return h._persist.rehydrated&&s&&!c&&s.update(h),h};return function(f,h){var m=f||{},g=m._persist,b=rde(m,["_persist"]),w=b;if(h.type===NT){var k=!1,S=function(F,G){k||(h.rehydrate(e.key,F,G),k=!0)};if(i&&setTimeout(function(){!k&&S(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},i),c=!1,s||(s=Yce(e)),g)return zi({},t(w,h),{_persist:g});if(typeof h.rehydrate!="function"||typeof h.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return h.register(e.key),o(e).then(function(N){var F=e.migrate||function(G,W){return Promise.resolve(G)};F(N,n).then(function(G){S(G)},function(G){S(void 0,G)})},function(N){S(void 0,N)}),zi({},t(w,h),{_persist:{version:n,rehydrated:!1}})}else{if(h.type===DT)return u=!0,h.result(ede(e)),zi({},t(w,h),{_persist:g});if(h.type===MT)return h.result(s&&s.flush()),zi({},t(w,h),{_persist:g});if(h.type===RT)c=!0;else if(h.type===qb){if(u)return zi({},w,{_persist:zi({},g,{rehydrated:!0})});if(h.key===e.key){var x=t(w,h),_=h.payload,L=r!==!1&&_!==void 0?r(_,f,x,e):x,T=zi({},L,{_persist:zi({},g,{rehydrated:!0})});return d(T)}}}if(!g)return t(f,h);var R=t(w,h);return R===w?f:d(zi({},R,{_persist:g}))}}function E7(e){return lde(e)||sde(e)||ade()}function ade(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function sde(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function lde(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&arguments[0]!==void 0?arguments[0]:BT,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case zT:return Z4({},t,{registry:[].concat(E7(t.registry),[n.key])});case qb:var r=t.registry.indexOf(n.key),o=E7(t.registry);return o.splice(r,1),Z4({},t,{registry:o,bootstrapped:o.length===0});default:return t}};function dde(e,t,n){var r=n||!1,o=jb(cde,BT,t&&t.enhancer?t.enhancer:void 0),i=function(d){o.dispatch({type:zT,key:d})},s=function(d,f,h){var m={type:qb,payload:f,err:h,key:d};e.dispatch(m),o.dispatch(m),r&&u.getState().bootstrapped&&(r(),r=!1)},u=Z4({},o,{purge:function(){var d=[];return e.dispatch({type:DT,result:function(h){d.push(h)}}),Promise.all(d)},flush:function(){var d=[];return e.dispatch({type:MT,result:function(h){d.push(h)}}),Promise.all(d)},pause:function(){e.dispatch({type:RT})},persist:function(){e.dispatch({type:NT,register:i,rehydrate:s})}});return t&&t.manualPersist||u.persist(),u}var Yb={},Xb={};Xb.__esModule=!0;Xb.default=hde;function s1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?s1=function(n){return typeof n}:s1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},s1(e)}function D2(){}var fde={getItem:D2,setItem:D2,removeItem:D2};function pde(e){if((typeof self>"u"?"undefined":s1(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function hde(e){var t="".concat(e,"Storage");return pde(t)?self[t]:fde}Yb.__esModule=!0;Yb.default=vde;var mde=gde(Xb);function gde(e){return e&&e.__esModule?e:{default:e}}function vde(e){var t=(0,mde.default)(e);return{getItem:function(r){return new Promise(function(o,i){o(t.getItem(r))})},setItem:function(r,o){return new Promise(function(i,s){i(t.setItem(r,o))})},removeItem:function(r){return new Promise(function(o,i){o(t.removeItem(r))})}}}var Qb=void 0,yde=bde(Yb);function bde(e){return e&&e.__esModule?e:{default:e}}var xde=(0,yde.default)("local");Qb=xde;const K4=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),wde=e=>{const r=e.split(",").map(o=>o.split(":")).map(o=>({seed:Number(o[0]),weight:Number(o[1])}));return Jb(r)?r:!1},Jb=e=>Boolean(typeof e=="string"?wde(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,o=!isNaN(parseInt(n.toString(),10)),i=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(o&&i)})),q4=e=>e.reduce((t,n,r,o)=>{const{seed:i,weight:s}=n;return t+=`${i}:${s}`,r!==o.length-1&&(t+=","),t},""),Sde=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]),$T={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,hiresFix:!1,shouldUseInitImage:!1,img2imgStrength:.75,initialImagePath:null,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunGFPGAN:!1,gfpganStrength:.8,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,shouldShowGallery:!1},Cde=$T,VT=Hb({name:"options",initialState:Cde,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=K4(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setGfpganStrength:(e,t)=>{e.gfpganStrength=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setShouldUseInitImage:(e,t)=>{e.shouldUseInitImage=t.payload},setInitialImagePath:(e,t)=>{const n=t.payload;e.shouldUseInitImage=!!n,e.initialImagePath=n},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setHiresFix:(e,t)=>{e.hiresFix=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,o={...e,[n]:r};return n==="seed"&&(o.shouldRandomizeSeed=!1),n==="initialImagePath"&&r===""&&(o.shouldUseInitImage=!1),o},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:o,seed:i,variations:s,steps:u,cfg_scale:c,threshold:d,perlin:f,seamless:h,hires_fix:m,width:g,height:b,strength:w,fit:k,init_image_path:S,mask_image_path:x}=t.payload.image;n==="img2img"?(S&&(e.initialImagePath=S),x&&(e.maskPath=x),w&&(e.img2imgStrength=w),typeof k=="boolean"&&(e.shouldFitToWidthHeight=k),e.shouldUseInitImage=!0):e.shouldUseInitImage=!1,s&&s.length>0?(e.seedWeights=q4(s),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),o&&(e.prompt=K4(o)),r&&(e.sampler=r),u&&(e.steps=u),c&&(e.cfgScale=c),d&&(e.threshold=d),typeof d>"u"&&(e.threshold=0),f&&(e.perlin=f),typeof f>"u"&&(e.perlin=0),typeof h=="boolean"&&(e.seamless=h),typeof m=="boolean"&&(e.hiresFix=m),g&&(e.width=g),b&&(e.height=b)},resetOptionsState:e=>({...e,...$T}),setShouldRunGFPGAN:(e,t)=>{e.shouldRunGFPGAN=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{e.activeTab=t.payload},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload}}}),{setPrompt:WT,setIterations:_de,setSteps:jT,setCfgScale:HT,setThreshold:kde,setPerlin:Ede,setHeight:UT,setWidth:GT,setSampler:ZT,setSeed:Of,setSeamless:KT,setHiresFix:qT,setImg2imgStrength:YT,setGfpganStrength:Y4,setUpscalingLevel:X4,setUpscalingStrength:Q4,setShouldUseInitImage:P0e,setInitialImagePath:Au,setMaskPath:J4,resetSeed:A0e,resetOptionsState:T0e,setShouldFitToWidthHeight:XT,setParameter:I0e,setShouldGenerateVariations:Lde,setSeedWeights:QT,setVariationAmount:Pde,setAllParameters:JT,setShouldRunGFPGAN:Ade,setShouldRunESRGAN:Tde,setShouldRandomizeSeed:Ide,setShowAdvancedOptions:Ode,setActiveTab:Bi,setShouldShowImageDetails:Mde,setShouldShowGallery:P7}=VT.actions,Rde=VT.reducer;var Kn={exports:{}};/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */(function(e,t){(function(){var n,r="4.17.21",o=200,i="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",s="Expected a function",u="Invalid `variable` option passed into `_.template`",c="__lodash_hash_undefined__",d=500,f="__lodash_placeholder__",h=1,m=2,g=4,b=1,w=2,k=1,S=2,x=4,_=8,L=16,T=32,R=64,N=128,F=256,G=512,W=30,J="...",Ee=800,he=16,me=1,ce=2,ge=3,ne=1/0,j=9007199254740991,Y=17976931348623157e292,K=0/0,O=4294967295,H=O-1,se=O>>>1,de=[["ary",N],["bind",k],["bindKey",S],["curry",_],["curryRight",L],["flip",G],["partial",T],["partialRight",R],["rearg",F]],ye="[object Arguments]",be="[object Array]",Pe="[object AsyncFunction]",fe="[object Boolean]",_e="[object Date]",De="[object DOMException]",st="[object Error]",It="[object Function]",bn="[object GeneratorFunction]",xe="[object Map]",Ie="[object Number]",tt="[object Null]",ze="[object Object]",$t="[object Promise]",xn="[object Proxy]",lt="[object RegExp]",Ct="[object Set]",Jt="[object String]",Gt="[object Symbol]",pe="[object Undefined]",Le="[object WeakMap]",ft="[object WeakSet]",ut="[object ArrayBuffer]",ie="[object DataView]",Ge="[object Float32Array]",Et="[object Float64Array]",En="[object Int8Array]",Fn="[object Int16Array]",Lr="[object Int32Array]",$o="[object Uint8Array]",xi="[object Uint8ClampedArray]",Yn="[object Uint16Array]",qr="[object Uint32Array]",os=/\b__p \+= '';/g,Qs=/\b(__p \+=) '' \+/g,Hm=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Uu=/&(?:amp|lt|gt|quot|#39);/g,ra=/[&<>"']/g,Um=RegExp(Uu.source),wi=RegExp(ra.source),Gm=/<%-([\s\S]+?)%>/g,Zm=/<%([\s\S]+?)%>/g,Rf=/<%=([\s\S]+?)%>/g,Km=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,qm=/^\w*$/,bo=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Gu=/[\\^$.*+?()[\]{}|]/g,Ym=RegExp(Gu.source),Zu=/^\s+/,Xm=/\s/,Qm=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,oa=/\{\n\/\* \[wrapped with (.+)\] \*/,Jm=/,? & /,eg=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,tg=/[()=,{}\[\]\/\s]/,ng=/\\(\\)?/g,rg=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Si=/\w*$/,og=/^[-+]0x[0-9a-f]+$/i,ig=/^0b[01]+$/i,ag=/^\[object .+?Constructor\]$/,sg=/^0o[0-7]+$/i,lg=/^(?:0|[1-9]\d*)$/,ug=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ia=/($^)/,cg=/['\n\r\u2028\u2029\\]/g,Ci="\\ud800-\\udfff",Ku="\\u0300-\\u036f",dg="\\ufe20-\\ufe2f",Js="\\u20d0-\\u20ff",qu=Ku+dg+Js,Nf="\\u2700-\\u27bf",Df="a-z\\xdf-\\xf6\\xf8-\\xff",fg="\\xac\\xb1\\xd7\\xf7",zf="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",pg="\\u2000-\\u206f",hg=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ff="A-Z\\xc0-\\xd6\\xd8-\\xde",Bf="\\ufe0e\\ufe0f",$f=fg+zf+pg+hg,Yu="['\u2019]",mg="["+Ci+"]",Vf="["+$f+"]",el="["+qu+"]",Wf="\\d+",tl="["+Nf+"]",nl="["+Df+"]",jf="[^"+Ci+$f+Wf+Nf+Df+Ff+"]",Xu="\\ud83c[\\udffb-\\udfff]",Hf="(?:"+el+"|"+Xu+")",Uf="[^"+Ci+"]",Qu="(?:\\ud83c[\\udde6-\\uddff]){2}",Ju="[\\ud800-\\udbff][\\udc00-\\udfff]",_i="["+Ff+"]",Gf="\\u200d",Zf="(?:"+nl+"|"+jf+")",gg="(?:"+_i+"|"+jf+")",rl="(?:"+Yu+"(?:d|ll|m|re|s|t|ve))?",Kf="(?:"+Yu+"(?:D|LL|M|RE|S|T|VE))?",qf=Hf+"?",Yf="["+Bf+"]?",ol="(?:"+Gf+"(?:"+[Uf,Qu,Ju].join("|")+")"+Yf+qf+")*",ec="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",tc="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",il=Yf+qf+ol,vg="(?:"+[tl,Qu,Ju].join("|")+")"+il,Xf="(?:"+[Uf+el+"?",el,Qu,Ju,mg].join("|")+")",nc=RegExp(Yu,"g"),Qf=RegExp(el,"g"),xo=RegExp(Xu+"(?="+Xu+")|"+Xf+il,"g"),is=RegExp([_i+"?"+nl+"+"+rl+"(?="+[Vf,_i,"$"].join("|")+")",gg+"+"+Kf+"(?="+[Vf,_i+Zf,"$"].join("|")+")",_i+"?"+Zf+"+"+rl,_i+"+"+Kf,tc,ec,Wf,vg].join("|"),"g"),yg=RegExp("["+Gf+Ci+qu+Bf+"]"),Jf=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,bg=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],ep=-1,_t={};_t[Ge]=_t[Et]=_t[En]=_t[Fn]=_t[Lr]=_t[$o]=_t[xi]=_t[Yn]=_t[qr]=!0,_t[ye]=_t[be]=_t[ut]=_t[fe]=_t[ie]=_t[_e]=_t[st]=_t[It]=_t[xe]=_t[Ie]=_t[ze]=_t[lt]=_t[Ct]=_t[Jt]=_t[Le]=!1;var xt={};xt[ye]=xt[be]=xt[ut]=xt[ie]=xt[fe]=xt[_e]=xt[Ge]=xt[Et]=xt[En]=xt[Fn]=xt[Lr]=xt[xe]=xt[Ie]=xt[ze]=xt[lt]=xt[Ct]=xt[Jt]=xt[Gt]=xt[$o]=xt[xi]=xt[Yn]=xt[qr]=!0,xt[st]=xt[It]=xt[Le]=!1;var tp={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},xg={"&":"&","<":"<",">":">",'"':""","'":"'"},I={"&":"&","<":"<",">":">",""":'"',"'":"'"},z={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},U=parseFloat,we=parseInt,Ze=typeof Vi=="object"&&Vi&&Vi.Object===Object&&Vi,pt=typeof self=="object"&&self&&self.Object===Object&&self,$e=Ze||pt||Function("return this")(),He=t&&!t.nodeType&&t,nt=He&&!0&&e&&!e.nodeType&&e,Xn=nt&&nt.exports===He,Ln=Xn&&Ze.process,wn=function(){try{var $=nt&&nt.require&&nt.require("util").types;return $||Ln&&Ln.binding&&Ln.binding("util")}catch{}}(),al=wn&&wn.isArrayBuffer,sl=wn&&wn.isDate,rc=wn&&wn.isMap,c6=wn&&wn.isRegExp,d6=wn&&wn.isSet,f6=wn&&wn.isTypedArray;function Pr($,Q,Z){switch(Z.length){case 0:return $.call(Q);case 1:return $.call(Q,Z[0]);case 2:return $.call(Q,Z[0],Z[1]);case 3:return $.call(Q,Z[0],Z[1],Z[2])}return $.apply(Q,Z)}function mO($,Q,Z,Se){for(var Fe=-1,rt=$==null?0:$.length;++Fe-1}function wg($,Q,Z){for(var Se=-1,Fe=$==null?0:$.length;++Se-1;);return Z}function x6($,Q){for(var Z=$.length;Z--&&ll(Q,$[Z],0)>-1;);return Z}function _O($,Q){for(var Z=$.length,Se=0;Z--;)$[Z]===Q&&++Se;return Se}var kO=kg(tp),EO=kg(xg);function LO($){return"\\"+z[$]}function PO($,Q){return $==null?n:$[Q]}function ul($){return yg.test($)}function AO($){return Jf.test($)}function TO($){for(var Q,Z=[];!(Q=$.next()).done;)Z.push(Q.value);return Z}function Ag($){var Q=-1,Z=Array($.size);return $.forEach(function(Se,Fe){Z[++Q]=[Fe,Se]}),Z}function w6($,Q){return function(Z){return $(Q(Z))}}function la($,Q){for(var Z=-1,Se=$.length,Fe=0,rt=[];++Z-1}function vM(a,l){var p=this.__data__,y=bp(p,a);return y<0?(++this.size,p.push([a,l])):p[y][1]=l,this}ki.prototype.clear=pM,ki.prototype.delete=hM,ki.prototype.get=mM,ki.prototype.has=gM,ki.prototype.set=vM;function Ei(a){var l=-1,p=a==null?0:a.length;for(this.clear();++l=l?a:l)),a}function Jr(a,l,p,y,E,A){var M,D=l&h,V=l&m,ee=l&g;if(p&&(M=E?p(a,y,E,A):p(a)),M!==n)return M;if(!Vt(a))return a;var te=Be(a);if(te){if(M=wR(a),!D)return fr(a,M)}else{var ae=$n(a),ve=ae==It||ae==bn;if(ha(a))return r9(a,D);if(ae==ze||ae==ye||ve&&!E){if(M=V||ve?{}:S9(a),!D)return V?cR(a,MM(M,a)):uR(a,M6(M,a))}else{if(!xt[ae])return E?a:{};M=SR(a,ae,D)}}A||(A=new So);var Ae=A.get(a);if(Ae)return Ae;A.set(a,M),X9(a)?a.forEach(function(Re){M.add(Jr(Re,l,p,Re,a,A))}):q9(a)&&a.forEach(function(Re,Ke){M.set(Ke,Jr(Re,l,p,Ke,a,A))});var Me=ee?V?tv:ev:V?hr:Sn,We=te?n:Me(a);return Yr(We||a,function(Re,Ke){We&&(Ke=Re,Re=a[Ke]),cc(M,Ke,Jr(Re,l,p,Ke,a,A))}),M}function RM(a){var l=Sn(a);return function(p){return R6(p,a,l)}}function R6(a,l,p){var y=p.length;if(a==null)return!y;for(a=kt(a);y--;){var E=p[y],A=l[E],M=a[E];if(M===n&&!(E in a)||!A(M))return!1}return!0}function N6(a,l,p){if(typeof a!="function")throw new Xr(s);return vc(function(){a.apply(n,p)},l)}function dc(a,l,p,y){var E=-1,A=np,M=!0,D=a.length,V=[],ee=l.length;if(!D)return V;p&&(l=Nt(l,Ar(p))),y?(A=wg,M=!1):l.length>=o&&(A=oc,M=!1,l=new ls(l));e:for(;++EE?0:E+p),y=y===n||y>E?E:Ve(y),y<0&&(y+=E),y=p>y?0:J9(y);p0&&p(D)?l>1?Pn(D,l-1,p,y,E):sa(E,D):y||(E[E.length]=D)}return E}var Dg=u9(),F6=u9(!0);function Vo(a,l){return a&&Dg(a,l,Sn)}function zg(a,l){return a&&F6(a,l,Sn)}function wp(a,l){return aa(l,function(p){return Ii(a[p])})}function cs(a,l){l=fa(l,a);for(var p=0,y=l.length;a!=null&&pl}function zM(a,l){return a!=null&&ht.call(a,l)}function FM(a,l){return a!=null&&l in kt(a)}function BM(a,l,p){return a>=Bn(l,p)&&a=120&&te.length>=120)?new ls(M&&te):n}te=a[0];var ae=-1,ve=D[0];e:for(;++ae-1;)D!==a&&fp.call(D,V,1),fp.call(a,V,1);return a}function q6(a,l){for(var p=a?l.length:0,y=p-1;p--;){var E=l[p];if(p==y||E!==A){var A=E;Ti(E)?fp.call(a,E,1):Zg(a,E)}}return a}function Hg(a,l){return a+mp(A6()*(l-a+1))}function QM(a,l,p,y){for(var E=-1,A=hn(hp((l-a)/(p||1)),0),M=Z(A);A--;)M[y?A:++E]=a,a+=p;return M}function Ug(a,l){var p="";if(!a||l<1||l>j)return p;do l%2&&(p+=a),l=mp(l/2),l&&(a+=a);while(l);return p}function Ue(a,l){return lv(k9(a,l,mr),a+"")}function JM(a){return O6(xl(a))}function eR(a,l){var p=xl(a);return Op(p,us(l,0,p.length))}function hc(a,l,p,y){if(!Vt(a))return a;l=fa(l,a);for(var E=-1,A=l.length,M=A-1,D=a;D!=null&&++EE?0:E+l),p=p>E?E:p,p<0&&(p+=E),E=l>p?0:p-l>>>0,l>>>=0;for(var A=Z(E);++y>>1,M=a[A];M!==null&&!Ir(M)&&(p?M<=l:M=o){var ee=l?null:hR(a);if(ee)return op(ee);M=!1,E=oc,V=new ls}else V=l?[]:D;e:for(;++y=y?a:eo(a,l,p)}var n9=UO||function(a){return $e.clearTimeout(a)};function r9(a,l){if(l)return a.slice();var p=a.length,y=_6?_6(p):new a.constructor(p);return a.copy(y),y}function Xg(a){var l=new a.constructor(a.byteLength);return new cp(l).set(new cp(a)),l}function iR(a,l){var p=l?Xg(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.byteLength)}function aR(a){var l=new a.constructor(a.source,Si.exec(a));return l.lastIndex=a.lastIndex,l}function sR(a){return uc?kt(uc.call(a)):{}}function o9(a,l){var p=l?Xg(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.length)}function i9(a,l){if(a!==l){var p=a!==n,y=a===null,E=a===a,A=Ir(a),M=l!==n,D=l===null,V=l===l,ee=Ir(l);if(!D&&!ee&&!A&&a>l||A&&M&&V&&!D&&!ee||y&&M&&V||!p&&V||!E)return 1;if(!y&&!A&&!ee&&a=D)return V;var ee=p[y];return V*(ee=="desc"?-1:1)}}return a.index-l.index}function a9(a,l,p,y){for(var E=-1,A=a.length,M=p.length,D=-1,V=l.length,ee=hn(A-M,0),te=Z(V+ee),ae=!y;++D1?p[E-1]:n,M=E>2?p[2]:n;for(A=a.length>3&&typeof A=="function"?(E--,A):n,M&&Jn(p[0],p[1],M)&&(A=E<3?n:A,E=1),l=kt(l);++y-1?E[A?l[M]:M]:n}}function f9(a){return Ai(function(l){var p=l.length,y=p,E=Qr.prototype.thru;for(a&&l.reverse();y--;){var A=l[y];if(typeof A!="function")throw new Xr(s);if(E&&!M&&Tp(A)=="wrapper")var M=new Qr([],!0)}for(y=M?y:p;++y1&&Xe.reverse(),te&&VD))return!1;var ee=A.get(a),te=A.get(l);if(ee&&te)return ee==l&&te==a;var ae=-1,ve=!0,Ae=p&w?new ls:n;for(A.set(a,l),A.set(l,a);++ae1?"& ":"")+l[y],l=l.join(p>2?", ":" "),a.replace(Qm,`{ +/* [wrapped with `+l+`] */ +`)}function _R(a){return Be(a)||ps(a)||!!(L6&&a&&a[L6])}function Ti(a,l){var p=typeof a;return l=l??j,!!l&&(p=="number"||p!="symbol"&&lg.test(a))&&a>-1&&a%1==0&&a0){if(++l>=Ee)return arguments[0]}else l=0;return a.apply(n,arguments)}}function Op(a,l){var p=-1,y=a.length,E=y-1;for(l=l===n?y:l;++p1?a[l-1]:n;return p=typeof p=="function"?(a.pop(),p):n,z9(a,p)});function F9(a){var l=P(a);return l.__chain__=!0,l}function NN(a,l){return l(a),a}function Mp(a,l){return l(a)}var DN=Ai(function(a){var l=a.length,p=l?a[0]:0,y=this.__wrapped__,E=function(A){return Ng(A,a)};return l>1||this.__actions__.length||!(y instanceof qe)||!Ti(p)?this.thru(E):(y=y.slice(p,+p+(l?1:0)),y.__actions__.push({func:Mp,args:[E],thisArg:n}),new Qr(y,this.__chain__).thru(function(A){return l&&!A.length&&A.push(n),A}))});function zN(){return F9(this)}function FN(){return new Qr(this.value(),this.__chain__)}function BN(){this.__values__===n&&(this.__values__=Q9(this.value()));var a=this.__index__>=this.__values__.length,l=a?n:this.__values__[this.__index__++];return{done:a,value:l}}function $N(){return this}function VN(a){for(var l,p=this;p instanceof yp;){var y=I9(p);y.__index__=0,y.__values__=n,l?E.__wrapped__=y:l=y;var E=y;p=p.__wrapped__}return E.__wrapped__=a,l}function WN(){var a=this.__wrapped__;if(a instanceof qe){var l=a;return this.__actions__.length&&(l=new qe(this)),l=l.reverse(),l.__actions__.push({func:Mp,args:[uv],thisArg:n}),new Qr(l,this.__chain__)}return this.thru(uv)}function jN(){return e9(this.__wrapped__,this.__actions__)}var HN=kp(function(a,l,p){ht.call(a,p)?++a[p]:Li(a,p,1)});function UN(a,l,p){var y=Be(a)?p6:NM;return p&&Jn(a,l,p)&&(l=n),y(a,Oe(l,3))}function GN(a,l){var p=Be(a)?aa:z6;return p(a,Oe(l,3))}var ZN=d9(O9),KN=d9(M9);function qN(a,l){return Pn(Rp(a,l),1)}function YN(a,l){return Pn(Rp(a,l),ne)}function XN(a,l,p){return p=p===n?1:Ve(p),Pn(Rp(a,l),p)}function B9(a,l){var p=Be(a)?Yr:ca;return p(a,Oe(l,3))}function $9(a,l){var p=Be(a)?gO:D6;return p(a,Oe(l,3))}var QN=kp(function(a,l,p){ht.call(a,p)?a[p].push(l):Li(a,p,[l])});function JN(a,l,p,y){a=pr(a)?a:xl(a),p=p&&!y?Ve(p):0;var E=a.length;return p<0&&(p=hn(E+p,0)),Bp(a)?p<=E&&a.indexOf(l,p)>-1:!!E&&ll(a,l,p)>-1}var eD=Ue(function(a,l,p){var y=-1,E=typeof l=="function",A=pr(a)?Z(a.length):[];return ca(a,function(M){A[++y]=E?Pr(l,M,p):fc(M,l,p)}),A}),tD=kp(function(a,l,p){Li(a,p,l)});function Rp(a,l){var p=Be(a)?Nt:j6;return p(a,Oe(l,3))}function nD(a,l,p,y){return a==null?[]:(Be(l)||(l=l==null?[]:[l]),p=y?n:p,Be(p)||(p=p==null?[]:[p]),Z6(a,l,p))}var rD=kp(function(a,l,p){a[p?0:1].push(l)},function(){return[[],[]]});function oD(a,l,p){var y=Be(a)?Sg:v6,E=arguments.length<3;return y(a,Oe(l,4),p,E,ca)}function iD(a,l,p){var y=Be(a)?vO:v6,E=arguments.length<3;return y(a,Oe(l,4),p,E,D6)}function aD(a,l){var p=Be(a)?aa:z6;return p(a,zp(Oe(l,3)))}function sD(a){var l=Be(a)?O6:JM;return l(a)}function lD(a,l,p){(p?Jn(a,l,p):l===n)?l=1:l=Ve(l);var y=Be(a)?TM:eR;return y(a,l)}function uD(a){var l=Be(a)?IM:nR;return l(a)}function cD(a){if(a==null)return 0;if(pr(a))return Bp(a)?cl(a):a.length;var l=$n(a);return l==xe||l==Ct?a.size:Vg(a).length}function dD(a,l,p){var y=Be(a)?Cg:rR;return p&&Jn(a,l,p)&&(l=n),y(a,Oe(l,3))}var fD=Ue(function(a,l){if(a==null)return[];var p=l.length;return p>1&&Jn(a,l[0],l[1])?l=[]:p>2&&Jn(l[0],l[1],l[2])&&(l=[l[0]]),Z6(a,Pn(l,1),[])}),Np=GO||function(){return $e.Date.now()};function pD(a,l){if(typeof l!="function")throw new Xr(s);return a=Ve(a),function(){if(--a<1)return l.apply(this,arguments)}}function V9(a,l,p){return l=p?n:l,l=a&&l==null?a.length:l,Pi(a,N,n,n,n,n,l)}function W9(a,l){var p;if(typeof l!="function")throw new Xr(s);return a=Ve(a),function(){return--a>0&&(p=l.apply(this,arguments)),a<=1&&(l=n),p}}var dv=Ue(function(a,l,p){var y=k;if(p.length){var E=la(p,yl(dv));y|=T}return Pi(a,y,l,p,E)}),j9=Ue(function(a,l,p){var y=k|S;if(p.length){var E=la(p,yl(j9));y|=T}return Pi(l,y,a,p,E)});function H9(a,l,p){l=p?n:l;var y=Pi(a,_,n,n,n,n,n,l);return y.placeholder=H9.placeholder,y}function U9(a,l,p){l=p?n:l;var y=Pi(a,L,n,n,n,n,n,l);return y.placeholder=U9.placeholder,y}function G9(a,l,p){var y,E,A,M,D,V,ee=0,te=!1,ae=!1,ve=!0;if(typeof a!="function")throw new Xr(s);l=no(l)||0,Vt(p)&&(te=!!p.leading,ae="maxWait"in p,A=ae?hn(no(p.maxWait)||0,l):A,ve="trailing"in p?!!p.trailing:ve);function Ae(tn){var _o=y,Mi=E;return y=E=n,ee=tn,M=a.apply(Mi,_o),M}function Me(tn){return ee=tn,D=vc(Ke,l),te?Ae(tn):M}function We(tn){var _o=tn-V,Mi=tn-ee,dx=l-_o;return ae?Bn(dx,A-Mi):dx}function Re(tn){var _o=tn-V,Mi=tn-ee;return V===n||_o>=l||_o<0||ae&&Mi>=A}function Ke(){var tn=Np();if(Re(tn))return Xe(tn);D=vc(Ke,We(tn))}function Xe(tn){return D=n,ve&&y?Ae(tn):(y=E=n,M)}function Or(){D!==n&&n9(D),ee=0,y=V=E=D=n}function er(){return D===n?M:Xe(Np())}function Mr(){var tn=Np(),_o=Re(tn);if(y=arguments,E=this,V=tn,_o){if(D===n)return Me(V);if(ae)return n9(D),D=vc(Ke,l),Ae(V)}return D===n&&(D=vc(Ke,l)),M}return Mr.cancel=Or,Mr.flush=er,Mr}var hD=Ue(function(a,l){return N6(a,1,l)}),mD=Ue(function(a,l,p){return N6(a,no(l)||0,p)});function gD(a){return Pi(a,G)}function Dp(a,l){if(typeof a!="function"||l!=null&&typeof l!="function")throw new Xr(s);var p=function(){var y=arguments,E=l?l.apply(this,y):y[0],A=p.cache;if(A.has(E))return A.get(E);var M=a.apply(this,y);return p.cache=A.set(E,M)||A,M};return p.cache=new(Dp.Cache||Ei),p}Dp.Cache=Ei;function zp(a){if(typeof a!="function")throw new Xr(s);return function(){var l=arguments;switch(l.length){case 0:return!a.call(this);case 1:return!a.call(this,l[0]);case 2:return!a.call(this,l[0],l[1]);case 3:return!a.call(this,l[0],l[1],l[2])}return!a.apply(this,l)}}function vD(a){return W9(2,a)}var yD=oR(function(a,l){l=l.length==1&&Be(l[0])?Nt(l[0],Ar(Oe())):Nt(Pn(l,1),Ar(Oe()));var p=l.length;return Ue(function(y){for(var E=-1,A=Bn(y.length,p);++E=l}),ps=$6(function(){return arguments}())?$6:function(a){return Zt(a)&&ht.call(a,"callee")&&!E6.call(a,"callee")},Be=Z.isArray,MD=al?Ar(al):VM;function pr(a){return a!=null&&Fp(a.length)&&!Ii(a)}function en(a){return Zt(a)&&pr(a)}function RD(a){return a===!0||a===!1||Zt(a)&&Qn(a)==fe}var ha=KO||Cv,ND=sl?Ar(sl):WM;function DD(a){return Zt(a)&&a.nodeType===1&&!yc(a)}function zD(a){if(a==null)return!0;if(pr(a)&&(Be(a)||typeof a=="string"||typeof a.splice=="function"||ha(a)||bl(a)||ps(a)))return!a.length;var l=$n(a);if(l==xe||l==Ct)return!a.size;if(gc(a))return!Vg(a).length;for(var p in a)if(ht.call(a,p))return!1;return!0}function FD(a,l){return pc(a,l)}function BD(a,l,p){p=typeof p=="function"?p:n;var y=p?p(a,l):n;return y===n?pc(a,l,n,p):!!y}function pv(a){if(!Zt(a))return!1;var l=Qn(a);return l==st||l==De||typeof a.message=="string"&&typeof a.name=="string"&&!yc(a)}function $D(a){return typeof a=="number"&&P6(a)}function Ii(a){if(!Vt(a))return!1;var l=Qn(a);return l==It||l==bn||l==Pe||l==xn}function K9(a){return typeof a=="number"&&a==Ve(a)}function Fp(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=j}function Vt(a){var l=typeof a;return a!=null&&(l=="object"||l=="function")}function Zt(a){return a!=null&&typeof a=="object"}var q9=rc?Ar(rc):HM;function VD(a,l){return a===l||$g(a,l,rv(l))}function WD(a,l,p){return p=typeof p=="function"?p:n,$g(a,l,rv(l),p)}function jD(a){return Y9(a)&&a!=+a}function HD(a){if(LR(a))throw new Fe(i);return V6(a)}function UD(a){return a===null}function GD(a){return a==null}function Y9(a){return typeof a=="number"||Zt(a)&&Qn(a)==Ie}function yc(a){if(!Zt(a)||Qn(a)!=ze)return!1;var l=dp(a);if(l===null)return!0;var p=ht.call(l,"constructor")&&l.constructor;return typeof p=="function"&&p instanceof p&&sp.call(p)==WO}var hv=c6?Ar(c6):UM;function ZD(a){return K9(a)&&a>=-j&&a<=j}var X9=d6?Ar(d6):GM;function Bp(a){return typeof a=="string"||!Be(a)&&Zt(a)&&Qn(a)==Jt}function Ir(a){return typeof a=="symbol"||Zt(a)&&Qn(a)==Gt}var bl=f6?Ar(f6):ZM;function KD(a){return a===n}function qD(a){return Zt(a)&&$n(a)==Le}function YD(a){return Zt(a)&&Qn(a)==ft}var XD=Ap(Wg),QD=Ap(function(a,l){return a<=l});function Q9(a){if(!a)return[];if(pr(a))return Bp(a)?wo(a):fr(a);if(ic&&a[ic])return TO(a[ic]());var l=$n(a),p=l==xe?Ag:l==Ct?op:xl;return p(a)}function Oi(a){if(!a)return a===0?a:0;if(a=no(a),a===ne||a===-ne){var l=a<0?-1:1;return l*Y}return a===a?a:0}function Ve(a){var l=Oi(a),p=l%1;return l===l?p?l-p:l:0}function J9(a){return a?us(Ve(a),0,O):0}function no(a){if(typeof a=="number")return a;if(Ir(a))return K;if(Vt(a)){var l=typeof a.valueOf=="function"?a.valueOf():a;a=Vt(l)?l+"":l}if(typeof a!="string")return a===0?a:+a;a=y6(a);var p=ig.test(a);return p||sg.test(a)?we(a.slice(2),p?2:8):og.test(a)?K:+a}function ex(a){return Wo(a,hr(a))}function JD(a){return a?us(Ve(a),-j,j):a===0?a:0}function ct(a){return a==null?"":Tr(a)}var ez=gl(function(a,l){if(gc(l)||pr(l)){Wo(l,Sn(l),a);return}for(var p in l)ht.call(l,p)&&cc(a,p,l[p])}),tx=gl(function(a,l){Wo(l,hr(l),a)}),$p=gl(function(a,l,p,y){Wo(l,hr(l),a,y)}),tz=gl(function(a,l,p,y){Wo(l,Sn(l),a,y)}),nz=Ai(Ng);function rz(a,l){var p=ml(a);return l==null?p:M6(p,l)}var oz=Ue(function(a,l){a=kt(a);var p=-1,y=l.length,E=y>2?l[2]:n;for(E&&Jn(l[0],l[1],E)&&(y=1);++p1),A}),Wo(a,tv(a),p),y&&(p=Jr(p,h|m|g,mR));for(var E=l.length;E--;)Zg(p,l[E]);return p});function Sz(a,l){return rx(a,zp(Oe(l)))}var Cz=Ai(function(a,l){return a==null?{}:YM(a,l)});function rx(a,l){if(a==null)return{};var p=Nt(tv(a),function(y){return[y]});return l=Oe(l),K6(a,p,function(y,E){return l(y,E[0])})}function _z(a,l,p){l=fa(l,a);var y=-1,E=l.length;for(E||(E=1,a=n);++yl){var y=a;a=l,l=y}if(p||a%1||l%1){var E=A6();return Bn(a+E*(l-a+U("1e-"+((E+"").length-1))),l)}return Hg(a,l)}var Nz=vl(function(a,l,p){return l=l.toLowerCase(),a+(p?ax(l):l)});function ax(a){return vv(ct(a).toLowerCase())}function sx(a){return a=ct(a),a&&a.replace(ug,kO).replace(Qf,"")}function Dz(a,l,p){a=ct(a),l=Tr(l);var y=a.length;p=p===n?y:us(Ve(p),0,y);var E=p;return p-=l.length,p>=0&&a.slice(p,E)==l}function zz(a){return a=ct(a),a&&wi.test(a)?a.replace(ra,EO):a}function Fz(a){return a=ct(a),a&&Ym.test(a)?a.replace(Gu,"\\$&"):a}var Bz=vl(function(a,l,p){return a+(p?"-":"")+l.toLowerCase()}),$z=vl(function(a,l,p){return a+(p?" ":"")+l.toLowerCase()}),Vz=c9("toLowerCase");function Wz(a,l,p){a=ct(a),l=Ve(l);var y=l?cl(a):0;if(!l||y>=l)return a;var E=(l-y)/2;return Pp(mp(E),p)+a+Pp(hp(E),p)}function jz(a,l,p){a=ct(a),l=Ve(l);var y=l?cl(a):0;return l&&y>>0,p?(a=ct(a),a&&(typeof l=="string"||l!=null&&!hv(l))&&(l=Tr(l),!l&&ul(a))?pa(wo(a),0,p):a.split(l,p)):[]}var Yz=vl(function(a,l,p){return a+(p?" ":"")+vv(l)});function Xz(a,l,p){return a=ct(a),p=p==null?0:us(Ve(p),0,a.length),l=Tr(l),a.slice(p,p+l.length)==l}function Qz(a,l,p){var y=P.templateSettings;p&&Jn(a,l,p)&&(l=n),a=ct(a),l=$p({},l,y,v9);var E=$p({},l.imports,y.imports,v9),A=Sn(E),M=Pg(E,A),D,V,ee=0,te=l.interpolate||ia,ae="__p += '",ve=Tg((l.escape||ia).source+"|"+te.source+"|"+(te===Rf?rg:ia).source+"|"+(l.evaluate||ia).source+"|$","g"),Ae="//# sourceURL="+(ht.call(l,"sourceURL")?(l.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++ep+"]")+` +`;a.replace(ve,function(Re,Ke,Xe,Or,er,Mr){return Xe||(Xe=Or),ae+=a.slice(ee,Mr).replace(cg,LO),Ke&&(D=!0,ae+=`' + +__e(`+Ke+`) + +'`),er&&(V=!0,ae+=`'; +`+er+`; +__p += '`),Xe&&(ae+=`' + +((__t = (`+Xe+`)) == null ? '' : __t) + +'`),ee=Mr+Re.length,Re}),ae+=`'; +`;var Me=ht.call(l,"variable")&&l.variable;if(!Me)ae=`with (obj) { +`+ae+` +} +`;else if(tg.test(Me))throw new Fe(u);ae=(V?ae.replace(os,""):ae).replace(Qs,"$1").replace(Hm,"$1;"),ae="function("+(Me||"obj")+`) { +`+(Me?"":`obj || (obj = {}); +`)+"var __t, __p = ''"+(D?", __e = _.escape":"")+(V?`, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +`:`; +`)+ae+`return __p +}`;var We=ux(function(){return rt(A,Ae+"return "+ae).apply(n,M)});if(We.source=ae,pv(We))throw We;return We}function Jz(a){return ct(a).toLowerCase()}function eF(a){return ct(a).toUpperCase()}function tF(a,l,p){if(a=ct(a),a&&(p||l===n))return y6(a);if(!a||!(l=Tr(l)))return a;var y=wo(a),E=wo(l),A=b6(y,E),M=x6(y,E)+1;return pa(y,A,M).join("")}function nF(a,l,p){if(a=ct(a),a&&(p||l===n))return a.slice(0,S6(a)+1);if(!a||!(l=Tr(l)))return a;var y=wo(a),E=x6(y,wo(l))+1;return pa(y,0,E).join("")}function rF(a,l,p){if(a=ct(a),a&&(p||l===n))return a.replace(Zu,"");if(!a||!(l=Tr(l)))return a;var y=wo(a),E=b6(y,wo(l));return pa(y,E).join("")}function oF(a,l){var p=W,y=J;if(Vt(l)){var E="separator"in l?l.separator:E;p="length"in l?Ve(l.length):p,y="omission"in l?Tr(l.omission):y}a=ct(a);var A=a.length;if(ul(a)){var M=wo(a);A=M.length}if(p>=A)return a;var D=p-cl(y);if(D<1)return y;var V=M?pa(M,0,D).join(""):a.slice(0,D);if(E===n)return V+y;if(M&&(D+=V.length-D),hv(E)){if(a.slice(D).search(E)){var ee,te=V;for(E.global||(E=Tg(E.source,ct(Si.exec(E))+"g")),E.lastIndex=0;ee=E.exec(te);)var ae=ee.index;V=V.slice(0,ae===n?D:ae)}}else if(a.indexOf(Tr(E),D)!=D){var ve=V.lastIndexOf(E);ve>-1&&(V=V.slice(0,ve))}return V+y}function iF(a){return a=ct(a),a&&Um.test(a)?a.replace(Uu,RO):a}var aF=vl(function(a,l,p){return a+(p?" ":"")+l.toUpperCase()}),vv=c9("toUpperCase");function lx(a,l,p){return a=ct(a),l=p?n:l,l===n?AO(a)?zO(a):xO(a):a.match(l)||[]}var ux=Ue(function(a,l){try{return Pr(a,n,l)}catch(p){return pv(p)?p:new Fe(p)}}),sF=Ai(function(a,l){return Yr(l,function(p){p=jo(p),Li(a,p,dv(a[p],a))}),a});function lF(a){var l=a==null?0:a.length,p=Oe();return a=l?Nt(a,function(y){if(typeof y[1]!="function")throw new Xr(s);return[p(y[0]),y[1]]}):[],Ue(function(y){for(var E=-1;++Ej)return[];var p=O,y=Bn(a,O);l=Oe(l),a-=O;for(var E=Lg(y,l);++p0||l<0)?new qe(p):(a<0?p=p.takeRight(-a):a&&(p=p.drop(a)),l!==n&&(l=Ve(l),p=l<0?p.dropRight(-l):p.take(l-a)),p)},qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},qe.prototype.toArray=function(){return this.take(O)},Vo(qe.prototype,function(a,l){var p=/^(?:filter|find|map|reject)|While$/.test(l),y=/^(?:head|last)$/.test(l),E=P[y?"take"+(l=="last"?"Right":""):l],A=y||/^find/.test(l);!E||(P.prototype[l]=function(){var M=this.__wrapped__,D=y?[1]:arguments,V=M instanceof qe,ee=D[0],te=V||Be(M),ae=function(Ke){var Xe=E.apply(P,sa([Ke],D));return y&&ve?Xe[0]:Xe};te&&p&&typeof ee=="function"&&ee.length!=1&&(V=te=!1);var ve=this.__chain__,Ae=!!this.__actions__.length,Me=A&&!ve,We=V&&!Ae;if(!A&&te){M=We?M:new qe(this);var Re=a.apply(M,D);return Re.__actions__.push({func:Mp,args:[ae],thisArg:n}),new Qr(Re,ve)}return Me&&We?a.apply(this,D):(Re=this.thru(ae),Me?y?Re.value()[0]:Re.value():Re)})}),Yr(["pop","push","shift","sort","splice","unshift"],function(a){var l=ip[a],p=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",y=/^(?:pop|shift)$/.test(a);P.prototype[a]=function(){var E=arguments;if(y&&!this.__chain__){var A=this.value();return l.apply(Be(A)?A:[],E)}return this[p](function(M){return l.apply(Be(M)?M:[],E)})}}),Vo(qe.prototype,function(a,l){var p=P[l];if(p){var y=p.name+"";ht.call(hl,y)||(hl[y]=[]),hl[y].push({name:l,func:p})}}),hl[Ep(n,S).name]=[{name:"wrapper",func:n}],qe.prototype.clone=iM,qe.prototype.reverse=aM,qe.prototype.value=sM,P.prototype.at=DN,P.prototype.chain=zN,P.prototype.commit=FN,P.prototype.next=BN,P.prototype.plant=VN,P.prototype.reverse=WN,P.prototype.toJSON=P.prototype.valueOf=P.prototype.value=jN,P.prototype.first=P.prototype.head,ic&&(P.prototype[ic]=$N),P},dl=FO();nt?((nt.exports=dl)._=dl,He._=dl):$e._=dl}).call(Vi)})(Kn,Kn.exports);const rf=Kn.exports,Nde={currentImageUuid:"",images:[],areMoreImagesAvailable:!0},eI=Hb({name:"gallery",initialState:Nde,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const n=t.payload,r=e.images.filter(o=>o.uuid!==n);if(n===e.currentImageUuid){const o=e.images.findIndex(s=>s.uuid===n),i=Kn.exports.clamp(o,0,r.length-1);e.currentImage=r.length?r[i]:void 0,e.currentImageUuid=r.length?r[i].uuid:""}e.images=r},addImage:(e,t)=>{const n=t.payload,{uuid:r,mtime:o}=n;e.images.unshift(n),e.currentImageUuid=r,e.intermediateImage=void 0,e.currentImage=n,e.latest_mtime=o},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(rf.inRange(r,0,t.length)){const o=t[r+1];e.currentImage=o,e.currentImageUuid=o.uuid}}},selectPrevImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(rf.inRange(r,1,t.length+1)){const o=t[r-1];e.currentImage=o,e.currentImageUuid=o.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r}=t.payload;if(n.length>0){if(e.images=e.images.concat(n).sort((o,i)=>i.mtime-o.mtime),!e.currentImage){const o=n[0];e.currentImage=o,e.currentImageUuid=o.uuid}e.latest_mtime=n[0].mtime,e.earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.areMoreImagesAvailable=r)}}}),{addImage:_h,clearIntermediateImage:A7,removeImage:Dde,setCurrentImage:zde,addGalleryImages:Fde,setIntermediateImage:Bde,selectNextImage:tI,selectPrevImage:nI}=eI.actions,$de=eI.reducer,Vde={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgress:!1,shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",hasError:!1,wasErrorSeen:!0},Wde=Vde,rI=Hb({name:"system",initialState:Wde,reducers:{setShouldDisplayInProgress:(e,t)=>{e.shouldDisplayInProgress=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Server error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:o}=t.payload,s={timestamp:n,message:r,level:o||"info"};e.log.push(s)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"}}}),{setShouldDisplayInProgress:jde,setIsProcessing:l1,addLogEntry:nr,setShouldShowLogViewer:T7,setIsConnected:I7,setSocketId:O0e,setShouldConfirmOnDelete:oI,setOpenAccordions:Hde,setSystemStatus:Ude,setCurrentStatus:O7,setSystemConfig:Gde,setShouldDisplayGuides:Zde,processingCanceled:Kde,errorOccurred:qde,errorSeen:iI}=rI.actions,Yde=rI.reducer,vi=Object.create(null);vi.open="0";vi.close="1";vi.ping="2";vi.pong="3";vi.message="4";vi.upgrade="5";vi.noop="6";const u1=Object.create(null);Object.keys(vi).forEach(e=>{u1[vi[e]]=e});const Xde={type:"error",data:"parser error"},Qde=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Jde=typeof ArrayBuffer=="function",efe=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,aI=({type:e,data:t},n,r)=>Qde&&t instanceof Blob?n?r(t):M7(t,r):Jde&&(t instanceof ArrayBuffer||efe(t))?n?r(t):M7(new Blob([t]),r):r(vi[e]+(t||"")),M7=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},R7="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Hc=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,o=0,i,s,u,c;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const d=new ArrayBuffer(t),f=new Uint8Array(d);for(r=0;r>4,f[o++]=(s&15)<<4|u>>2,f[o++]=(u&3)<<6|c&63;return d},nfe=typeof ArrayBuffer=="function",sI=(e,t)=>{if(typeof e!="string")return{type:"message",data:lI(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:rfe(e.substring(1),t)}:u1[n]?e.length>1?{type:u1[n],data:e.substring(1)}:{type:u1[n]}:Xde},rfe=(e,t)=>{if(nfe){const n=tfe(e);return lI(n,t)}else return{base64:!0,data:e}},lI=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},uI=String.fromCharCode(30),ofe=(e,t)=>{const n=e.length,r=new Array(n);let o=0;e.forEach((i,s)=>{aI(i,!1,u=>{r[s]=u,++o===n&&t(r.join(uI))})})},ife=(e,t)=>{const n=e.split(uI),r=[];for(let o=0;otypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function dI(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const sfe=setTimeout,lfe=clearTimeout;function Vm(e,t){t.useNativeTimers?(e.setTimeoutFn=sfe.bind(Ra),e.clearTimeoutFn=lfe.bind(Ra)):(e.setTimeoutFn=setTimeout.bind(Ra),e.clearTimeoutFn=clearTimeout.bind(Ra))}const ufe=1.33;function cfe(e){return typeof e=="string"?dfe(e):Math.ceil((e.byteLength||e.size)*ufe)}function dfe(e){let t=0,n=0;for(let r=0,o=e.length;r=57344?n+=3:(r++,n+=4);return n}class ffe extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class fI extends fn{constructor(t){super(),this.writable=!1,Vm(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new ffe(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=sI(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const pI="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),e5=64,pfe={};let N7=0,kh=0,D7;function z7(e){let t="";do t=pI[e%e5]+t,e=Math.floor(e/e5);while(e>0);return t}function hI(){const e=z7(+new Date);return e!==D7?(N7=0,D7=e):e+"."+z7(N7++)}for(;kh{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};ife(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,ofe(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=hI()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const o=mI(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new pi(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(o,i)=>{this.onError("xhr post error",o,i)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class pi extends fn{constructor(t,n){super(),Vm(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=dI(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new vI(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=pi.requestsCount++,pi.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=gfe,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete pi.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}pi.requestsCount=0;pi.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",F7);else if(typeof addEventListener=="function"){const e="onpagehide"in Ra?"pagehide":"unload";addEventListener(e,F7,!1)}}function F7(){for(let e in pi.requests)pi.requests.hasOwnProperty(e)&&pi.requests[e].abort()}const bfe=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),Eh=Ra.WebSocket||Ra.MozWebSocket,B7=!0,xfe="arraybuffer",$7=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class wfe extends fI{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=$7?{}:dI(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=B7&&!$7?n?new Eh(t,n):new Eh(t):new Eh(t,n,r)}catch(o){return this.emitReserved("error",o)}this.ws.binaryType=this.socket.binaryType||xfe,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const s={};try{B7&&this.ws.send(i)}catch{}o&&bfe(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=hI()),this.supportsBinary||(t.b64=1);const o=mI(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}check(){return!!Eh}}const Sfe={websocket:wfe,polling:yfe},Cfe=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,_fe=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function t5(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let o=Cfe.exec(e||""),i={},s=14;for(;s--;)i[_fe[s]]=o[s]||"";return n!=-1&&r!=-1&&(i.source=t,i.host=i.host.substring(1,i.host.length-1).replace(/;/g,":"),i.authority=i.authority.replace("[","").replace("]","").replace(/;/g,":"),i.ipv6uri=!0),i.pathNames=kfe(i,i.path),i.queryKey=Efe(i,i.query),i}function kfe(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.substr(0,1)=="/"||t.length===0)&&r.splice(0,1),t.substr(t.length-1,1)=="/"&&r.splice(r.length-1,1),r}function Efe(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,o,i){o&&(n[o]=i)}),n}class Pa extends fn{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=t5(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=t5(n.host).host),Vm(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=hfe(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&addEventListener("beforeunload",()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},!1),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=cI,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new Sfe[t](r)}open(){let t;if(this.opts.rememberUpgrade&&Pa.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;Pa.priorWebsocketSuccess=!1;const o=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",h=>{if(!r)if(h.type==="pong"&&h.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;Pa.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(f(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function i(){r||(r=!0,f(),n.close(),n=null)}const s=h=>{const m=new Error("probe error: "+h);m.transport=n.name,i(),this.emitReserved("upgradeError",m)};function u(){s("transport closed")}function c(){s("socket closed")}function d(h){n&&h.name!==n.name&&i()}const f=()=>{n.removeListener("open",o),n.removeListener("error",s),n.removeListener("close",u),this.off("close",c),this.off("upgrading",d)};n.once("open",o),n.once("error",s),n.once("close",u),this.once("close",c),this.once("upgrading",d),n.open()}onOpen(){if(this.readyState="open",Pa.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,o){if(typeof n=="function"&&(o=n,n=void 0),typeof r=="function"&&(o=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const i={type:t,data:n,options:r};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),o&&this.once("flush",o),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){Pa.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&removeEventListener("offline",this.offlineEventListener,!1),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const o=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,yI=Object.prototype.toString,Tfe=typeof Blob=="function"||typeof Blob<"u"&&yI.call(Blob)==="[object BlobConstructor]",Ife=typeof File=="function"||typeof File<"u"&&yI.call(File)==="[object FileConstructor]";function e6(e){return Pfe&&(e instanceof ArrayBuffer||Afe(e))||Tfe&&e instanceof Blob||Ife&&e instanceof File}function c1(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case Qe.ACK:case Qe.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class Dfe{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=Mfe(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const zfe=Object.freeze(Object.defineProperty({__proto__:null,protocol:Rfe,get PacketType(){return Qe},Encoder:Nfe,Decoder:t6},Symbol.toStringTag,{value:"Module"}));function Oo(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const Ffe=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class bI extends fn{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[Oo(t,"open",this.onopen.bind(this)),Oo(t,"packet",this.onpacket.bind(this)),Oo(t,"error",this.onerror.bind(this)),Oo(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(Ffe.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:Qe.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const s=this.ids++,u=n.pop();this._registerAckCallback(s,u),r.id=s}const o=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!o||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const o=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let i=0;i{this.io.clearTimeoutFn(o),n.apply(this,[null,...i])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:Qe.CONNECT,data:t})}):this.packet({type:Qe.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Qe.CONNECT:if(t.data&&t.data.sid){const o=t.data.sid;this.onconnect(o)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Qe.EVENT:case Qe.BINARY_EVENT:this.onevent(t);break;case Qe.ACK:case Qe.BINARY_ACK:this.onack(t);break;case Qe.DISCONNECT:this.ondisconnect();break;case Qe.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...o){r||(r=!0,n.packet({type:Qe.ACK,id:t,data:o}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Qe.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}ju.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};ju.prototype.reset=function(){this.attempts=0};ju.prototype.setMin=function(e){this.ms=e};ju.prototype.setMax=function(e){this.max=e};ju.prototype.setJitter=function(e){this.jitter=e};class o5 extends fn{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,Vm(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new ju({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const o=n.parser||zfe;this.encoder=new o.Encoder,this.decoder=new o.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new Pa(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const o=Oo(n,"open",function(){r.onopen(),t&&t()}),i=Oo(n,"error",s=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",s),t?t(s):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const s=this._timeout;s===0&&o();const u=this.setTimeoutFn(()=>{o(),n.close(),n.emit("error",new Error("timeout"))},s);this.opts.autoUnref&&u.unref(),this.subs.push(function(){clearTimeout(u)})}return this.subs.push(o),this.subs.push(i),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(Oo(t,"ping",this.onping.bind(this)),Oo(t,"data",this.ondata.bind(this)),Oo(t,"error",this.onerror.bind(this)),Oo(t,"close",this.onclose.bind(this)),Oo(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch{this.onclose("parse error")}}ondecoded(t){this.emitReserved("packet",t)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new bI(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(o=>{o?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",o)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Mc={};function d1(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=Lfe(e,t.path||"/socket.io"),r=n.source,o=n.id,i=n.path,s=Mc[o]&&i in Mc[o].nsps,u=t.forceNew||t["force new connection"]||t.multiplex===!1||s;let c;return u?c=new o5(r,t):(Mc[o]||(Mc[o]=new o5(r,t)),c=Mc[o]),n.query&&!t.query&&(t.query=n.queryKey),c.socket(n.path,t)}Object.assign(d1,{Manager:o5,Socket:bI,io:d1,connect:d1});let Lh;const Bfe=new Uint8Array(16);function $fe(){if(!Lh&&(Lh=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Lh))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Lh(Bfe)}const Tn=[];for(let e=0;e<256;++e)Tn.push((e+256).toString(16).slice(1));function Vfe(e,t=0){return(Tn[e[t+0]]+Tn[e[t+1]]+Tn[e[t+2]]+Tn[e[t+3]]+"-"+Tn[e[t+4]]+Tn[e[t+5]]+"-"+Tn[e[t+6]]+Tn[e[t+7]]+"-"+Tn[e[t+8]]+Tn[e[t+9]]+"-"+Tn[e[t+10]]+Tn[e[t+11]]+Tn[e[t+12]]+Tn[e[t+13]]+Tn[e[t+14]]+Tn[e[t+15]]).toLowerCase()}const Wfe=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),V7={randomUUID:Wfe};function Rc(e,t,n){if(V7.randomUUID&&!t&&!e)return V7.randomUUID();e=e||{};const r=e.random||(e.rng||$fe)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let o=0;o<16;++o)t[n+o]=r[o];return t}return Vfe(r)}var jfe=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,Hfe=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,Ufe=/[^-+\dA-Z]/g;function rr(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(W7[t]||t||W7.default);var o=t.slice(0,4);(o==="UTC:"||o==="GMT:")&&(t=t.slice(4),n=!0,o==="GMT:"&&(r=!0));var i=function(){return n?"getUTC":"get"},s=function(){return e[i()+"Date"]()},u=function(){return e[i()+"Day"]()},c=function(){return e[i()+"Month"]()},d=function(){return e[i()+"FullYear"]()},f=function(){return e[i()+"Hours"]()},h=function(){return e[i()+"Minutes"]()},m=function(){return e[i()+"Seconds"]()},g=function(){return e[i()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},w=function(){return Gfe(e)},k=function(){return Zfe(e)},S={d:function(){return s()},dd:function(){return Rr(s())},ddd:function(){return gr.dayNames[u()]},DDD:function(){return j7({y:d(),m:c(),d:s(),_:i(),dayName:gr.dayNames[u()],short:!0})},dddd:function(){return gr.dayNames[u()+7]},DDDD:function(){return j7({y:d(),m:c(),d:s(),_:i(),dayName:gr.dayNames[u()+7]})},m:function(){return c()+1},mm:function(){return Rr(c()+1)},mmm:function(){return gr.monthNames[c()]},mmmm:function(){return gr.monthNames[c()+12]},yy:function(){return String(d()).slice(2)},yyyy:function(){return Rr(d(),4)},h:function(){return f()%12||12},hh:function(){return Rr(f()%12||12)},H:function(){return f()},HH:function(){return Rr(f())},M:function(){return h()},MM:function(){return Rr(h())},s:function(){return m()},ss:function(){return Rr(m())},l:function(){return Rr(g(),3)},L:function(){return Rr(Math.floor(g()/10))},t:function(){return f()<12?gr.timeNames[0]:gr.timeNames[1]},tt:function(){return f()<12?gr.timeNames[2]:gr.timeNames[3]},T:function(){return f()<12?gr.timeNames[4]:gr.timeNames[5]},TT:function(){return f()<12?gr.timeNames[6]:gr.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":Kfe(e)},o:function(){return(b()>0?"-":"+")+Rr(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+Rr(Math.floor(Math.abs(b())/60),2)+":"+Rr(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][s()%10>3?0:(s()%100-s()%10!=10)*s()%10]},W:function(){return w()},WW:function(){return Rr(w())},N:function(){return k()}};return t.replace(jfe,function(x){return x in S?S[x]():x.slice(1,x.length-1)})}var W7={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},gr={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},Rr=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},j7=function(t){var n=t.y,r=t.m,o=t.d,i=t._,s=t.dayName,u=t.short,c=u===void 0?!1:u,d=new Date,f=new Date;f.setDate(f[i+"Date"]()-1);var h=new Date;h.setDate(h[i+"Date"]()+1);var m=function(){return d[i+"Date"]()},g=function(){return d[i+"Month"]()},b=function(){return d[i+"FullYear"]()},w=function(){return f[i+"Date"]()},k=function(){return f[i+"Month"]()},S=function(){return f[i+"FullYear"]()},x=function(){return h[i+"Date"]()},_=function(){return h[i+"Month"]()},L=function(){return h[i+"FullYear"]()};return b()===n&&g()===r&&m()===o?c?"Tdy":"Today":S()===n&&k()===r&&w()===o?c?"Ysd":"Yesterday":L()===n&&_()===r&&x()===o?c?"Tmw":"Tomorrow":s},Gfe=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var o=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-o);var i=(n-r)/(864e5*7);return 1+Math.floor(i)},Zfe=function(t){var n=t.getDay();return n===0&&(n=7),n},Kfe=function(t){return(String(t).match(Hfe)||[""]).pop().replace(Ufe,"").replace(/GMT\+0000/g,"UTC")};const i5=sr("socketio/generateImage"),qfe=sr("socketio/runESRGAN"),Yfe=sr("socketio/runGFPGAN"),Xfe=sr("socketio/deleteImage"),xI=sr("socketio/requestImages"),Qfe=sr("socketio/requestNewImages"),Jfe=sr("socketio/cancelProcessing"),epe=sr("socketio/uploadInitialImage");sr("socketio/uploadMaskImage");const tpe=sr("socketio/requestSystemConfig"),npe=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(I7(!0)),t(O7("Connected")),n().gallery.latest_mtime?t(Qfe()):t(xI())}catch(r){console.error(r)}},onDisconnect:()=>{try{t(I7(!1)),t(O7("Disconnected")),t(nr({timestamp:rr(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{url:o,mtime:i,metadata:s}=r,u=Rc();t(_h({uuid:u,url:o,mtime:i,metadata:s})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image generated: ${o}`}))}catch(o){console.error(o)}},onIntermediateResult:r=>{try{const o=Rc(),{url:i,metadata:s,mtime:u}=r;t(Bde({uuid:o,url:i,mtime:u,metadata:s})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Intermediate image generated: ${i}`}))}catch(o){console.error(o)}},onPostprocessingResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(_h({uuid:Rc(),url:o,mtime:s,metadata:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Postprocessed: ${o}`}))}catch(o){console.error(o)}},onGFPGANResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(_h({uuid:Rc(),url:o,mtime:s,metadata:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Fixed faces: ${o}`}))}catch(o){console.error(o)}},onProgressUpdate:r=>{try{t(l1(!0)),t(Ude(r))}catch(o){console.error(o)}},onError:r=>{const{message:o,additionalData:i}=r;try{t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Server error: ${o}`,level:"error"})),t(qde()),t(A7())}catch(s){console.error(s)}},onGalleryImages:r=>{const{images:o,areMoreImagesAvailable:i}=r,s=o.map(u=>{const{url:c,metadata:d,mtime:f}=u;return{uuid:Rc(),url:c,mtime:f,metadata:d}});t(Fde({images:s,areMoreImagesAvailable:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Loaded ${o.length} images`}))},onProcessingCanceled:()=>{t(Kde());const{intermediateImage:r}=n().gallery;r&&(t(_h(r)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`})),t(A7())),t(nr({timestamp:rr(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:o,uuid:i}=r;t(Dde(i));const{initialImagePath:s,maskPath:u}=n().options;s===o&&t(Au("")),u===o&&t(J4("")),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image deleted: ${o}`}))},onInitialImageUploaded:r=>{const{url:o}=r;t(Au(o)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Initial image uploaded: ${o}`}))},onMaskImageUploaded:r=>{const{url:o}=r;t(J4(o)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Mask image uploaded: ${o}`}))},onSystemConfig:r=>{t(Gde(r))}}},rpe=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],ope=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],ipe=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],ape=[{key:"2x",value:2},{key:"4x",value:4}],n6=0,r6=4294967295,wI=(e,t)=>Math.floor(Math.random()*(t-e+1)+e),spe=(e,t)=>{const{prompt:n,iterations:r,steps:o,cfgScale:i,threshold:s,perlin:u,height:c,width:d,sampler:f,seed:h,seamless:m,hiresFix:g,shouldUseInitImage:b,img2imgStrength:w,initialImagePath:k,maskPath:S,shouldFitToWidthHeight:x,shouldGenerateVariations:_,variationAmount:L,seedWeights:T,shouldRunESRGAN:R,upscalingLevel:N,upscalingStrength:F,shouldRunGFPGAN:G,gfpganStrength:W,shouldRandomizeSeed:J}=e,{shouldDisplayInProgress:Ee}=t,he={prompt:n,iterations:r,steps:o,cfg_scale:i,threshold:s,perlin:u,height:c,width:d,sampler_name:f,seed:h,seamless:m,hires_fix:g,progress_images:Ee};he.seed=J?wI(n6,r6):h,b&&(he.init_img=k,he.strength=w,he.fit=x,S&&(he.init_mask=S)),_?(he.variation_amount=L,T&&(he.with_variations=Sde(T))):he.variation_amount=0;let me=!1,ce=!1;return R&&(me={level:N,strength:F}),G&&(ce={strength:W}),{generationParameters:he,esrganParameters:me,gfpganParameters:ce}};var z2=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function F2(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function SI(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function lpe(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,o=!0,i=0;i=0&&Dt.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&Dt.splice(0,Dt.length),(t===93||t===224)&&(t=91),t in Mn){Mn[t]=!1;for(var r in Xa)Xa[r]===t&&(Br[r]=!1)}}function hpe(e){if(typeof e>"u")Object.keys(sn).forEach(function(s){return delete sn[s]});else if(Array.isArray(e))e.forEach(function(s){s.key&&B2(s)});else if(typeof e=="object")e.key&&B2(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?SI(Xa,d):[];sn[m]=sn[m].filter(function(b){var w=o?b.method===o:!0;return!(w&&b.scope===r&&lpe(b.mods,g))})}})};function U7(e,t,n,r){if(t.element===r){var o;if(t.scope===n||t.scope==="all"){o=t.mods.length>0;for(var i in Mn)Object.prototype.hasOwnProperty.call(Mn,i)&&(!Mn[i]&&t.mods.indexOf(+i)>-1||Mn[i]&&t.mods.indexOf(+i)===-1)&&(o=!1);(t.mods.length===0&&!Mn[16]&&!Mn[18]&&!Mn[17]&&!Mn[91]||o||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function G7(e,t){var n=sn["*"],r=e.keyCode||e.which||e.charCode;if(!!Br.filter.call(this,e)){if((r===93||r===224)&&(r=91),Dt.indexOf(r)===-1&&r!==229&&Dt.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var w=a5[b];e[b]&&Dt.indexOf(w)===-1?Dt.push(w):!e[b]&&Dt.indexOf(w)>-1?Dt.splice(Dt.indexOf(w),1):b==="metaKey"&&e[b]&&Dt.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(Dt=Dt.slice(Dt.indexOf(w))))}),r in Mn){Mn[r]=!0;for(var o in Xa)Xa[o]===r&&(Br[o]=!0);if(!n)return}for(var i in Mn)Object.prototype.hasOwnProperty.call(Mn,i)&&(Mn[i]=e[a5[i]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(Dt.indexOf(17)===-1&&Dt.push(17),Dt.indexOf(18)===-1&&Dt.push(18),Mn[17]=!0,Mn[18]=!0);var s=of();if(n)for(var u=0;u-1}function Br(e,t,n){Dt=[];var r=CI(e),o=[],i="all",s=document,u=0,c=!1,d=!0,f="+",h=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(i=t.scope),t.element&&(s=t.element),t.keyup&&(c=t.keyup),t.keydown!==void 0&&(d=t.keydown),t.capture!==void 0&&(h=t.capture),typeof t.splitKey=="string"&&(f=t.splitKey)),typeof t=="string"&&(i=t);u1&&(o=SI(Xa,e)),e=e[e.length-1],e=e==="*"?"*":Wm(e),e in sn||(sn[e]=[]),sn[e].push({keyup:c,keydown:d,scope:i,mods:o,shortcut:r[u],method:n,key:r[u],splitKey:f,element:s});typeof s<"u"&&!mpe(s)&&window&&(kI.push(s),F2(s,"keydown",function(m){G7(m,s)},h),H7||(H7=!0,F2(window,"focus",function(){Dt=[]},h)),F2(s,"keyup",function(m){G7(m,s),ppe(m)},h))}function gpe(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(sn).forEach(function(n){var r=sn[n].find(function(o){return o.scope===t&&o.shortcut===e});r&&r.method&&r.method()})}var $2={setScope:EI,getScope:of,deleteScope:fpe,getPressedKeyCodes:upe,isPressed:dpe,filter:cpe,trigger:gpe,unbind:hpe,keyMap:o6,modifier:Xa,modifierMap:a5};for(var V2 in $2)Object.prototype.hasOwnProperty.call($2,V2)&&(Br[V2]=$2[V2]);if(typeof window<"u"){var vpe=window.hotkeys;Br.noConflict=function(e){return e&&window.hotkeys===Br&&(window.hotkeys=vpe),Br},window.hotkeys=Br}Br.filter=function(){return!0};var LI=function(t,n){var r=t.target,o=r&&r.tagName;return Boolean(o&&n&&n.includes(o))},ype=function(t){return LI(t,["INPUT","TEXTAREA","SELECT"])};function rn(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var o=n||{},i=o.enableOnTags,s=o.filter,u=o.keyup,c=o.keydown,d=o.filterPreventDefault,f=d===void 0?!0:d,h=o.enabled,m=h===void 0?!0:h,g=o.enableOnContentEditable,b=g===void 0?!1:g,w=C.exports.useRef(null),k=C.exports.useCallback(function(S,x){var _,L;return s&&!s(S)?!f:ype(S)&&!LI(S,i)||(_=S.target)!=null&&_.isContentEditable&&!b?!0:w.current===null||document.activeElement===w.current||(L=w.current)!=null&&L.contains(document.activeElement)?(t(S,x),!0):!1},r?[w,i,s].concat(r):[w,i,s]);return C.exports.useEffect(function(){if(!m){Br.unbind(e,k);return}return u&&c!==!0&&(n.keydown=!1),Br(e,n||{},k),function(){return Br.unbind(e,k)}},[k,e,m]),w}Br.isPressed;function bpe(){return q("div",{className:"work-in-progress inpainting-work-in-progress",children:[v("h1",{children:"Inpainting"}),v("p",{children:"Inpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}function xpe(){return q("div",{className:"work-in-progress nodes-work-in-progress",children:[v("h1",{children:"Nodes"}),v("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function wpe(){return q("div",{className:"work-in-progress outpainting-work-in-progress",children:[v("h1",{children:"Outpainting"}),v("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const Spe=()=>q("div",{className:"work-in-progress post-processing-work-in-progress",children:[v("h1",{children:"Post Processing"}),v("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image tab. A dedicated UI will be released soon."}),v("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen, High Resolution Fixing and more."})]}),Cpe=Nu({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),_pe=Nu({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),kpe=Nu({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),Epe=Nu({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),Lpe=Nu({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),Ppe=Nu({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:v("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var No=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(No||{});const Ape={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher values will apply a stronger corrective pressure on outputs, resulting in more appealing faces (with less respect for accuracy of the original subject).",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},Xs=e=>{const{label:t,isDisabled:n=!1,fontSize:r="md",size:o="md",width:i="auto",...s}=e;return v(ns,{isDisabled:n,width:i,children:q(Pt,{justifyContent:"space-between",alignItems:"center",children:[t&&v(Gs,{fontSize:r,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",children:t}),v(Lm,{size:o,className:"switch-button",...s})]})})};function PI(){const e=Ce(o=>o.system.isGFPGANAvailable),t=Ce(o=>o.options.shouldRunGFPGAN),n=je();return q(Pt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Restore Face"}),v(Xs,{isDisabled:!e,isChecked:t,onChange:o=>n(Ade(o.target.checked))})]})}const Z7=/^-?(0\.)?\.?$/,bi=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:o=!0,fontSize:i="1rem",size:s="sm",width:u,textAlign:c,isInvalid:d,value:f,onChange:h,min:m,max:g,isInteger:b=!0,...w}=e,[k,S]=C.exports.useState(String(f));C.exports.useEffect(()=>{!k.match(Z7)&&f!==Number(k)&&S(String(f))},[f,k]);const x=L=>{S(L),L.match(Z7)||h(b?Math.floor(Number(L)):Number(L))},_=L=>{const T=rf.clamp(b?Math.floor(Number(L.target.value)):Number(L.target.value),m,g);S(String(T)),h(T)};return q(ns,{isDisabled:r,isInvalid:d,className:`number-input ${n}`,children:[t&&v(Gs,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"number-input-label",children:t}),q(TA,{size:s,...w,className:"number-input-field",value:k,keepWithinRange:!0,clampValueOnBlur:!1,onChange:x,onBlur:_,children:[v(IA,{fontSize:i,className:"number-input-entry",width:u,textAlign:c}),q("div",{className:"number-input-stepper",style:o?{display:"block"}:{display:"none"},children:[v(RA,{className:"number-input-stepper-button"}),v(MA,{className:"number-input-stepper-button"})]})]})]})},Tpe=qn(e=>e.options,e=>({gfpganStrength:e.gfpganStrength}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),Ipe=qn(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),i6=()=>{const e=je(),{gfpganStrength:t}=Ce(Tpe),{isGFPGANAvailable:n}=Ce(Ipe);return v(Pt,{direction:"column",gap:2,children:v(bi,{isDisabled:!n,label:"Strength",step:.05,min:0,max:1,onChange:o=>e(Y4(o)),value:t,width:"90px",isInteger:!1})})};function Ope(){const e=je(),t=Ce(r=>r.options.shouldFitToWidthHeight);return v(Xs,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(XT(r.target.checked))})}function Mpe(e){const{label:t="Strength",styleClass:n}=e,r=Ce(s=>s.options.img2imgStrength),o=je();return v(bi,{label:t,step:.01,min:.01,max:.99,onChange:s=>o(YT(s)),value:r,width:"90px",isInteger:!1,styleClass:n})}function Rpe(){const e=je(),t=Ce(r=>r.options.shouldRandomizeSeed);return v(Xs,{label:"Randomize Seed",isChecked:t,onChange:r=>e(Ide(r.target.checked))})}function Npe(){const e=Ce(i=>i.options.seed),t=Ce(i=>i.options.shouldRandomizeSeed),n=Ce(i=>i.options.shouldGenerateVariations),r=je(),o=i=>r(Of(i));return v(bi,{label:"Seed",step:1,precision:0,flexGrow:1,min:n6,max:r6,isDisabled:t,isInvalid:e<0&&n,onChange:o,value:e,width:"10rem"})}function Dpe(){const e=je(),t=Ce(r=>r.options.shouldRandomizeSeed);return v(mi,{size:"sm",isDisabled:t,onClick:()=>e(Of(wI(n6,r6))),children:v("p",{children:"Shuffle"})})}function zpe(){const e=je(),t=Ce(r=>r.options.threshold);return v(bi,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e(kde(r)),value:t,isInteger:!1})}function Fpe(){const e=je(),t=Ce(r=>r.options.perlin);return v(bi,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(Ede(r)),value:t,isInteger:!1})}const AI=()=>q(Pt,{gap:2,direction:"column",children:[v(Rpe,{}),q(Pt,{gap:2,children:[v(Npe,{}),v(Dpe,{})]}),v(Pt,{gap:2,children:v(zpe,{})}),v(Pt,{gap:2,children:v(Fpe,{})})]});function TI(){const e=Ce(o=>o.system.isESRGANAvailable),t=Ce(o=>o.options.shouldRunESRGAN),n=je();return q(Pt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Upscale"}),v(Xs,{isDisabled:!e,isChecked:t,onChange:o=>n(Tde(o.target.checked))})]})}const jm=e=>{const{label:t,isDisabled:n,validValues:r,size:o="sm",fontSize:i="md",styleClass:s,...u}=e;return q(ns,{isDisabled:n,className:`iai-select ${s}`,children:[v(Gs,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"iai-select-label",children:t}),v(FA,{fontSize:i,size:o,...u,className:"iai-select-picker",children:r.map(c=>typeof c=="string"||typeof c=="number"?v("option",{value:c,className:"iai-select-option",children:c},c):v("option",{value:c.value,children:c.key},c.value))})]})},Bpe=qn(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),$pe=qn(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),a6=()=>{const e=je(),{upscalingLevel:t,upscalingStrength:n}=Ce(Bpe),{isESRGANAvailable:r}=Ce($pe);return q("div",{className:"upscale-options",children:[v(jm,{isDisabled:!r,label:"Scale",value:t,onChange:s=>e(X4(Number(s.target.value))),validValues:ape}),v(bi,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:s=>e(Q4(s)),value:n,isInteger:!1})]})};function Vpe(){const e=Ce(r=>r.options.shouldGenerateVariations),t=je();return v(Xs,{isChecked:e,width:"auto",onChange:r=>t(Lde(r.target.checked))})}function II(){return q(Pt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Variations"}),v(Vpe,{})]})}function Wpe(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:o="1rem",width:i,isInvalid:s,...u}=e;return q(ns,{className:`input ${n}`,isInvalid:s,isDisabled:r,flexGrow:1,children:[v(Gs,{fontSize:o,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),v(tb,{...u,className:"input-entry",size:"sm",width:i})]})}function jpe(){const e=Ce(o=>o.options.seedWeights),t=Ce(o=>o.options.shouldGenerateVariations),n=je(),r=o=>n(QT(o.target.value));return v(Wpe,{label:"Seed Weights",value:e,isInvalid:t&&!(Jb(e)||e===""),isDisabled:!t,onChange:r})}function Hpe(){const e=Ce(o=>o.options.variationAmount),t=Ce(o=>o.options.shouldGenerateVariations),n=je();return v(bi,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:o=>n(Pde(o)),isInteger:!1})}const OI=()=>q(Pt,{gap:2,direction:"column",children:[v(Hpe,{}),v(jpe,{})]});function MI(){const e=Ce(r=>r.options.showAdvancedOptions),t=je();return q("div",{className:"advanced_options_checker",children:[v("input",{type:"checkbox",name:"advanced_options",id:"",onChange:r=>t(Ode(r.target.checked)),checked:e}),v("label",{htmlFor:"advanced_options",children:"Advanced Options"})]})}function Upe(){const e=je(),t=Ce(r=>r.options.cfgScale);return v(bi,{label:"CFG Scale",step:.5,min:1,max:30,onChange:r=>e(HT(r)),value:t,width:s6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}function Gpe(){const e=Ce(r=>r.options.height),t=je();return v(jm,{label:"Height",value:e,flexGrow:1,onChange:r=>t(UT(Number(r.target.value))),validValues:ipe,fontSize:Hu,styleClass:"main-option-block"})}function Zpe(){const e=je(),t=Ce(r=>r.options.iterations);return v(bi,{label:"Images",step:1,min:1,max:9999,onChange:r=>e(_de(r)),value:t,width:s6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center"})}function Kpe(){const e=Ce(r=>r.options.sampler),t=je();return v(jm,{label:"Sampler",value:e,onChange:r=>t(ZT(r.target.value)),validValues:rpe,fontSize:Hu,styleClass:"main-option-block"})}function qpe(){const e=je(),t=Ce(r=>r.options.steps);return v(bi,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(jT(r)),value:t,width:s6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center"})}function Ype(){const e=Ce(r=>r.options.width),t=je();return v(jm,{label:"Width",value:e,flexGrow:1,onChange:r=>t(GT(Number(r.target.value))),validValues:ope,fontSize:Hu,styleClass:"main-option-block"})}const Hu="0.9rem",s6="auto";function RI(){return v("div",{className:"main-options",children:q("div",{className:"main-options-list",children:[q("div",{className:"main-options-row",children:[v(Zpe,{}),v(qpe,{}),v(Upe,{})]}),q("div",{className:"main-options-row",children:[v(Ype,{}),v(Gpe,{}),v(Kpe,{})]})]})})}var NI={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},K7=X.createContext&&X.createContext(NI),ja=globalThis&&globalThis.__assign||function(){return ja=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),uhe=({children:e,feature:t})=>{const n=Ce(lhe),{text:r}=Ape[t];return n?q(Pb,{trigger:"hover",children:[v(Ob,{children:v(po,{children:e})}),q(Ib,{className:"guide-popover-content",maxWidth:"400px",onClick:o=>o.preventDefault(),cursor:"initial",children:[v(Ab,{className:"guide-popover-arrow"}),v("div",{className:"guide-popover-guide-content",children:r})]})]}):v(yn,{})},che=ue(({feature:e,icon:t=zI},n)=>v(uhe,{feature:e,children:v(po,{ref:n,children:v(Kr,{as:t})})}));function dhe(e){const{header:t,feature:n,options:r}=e;return q(ZL,{className:"advanced-settings-item",children:[v("h2",{children:q(UL,{className:"advanced-settings-header",children:[t,v(che,{feature:n}),v(GL,{})]})}),v(KL,{className:"advanced-settings-panel",children:r})]})}const BI=e=>{const{accordionInfo:t}=e,n=Ce(s=>s.system.openAccordions),r=je();return v(qL,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:s=>r(Hde(s)),className:"advanced-settings",children:(()=>{const s=[];return t&&Object.keys(t).forEach(u=>{s.push(v(dhe,{header:t[u].header,feature:t[u].feature,options:t[u].options},u))}),s})()})},fhe=()=>{const e=je(),t=Ce(r=>r.options.hiresFix);return v(Pt,{gap:2,direction:"column",children:v(Xs,{label:"High Res Optimization",fontSize:"md",isChecked:t,onChange:r=>e(qT(r.target.checked))})})},phe=()=>{const e=je(),t=Ce(r=>r.options.seamless);return v(Pt,{gap:2,direction:"column",children:v(Xs,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(KT(r.target.checked))})})},$I=()=>q(Pt,{gap:2,direction:"column",children:[v(phe,{}),v(fhe,{})]}),Uc=e=>{const{label:t,tooltip:n="",size:r="sm",...o}=e;return v(Rn,{label:n,children:v(mi,{size:r,...o,children:t})})},Y7=qn(e=>e.options,e=>({prompt:e.prompt,shouldGenerateVariations:e.shouldGenerateVariations,seedWeights:e.seedWeights,maskPath:e.maskPath,initialImagePath:e.initialImagePath,seed:e.seed,activeTab:e.activeTab}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),l6=qn(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),VI=()=>{const{prompt:e}=Ce(Y7),{shouldGenerateVariations:t,seedWeights:n,maskPath:r,initialImagePath:o,seed:i,activeTab:s}=Ce(Y7),{isProcessing:u,isConnected:c}=Ce(l6);return C.exports.useMemo(()=>!(!e||Boolean(e.match(/^[\s\r\n]+$/))||e&&!o&&s===1||r&&!o||u||!c||t&&(!(Jb(n)||n==="")||i===-1)),[e,r,o,u,c,t,n,i,s])};function hhe(){const e=je(),t=VI();return v(Uc,{label:"Invoke","aria-label":"Invoke",type:"submit",isDisabled:!t,onClick:()=>{e(i5())},className:"invoke-btn"})}const ws=e=>{const{tooltip:t="",tooltipPlacement:n="bottom",onClick:r,...o}=e;return v(Rn,{label:t,hasArrow:!0,placement:n,children:v(un,{...o,cursor:r?"pointer":"unset",onClick:r})})};function mhe(){const e=je(),{isProcessing:t,isConnected:n}=Ce(l6),r=()=>e(Jfe());return rn("shift+x",()=>{(n||t)&&r()},[n,t]),v(ws,{icon:v(she,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!n||!t,onClick:r,className:"cancel-btn"})}const WI=()=>q("div",{className:"process-buttons",children:[v(hhe,{}),v(mhe,{})]}),ghe=qn(e=>e.options,e=>({prompt:e.prompt}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),jI=()=>{const e=C.exports.useRef(null),{prompt:t}=Ce(ghe),{isProcessing:n}=Ce(l6),r=je(),o=VI(),i=u=>{r(WT(u.target.value))};rn("ctrl+enter",()=>{o&&r(i5())},[o]),rn("alt+a",()=>{e.current?.focus()},[]);const s=u=>{u.key==="Enter"&&u.shiftKey===!1&&o&&(u.preventDefault(),r(i5()))};return v("div",{className:"prompt-bar",children:v(ns,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),isDisabled:n,children:v(ZA,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:i,onKeyDown:s,resize:"vertical",height:30,ref:e})})})};function vhe(){const e=Ce(n=>n.options.showAdvancedOptions),t={seed:{header:v(po,{flex:"1",textAlign:"left",children:"Seed"}),feature:No.SEED,options:v(AI,{})},variations:{header:v(II,{}),feature:No.VARIATIONS,options:v(OI,{})},face_restore:{header:v(PI,{}),feature:No.FACE_CORRECTION,options:v(i6,{})},upscale:{header:v(TI,{}),feature:No.UPSCALE,options:v(a6,{})},other:{header:v(po,{flex:"1",textAlign:"left",children:"Other"}),feature:No.OTHER,options:v($I,{})}};return q("div",{className:"image-to-image-panel",children:[v(jI,{}),v(WI,{}),v(RI,{}),v(Mpe,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),v(Ope,{}),v(MI,{}),e?v(BI,{accordionInfo:t}):null]})}function yhe(e){return St({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function bhe(e){return St({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function xhe(e){return St({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function whe(e){return St({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function She(e){return St({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function Che(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function _he(e){return St({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function khe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function Ehe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function Lhe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function Phe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function Ahe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function The(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function Ihe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function Ohe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}var Mhe=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Mf(e,t){var n=Rhe(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function Rhe(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),o=Mhe.get(r);o&&Object.defineProperty(e,"type",{value:o,writable:!1,configurable:!1,enumerable:!0})}return e}var Nhe=[".DS_Store","Thumbs.db"];function Dhe(e){return zu(this,void 0,void 0,function(){return Fu(this,function(t){return b0(e)&&zhe(e.dataTransfer)?[2,Vhe(e.dataTransfer,e.type)]:Fhe(e)?[2,Bhe(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,$he(e)]:[2,[]]})})}function zhe(e){return b0(e)}function Fhe(e){return b0(e)&&b0(e.target)}function b0(e){return typeof e=="object"&&e!==null}function Bhe(e){return s5(e.target.files).map(function(t){return Mf(t)})}function $he(e){return zu(this,void 0,void 0,function(){var t;return Fu(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Mf(r)})]}})})}function Vhe(e,t){return zu(this,void 0,void 0,function(){var n,r;return Fu(this,function(o){switch(o.label){case 0:return e.items?(n=s5(e.items).filter(function(i){return i.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(Whe))]):[3,2];case 1:return r=o.sent(),[2,X7(HI(r))];case 2:return[2,X7(s5(e.files).map(function(i){return Mf(i)}))]}})})}function X7(e){return e.filter(function(t){return Nhe.indexOf(t.name)===-1})}function s5(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,nC(n)];if(e.sizen)return[!1,nC(n)]}return[!0,null]}function Ss(e){return e!=null}function o1e(e){var t=e.files,n=e.accept,r=e.minSize,o=e.maxSize,i=e.multiple,s=e.maxFiles,u=e.validator;return!i&&t.length>1||i&&s>=1&&t.length>s?!1:t.every(function(c){var d=KI(c,n),f=af(d,1),h=f[0],m=qI(c,r,o),g=af(m,1),b=g[0],w=u?u(c):null;return h&&b&&!w})}function x0(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Ah(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function oC(e){e.preventDefault()}function i1e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function a1e(e){return e.indexOf("Edge/")!==-1}function s1e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return i1e(e)||a1e(e)}function Ko(){for(var e=arguments.length,t=new Array(e),n=0;n1?o-1:0),s=1;se.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function _1e(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var u6=C.exports.forwardRef(function(e,t){var n=e.children,r=w0(e,p1e),o=eO(r),i=o.open,s=w0(o,h1e);return C.exports.useImperativeHandle(t,function(){return{open:i}},[i]),v(C.exports.Fragment,{children:n(Wt(Wt({},s),{},{open:i}))})});u6.displayName="Dropzone";var JI={disabled:!1,getFilesFromEvent:Dhe,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};u6.defaultProps=JI;u6.propTypes={children:wt.exports.func,accept:wt.exports.objectOf(wt.exports.arrayOf(wt.exports.string)),multiple:wt.exports.bool,preventDropOnDocument:wt.exports.bool,noClick:wt.exports.bool,noKeyboard:wt.exports.bool,noDrag:wt.exports.bool,noDragEventsBubbling:wt.exports.bool,minSize:wt.exports.number,maxSize:wt.exports.number,maxFiles:wt.exports.number,disabled:wt.exports.bool,getFilesFromEvent:wt.exports.func,onFileDialogCancel:wt.exports.func,onFileDialogOpen:wt.exports.func,useFsAccessApi:wt.exports.bool,autoFocus:wt.exports.bool,onDragEnter:wt.exports.func,onDragLeave:wt.exports.func,onDragOver:wt.exports.func,onDrop:wt.exports.func,onDropAccepted:wt.exports.func,onDropRejected:wt.exports.func,onError:wt.exports.func,validator:wt.exports.func};var d5={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function eO(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=Wt(Wt({},JI),e),n=t.accept,r=t.disabled,o=t.getFilesFromEvent,i=t.maxSize,s=t.minSize,u=t.multiple,c=t.maxFiles,d=t.onDragEnter,f=t.onDragLeave,h=t.onDragOver,m=t.onDrop,g=t.onDropAccepted,b=t.onDropRejected,w=t.onFileDialogCancel,k=t.onFileDialogOpen,S=t.useFsAccessApi,x=t.autoFocus,_=t.preventDropOnDocument,L=t.noClick,T=t.noKeyboard,R=t.noDrag,N=t.noDragEventsBubbling,F=t.onError,G=t.validator,W=C.exports.useMemo(function(){return c1e(n)},[n]),J=C.exports.useMemo(function(){return u1e(n)},[n]),Ee=C.exports.useMemo(function(){return typeof k=="function"?k:aC},[k]),he=C.exports.useMemo(function(){return typeof w=="function"?w:aC},[w]),me=C.exports.useRef(null),ce=C.exports.useRef(null),ge=C.exports.useReducer(k1e,d5),ne=W2(ge,2),j=ne[0],Y=ne[1],K=j.isFocused,O=j.isFileDialogActive,H=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&S&&l1e()),se=function(){!H.current&&O&&setTimeout(function(){if(ce.current){var Le=ce.current.files;Le.length||(Y({type:"closeDialog"}),he())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",se,!1),function(){window.removeEventListener("focus",se,!1)}},[ce,O,he,H]);var de=C.exports.useRef([]),ye=function(Le){me.current&&me.current.contains(Le.target)||(Le.preventDefault(),de.current=[])};C.exports.useEffect(function(){return _&&(document.addEventListener("dragover",oC,!1),document.addEventListener("drop",ye,!1)),function(){_&&(document.removeEventListener("dragover",oC),document.removeEventListener("drop",ye))}},[me,_]),C.exports.useEffect(function(){return!r&&x&&me.current&&me.current.focus(),function(){}},[me,x,r]);var be=C.exports.useCallback(function(pe){F?F(pe):console.error(pe)},[F]),Pe=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe),de.current=[].concat(v1e(de.current),[pe.target]),Ah(pe)&&Promise.resolve(o(pe)).then(function(Le){if(!(x0(pe)&&!N)){var ft=Le.length,ut=ft>0&&o1e({files:Le,accept:W,minSize:s,maxSize:i,multiple:u,maxFiles:c,validator:G}),ie=ft>0&&!ut;Y({isDragAccept:ut,isDragReject:ie,isDragActive:!0,type:"setDraggedFiles"}),d&&d(pe)}}).catch(function(Le){return be(Le)})},[o,d,be,N,W,s,i,u,c,G]),fe=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe);var Le=Ah(pe);if(Le&&pe.dataTransfer)try{pe.dataTransfer.dropEffect="copy"}catch{}return Le&&h&&h(pe),!1},[h,N]),_e=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe);var Le=de.current.filter(function(ut){return me.current&&me.current.contains(ut)}),ft=Le.indexOf(pe.target);ft!==-1&&Le.splice(ft,1),de.current=Le,!(Le.length>0)&&(Y({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Ah(pe)&&f&&f(pe))},[me,f,N]),De=C.exports.useCallback(function(pe,Le){var ft=[],ut=[];pe.forEach(function(ie){var Ge=KI(ie,W),Et=W2(Ge,2),En=Et[0],Fn=Et[1],Lr=qI(ie,s,i),$o=W2(Lr,2),xi=$o[0],Yn=$o[1],qr=G?G(ie):null;if(En&&xi&&!qr)ft.push(ie);else{var os=[Fn,Yn];qr&&(os=os.concat(qr)),ut.push({file:ie,errors:os.filter(function(Qs){return Qs})})}}),(!u&&ft.length>1||u&&c>=1&&ft.length>c)&&(ft.forEach(function(ie){ut.push({file:ie,errors:[r1e]})}),ft.splice(0)),Y({acceptedFiles:ft,fileRejections:ut,type:"setFiles"}),m&&m(ft,ut,Le),ut.length>0&&b&&b(ut,Le),ft.length>0&&g&&g(ft,Le)},[Y,u,W,s,i,c,m,g,b,G]),st=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe),de.current=[],Ah(pe)&&Promise.resolve(o(pe)).then(function(Le){x0(pe)&&!N||De(Le,pe)}).catch(function(Le){return be(Le)}),Y({type:"reset"})},[o,De,be,N]),It=C.exports.useCallback(function(){if(H.current){Y({type:"openDialog"}),Ee();var pe={multiple:u,types:J};window.showOpenFilePicker(pe).then(function(Le){return o(Le)}).then(function(Le){De(Le,null),Y({type:"closeDialog"})}).catch(function(Le){d1e(Le)?(he(Le),Y({type:"closeDialog"})):f1e(Le)?(H.current=!1,ce.current?(ce.current.value=null,ce.current.click()):be(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):be(Le)});return}ce.current&&(Y({type:"openDialog"}),Ee(),ce.current.value=null,ce.current.click())},[Y,Ee,he,S,De,be,J,u]),bn=C.exports.useCallback(function(pe){!me.current||!me.current.isEqualNode(pe.target)||(pe.key===" "||pe.key==="Enter"||pe.keyCode===32||pe.keyCode===13)&&(pe.preventDefault(),It())},[me,It]),xe=C.exports.useCallback(function(){Y({type:"focus"})},[]),Ie=C.exports.useCallback(function(){Y({type:"blur"})},[]),tt=C.exports.useCallback(function(){L||(s1e()?setTimeout(It,0):It())},[L,It]),ze=function(Le){return r?null:Le},$t=function(Le){return T?null:ze(Le)},xn=function(Le){return R?null:ze(Le)},lt=function(Le){N&&Le.stopPropagation()},Ct=C.exports.useMemo(function(){return function(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Le=pe.refKey,ft=Le===void 0?"ref":Le,ut=pe.role,ie=pe.onKeyDown,Ge=pe.onFocus,Et=pe.onBlur,En=pe.onClick,Fn=pe.onDragEnter,Lr=pe.onDragOver,$o=pe.onDragLeave,xi=pe.onDrop,Yn=w0(pe,m1e);return Wt(Wt(c5({onKeyDown:$t(Ko(ie,bn)),onFocus:$t(Ko(Ge,xe)),onBlur:$t(Ko(Et,Ie)),onClick:ze(Ko(En,tt)),onDragEnter:xn(Ko(Fn,Pe)),onDragOver:xn(Ko(Lr,fe)),onDragLeave:xn(Ko($o,_e)),onDrop:xn(Ko(xi,st)),role:typeof ut=="string"&&ut!==""?ut:"presentation"},ft,me),!r&&!T?{tabIndex:0}:{}),Yn)}},[me,bn,xe,Ie,tt,Pe,fe,_e,st,T,R,r]),Jt=C.exports.useCallback(function(pe){pe.stopPropagation()},[]),Gt=C.exports.useMemo(function(){return function(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Le=pe.refKey,ft=Le===void 0?"ref":Le,ut=pe.onChange,ie=pe.onClick,Ge=w0(pe,g1e),Et=c5({accept:W,multiple:u,type:"file",style:{display:"none"},onChange:ze(Ko(ut,st)),onClick:ze(Ko(ie,Jt)),tabIndex:-1},ft,ce);return Wt(Wt({},Et),Ge)}},[ce,n,u,st,r]);return Wt(Wt({},j),{},{isFocused:K&&!r,getRootProps:Ct,getInputProps:Gt,rootRef:me,inputRef:ce,open:ze(It)})}function k1e(e,t){switch(t.type){case"focus":return Wt(Wt({},e),{},{isFocused:!0});case"blur":return Wt(Wt({},e),{},{isFocused:!1});case"openDialog":return Wt(Wt({},d5),{},{isFileDialogActive:!0});case"closeDialog":return Wt(Wt({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return Wt(Wt({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return Wt(Wt({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return Wt({},d5);default:return e}}function aC(){}const E1e=({children:e,fileAcceptedCallback:t,fileRejectionCallback:n,styleClass:r})=>{const o=C.exports.useCallback((d,f)=>{f.forEach(h=>{n(h)}),d.forEach(h=>{t(h)})},[t,n]),{getRootProps:i,getInputProps:s,open:u}=eO({onDrop:o,accept:{"image/jpeg":[".jpg",".jpeg",".png"]}}),c=d=>{d.stopPropagation(),u()};return q(po,{...i(),flexGrow:3,className:`${r}`,children:[v("input",{...s({multiple:!1})}),C.exports.cloneElement(e,{onClick:c})]})};function L1e(e){const{label:t,icon:n,dispatcher:r,styleClass:o,onMouseOver:i,OnMouseout:s}=e,u=fT(),c=je(),d=C.exports.useCallback(h=>c(r(h)),[c,r]),f=C.exports.useCallback(h=>{const m=h.errors.reduce((g,b)=>g+` +`+b.message,"");u({title:"Upload failed",description:m,status:"error",isClosable:!0})},[u]);return v(E1e,{fileAcceptedCallback:d,fileRejectionCallback:f,styleClass:o,children:v(mi,{size:"sm",fontSize:"md",fontWeight:"normal",onMouseOver:i,onMouseOut:s,leftIcon:n,width:"100%",children:t||null})})}const P1e=qn(e=>e.system,e=>e.shouldConfirmOnDelete),tO=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:o,onClose:i}=o0(),s=je(),u=Ce(P1e),c=C.exports.useRef(null),d=m=>{m.stopPropagation(),u?o():f()},f=()=>{s(Xfe(e)),i()};rn("del",()=>{u?o():f()},[e,u]);const h=m=>s(oI(!m.target.checked));return q(yn,{children:[C.exports.cloneElement(t,{onClick:d,ref:n}),v(Dte,{isOpen:r,leastDestructiveRef:c,onClose:i,children:v(Xd,{children:q(zte,{children:[v(Eb,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),v(l0,{children:q(Pt,{direction:"column",gap:5,children:[v(zr,{children:"Are you sure? You can't undo this action afterwards."}),v(ns,{children:q(Pt,{alignItems:"center",children:[v(Gs,{mb:0,children:"Don't ask me again"}),v(Lm,{checked:!u,onChange:h})]})})]})}),q(kb,{children:[v(mi,{ref:c,onClick:i,children:"Cancel"}),v(mi,{colorScheme:"red",onClick:f,ml:3,children:"Delete"})]})]})})})]})}),sC=({title:e="Popup",styleClass:t,delay:n=50,popoverOptions:r,actionButton:o,children:i})=>q(Pb,{trigger:"hover",closeDelay:n,children:[v(Ob,{children:v(po,{children:i})}),q(Ib,{className:`popover-content ${t}`,children:[v(Ab,{className:"popover-arrow"}),v(NA,{className:"popover-header",children:e}),q("div",{className:"popover-options",children:[r||null,o]})]})]}),A1e=qn(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isGFPGANAvailable:e.isGFPGANAvailable,isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),nO=({image:e})=>{const t=je(),n=Ce(S=>S.options.shouldShowImageDetails),r=fT(),o=Ce(S=>S.gallery.intermediateImage),i=Ce(S=>S.options.upscalingLevel),s=Ce(S=>S.options.gfpganStrength),{isProcessing:u,isConnected:c,isGFPGANAvailable:d,isESRGANAvailable:f}=Ce(A1e),h=()=>{t(Au(e.url)),t(Bi(1))};rn("shift+i",()=>{e?(h(),r({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):r({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[e]);const m=()=>t(JT(e.metadata));rn("a",()=>{["txt2img","img2img"].includes(e?.metadata?.image?.type)?(m(),r({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):r({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const g=()=>t(Of(e.metadata.image.seed));rn("s",()=>{e?.metadata?.image?.seed?(g(),r({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):r({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const b=()=>t(qfe(e));rn("u",()=>{f&&Boolean(!o)&&c&&!u&&i?b():r({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[e,f,o,c,u,i]);const w=()=>t(Yfe(e));rn("r",()=>{d&&Boolean(!o)&&c&&!u&&s?w():r({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[e,d,o,c,u,s]);const k=()=>t(Mde(!n));return rn("i",()=>{e?k():r({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[e,n]),q("div",{className:"current-image-options",children:[v(ws,{icon:v(ihe,{}),tooltip:"Send To Image To Image","aria-label":"Send To Image To Image",onClick:h}),v(Uc,{label:"Use All",isDisabled:!["txt2img","img2img"].includes(e?.metadata?.image?.type),onClick:m}),v(Uc,{label:"Use Seed",isDisabled:!e?.metadata?.image?.seed,onClick:g}),v(sC,{title:"Restore Faces",popoverOptions:v(i6,{}),actionButton:v(Uc,{label:"Restore Faces",isDisabled:!d||Boolean(o)||!(c&&!u)||!s,onClick:w}),children:v(ws,{icon:v(ehe,{}),"aria-label":"Restore Faces"})}),v(sC,{title:"Upscale",styleClass:"upscale-popover",popoverOptions:v(a6,{}),actionButton:v(Uc,{label:"Upscale Image",isDisabled:!f||Boolean(o)||!(c&&!u)||!i,onClick:b}),children:v(ws,{icon:v(rhe,{}),"aria-label":"Upscale"})}),v(ws,{icon:v(the,{}),tooltip:"Details","aria-label":"Details",onClick:k}),v(tO,{image:e,children:v(ws,{icon:v(Jpe,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:Boolean(o)})})]})},T1e=qn(e=>e.gallery,e=>{const t=e.images.findIndex(r=>r.uuid===e?.currentImage?.uuid),n=e.images.length;return{isOnFirstImage:t===0,isOnLastImage:!isNaN(t)&&t===n-1}},{memoizeOptions:{resultEqualityCheck:rf.isEqual}});function rO(e){const{imageToDisplay:t}=e,n=je(),{isOnFirstImage:r,isOnLastImage:o}=Ce(T1e),i=Ce(m=>m.options.shouldShowImageDetails),[s,u]=C.exports.useState(!1),c=()=>{u(!0)},d=()=>{u(!1)},f=()=>{n(nI())},h=()=>{n(tI())};return q("div",{className:"current-image-preview",children:[v(ym,{src:t.url,fit:"contain",maxWidth:"100%",maxHeight:"100%"}),!i&&q("div",{className:"current-image-next-prev-buttons",children:[v("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:c,onMouseOut:d,children:s&&!r&&v(un,{"aria-label":"Previous image",icon:v(whe,{className:"next-prev-button"}),variant:"unstyled",onClick:f})}),v("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:c,onMouseOut:d,children:s&&!o&&v(un,{"aria-label":"Next image",icon:v(She,{className:"next-prev-button"}),variant:"unstyled",onClick:h})})]})]})}var lC={path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},oO=ue((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:u,__css:c,...d}=e,f=Qt("chakra-icon",u),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??lC.viewBox;if(n&&typeof n!="string")return X.createElement(oe.svg,{as:n,...m,...d});const b=s??lC.path;return X.createElement(oe.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});oO.displayName="Icon";function Te(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=ue((u,c)=>v(oO,{ref:c,viewBox:t,...o,...u,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}Te({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});Te({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});Te({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});Te({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});Te({displayName:"SunIcon",path:q("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[v("circle",{cx:"12",cy:"12",r:"5"}),v("path",{d:"M12 1v2"}),v("path",{d:"M12 21v2"}),v("path",{d:"M4.22 4.22l1.42 1.42"}),v("path",{d:"M18.36 18.36l1.42 1.42"}),v("path",{d:"M1 12h2"}),v("path",{d:"M21 12h2"}),v("path",{d:"M4.22 19.78l1.42-1.42"}),v("path",{d:"M18.36 5.64l1.42-1.42"})]})});Te({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});Te({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:v("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});Te({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});Te({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});Te({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});Te({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});Te({displayName:"ViewIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),v("circle",{cx:"12",cy:"12",r:"2"})]})});Te({displayName:"ViewOffIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),v("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});Te({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});Te({displayName:"DeleteIcon",path:v("g",{fill:"currentColor",children:v("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});Te({displayName:"RepeatIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),v("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});Te({displayName:"RepeatClockIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),v("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});Te({displayName:"EditIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),v("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});Te({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});Te({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});Te({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});Te({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});Te({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});Te({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});Te({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});Te({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});Te({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var iO=Te({displayName:"ExternalLinkIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),v("path",{d:"M15 3h6v6"}),v("path",{d:"M10 14L21 3"})]})});Te({displayName:"LinkIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),v("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});Te({displayName:"PlusSquareIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),v("path",{d:"M12 8v8"}),v("path",{d:"M8 12h8"})]})});Te({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});Te({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});Te({displayName:"TimeIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),v("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});Te({displayName:"ArrowRightIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),v("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});Te({displayName:"ArrowLeftIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),v("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});Te({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});Te({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});Te({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});Te({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});Te({displayName:"EmailIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),v("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});Te({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});Te({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});Te({displayName:"SpinnerIcon",path:q(yn,{children:[v("defs",{children:q("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[v("stop",{stopColor:"currentColor",offset:"0%"}),v("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),q("g",{transform:"translate(2)",fill:"none",children:[v("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),v("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),v("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});Te({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});Te({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:v("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});Te({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});Te({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});Te({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});Te({displayName:"InfoOutlineIcon",path:q("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[v("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),v("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),v("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});Te({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});Te({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});Te({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});Te({displayName:"QuestionOutlineIcon",path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});Te({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});Te({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});Te({viewBox:"0 0 14 14",path:v("g",{fill:"currentColor",children:v("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});Te({displayName:"MinusIcon",path:v("g",{fill:"currentColor",children:v("rect",{height:"4",width:"20",x:"2",y:"10"})})});Te({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function aO(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const Kt=({label:e,value:t,onClick:n,isLink:r,labelPosition:o})=>q(Pt,{gap:2,children:[n&&v(Rn,{label:`Recall ${e}`,children:v(un,{"aria-label":"Use this parameter",icon:v(aO,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),q(Pt,{direction:o?"column":"row",children:[q(zr,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?q(au,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",v(iO,{mx:"2px"})]}):v(zr,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),I1e=(e,t)=>e.image.uuid===t.image.uuid,sO=C.exports.memo(({image:e,styleClass:t})=>{const n=je(),r=e?.metadata?.image||{},{type:o,postprocessing:i,sampler:s,prompt:u,seed:c,variations:d,steps:f,cfg_scale:h,seamless:m,hires_fix:g,width:b,height:w,strength:k,fit:S,init_image_path:x,mask_image_path:_,orig_path:L,scale:T}=r,R=JSON.stringify(r,null,2);return v("div",{className:`image-metadata-viewer ${t}`,children:q(Pt,{gap:1,direction:"column",width:"100%",children:[q(Pt,{gap:2,children:[v(zr,{fontWeight:"semibold",children:"File:"}),q(au,{href:e.url,isExternal:!0,children:[e.url,v(iO,{mx:"2px"})]})]}),Object.keys(r).length>0?q(yn,{children:[o&&v(Kt,{label:"Generation type",value:o}),["esrgan","gfpgan"].includes(o)&&v(Kt,{label:"Original image",value:L}),o==="gfpgan"&&k!==void 0&&v(Kt,{label:"Fix faces strength",value:k,onClick:()=>n(Y4(k))}),o==="esrgan"&&T!==void 0&&v(Kt,{label:"Upscaling scale",value:T,onClick:()=>n(X4(T))}),o==="esrgan"&&k!==void 0&&v(Kt,{label:"Upscaling strength",value:k,onClick:()=>n(Q4(k))}),u&&v(Kt,{label:"Prompt",labelPosition:"top",value:K4(u),onClick:()=>n(WT(u))}),c!==void 0&&v(Kt,{label:"Seed",value:c,onClick:()=>n(Of(c))}),s&&v(Kt,{label:"Sampler",value:s,onClick:()=>n(ZT(s))}),f&&v(Kt,{label:"Steps",value:f,onClick:()=>n(jT(f))}),h!==void 0&&v(Kt,{label:"CFG scale",value:h,onClick:()=>n(HT(h))}),d&&d.length>0&&v(Kt,{label:"Seed-weight pairs",value:q4(d),onClick:()=>n(QT(q4(d)))}),m&&v(Kt,{label:"Seamless",value:m,onClick:()=>n(KT(m))}),g&&v(Kt,{label:"High Resolution Optimization",value:g,onClick:()=>n(qT(g))}),b&&v(Kt,{label:"Width",value:b,onClick:()=>n(GT(b))}),w&&v(Kt,{label:"Height",value:w,onClick:()=>n(UT(w))}),x&&v(Kt,{label:"Initial image",value:x,isLink:!0,onClick:()=>n(Au(x))}),_&&v(Kt,{label:"Mask image",value:_,isLink:!0,onClick:()=>n(J4(_))}),o==="img2img"&&k&&v(Kt,{label:"Image to image strength",value:k,onClick:()=>n(YT(k))}),S&&v(Kt,{label:"Image to image fit",value:S,onClick:()=>n(XT(S))}),i&&i.length>0&&q(yn,{children:[v(rb,{size:"sm",children:"Postprocessing"}),i.map((N,F)=>{if(N.type==="esrgan"){const{scale:G,strength:W}=N;return q(Pt,{pl:"2rem",gap:1,direction:"column",children:[v(zr,{size:"md",children:`${F+1}: Upscale (ESRGAN)`}),v(Kt,{label:"Scale",value:G,onClick:()=>n(X4(G))}),v(Kt,{label:"Strength",value:W,onClick:()=>n(Q4(W))})]},F)}else if(N.type==="gfpgan"){const{strength:G}=N;return q(Pt,{pl:"2rem",gap:1,direction:"column",children:[v(zr,{size:"md",children:`${F+1}: Face restoration (GFPGAN)`}),v(Kt,{label:"Strength",value:G,onClick:()=>n(Y4(G))})]},F)}})]}),q(Pt,{gap:2,direction:"column",children:[q(Pt,{gap:2,children:[v(Rn,{label:"Copy metadata JSON",children:v(un,{"aria-label":"Copy metadata JSON",icon:v(khe,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(R)})}),v(zr,{fontWeight:"semibold",children:"Metadata JSON:"})]}),v("div",{className:"image-json-viewer",children:v("pre",{children:R})})]})]}):v(yP,{width:"100%",pt:10,children:v(zr,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},I1e);function uC(){const e=Ce(r=>r.options.initialImagePath),t=je();return q("div",{className:"init-image-preview",children:[q("div",{className:"init-image-preview-header",children:[v("h1",{children:"Initial Image"}),v(un,{isDisabled:!e,size:"sm","aria-label":"Reset Initial Image",onClick:r=>{r.stopPropagation(),t(Au(null))},icon:v(FI,{})})]}),e&&v("div",{className:"init-image-image",children:v(ym,{fit:"contain",src:e,rounded:"md"})})]})}function O1e(){const e=Ce(i=>i.options.initialImagePath),{currentImage:t,intermediateImage:n}=Ce(i=>i.gallery),r=Ce(i=>i.options.shouldShowImageDetails),o=n||t;return v("div",{className:"image-to-image-display",style:o?{gridAutoRows:"max-content auto"}:{gridAutoRows:"auto"},children:e?v(yn,{children:o?q(yn,{children:[v(nO,{image:o}),q("div",{className:"image-to-image-dual-preview-container",children:[q("div",{className:"image-to-image-dual-preview",children:[v(uC,{}),v("div",{className:"image-to-image-current-image-display",children:v(rO,{imageToDisplay:o})})]}),r&&v(sO,{image:o,styleClass:"img2img-metadata"})]})]}):v("div",{className:"image-to-image-single-preview",children:v(uC,{})})}):v("div",{className:"upload-image",children:v(L1e,{label:"Upload or Drop Image Here",icon:v(Ohe,{}),styleClass:"image-to-image-upload-btn",dispatcher:epe})})})}var M1e=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,o){r.__proto__=o}||function(r,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(r[i]=o[i])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),an=globalThis&&globalThis.__assign||function(){return an=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof o>"u"?void 0:Number(o),minWidth:typeof i>"u"?void 0:Number(i),minHeight:typeof s>"u"?void 0:Number(s)}},$1e=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],hC="__resizable_base__",lO=function(e){D1e(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var o=r.parentNode;if(!o)return null;var i=r.window.document.createElement("div");return i.style.width="100%",i.style.height="100%",i.style.position="absolute",i.style.transform="scale(0, 0)",i.style.left="0",i.style.flex="0 0 100%",i.classList?i.classList.add(hC):i.className+=hC,o.appendChild(i),i},r.removeBase=function(o){var i=r.parentNode;!i||i.removeChild(o)},r.ref=function(o){o&&(r.resizable=o)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||z1e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var o=this.resizable.offsetWidth,i=this.resizable.offsetHeight,s=this.resizable.style.position;s!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:o,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:i,this.resizable.style.position=s}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,o=function(u){if(typeof n.state[u]>"u"||n.state[u]==="auto")return"auto";if(n.propsSize&&n.propsSize[u]&&n.propsSize[u].toString().endsWith("%")){if(n.state[u].toString().endsWith("%"))return n.state[u].toString();var c=n.getParentSize(),d=Number(n.state[u].toString().replace("px","")),f=d/c[u]*100;return f+"%"}return j2(n.state[u])},i=r&&typeof r.width<"u"&&!this.state.isResizing?j2(r.width):o("width"),s=r&&typeof r.height<"u"&&!this.state.isResizing?j2(r.height):o("height");return{width:i,height:s}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,o=this.parentNode.style.flexWrap;o!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var i={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=o),this.removeBase(n),i},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var o=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof o>"u"||o==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var o=this.props.boundsByDirection,i=this.state.direction,s=o&&Tl("left",i),u=o&&Tl("top",i),c,d;if(this.props.bounds==="parent"){var f=this.parentNode;f&&(c=s?this.resizableRight-this.parentLeft:f.offsetWidth+(this.parentLeft-this.resizableLeft),d=u?this.resizableBottom-this.parentTop:f.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(c=s?this.resizableRight:this.window.innerWidth-this.resizableLeft,d=u?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(c=s?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),d=u?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return c&&Number.isFinite(c)&&(n=n&&n"u"?10:i.width,h=typeof o.width>"u"||o.width<0?n:o.width,m=typeof i.height>"u"?10:i.height,g=typeof o.height>"u"||o.height<0?r:o.height,b=c||0,w=d||0;if(u){var k=(m-b)*this.ratio+w,S=(g-b)*this.ratio+w,x=(f-w)/this.ratio+b,_=(h-w)/this.ratio+b,L=Math.max(f,k),T=Math.min(h,S),R=Math.max(m,x),N=Math.min(g,_);n=Ih(n,L,T),r=Ih(r,R,N)}else n=Ih(n,f,h),r=Ih(r,m,g);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var o=this.props.bounds.getBoundingClientRect();this.targetLeft=o.left,this.targetTop=o.top}if(this.resizable){var i=this.resizable.getBoundingClientRect(),s=i.left,u=i.top,c=i.right,d=i.bottom;this.resizableLeft=s,this.resizableRight=c,this.resizableTop=u,this.resizableBottom=d}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var o=0,i=0;if(n.nativeEvent&&F1e(n.nativeEvent)?(o=n.nativeEvent.clientX,i=n.nativeEvent.clientY):n.nativeEvent&&Oh(n.nativeEvent)&&(o=n.nativeEvent.touches[0].clientX,i=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var s=this.props.onResizeStart(n,r,this.resizable);if(s===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var u,c=this.window.getComputedStyle(this.resizable);if(c.flexBasis!=="auto"){var d=this.parentNode;if(d){var f=this.window.getComputedStyle(d).flexDirection;this.flexDir=f.startsWith("row")?"row":"column",u=c.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var h={original:{x:o,y:i,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:Xo(Xo({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:u};this.setState(h)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&Oh(n))try{n.preventDefault(),n.stopPropagation()}catch{}var o=this.props,i=o.maxWidth,s=o.maxHeight,u=o.minWidth,c=o.minHeight,d=Oh(n)?n.touches[0].clientX:n.clientX,f=Oh(n)?n.touches[0].clientY:n.clientY,h=this.state,m=h.direction,g=h.original,b=h.width,w=h.height,k=this.getParentSize(),S=B1e(k,this.window.innerWidth,this.window.innerHeight,i,s,u,c);i=S.maxWidth,s=S.maxHeight,u=S.minWidth,c=S.minHeight;var x=this.calculateNewSizeFromDirection(d,f),_=x.newHeight,L=x.newWidth,T=this.calculateNewMaxFromBoundary(i,s);this.props.snap&&this.props.snap.x&&(L=pC(L,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(_=pC(_,this.props.snap.y,this.props.snapGap));var R=this.calculateNewSizeFromAspectRatio(L,_,{width:T.maxWidth,height:T.maxHeight},{width:u,height:c});if(L=R.newWidth,_=R.newHeight,this.props.grid){var N=fC(L,this.props.grid[0]),F=fC(_,this.props.grid[1]),G=this.props.snapGap||0;L=G===0||Math.abs(N-L)<=G?N:L,_=G===0||Math.abs(F-_)<=G?F:_}var W={width:L-g.width,height:_-g.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var J=L/k.width*100;L=J+"%"}else if(b.endsWith("vw")){var Ee=L/this.window.innerWidth*100;L=Ee+"vw"}else if(b.endsWith("vh")){var he=L/this.window.innerHeight*100;L=he+"vh"}}if(w&&typeof w=="string"){if(w.endsWith("%")){var J=_/k.height*100;_=J+"%"}else if(w.endsWith("vw")){var Ee=_/this.window.innerWidth*100;_=Ee+"vw"}else if(w.endsWith("vh")){var he=_/this.window.innerHeight*100;_=he+"vh"}}var me={width:this.createSizeForCssProperty(L,"width"),height:this.createSizeForCssProperty(_,"height")};this.flexDir==="row"?me.flexBasis=me.width:this.flexDir==="column"&&(me.flexBasis=me.height),Iu.exports.flushSync(function(){r.setState(me)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,W)}},t.prototype.onMouseUp=function(n){var r=this.state,o=r.isResizing,i=r.direction,s=r.original;if(!(!o||!this.resizable)){var u={width:this.size.width-s.width,height:this.size.height-s.height};this.props.onResizeStop&&this.props.onResizeStop(n,i,this.resizable,u),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:Xo(Xo({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,o=r.enable,i=r.handleStyles,s=r.handleClasses,u=r.handleWrapperStyle,c=r.handleWrapperClass,d=r.handleComponent;if(!o)return null;var f=Object.keys(o).map(function(h){return o[h]!==!1?v(N1e,{direction:h,onResizeStart:n.onResizeStart,replaceStyles:i&&i[h],className:s&&s[h],children:d&&d[h]?d[h]:null},h):null});return v("div",{className:c,style:u,children:f})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(s,u){return $1e.indexOf(u)!==-1||(s[u]=n.props[u]),s},{}),o=Xo(Xo(Xo({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(o.flexBasis=this.state.flexBasis);var i=this.props.as||"div";return q(i,{...Xo({ref:this.ref,style:o,className:this.props.className},r),children:[this.state.isResizing&&v("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function V1e(e,t){if(e==null)return{};var n=W1e(e,t),r,o;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function W1e(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}function mC(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Nc(e){for(var t=1;t{this.reCalculateColumnCount()})}reCalculateColumnCount(){const t=window&&window.innerWidth||1/0;let n=this.props.breakpointCols;typeof n!="object"&&(n={default:parseInt(n)||H2});let r=1/0,o=n.default||H2;for(let i in n){const s=parseInt(i);s>0&&t<=s&&s"u"&&(s="my-masonry-grid_column"));const u=Nc(Nc(Nc({},t),n),{},{style:Nc(Nc({},n.style),{},{width:i}),className:s});return o.map((c,d)=>C.exports.createElement("div",{...u,key:d},c))}logDeprecated(t){console.error("[Masonry]",t)}render(){const t=this.props,{children:n,breakpointCols:r,columnClassName:o,columnAttrs:i,column:s,className:u}=t,c=V1e(t,["children","breakpointCols","columnClassName","columnAttrs","column","className"]);let d=u;return typeof u!="string"&&(this.logDeprecated('The property "className" requires a string'),typeof u>"u"&&(d="my-masonry-grid")),v("div",{...c,className:d,children:this.renderColumns()})}}uO.defaultProps=H1e;const U1e=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,G1e=C.exports.memo(e=>{const[t,n]=C.exports.useState(!1),r=je(),o=Ce(k=>k.options.activeTab),{image:i,isSelected:s}=e,{url:u,uuid:c,metadata:d}=i,f=()=>n(!0),h=()=>n(!1),m=k=>{k.stopPropagation(),r(JT(d))},g=k=>{k.stopPropagation(),r(Of(i.metadata.image.seed))},b=k=>{k.stopPropagation(),r(Au(i.url)),o!==1&&r(Bi(1))};return q(po,{position:"relative",className:"hoverable-image",onMouseOver:f,onMouseOut:h,children:[v(ym,{objectFit:"cover",rounded:"md",src:u,loading:"lazy",className:"hoverable-image-image"}),v("div",{className:"hoverable-image-content",onClick:()=>r(zde(i)),children:s&&v(Kr,{width:"50%",height:"50%",as:Che,className:"hoverable-image-check"})}),t&&q("div",{className:"hoverable-image-icons",children:[v(Rn,{label:"Delete image",hasArrow:!0,children:v(tO,{image:i,children:v(un,{colorScheme:"red","aria-label":"Delete image",icon:v(Ihe,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14})})}),["txt2img","img2img"].includes(i?.metadata?.image?.type)&&v(Rn,{label:"Use All Parameters",hasArrow:!0,children:v(un,{"aria-label":"Use All Parameters",icon:v(aO,{}),size:"xs",fontSize:18,variant:"imageHoverIconButton",onClickCapture:m})}),i?.metadata?.image?.seed!==void 0&&v(Rn,{label:"Use Seed",hasArrow:!0,children:v(un,{"aria-label":"Use Seed",icon:v(Ahe,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:g})}),v(Rn,{label:"Send To Image To Image",hasArrow:!0,children:v(un,{"aria-label":"Send To Image To Image",icon:v(Ehe,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:b})})]})]},c)},U1e);function cO(){const{images:e,currentImageUuid:t,areMoreImagesAvailable:n}=Ce(m=>m.gallery),r=Ce(m=>m.options.shouldShowGallery),o=Ce(m=>m.options.activeTab),i=je(),[s,u]=C.exports.useState(),c=m=>{u(Math.floor((window.innerWidth-m.x)/120))},d=()=>{i(P7(!r))},f=()=>{i(P7(!1))},h=()=>{i(xI())};return rn("g",()=>{d()},[r]),rn("left",()=>{i(nI())},[]),rn("right",()=>{i(tI())},[]),q("div",{className:"image-gallery-area",children:[!r&&v(ws,{tooltip:"Show Gallery",tooltipPlacement:"top","aria-label":"Show Gallery",onClick:d,className:"image-gallery-popup-btn",children:v(q7,{})}),r&&q(lO,{defaultSize:{width:"300",height:"100%"},minWidth:"300",maxWidth:o==1?"300":"600",className:"image-gallery-popup",onResize:c,children:[q("div",{className:"image-gallery-header",children:[v("h1",{children:"Your Invocations"}),v(un,{size:"sm","aria-label":"Close Gallery",onClick:f,className:"image-gallery-close-btn",icon:v(FI,{})})]}),q("div",{className:"image-gallery-container",children:[e.length?v(uO,{className:"masonry-grid",columnClassName:"masonry-grid_column",breakpointCols:s,children:e.map(m=>{const{uuid:g}=m;return v(G1e,{image:m,isSelected:t===g},g)})}):q("div",{className:"image-gallery-container-placeholder",children:[v(q7,{}),v("p",{children:"No Images In Gallery"})]}),v(mi,{onClick:h,isDisabled:!n,className:"image-gallery-load-more-btn",children:n?"Load More":"All Images Loaded"})]})]})]})}function Z1e(){const e=Ce(t=>t.options.shouldShowGallery);return q("div",{className:"image-to-image-workarea",children:[v(vhe,{}),q("div",{className:"image-to-image-display-area",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(O1e,{}),v(cO,{})]})]})}function K1e(){const e=Ce(n=>n.options.showAdvancedOptions),t={seed:{header:v(po,{flex:"1",textAlign:"left",children:"Seed"}),feature:No.SEED,options:v(AI,{})},variations:{header:v(II,{}),feature:No.VARIATIONS,options:v(OI,{})},face_restore:{header:v(PI,{}),feature:No.FACE_CORRECTION,options:v(i6,{})},upscale:{header:v(TI,{}),feature:No.UPSCALE,options:v(a6,{})},other:{header:v(po,{flex:"1",textAlign:"left",children:"Other"}),feature:No.OTHER,options:v($I,{})}};return q("div",{className:"text-to-image-panel",children:[v(jI,{}),v(WI,{}),v(RI,{}),v(MI,{}),e?v(BI,{accordionInfo:t}):null]})}const q1e=()=>{const{currentImage:e,intermediateImage:t}=Ce(o=>o.gallery),n=Ce(o=>o.options.shouldShowImageDetails),r=t||e;return r?q("div",{className:"current-image-display",children:[v("div",{className:"current-image-tools",children:v(nO,{image:r})}),v(rO,{imageToDisplay:r}),n&&v(sO,{image:r,styleClass:"current-image-metadata"})]}):v("div",{className:"current-image-display-placeholder",children:v(ahe,{})})};function Y1e(){const e=Ce(t=>t.options.shouldShowGallery);return q("div",{className:"text-to-image-workarea",children:[v(K1e,{}),q("div",{className:"text-to-image-display",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(q1e,{}),v(cO,{})]})]})}const Ol={txt2img:{title:v(Ppe,{fill:"black",boxSize:"2.5rem"}),panel:v(Y1e,{}),tooltip:"Text To Image"},img2img:{title:v(Cpe,{fill:"black",boxSize:"2.5rem"}),panel:v(Z1e,{}),tooltip:"Image To Image"},inpainting:{title:v(_pe,{fill:"black",boxSize:"2.5rem"}),panel:v(bpe,{}),tooltip:"Inpainting"},outpainting:{title:v(Epe,{fill:"black",boxSize:"2.5rem"}),panel:v(wpe,{}),tooltip:"Outpainting"},nodes:{title:v(kpe,{fill:"black",boxSize:"2.5rem"}),panel:v(xpe,{}),tooltip:"Nodes"},postprocess:{title:v(Lpe,{fill:"black",boxSize:"2.5rem"}),panel:v(Spe,{}),tooltip:"Post Processing"}},X1e=rf.map(Ol,(e,t)=>t);function Q1e(){const e=Ce(o=>o.options.activeTab),t=je();rn("1",()=>{t(Bi(0))}),rn("2",()=>{t(Bi(1))}),rn("3",()=>{t(Bi(2))}),rn("4",()=>{t(Bi(3))}),rn("5",()=>{t(Bi(4))}),rn("6",()=>{t(Bi(5))});const n=()=>{const o=[];return Object.keys(Ol).forEach(i=>{o.push(v(Rn,{hasArrow:!0,label:Ol[i].tooltip,placement:"right",children:v(GA,{children:Ol[i].title})},i))}),o},r=()=>{const o=[];return Object.keys(Ol).forEach(i=>{o.push(v(HA,{className:"app-tabs-panel",children:Ol[i].panel},i))}),o};return q(jA,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:o=>{t(Bi(o))},children:[v("div",{className:"app-tabs-list",children:n()}),v(UA,{className:"app-tabs-panels",children:r()})]})}const J1e=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:()=>{n(l1(!0));const o={...r().options};X1e[o.activeTab]==="txt2img"&&(o.shouldUseInitImage=!1);const{generationParameters:i,esrganParameters:s,gfpganParameters:u}=spe(o,r().system);t.emit("generateImage",i,s,u),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...i,...s,...u})}`}))},emitRunESRGAN:o=>{n(l1(!0));const{upscalingLevel:i,upscalingStrength:s}=r().options,u={upscale:[i,s]};t.emit("runPostprocessing",o,{type:"esrgan",...u}),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:o.url,...u})}`}))},emitRunGFPGAN:o=>{n(l1(!0));const{gfpganStrength:i}=r().options,s={gfpgan_strength:i};t.emit("runPostprocessing",o,{type:"gfpgan",...s}),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`GFPGAN fix faces requested: ${JSON.stringify({file:o.url,...s})}`}))},emitDeleteImage:o=>{const{url:i,uuid:s}=o;t.emit("deleteImage",i,s)},emitRequestImages:()=>{const{earliest_mtime:o}=r().gallery;t.emit("requestImages",o)},emitRequestNewImages:()=>{const{latest_mtime:o}=r().gallery;t.emit("requestLatestImages",o)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadInitialImage:o=>{t.emit("uploadInitialImage",o,o.name)},emitUploadMaskImage:o=>{t.emit("uploadMaskImage",o,o.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")}}},e0e=()=>{const{hostname:e,port:t}=new URL(window.location.href),n=d1(`http://${e}:${t}`,{timeout:6e4});let r=!1;return i=>s=>u=>{const{onConnect:c,onDisconnect:d,onError:f,onPostprocessingResult:h,onGenerationResult:m,onIntermediateResult:g,onProgressUpdate:b,onGalleryImages:w,onProcessingCanceled:k,onImageDeleted:S,onInitialImageUploaded:x,onMaskImageUploaded:_,onSystemConfig:L}=npe(i),{emitGenerateImage:T,emitRunESRGAN:R,emitRunGFPGAN:N,emitDeleteImage:F,emitRequestImages:G,emitRequestNewImages:W,emitCancelProcessing:J,emitUploadInitialImage:Ee,emitUploadMaskImage:he,emitRequestSystemConfig:me}=J1e(i,n);switch(r||(n.on("connect",()=>c()),n.on("disconnect",()=>d()),n.on("error",ce=>f(ce)),n.on("generationResult",ce=>m(ce)),n.on("postprocessingResult",ce=>h(ce)),n.on("intermediateResult",ce=>g(ce)),n.on("progressUpdate",ce=>b(ce)),n.on("galleryImages",ce=>w(ce)),n.on("processingCanceled",()=>{k()}),n.on("imageDeleted",ce=>{S(ce)}),n.on("initialImageUploaded",ce=>{x(ce)}),n.on("maskImageUploaded",ce=>{_(ce)}),n.on("systemConfig",ce=>{L(ce)}),r=!0),u.type){case"socketio/generateImage":{T();break}case"socketio/runESRGAN":{R(u.payload);break}case"socketio/runGFPGAN":{N(u.payload);break}case"socketio/deleteImage":{F(u.payload);break}case"socketio/requestImages":{G();break}case"socketio/requestNewImages":{W();break}case"socketio/cancelProcessing":{J();break}case"socketio/uploadInitialImage":{Ee(u.payload);break}case"socketio/uploadMaskImage":{he(u.payload);break}case"socketio/requestSystemConfig":{me();break}}s(u)}},t0e={key:"root",storage:Qb,blacklist:["gallery","system"]},n0e={key:"system",storage:Qb,blacklist:["isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},r0e=xT({options:Rde,gallery:$de,system:FT(n0e,Yde)}),o0e=FT(t0e,r0e),dO=ace({reducer:o0e,middleware:e=>e({serializableCheck:!1}).concat(e0e())}),je=Uce,Ce=Rce;function f1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?f1=function(n){return typeof n}:f1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},f1(e)}function i0e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gC(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),pO=()=>v(Pt,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:v(gm,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),u0e=qn(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),c0e=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=Ce(u0e),o=t?Math.round(t*100/n):0;return v(DA,{height:"4px",value:o,isIndeterminate:e&&!r,className:"progress-bar"})},d0e="/assets/logo.13003d72.png";function f0e(e){const{title:t,hotkey:n,description:r}=e;return q("div",{className:"hotkey-modal-item",children:[q("div",{className:"hotkey-info",children:[v("p",{className:"hotkey-title",children:t}),r&&v("p",{className:"hotkey-description",children:r})]}),v("div",{className:"hotkey-key",children:n})]})}function p0e({children:e}){const{isOpen:t,onOpen:n,onClose:r}=o0(),o=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send the current image to Image to Image module",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Previous Image",desc:"Display the previous image in the gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in the gallery",hotkey:"Arrow right"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],i=()=>{const s=[];return o.forEach((u,c)=>{s.push(v(f0e,{title:u.title,description:u.desc,hotkey:u.hotkey},c))}),s};return q(yn,{children:[C.exports.cloneElement(e,{onClick:n}),q(Eu,{isOpen:t,onClose:r,children:[v(Xd,{}),q(Yd,{className:"hotkeys-modal",children:[v(_b,{}),v("h1",{children:"Keyboard Shorcuts"}),v("div",{className:"hotkeys-modal-items",children:i()})]})]})]})}function U2({settingTitle:e,isChecked:t,dispatcher:n}){const r=je();return q(ns,{className:"settings-modal-item",children:[v(Gs,{marginBottom:1,children:e}),v(Lm,{isChecked:t,onChange:o=>r(n(o.target.checked))})]})}const h0e=qn(e=>e.system,e=>{const{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}=e;return{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}},{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),m0e=({children:e})=>{const{isOpen:t,onOpen:n,onClose:r}=o0(),{isOpen:o,onOpen:i,onClose:s}=o0(),{shouldDisplayInProgress:u,shouldConfirmOnDelete:c,shouldDisplayGuides:d}=Ce(h0e),f=()=>{hO.purge().then(()=>{r(),i()})};return q(yn,{children:[C.exports.cloneElement(e,{onClick:n}),q(Eu,{isOpen:t,onClose:r,children:[v(Xd,{}),q(Yd,{className:"settings-modal",children:[v(Eb,{className:"settings-modal-header",children:"Settings"}),v(_b,{}),q(l0,{className:"settings-modal-content",children:[q("div",{className:"settings-modal-items",children:[v(U2,{settingTitle:"Display In-Progress Images (slower)",isChecked:u,dispatcher:jde}),v(U2,{settingTitle:"Confirm on Delete",isChecked:c,dispatcher:oI}),v(U2,{settingTitle:"Display Help Icons",isChecked:d,dispatcher:Zde})]}),q("div",{className:"settings-modal-reset",children:[v(rb,{size:"md",children:"Reset Web UI"}),v(zr,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),v(zr,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."}),v(mi,{colorScheme:"red",onClick:f,children:"Reset Web UI"})]})]}),v(kb,{children:v(mi,{onClick:r,children:"Close"})})]})]}),q(Eu,{closeOnOverlayClick:!1,isOpen:o,onClose:s,isCentered:!0,children:[v(Xd,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),v(Yd,{children:v(l0,{pb:6,pt:6,children:v(Pt,{justifyContent:"center",children:v(zr,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},g0e=qn(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),v0e=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:o,hasError:i,wasErrorSeen:s}=Ce(g0e),u=je();let c;e&&!i?c="status-good":c="status-bad";let d=o;return["generating","preparing","saving image","restoring faces","upscaling"].includes(d.toLowerCase())&&(c="status-working"),d&&t&&r>1&&(d+=` (${n}/${r})`),v(Rn,{label:i&&!s?"Click to clear, check logs for details":void 0,children:v(zr,{cursor:i&&!s?"pointer":"initial",onClick:()=>{(i||!s)&&u(iI())},className:`status ${c}`,children:d})})},y0e=()=>{const{colorMode:e,toggleColorMode:t}=u3();rn("shift+d",()=>{t()},[e,t]);const n=e=="light"?v(Phe,{}):v(The,{}),r=e=="light"?18:20;return q("div",{className:"site-header",children:[q("div",{className:"site-header-left-side",children:[v("img",{src:d0e,alt:"invoke-ai-logo"}),q("h1",{children:["invoke ",v("strong",{children:"ai"})]})]}),q("div",{className:"site-header-right-side",children:[v(v0e,{}),v(m0e,{children:v(un,{"aria-label":"Settings",variant:"link",fontSize:24,size:"sm",icon:v(nhe,{})})}),v(p0e,{children:v(un,{"aria-label":"Hotkeys",variant:"link",fontSize:24,size:"sm",icon:v(ohe,{})})}),v(Rn,{hasArrow:!0,label:"Report Bug",placement:"bottom",children:v(un,{"aria-label":"Link to Github Issues",variant:"link",fontSize:23,size:"sm",icon:v(au,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:v(zI,{})})})}),v(Rn,{hasArrow:!0,label:"Github",placement:"bottom",children:v(un,{"aria-label":"Link to Github Repo",variant:"link",fontSize:20,size:"sm",icon:v(au,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:v(bhe,{})})})}),v(Rn,{hasArrow:!0,label:"Discord",placement:"bottom",children:v(un,{"aria-label":"Link to Discord Server",variant:"link",fontSize:20,size:"sm",icon:v(au,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:v(yhe,{})})})}),v(Rn,{hasArrow:!0,label:"Theme",placement:"bottom",children:v(un,{"aria-label":"Toggle Dark Mode",onClick:t,variant:"link",size:"sm",fontSize:r,icon:n})})]})]})},b0e=qn(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),x0e=qn(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),w0e=()=>{const e=je(),t=Ce(b0e),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:o}=Ce(x0e),[i,s]=C.exports.useState(!0),u=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{u.current!==null&&i&&(u.current.scrollTop=u.current.scrollHeight)},[i,t,n]);const c=()=>{e(iI()),e(T7(!n))};return rn("`",()=>{e(T7(!n))},[n]),q(yn,{children:[n&&v(lO,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0},maxHeight:"90vh",children:v("div",{className:"console",ref:u,children:t.map((d,f)=>{const{timestamp:h,message:m,level:g}=d;return q("div",{className:`console-entry console-${g}-color`,children:[q("p",{className:"console-timestamp",children:[h,":"]}),v("p",{className:"console-message",children:m})]},f)})})}),n&&v(Rn,{hasArrow:!0,label:i?"Autoscroll On":"Autoscroll Off",children:v(un,{className:`console-autoscroll-icon-button ${i&&"autoscroll-enabled"}`,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:v(xhe,{}),onClick:()=>s(!i)})}),v(Rn,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:v(un,{className:`console-toggle-icon-button ${(r||!o)&&"error-seen"}`,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?v(Lhe,{}):v(_he,{}),onClick:c})})]})};function S0e(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(o=>o)};(!{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}S0e();const C0e=()=>{const e=je(),[t,n]=C.exports.useState(!1);return C.exports.useEffect(()=>{e(tpe()),n(!0)},[e]),t?q("div",{className:"App",children:[v(c0e,{}),q("div",{className:"app-content",children:[v(y0e,{}),v(Q1e,{})]}),v("div",{className:"app-console",children:v(w0e,{})})]}):v(pO,{})};const hO=dde(dO);G2.createRoot(document.getElementById("root")).render(v(X.StrictMode,{children:v(Wce,{store:dO,children:v(fO,{loading:v(pO,{}),persistor:hO,children:q(Eue,{theme:vC,children:[v(_V,{initialColorMode:vC.config.initialColorMode}),v(C0e,{})]})})})})); diff --git a/frontend/dist/assets/index.989a0ca2.js b/frontend/dist/assets/index.989a0ca2.js deleted file mode 100644 index cc40e85ea2..0000000000 --- a/frontend/dist/assets/index.989a0ca2.js +++ /dev/null @@ -1,483 +0,0 @@ -function HF(e,t){for(var n=0;nr[o]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const s of i.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&r(s)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerpolicy&&(i.referrerPolicy=o.referrerpolicy),o.crossorigin==="use-credentials"?i.credentials="include":o.crossorigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();var Vi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function UF(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Ye={};/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var sd=Symbol.for("react.element"),GF=Symbol.for("react.portal"),ZF=Symbol.for("react.fragment"),KF=Symbol.for("react.strict_mode"),qF=Symbol.for("react.profiler"),YF=Symbol.for("react.provider"),XF=Symbol.for("react.context"),QF=Symbol.for("react.forward_ref"),JF=Symbol.for("react.suspense"),eB=Symbol.for("react.memo"),tB=Symbol.for("react.lazy"),px=Symbol.iterator;function nB(e){return e===null||typeof e!="object"?null:(e=px&&e[px]||e["@@iterator"],typeof e=="function"?e:null)}var bC={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},xC=Object.assign,wC={};function Au(e,t,n){this.props=e,this.context=t,this.refs=wC,this.updater=n||bC}Au.prototype.isReactComponent={};Au.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};Au.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function SC(){}SC.prototype=Au.prototype;function m5(e,t,n){this.props=e,this.context=t,this.refs=wC,this.updater=n||bC}var g5=m5.prototype=new SC;g5.constructor=m5;xC(g5,Au.prototype);g5.isPureReactComponent=!0;var hx=Array.isArray,CC=Object.prototype.hasOwnProperty,v5={current:null},_C={key:!0,ref:!0,__self:!0,__source:!0};function kC(e,t,n){var r,o={},i=null,s=null;if(t!=null)for(r in t.ref!==void 0&&(s=t.ref),t.key!==void 0&&(i=""+t.key),t)CC.call(t,r)&&!_C.hasOwnProperty(r)&&(o[r]=t[r]);var u=arguments.length-2;if(u===1)o.children=n;else if(1>>1,H=j[O];if(0>>1;Oo(ye,Z))beo(Pe,ye)?(j[O]=Pe,j[be]=Z,O=be):(j[O]=ye,j[ce]=Z,O=ce);else if(beo(Pe,Z))j[O]=Pe,j[be]=Z,O=be;else break e}}return Y}function o(j,Y){var Z=j.sortIndex-Y.sortIndex;return Z!==0?Z:j.id-Y.id}if(typeof performance=="object"&&typeof performance.now=="function"){var i=performance;e.unstable_now=function(){return i.now()}}else{var s=Date,u=s.now();e.unstable_now=function(){return s.now()-u}}var c=[],f=[],d=1,h=null,m=3,g=!1,b=!1,x=!1,k=typeof setTimeout=="function"?setTimeout:null,S=typeof clearTimeout=="function"?clearTimeout:null,w=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function _(j){for(var Y=n(f);Y!==null;){if(Y.callback===null)r(f);else if(Y.startTime<=j)r(f),Y.sortIndex=Y.expirationTime,t(c,Y);else break;Y=n(f)}}function L(j){if(x=!1,_(j),!b)if(n(c)!==null)b=!0,me(T);else{var Y=n(f);Y!==null&&ne(L,Y.startTime-j)}}function T(j,Y){b=!1,x&&(x=!1,S(z),z=-1),g=!0;var Z=m;try{for(_(Y),h=n(c);h!==null&&(!(h.expirationTime>Y)||j&&!J());){var O=h.callback;if(typeof O=="function"){h.callback=null,m=h.priorityLevel;var H=O(h.expirationTime<=Y);Y=e.unstable_now(),typeof H=="function"?h.callback=H:h===n(c)&&r(c),_(Y)}else r(c);h=n(c)}if(h!==null)var se=!0;else{var ce=n(f);ce!==null&&ne(L,ce.startTime-Y),se=!1}return se}finally{h=null,m=Z,g=!1}}var R=!1,N=null,z=-1,K=5,W=-1;function J(){return!(e.unstable_now()-Wj||125O?(j.sortIndex=Z,t(f,j),n(c)===null&&j===n(f)&&(x?(S(z),z=-1):x=!0,ne(L,Z-O))):(j.sortIndex=H,t(c,j),b||g||(b=!0,me(T))),j},e.unstable_shouldYield=J,e.unstable_wrapCallback=function(j){var Y=m;return function(){var Z=m;m=Y;try{return j.apply(this,arguments)}finally{m=Z}}}})(LC);(function(e){e.exports=LC})(EC);/** - * @license React - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var PC=C.exports,Wr=EC.exports;function le(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Z2=Object.prototype.hasOwnProperty,sB=/^[: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]*$/,vx={},yx={};function lB(e){return Z2.call(yx,e)?!0:Z2.call(vx,e)?!1:sB.test(e)?yx[e]=!0:(vx[e]=!0,!1)}function uB(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function cB(e,t,n,r){if(t===null||typeof t>"u"||uB(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function ur(e,t,n,r,o,i,s){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=s}var zn={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){zn[e]=new ur(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];zn[t]=new ur(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){zn[e]=new ur(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){zn[e]=new ur(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){zn[e]=new ur(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){zn[e]=new ur(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){zn[e]=new ur(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){zn[e]=new ur(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){zn[e]=new ur(e,5,!1,e.toLowerCase(),null,!1,!1)});var b5=/[\-:]([a-z])/g;function x5(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(b5,x5);zn[t]=new ur(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(b5,x5);zn[t]=new ur(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(b5,x5);zn[t]=new ur(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){zn[e]=new ur(e,1,!1,e.toLowerCase(),null,!1,!1)});zn.xlinkHref=new ur("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){zn[e]=new ur(e,1,!1,e.toLowerCase(),null,!0,!0)});function w5(e,t,n,r){var o=zn.hasOwnProperty(t)?zn[t]:null;(o!==null?o.type!==0:r||!(2u||o[s]!==i[u]){var c=` -`+o[s].replace(" at new "," at ");return e.displayName&&c.includes("")&&(c=c.replace("",e.displayName)),c}while(1<=s&&0<=u);break}}}finally{Ev=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Dc(e):""}function fB(e){switch(e.tag){case 5:return Dc(e.type);case 16:return Dc("Lazy");case 13:return Dc("Suspense");case 19:return Dc("SuspenseList");case 0:case 2:case 15:return e=Lv(e.type,!1),e;case 11:return e=Lv(e.type.render,!1),e;case 1:return e=Lv(e.type,!0),e;default:return""}}function X2(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Ml:return"Fragment";case Ol:return"Portal";case K2:return"Profiler";case S5:return"StrictMode";case q2:return"Suspense";case Y2:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case IC:return(e.displayName||"Context")+".Consumer";case TC:return(e._context.displayName||"Context")+".Provider";case C5:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case _5:return t=e.displayName||null,t!==null?t:X2(e.type)||"Memo";case Sa:t=e._payload,e=e._init;try{return X2(e(t))}catch{}}return null}function dB(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return X2(t);case 8:return t===S5?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function Ha(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function MC(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function pB(e){var t=MC(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=""+s,i.call(this,s)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(s){r=""+s},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function jp(e){e._valueTracker||(e._valueTracker=pB(e))}function RC(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=MC(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function m1(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Q2(e,t){var n=t.checked;return Ut({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function xx(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=Ha(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function NC(e,t){t=t.checked,t!=null&&w5(e,"checked",t,!1)}function J2(e,t){NC(e,t);var n=Ha(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?ey(e,t.type,n):t.hasOwnProperty("defaultValue")&&ey(e,t.type,Ha(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function wx(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function ey(e,t,n){(t!=="number"||m1(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var zc=Array.isArray;function ql(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o"+t.valueOf().toString()+"",t=Hp.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function vf(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Gc={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},hB=["Webkit","ms","Moz","O"];Object.keys(Gc).forEach(function(e){hB.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Gc[t]=Gc[e]})});function BC(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Gc.hasOwnProperty(e)&&Gc[e]?(""+t).trim():t+"px"}function $C(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,o=BC(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}var mB=Ut({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ry(e,t){if(t){if(mB[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(le(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(le(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(le(61))}if(t.style!=null&&typeof t.style!="object")throw Error(le(62))}}function oy(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){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 iy=null;function k5(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var ay=null,Yl=null,Xl=null;function _x(e){if(e=cd(e)){if(typeof ay!="function")throw Error(le(280));var t=e.stateNode;t&&(t=E0(t),ay(e.stateNode,e.type,t))}}function VC(e){Yl?Xl?Xl.push(e):Xl=[e]:Yl=e}function WC(){if(Yl){var e=Yl,t=Xl;if(Xl=Yl=null,_x(e),t)for(e=0;e>>=0,e===0?32:31-(EB(e)/LB|0)|0}var Up=64,Gp=4194304;function Fc(e){switch(e&-e){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: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 e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function b1(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,o=e.suspendedLanes,i=e.pingedLanes,s=n&268435455;if(s!==0){var u=s&~o;u!==0?r=Fc(u):(i&=s,i!==0&&(r=Fc(i)))}else s=n&~o,s!==0?r=Fc(s):i!==0&&(r=Fc(i));if(r===0)return 0;if(t!==0&&t!==r&&(t&o)===0&&(o=r&-r,i=t&-t,o>=i||o===16&&(i&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function ld(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Do(t),e[t]=n}function IB(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Kc),Mx=String.fromCharCode(32),Rx=!1;function l_(e,t){switch(e){case"keyup":return i$.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function u_(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Rl=!1;function s$(e,t){switch(e){case"compositionend":return u_(t);case"keypress":return t.which!==32?null:(Rx=!0,Mx);case"textInput":return e=t.data,e===Mx&&Rx?null:e;default:return null}}function l$(e,t){if(Rl)return e==="compositionend"||!M5&&l_(e,t)?(e=a_(),zh=T5=Aa=null,Rl=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=Fx(n)}}function p_(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?p_(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function h_(){for(var e=window,t=m1();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=m1(e.document)}return t}function R5(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function v$(e){var t=h_(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&p_(n.ownerDocument.documentElement,n)){if(r!==null&&R5(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var o=n.textContent.length,i=Math.min(r.start,o);r=r.end===void 0?i:Math.min(r.end,o),!e.extend&&i>r&&(o=r,r=i,i=o),o=Bx(n,i);var s=Bx(n,r);o&&s&&(e.rangeCount!==1||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&(t=t.createRange(),t.setStart(o.node,o.offset),e.removeAllRanges(),i>r?(e.addRange(t),e.extend(s.node,s.offset)):(t.setEnd(s.node,s.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Nl=null,dy=null,Yc=null,py=!1;function $x(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;py||Nl==null||Nl!==m1(r)||(r=Nl,"selectionStart"in r&&R5(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Yc&&Cf(Yc,r)||(Yc=r,r=S1(dy,"onSelect"),0Fl||(e.current=by[Fl],by[Fl]=null,Fl--)}function Pt(e,t){Fl++,by[Fl]=e.current,e.current=t}var Ua={},Zn=Ja(Ua),xr=Ja(!1),Ns=Ua;function du(e,t){var n=e.type.contextTypes;if(!n)return Ua;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o={},i;for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function wr(e){return e=e.childContextTypes,e!=null}function _1(){Mt(xr),Mt(Zn)}function Zx(e,t,n){if(Zn.current!==Ua)throw Error(le(168));Pt(Zn,t),Pt(xr,n)}function C_(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var o in r)if(!(o in t))throw Error(le(108,dB(e)||"Unknown",o));return Ut({},n,r)}function k1(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Ua,Ns=Zn.current,Pt(Zn,e),Pt(xr,xr.current),!0}function Kx(e,t,n){var r=e.stateNode;if(!r)throw Error(le(169));n?(e=C_(e,t,Ns),r.__reactInternalMemoizedMergedChildContext=e,Mt(xr),Mt(Zn),Pt(Zn,e)):Mt(xr),Pt(xr,n)}var $i=null,L0=!1,Vv=!1;function __(e){$i===null?$i=[e]:$i.push(e)}function A$(e){L0=!0,__(e)}function es(){if(!Vv&&$i!==null){Vv=!0;var e=0,t=mt;try{var n=$i;for(mt=1;e>=s,o-=s,ji=1<<32-Do(t)+o|n<z?(K=N,N=null):K=N.sibling;var W=m(S,N,_[z],L);if(W===null){N===null&&(N=K);break}e&&N&&W.alternate===null&&t(S,N),w=i(W,w,z),R===null?T=W:R.sibling=W,R=W,N=K}if(z===_.length)return n(S,N),zt&&gs(S,z),T;if(N===null){for(;z<_.length;z++)N=h(S,_[z],L),N!==null&&(w=i(N,w,z),R===null?T=N:R.sibling=N,R=N);return zt&&gs(S,z),T}for(N=r(S,N);z<_.length;z++)K=g(N,S,z,_[z],L),K!==null&&(e&&K.alternate!==null&&N.delete(K.key===null?z:K.key),w=i(K,w,z),R===null?T=K:R.sibling=K,R=K);return e&&N.forEach(function(J){return t(S,J)}),zt&&gs(S,z),T}function x(S,w,_,L){var T=bc(_);if(typeof T!="function")throw Error(le(150));if(_=T.call(_),_==null)throw Error(le(151));for(var R=T=null,N=w,z=w=0,K=null,W=_.next();N!==null&&!W.done;z++,W=_.next()){N.index>z?(K=N,N=null):K=N.sibling;var J=m(S,N,W.value,L);if(J===null){N===null&&(N=K);break}e&&N&&J.alternate===null&&t(S,N),w=i(J,w,z),R===null?T=J:R.sibling=J,R=J,N=K}if(W.done)return n(S,N),zt&&gs(S,z),T;if(N===null){for(;!W.done;z++,W=_.next())W=h(S,W.value,L),W!==null&&(w=i(W,w,z),R===null?T=W:R.sibling=W,R=W);return zt&&gs(S,z),T}for(N=r(S,N);!W.done;z++,W=_.next())W=g(N,S,z,W.value,L),W!==null&&(e&&W.alternate!==null&&N.delete(W.key===null?z:W.key),w=i(W,w,z),R===null?T=W:R.sibling=W,R=W);return e&&N.forEach(function(ve){return t(S,ve)}),zt&&gs(S,z),T}function k(S,w,_,L){if(typeof _=="object"&&_!==null&&_.type===Ml&&_.key===null&&(_=_.props.children),typeof _=="object"&&_!==null){switch(_.$$typeof){case Wp:e:{for(var T=_.key,R=w;R!==null;){if(R.key===T){if(T=_.type,T===Ml){if(R.tag===7){n(S,R.sibling),w=o(R,_.props.children),w.return=S,S=w;break e}}else if(R.elementType===T||typeof T=="object"&&T!==null&&T.$$typeof===Sa&&tw(T)===R.type){n(S,R.sibling),w=o(R,_.props),w.ref=_c(S,R,_),w.return=S,S=w;break e}n(S,R);break}else t(S,R);R=R.sibling}_.type===Ml?(w=Ts(_.props.children,S.mode,L,_.key),w.return=S,S=w):(L=Uh(_.type,_.key,_.props,null,S.mode,L),L.ref=_c(S,w,_),L.return=S,S=L)}return s(S);case Ol:e:{for(R=_.key;w!==null;){if(w.key===R)if(w.tag===4&&w.stateNode.containerInfo===_.containerInfo&&w.stateNode.implementation===_.implementation){n(S,w.sibling),w=o(w,_.children||[]),w.return=S,S=w;break e}else{n(S,w);break}else t(S,w);w=w.sibling}w=qv(_,S.mode,L),w.return=S,S=w}return s(S);case Sa:return R=_._init,k(S,w,R(_._payload),L)}if(zc(_))return b(S,w,_,L);if(bc(_))return x(S,w,_,L);Jp(S,_)}return typeof _=="string"&&_!==""||typeof _=="number"?(_=""+_,w!==null&&w.tag===6?(n(S,w.sibling),w=o(w,_),w.return=S,S=w):(n(S,w),w=Kv(_,S.mode,L),w.return=S,S=w),s(S)):n(S,w)}return k}var hu=O_(!0),M_=O_(!1),fd={},ii=Ja(fd),Lf=Ja(fd),Pf=Ja(fd);function ks(e){if(e===fd)throw Error(le(174));return e}function j5(e,t){switch(Pt(Pf,t),Pt(Lf,e),Pt(ii,fd),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:ny(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=ny(t,e)}Mt(ii),Pt(ii,t)}function mu(){Mt(ii),Mt(Lf),Mt(Pf)}function R_(e){ks(Pf.current);var t=ks(ii.current),n=ny(t,e.type);t!==n&&(Pt(Lf,e),Pt(ii,n))}function H5(e){Lf.current===e&&(Mt(ii),Mt(Lf))}var jt=Ja(0);function I1(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Wv=[];function U5(){for(var e=0;en?n:4,e(!0);var r=jv.transition;jv.transition={};try{e(!1),t()}finally{mt=n,jv.transition=r}}function Y_(){return fo().memoizedState}function M$(e,t,n){var r=Va(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},X_(e))Q_(t,n);else if(n=P_(e,t,n,r),n!==null){var o=ar();zo(n,e,r,o),J_(n,t,r)}}function R$(e,t,n){var r=Va(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(X_(e))Q_(t,o);else{var i=e.alternate;if(e.lanes===0&&(i===null||i.lanes===0)&&(i=t.lastRenderedReducer,i!==null))try{var s=t.lastRenderedState,u=i(s,n);if(o.hasEagerState=!0,o.eagerState=u,Bo(u,s)){var c=t.interleaved;c===null?(o.next=o,V5(t)):(o.next=c.next,c.next=o),t.interleaved=o;return}}catch{}finally{}n=P_(e,t,o,r),n!==null&&(o=ar(),zo(n,e,r,o),J_(n,t,r))}}function X_(e){var t=e.alternate;return e===Ht||t!==null&&t===Ht}function Q_(e,t){Xc=O1=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function J_(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,L5(e,n)}}var M1={readContext:co,useCallback:Vn,useContext:Vn,useEffect:Vn,useImperativeHandle:Vn,useInsertionEffect:Vn,useLayoutEffect:Vn,useMemo:Vn,useReducer:Vn,useRef:Vn,useState:Vn,useDebugValue:Vn,useDeferredValue:Vn,useTransition:Vn,useMutableSource:Vn,useSyncExternalStore:Vn,useId:Vn,unstable_isNewReconciler:!1},N$={readContext:co,useCallback:function(e,t){return qo().memoizedState=[e,t===void 0?null:t],e},useContext:co,useEffect:rw,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Vh(4194308,4,U_.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Vh(4194308,4,e,t)},useInsertionEffect:function(e,t){return Vh(4,2,e,t)},useMemo:function(e,t){var n=qo();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=qo();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=M$.bind(null,Ht,e),[r.memoizedState,e]},useRef:function(e){var t=qo();return e={current:e},t.memoizedState=e},useState:nw,useDebugValue:Y5,useDeferredValue:function(e){return qo().memoizedState=e},useTransition:function(){var e=nw(!1),t=e[0];return e=O$.bind(null,e[1]),qo().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=Ht,o=qo();if(zt){if(n===void 0)throw Error(le(407));n=n()}else{if(n=t(),_n===null)throw Error(le(349));(zs&30)!==0||z_(r,t,n)}o.memoizedState=n;var i={value:n,getSnapshot:t};return o.queue=i,rw(B_.bind(null,r,i,e),[e]),r.flags|=2048,If(9,F_.bind(null,r,i,n,t),void 0,null),n},useId:function(){var e=qo(),t=_n.identifierPrefix;if(zt){var n=Hi,r=ji;n=(r&~(1<<32-Do(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Af++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),n==="select"&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[ei]=t,e[Ef]=r,lk(e,t,!1,!1),t.stateNode=e;e:{switch(s=oy(n,r),n){case"dialog":It("cancel",e),It("close",e),o=r;break;case"iframe":case"object":case"embed":It("load",e),o=r;break;case"video":case"audio":for(o=0;ovu&&(t.flags|=128,r=!0,kc(i,!1),t.lanes=4194304)}else{if(!r)if(e=I1(s),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),kc(i,!0),i.tail===null&&i.tailMode==="hidden"&&!s.alternate&&!zt)return Wn(t),null}else 2*nn()-i.renderingStartTime>vu&&n!==1073741824&&(t.flags|=128,r=!0,kc(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(n=i.last,n!==null?n.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(t=i.tail,i.rendering=t,i.tail=t.sibling,i.renderingStartTime=nn(),t.sibling=null,n=jt.current,Pt(jt,r?n&1|2:n&1),t):(Wn(t),null);case 22:case 23:return n3(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(Dr&1073741824)!==0&&(Wn(t),t.subtreeFlags&6&&(t.flags|=8192)):Wn(t),null;case 24:return null;case 25:return null}throw Error(le(156,t.tag))}function j$(e,t){switch(D5(t),t.tag){case 1:return wr(t.type)&&_1(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return mu(),Mt(xr),Mt(Zn),U5(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return H5(t),null;case 13:if(Mt(jt),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(le(340));pu()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Mt(jt),null;case 4:return mu(),null;case 10:return $5(t.type._context),null;case 22:case 23:return n3(),null;case 24:return null;default:return null}}var th=!1,Un=!1,H$=typeof WeakSet=="function"?WeakSet:Set,ke=null;function Wl(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){Kt(e,t,r)}else n.current=null}function Iy(e,t,n){try{n()}catch(r){Kt(e,t,r)}}var dw=!1;function U$(e,t){if(hy=x1,e=h_(),R5(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var o=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{n.nodeType,i.nodeType}catch{n=null;break e}var s=0,u=-1,c=-1,f=0,d=0,h=e,m=null;t:for(;;){for(var g;h!==n||o!==0&&h.nodeType!==3||(u=s+o),h!==i||r!==0&&h.nodeType!==3||(c=s+r),h.nodeType===3&&(s+=h.nodeValue.length),(g=h.firstChild)!==null;)m=h,h=g;for(;;){if(h===e)break t;if(m===n&&++f===o&&(u=s),m===i&&++d===r&&(c=s),(g=h.nextSibling)!==null)break;h=m,m=h.parentNode}h=g}n=u===-1||c===-1?null:{start:u,end:c}}else n=null}n=n||{start:0,end:0}}else n=null;for(my={focusedElem:e,selectionRange:n},x1=!1,ke=t;ke!==null;)if(t=ke,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,ke=e;else for(;ke!==null;){t=ke;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var x=b.memoizedProps,k=b.memoizedState,S=t.stateNode,w=S.getSnapshotBeforeUpdate(t.elementType===t.type?x:To(t.type,x),k);S.__reactInternalSnapshotBeforeUpdate=w}break;case 3:var _=t.stateNode.containerInfo;_.nodeType===1?_.textContent="":_.nodeType===9&&_.documentElement&&_.removeChild(_.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(le(163))}}catch(L){Kt(t,t.return,L)}if(e=t.sibling,e!==null){e.return=t.return,ke=e;break}ke=t.return}return b=dw,dw=!1,b}function Qc(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var o=r=r.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,i!==void 0&&Iy(t,n,i)}o=o.next}while(o!==r)}}function T0(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Oy(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function fk(e){var t=e.alternate;t!==null&&(e.alternate=null,fk(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[ei],delete t[Ef],delete t[yy],delete t[L$],delete t[P$])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function dk(e){return e.tag===5||e.tag===3||e.tag===4}function pw(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||dk(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function My(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=C1));else if(r!==4&&(e=e.child,e!==null))for(My(e,t,n),e=e.sibling;e!==null;)My(e,t,n),e=e.sibling}function Ry(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Ry(e,t,n),e=e.sibling;e!==null;)Ry(e,t,n),e=e.sibling}var On=null,Io=!1;function ma(e,t,n){for(n=n.child;n!==null;)pk(e,t,n),n=n.sibling}function pk(e,t,n){if(oi&&typeof oi.onCommitFiberUnmount=="function")try{oi.onCommitFiberUnmount(S0,n)}catch{}switch(n.tag){case 5:Un||Wl(n,t);case 6:var r=On,o=Io;On=null,ma(e,t,n),On=r,Io=o,On!==null&&(Io?(e=On,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):On.removeChild(n.stateNode));break;case 18:On!==null&&(Io?(e=On,n=n.stateNode,e.nodeType===8?$v(e.parentNode,n):e.nodeType===1&&$v(e,n),wf(e)):$v(On,n.stateNode));break;case 4:r=On,o=Io,On=n.stateNode.containerInfo,Io=!0,ma(e,t,n),On=r,Io=o;break;case 0:case 11:case 14:case 15:if(!Un&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){o=r=r.next;do{var i=o,s=i.destroy;i=i.tag,s!==void 0&&((i&2)!==0||(i&4)!==0)&&Iy(n,t,s),o=o.next}while(o!==r)}ma(e,t,n);break;case 1:if(!Un&&(Wl(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(u){Kt(n,t,u)}ma(e,t,n);break;case 21:ma(e,t,n);break;case 22:n.mode&1?(Un=(r=Un)||n.memoizedState!==null,ma(e,t,n),Un=r):ma(e,t,n);break;default:ma(e,t,n)}}function hw(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new H$),t.forEach(function(r){var o=eV.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))})}}function ko(e,t){var n=t.deletions;if(n!==null)for(var r=0;ro&&(o=s),r&=~i}if(r=o,r=nn()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Z$(r/1960))-r,10e?16:e,Ta===null)var r=!1;else{if(e=Ta,Ta=null,D1=0,(et&6)!==0)throw Error(le(331));var o=et;for(et|=4,ke=e.current;ke!==null;){var i=ke,s=i.child;if((ke.flags&16)!==0){var u=i.deletions;if(u!==null){for(var c=0;cnn()-e3?As(e,0):J5|=n),Sr(e,t)}function wk(e,t){t===0&&((e.mode&1)===0?t=1:(t=Gp,Gp<<=1,(Gp&130023424)===0&&(Gp=4194304)));var n=ar();e=qi(e,t),e!==null&&(ld(e,t,n),Sr(e,n))}function J$(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),wk(e,n)}function eV(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;o!==null&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(le(314))}r!==null&&r.delete(t),wk(e,n)}var Sk;Sk=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||xr.current)br=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return br=!1,V$(e,t,n);br=(e.flags&131072)!==0}else br=!1,zt&&(t.flags&1048576)!==0&&k_(t,L1,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Wh(e,t),e=t.pendingProps;var o=du(t,Zn.current);Jl(t,n),o=Z5(null,t,r,e,o,n);var i=K5();return t.flags|=1,typeof o=="object"&&o!==null&&typeof o.render=="function"&&o.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,wr(r)?(i=!0,k1(t)):i=!1,t.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,W5(t),o.updater=P0,t.stateNode=o,o._reactInternals=t,_y(t,r,e,n),t=Ly(null,t,r,!0,i,n)):(t.tag=0,zt&&i&&N5(t),ir(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Wh(e,t),e=t.pendingProps,o=r._init,r=o(r._payload),t.type=r,o=t.tag=nV(r),e=To(r,e),o){case 0:t=Ey(null,t,r,e,n);break e;case 1:t=uw(null,t,r,e,n);break e;case 11:t=sw(null,t,r,e,n);break e;case 14:t=lw(null,t,r,To(r.type,e),n);break e}throw Error(le(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),Ey(e,t,r,o,n);case 1:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),uw(e,t,r,o,n);case 3:e:{if(ik(t),e===null)throw Error(le(387));r=t.pendingProps,i=t.memoizedState,o=i.element,A_(e,t),T1(t,r,null,n);var s=t.memoizedState;if(r=s.element,i.isDehydrated)if(i={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=i,t.memoizedState=i,t.flags&256){o=gu(Error(le(423)),t),t=cw(e,t,r,n,o);break e}else if(r!==o){o=gu(Error(le(424)),t),t=cw(e,t,r,n,o);break e}else for(Fr=Fa(t.stateNode.containerInfo.firstChild),$r=t,zt=!0,Mo=null,n=M_(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(pu(),r===o){t=Yi(e,t,n);break e}ir(e,t,r,n)}t=t.child}return t;case 5:return R_(t),e===null&&wy(t),r=t.type,o=t.pendingProps,i=e!==null?e.memoizedProps:null,s=o.children,gy(r,o)?s=null:i!==null&&gy(r,i)&&(t.flags|=32),ok(e,t),ir(e,t,s,n),t.child;case 6:return e===null&&wy(t),null;case 13:return ak(e,t,n);case 4:return j5(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=hu(t,null,r,n):ir(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),sw(e,t,r,o,n);case 7:return ir(e,t,t.pendingProps,n),t.child;case 8:return ir(e,t,t.pendingProps.children,n),t.child;case 12:return ir(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,i=t.memoizedProps,s=o.value,Pt(P1,r._currentValue),r._currentValue=s,i!==null)if(Bo(i.value,s)){if(i.children===o.children&&!xr.current){t=Yi(e,t,n);break e}}else for(i=t.child,i!==null&&(i.return=t);i!==null;){var u=i.dependencies;if(u!==null){s=i.child;for(var c=u.firstContext;c!==null;){if(c.context===r){if(i.tag===1){c=Gi(-1,n&-n),c.tag=2;var f=i.updateQueue;if(f!==null){f=f.shared;var d=f.pending;d===null?c.next=c:(c.next=d.next,d.next=c),f.pending=c}}i.lanes|=n,c=i.alternate,c!==null&&(c.lanes|=n),Sy(i.return,n,t),u.lanes|=n;break}c=c.next}}else if(i.tag===10)s=i.type===t.type?null:i.child;else if(i.tag===18){if(s=i.return,s===null)throw Error(le(341));s.lanes|=n,u=s.alternate,u!==null&&(u.lanes|=n),Sy(s,n,t),s=i.sibling}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===t){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}ir(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,Jl(t,n),o=co(o),r=r(o),t.flags|=1,ir(e,t,r,n),t.child;case 14:return r=t.type,o=To(r,t.pendingProps),o=To(r.type,o),lw(e,t,r,o,n);case 15:return nk(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),Wh(e,t),t.tag=1,wr(r)?(e=!0,k1(t)):e=!1,Jl(t,n),I_(t,r,o),_y(t,r,o,n),Ly(null,t,r,!0,e,n);case 19:return sk(e,t,n);case 22:return rk(e,t,n)}throw Error(le(156,t.tag))};function Ck(e,t){return qC(e,t)}function tV(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function so(e,t,n,r){return new tV(e,t,n,r)}function o3(e){return e=e.prototype,!(!e||!e.isReactComponent)}function nV(e){if(typeof e=="function")return o3(e)?1:0;if(e!=null){if(e=e.$$typeof,e===C5)return 11;if(e===_5)return 14}return 2}function Wa(e,t){var n=e.alternate;return n===null?(n=so(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Uh(e,t,n,r,o,i){var s=2;if(r=e,typeof e=="function")o3(e)&&(s=1);else if(typeof e=="string")s=5;else e:switch(e){case Ml:return Ts(n.children,o,i,t);case S5:s=8,o|=8;break;case K2:return e=so(12,n,t,o|2),e.elementType=K2,e.lanes=i,e;case q2:return e=so(13,n,t,o),e.elementType=q2,e.lanes=i,e;case Y2:return e=so(19,n,t,o),e.elementType=Y2,e.lanes=i,e;case OC:return O0(n,o,i,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case TC:s=10;break e;case IC:s=9;break e;case C5:s=11;break e;case _5:s=14;break e;case Sa:s=16,r=null;break e}throw Error(le(130,e==null?e:typeof e,""))}return t=so(s,n,t,o),t.elementType=e,t.type=r,t.lanes=i,t}function Ts(e,t,n,r){return e=so(7,e,r,t),e.lanes=n,e}function O0(e,t,n,r){return e=so(22,e,r,t),e.elementType=OC,e.lanes=n,e.stateNode={isHidden:!1},e}function Kv(e,t,n){return e=so(6,e,null,t),e.lanes=n,e}function qv(e,t,n){return t=so(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function rV(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Av(0),this.expirationTimes=Av(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Av(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function i3(e,t,n,r,o,i,s,u,c){return e=new rV(e,t,n,u,c),t===1?(t=1,i===!0&&(t|=8)):t=0,i=so(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},W5(i),e}function oV(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=Ur})(Tu);var Sw=Tu.exports;G2.createRoot=Sw.createRoot,G2.hydrateRoot=Sw.hydrateRoot;var ai=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,z0={exports:{}},F0={};/** - * @license React - * react-jsx-runtime.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var uV=C.exports,cV=Symbol.for("react.element"),fV=Symbol.for("react.fragment"),dV=Object.prototype.hasOwnProperty,pV=uV.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,hV={key:!0,ref:!0,__self:!0,__source:!0};function Lk(e,t,n){var r,o={},i=null,s=null;n!==void 0&&(i=""+n),t.key!==void 0&&(i=""+t.key),t.ref!==void 0&&(s=t.ref);for(r in t)dV.call(t,r)&&!hV.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)o[r]===void 0&&(o[r]=t[r]);return{$$typeof:cV,type:e,key:i,ref:s,props:o,_owner:pV.current}}F0.Fragment=fV;F0.jsx=Lk;F0.jsxs=Lk;(function(e){e.exports=F0})(z0);const yn=z0.exports.Fragment,v=z0.exports.jsx,q=z0.exports.jsxs;var u3=C.exports.createContext({});u3.displayName="ColorModeContext";function c3(){const e=C.exports.useContext(u3);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var oh={light:"chakra-ui-light",dark:"chakra-ui-dark"};function mV(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const o=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,o?.()},setClassName(r){document.body.classList.add(r?oh.dark:oh.light),document.body.classList.remove(r?oh.light:oh.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const o=n.query(),i=s=>{r(s.matches?"dark":"light")};return typeof o.addListener=="function"?o.addListener(i):o.addEventListener("change",i),()=>{typeof o.removeListener=="function"?o.removeListener(i):o.removeEventListener("change",i)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var gV="chakra-ui-color-mode";function vV(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var yV=vV(gV),Cw=()=>{};function _w(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function Pk(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:o,disableTransitionOnChange:i}={},colorModeManager:s=yV}=e,u=o==="dark"?"dark":"light",[c,f]=C.exports.useState(()=>_w(s,u)),[d,h]=C.exports.useState(()=>_w(s)),{getSystemTheme:m,setClassName:g,setDataset:b,addListener:x}=C.exports.useMemo(()=>mV({preventTransition:i}),[i]),k=o==="system"&&!c?d:c,S=C.exports.useCallback(L=>{const T=L==="system"?m():L;f(T),g(T==="dark"),b(T),s.set(T)},[s,m,g,b]);ai(()=>{o==="system"&&h(m())},[]),C.exports.useEffect(()=>{const L=s.get();if(L){S(L);return}if(o==="system"){S("system");return}S(u)},[s,u,o,S]);const w=C.exports.useCallback(()=>{S(k==="dark"?"light":"dark")},[k,S]);C.exports.useEffect(()=>{if(!!r)return x(S)},[r,x,S]);const _=C.exports.useMemo(()=>({colorMode:t??k,toggleColorMode:t?Cw:w,setColorMode:t?Cw:S}),[k,w,S,t]);return v(u3.Provider,{value:_,children:n})}Pk.displayName="ColorModeProvider";var bV=new Set(["dark","light","system"]);function xV(e){let t=e;return bV.has(t)||(t="light"),t}function wV(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,o=xV(t),i=n==="cookie",s=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${o}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); - `,u=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${o}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); - `;return`!${i?s:u}`.trim()}function SV(e={}){return v("script",{id:"chakra-script",dangerouslySetInnerHTML:{__html:wV(e)}})}var By={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",o=800,i=16,s=9007199254740991,u="[object Arguments]",c="[object Array]",f="[object AsyncFunction]",d="[object Boolean]",h="[object Date]",m="[object Error]",g="[object Function]",b="[object GeneratorFunction]",x="[object Map]",k="[object Number]",S="[object Null]",w="[object Object]",_="[object Proxy]",L="[object RegExp]",T="[object Set]",R="[object String]",N="[object Undefined]",z="[object WeakMap]",K="[object ArrayBuffer]",W="[object DataView]",J="[object Float32Array]",ve="[object Float64Array]",xe="[object Int8Array]",he="[object Int16Array]",fe="[object Int32Array]",me="[object Uint8Array]",ne="[object Uint8ClampedArray]",j="[object Uint16Array]",Y="[object Uint32Array]",Z=/[\\^$.*+?()[\]{}|]/g,O=/^\[object .+?Constructor\]$/,H=/^(?:0|[1-9]\d*)$/,se={};se[J]=se[ve]=se[xe]=se[he]=se[fe]=se[me]=se[ne]=se[j]=se[Y]=!0,se[u]=se[c]=se[K]=se[d]=se[W]=se[h]=se[m]=se[g]=se[x]=se[k]=se[w]=se[L]=se[T]=se[R]=se[z]=!1;var ce=typeof Vi=="object"&&Vi&&Vi.Object===Object&&Vi,ye=typeof self=="object"&&self&&self.Object===Object&&self,be=ce||ye||Function("return this")(),Pe=t&&!t.nodeType&&t,de=Pe&&!0&&e&&!e.nodeType&&e,_e=de&&de.exports===Pe,De=_e&&ce.process,st=function(){try{var I=de&&de.require&&de.require("util").types;return I||De&&De.binding&&De.binding("util")}catch{}}(),Tt=st&&st.isTypedArray;function bn(I,F,U){switch(U.length){case 0:return I.call(F);case 1:return I.call(F,U[0]);case 2:return I.call(F,U[0],U[1]);case 3:return I.call(F,U[0],U[1],U[2])}return I.apply(F,U)}function we(I,F){for(var U=-1,Se=Array(I);++U-1}function Qm(I,F){var U=this.__data__,Se=Ci(U,I);return Se<0?(++this.size,U.push([I,F])):U[Se][1]=F,this}bo.prototype.clear=Gu,bo.prototype.delete=Ym,bo.prototype.get=Zu,bo.prototype.has=Xm,bo.prototype.set=Qm;function oa(I){var F=-1,U=I==null?0:I.length;for(this.clear();++F1?U[Ze-1]:void 0,$e=Ze>2?U[2]:void 0;for(pt=I.length>3&&typeof pt=="function"?(Ze--,pt):void 0,$e&&Ud(U[0],U[1],$e)&&(pt=Ze<3?void 0:pt,Ze=1),F=Object(F);++Se-1&&I%1==0&&I0){if(++F>=o)return arguments[0]}else F=0;return I.apply(void 0,arguments)}}function Yd(I){if(I!=null){try{return Qt.call(I)}catch{}try{return I+""}catch{}}return""}function rl(I,F){return I===F||I!==I&&F!==F}var ec=qu(function(){return arguments}())?qu:function(I){return is(I)&&Gt.call(I,"callee")&&!$o.call(I,"callee")},tc=Array.isArray;function ol(I){return I!=null&&Qd(I.length)&&!nc(I)}function vg(I){return is(I)&&ol(I)}var Xd=os||xg;function nc(I){if(!xo(I))return!1;var F=Qs(I);return F==g||F==b||F==f||F==_}function Qd(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=s}function xo(I){var F=typeof I;return I!=null&&(F=="object"||F=="function")}function is(I){return I!=null&&typeof I=="object"}function yg(I){if(!is(I)||Qs(I)!=w)return!1;var F=Fn(I);if(F===null)return!0;var U=Gt.call(F,"constructor")&&F.constructor;return typeof U=="function"&&U instanceof U&&Qt.call(U)==dt}var Jd=Tt?Ie(Tt):Dd;function bg(I){return Vd(I,ep(I))}function ep(I){return ol(I)?ug(I,!0):dg(I)}var _t=Js(function(I,F,U,Se){zd(I,F,U,Se)});function xt(I){return function(){return I}}function tp(I){return I}function xg(){return!1}e.exports=_t})(By,By.exports);const Ga=By.exports;function ri(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function Hl(e,...t){return CV(e)?e(...t):e}var CV=e=>typeof e=="function",_V=e=>/!(important)?$/.test(e),kw=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,$y=(e,t)=>n=>{const r=String(t),o=_V(r),i=kw(r),s=e?`${e}.${i}`:i;let u=ri(n.__cssMap)&&s in n.__cssMap?n.__cssMap[s].varRef:t;return u=kw(u),o?`${u} !important`:u};function Mf(e){const{scale:t,transform:n,compose:r}=e;return(i,s)=>{const u=$y(t,i)(s);let c=n?.(u,s)??u;return r&&(c=r(c,s)),c}}var ih=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Eo(e,t){return n=>{const r={property:n,scale:e};return r.transform=Mf({scale:e,transform:t}),r}}var kV=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function EV(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:kV(t),transform:n?Mf({scale:n,compose:r}):r}}var Ak=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function LV(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...Ak].join(" ")}function PV(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...Ak].join(" ")}var AV={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},TV={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function IV(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var OV={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},Tk="& > :not(style) ~ :not(style)",MV={[Tk]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},RV={[Tk]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},Vy={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},NV=new Set(Object.values(Vy)),Ik=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),DV=e=>e.trim();function zV(e,t){var n;if(e==null||Ik.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:o,values:i}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!o||!i)return e;const s=o.includes("-gradient")?o:`${o}-gradient`,[u,...c]=i.split(",").map(DV).filter(Boolean);if(c?.length===0)return e;const f=u in Vy?Vy[u]:u;c.unshift(f);const d=c.map(h=>{if(NV.has(h))return h;const m=h.indexOf(" "),[g,b]=m!==-1?[h.substr(0,m),h.substr(m+1)]:[h],x=Ok(b)?b:b&&b.split(" "),k=`colors.${g}`,S=k in t.__cssMap?t.__cssMap[k].varRef:g;return x?[S,...Array.isArray(x)?x:[x]].join(" "):S});return`${s}(${d.join(", ")})`}var Ok=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),FV=(e,t)=>zV(e,t??{});function BV(e){return/^var\(--.+\)$/.test(e)}var $V=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},Uo=e=>t=>`${e}(${t})`,Je={filter(e){return e!=="auto"?e:AV},backdropFilter(e){return e!=="auto"?e:TV},ring(e){return IV(Je.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?LV():e==="auto-gpu"?PV():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=$V(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(BV(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:FV,blur:Uo("blur"),opacity:Uo("opacity"),brightness:Uo("brightness"),contrast:Uo("contrast"),dropShadow:Uo("drop-shadow"),grayscale:Uo("grayscale"),hueRotate:Uo("hue-rotate"),invert:Uo("invert"),saturate:Uo("saturate"),sepia:Uo("sepia"),bgImage(e){return e==null||Ok(e)||Ik.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=OV[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},B={borderWidths:Eo("borderWidths"),borderStyles:Eo("borderStyles"),colors:Eo("colors"),borders:Eo("borders"),radii:Eo("radii",Je.px),space:Eo("space",ih(Je.vh,Je.px)),spaceT:Eo("space",ih(Je.vh,Je.px)),degreeT(e){return{property:e,transform:Je.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:Mf({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Eo("sizes",ih(Je.vh,Je.px)),sizesT:Eo("sizes",ih(Je.vh,Je.fraction)),shadows:Eo("shadows"),logical:EV,blur:Eo("blur",Je.blur)},Gh={background:B.colors("background"),backgroundColor:B.colors("backgroundColor"),backgroundImage:B.propT("backgroundImage",Je.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:Je.bgClip},bgSize:B.prop("backgroundSize"),bgPosition:B.prop("backgroundPosition"),bg:B.colors("background"),bgColor:B.colors("backgroundColor"),bgPos:B.prop("backgroundPosition"),bgRepeat:B.prop("backgroundRepeat"),bgAttachment:B.prop("backgroundAttachment"),bgGradient:B.propT("backgroundImage",Je.gradient),bgClip:{transform:Je.bgClip}};Object.assign(Gh,{bgImage:Gh.backgroundImage,bgImg:Gh.backgroundImage});var ot={border:B.borders("border"),borderWidth:B.borderWidths("borderWidth"),borderStyle:B.borderStyles("borderStyle"),borderColor:B.colors("borderColor"),borderRadius:B.radii("borderRadius"),borderTop:B.borders("borderTop"),borderBlockStart:B.borders("borderBlockStart"),borderTopLeftRadius:B.radii("borderTopLeftRadius"),borderStartStartRadius:B.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:B.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:B.radii("borderTopRightRadius"),borderStartEndRadius:B.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:B.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:B.borders("borderRight"),borderInlineEnd:B.borders("borderInlineEnd"),borderBottom:B.borders("borderBottom"),borderBlockEnd:B.borders("borderBlockEnd"),borderBottomLeftRadius:B.radii("borderBottomLeftRadius"),borderBottomRightRadius:B.radii("borderBottomRightRadius"),borderLeft:B.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:B.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:B.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:B.borders(["borderLeft","borderRight"]),borderInline:B.borders("borderInline"),borderY:B.borders(["borderTop","borderBottom"]),borderBlock:B.borders("borderBlock"),borderTopWidth:B.borderWidths("borderTopWidth"),borderBlockStartWidth:B.borderWidths("borderBlockStartWidth"),borderTopColor:B.colors("borderTopColor"),borderBlockStartColor:B.colors("borderBlockStartColor"),borderTopStyle:B.borderStyles("borderTopStyle"),borderBlockStartStyle:B.borderStyles("borderBlockStartStyle"),borderBottomWidth:B.borderWidths("borderBottomWidth"),borderBlockEndWidth:B.borderWidths("borderBlockEndWidth"),borderBottomColor:B.colors("borderBottomColor"),borderBlockEndColor:B.colors("borderBlockEndColor"),borderBottomStyle:B.borderStyles("borderBottomStyle"),borderBlockEndStyle:B.borderStyles("borderBlockEndStyle"),borderLeftWidth:B.borderWidths("borderLeftWidth"),borderInlineStartWidth:B.borderWidths("borderInlineStartWidth"),borderLeftColor:B.colors("borderLeftColor"),borderInlineStartColor:B.colors("borderInlineStartColor"),borderLeftStyle:B.borderStyles("borderLeftStyle"),borderInlineStartStyle:B.borderStyles("borderInlineStartStyle"),borderRightWidth:B.borderWidths("borderRightWidth"),borderInlineEndWidth:B.borderWidths("borderInlineEndWidth"),borderRightColor:B.colors("borderRightColor"),borderInlineEndColor:B.colors("borderInlineEndColor"),borderRightStyle:B.borderStyles("borderRightStyle"),borderInlineEndStyle:B.borderStyles("borderInlineEndStyle"),borderTopRadius:B.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:B.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:B.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:B.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(ot,{rounded:ot.borderRadius,roundedTop:ot.borderTopRadius,roundedTopLeft:ot.borderTopLeftRadius,roundedTopRight:ot.borderTopRightRadius,roundedTopStart:ot.borderStartStartRadius,roundedTopEnd:ot.borderStartEndRadius,roundedBottom:ot.borderBottomRadius,roundedBottomLeft:ot.borderBottomLeftRadius,roundedBottomRight:ot.borderBottomRightRadius,roundedBottomStart:ot.borderEndStartRadius,roundedBottomEnd:ot.borderEndEndRadius,roundedLeft:ot.borderLeftRadius,roundedRight:ot.borderRightRadius,roundedStart:ot.borderInlineStartRadius,roundedEnd:ot.borderInlineEndRadius,borderStart:ot.borderInlineStart,borderEnd:ot.borderInlineEnd,borderTopStartRadius:ot.borderStartStartRadius,borderTopEndRadius:ot.borderStartEndRadius,borderBottomStartRadius:ot.borderEndStartRadius,borderBottomEndRadius:ot.borderEndEndRadius,borderStartRadius:ot.borderInlineStartRadius,borderEndRadius:ot.borderInlineEndRadius,borderStartWidth:ot.borderInlineStartWidth,borderEndWidth:ot.borderInlineEndWidth,borderStartColor:ot.borderInlineStartColor,borderEndColor:ot.borderInlineEndColor,borderStartStyle:ot.borderInlineStartStyle,borderEndStyle:ot.borderInlineEndStyle});var VV={color:B.colors("color"),textColor:B.colors("color"),fill:B.colors("fill"),stroke:B.colors("stroke")},Wy={boxShadow:B.shadows("boxShadow"),mixBlendMode:!0,blendMode:B.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:B.prop("backgroundBlendMode"),opacity:!0};Object.assign(Wy,{shadow:Wy.boxShadow});var WV={filter:{transform:Je.filter},blur:B.blur("--chakra-blur"),brightness:B.propT("--chakra-brightness",Je.brightness),contrast:B.propT("--chakra-contrast",Je.contrast),hueRotate:B.degreeT("--chakra-hue-rotate"),invert:B.propT("--chakra-invert",Je.invert),saturate:B.propT("--chakra-saturate",Je.saturate),dropShadow:B.propT("--chakra-drop-shadow",Je.dropShadow),backdropFilter:{transform:Je.backdropFilter},backdropBlur:B.blur("--chakra-backdrop-blur"),backdropBrightness:B.propT("--chakra-backdrop-brightness",Je.brightness),backdropContrast:B.propT("--chakra-backdrop-contrast",Je.contrast),backdropHueRotate:B.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:B.propT("--chakra-backdrop-invert",Je.invert),backdropSaturate:B.propT("--chakra-backdrop-saturate",Je.saturate)},B1={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:Je.flexDirection},experimental_spaceX:{static:MV,transform:Mf({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:RV,transform:Mf({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:B.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:B.space("gap"),rowGap:B.space("rowGap"),columnGap:B.space("columnGap")};Object.assign(B1,{flexDir:B1.flexDirection});var Mk={gridGap:B.space("gridGap"),gridColumnGap:B.space("gridColumnGap"),gridRowGap:B.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},jV={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:Je.outline},outlineOffset:!0,outlineColor:B.colors("outlineColor")},oo={width:B.sizesT("width"),inlineSize:B.sizesT("inlineSize"),height:B.sizes("height"),blockSize:B.sizes("blockSize"),boxSize:B.sizes(["width","height"]),minWidth:B.sizes("minWidth"),minInlineSize:B.sizes("minInlineSize"),minHeight:B.sizes("minHeight"),minBlockSize:B.sizes("minBlockSize"),maxWidth:B.sizes("maxWidth"),maxInlineSize:B.sizes("maxInlineSize"),maxHeight:B.sizes("maxHeight"),maxBlockSize:B.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:B.propT("float",Je.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(oo,{w:oo.width,h:oo.height,minW:oo.minWidth,maxW:oo.maxWidth,minH:oo.minHeight,maxH:oo.maxHeight,overscroll:oo.overscrollBehavior,overscrollX:oo.overscrollBehaviorX,overscrollY:oo.overscrollBehaviorY});var HV={listStyleType:!0,listStylePosition:!0,listStylePos:B.prop("listStylePosition"),listStyleImage:!0,listStyleImg:B.prop("listStyleImage")};function UV(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const u=t.get(r);if(u.has(o))return u.get(o);const c=e(r,o,i,s);return u.set(o,c),c}},ZV=GV(UV),KV={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},qV={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},Yv=(e,t,n)=>{const r={},o=ZV(e,t,{});for(const i in o)i in n&&n[i]!=null||(r[i]=o[i]);return r},YV={srOnly:{transform(e){return e===!0?KV:e==="focusable"?qV:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>Yv(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>Yv(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>Yv(t,e,n)}},tf={position:!0,pos:B.prop("position"),zIndex:B.prop("zIndex","zIndices"),inset:B.spaceT("inset"),insetX:B.spaceT(["left","right"]),insetInline:B.spaceT("insetInline"),insetY:B.spaceT(["top","bottom"]),insetBlock:B.spaceT("insetBlock"),top:B.spaceT("top"),insetBlockStart:B.spaceT("insetBlockStart"),bottom:B.spaceT("bottom"),insetBlockEnd:B.spaceT("insetBlockEnd"),left:B.spaceT("left"),insetInlineStart:B.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:B.spaceT("right"),insetInlineEnd:B.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(tf,{insetStart:tf.insetInlineStart,insetEnd:tf.insetInlineEnd});var XV={ring:{transform:Je.ring},ringColor:B.colors("--chakra-ring-color"),ringOffset:B.prop("--chakra-ring-offset-width"),ringOffsetColor:B.colors("--chakra-ring-offset-color"),ringInset:B.prop("--chakra-ring-inset")},Ot={margin:B.spaceT("margin"),marginTop:B.spaceT("marginTop"),marginBlockStart:B.spaceT("marginBlockStart"),marginRight:B.spaceT("marginRight"),marginInlineEnd:B.spaceT("marginInlineEnd"),marginBottom:B.spaceT("marginBottom"),marginBlockEnd:B.spaceT("marginBlockEnd"),marginLeft:B.spaceT("marginLeft"),marginInlineStart:B.spaceT("marginInlineStart"),marginX:B.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:B.spaceT("marginInline"),marginY:B.spaceT(["marginTop","marginBottom"]),marginBlock:B.spaceT("marginBlock"),padding:B.space("padding"),paddingTop:B.space("paddingTop"),paddingBlockStart:B.space("paddingBlockStart"),paddingRight:B.space("paddingRight"),paddingBottom:B.space("paddingBottom"),paddingBlockEnd:B.space("paddingBlockEnd"),paddingLeft:B.space("paddingLeft"),paddingInlineStart:B.space("paddingInlineStart"),paddingInlineEnd:B.space("paddingInlineEnd"),paddingX:B.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:B.space("paddingInline"),paddingY:B.space(["paddingTop","paddingBottom"]),paddingBlock:B.space("paddingBlock")};Object.assign(Ot,{m:Ot.margin,mt:Ot.marginTop,mr:Ot.marginRight,me:Ot.marginInlineEnd,marginEnd:Ot.marginInlineEnd,mb:Ot.marginBottom,ml:Ot.marginLeft,ms:Ot.marginInlineStart,marginStart:Ot.marginInlineStart,mx:Ot.marginX,my:Ot.marginY,p:Ot.padding,pt:Ot.paddingTop,py:Ot.paddingY,px:Ot.paddingX,pb:Ot.paddingBottom,pl:Ot.paddingLeft,ps:Ot.paddingInlineStart,paddingStart:Ot.paddingInlineStart,pr:Ot.paddingRight,pe:Ot.paddingInlineEnd,paddingEnd:Ot.paddingInlineEnd});var QV={textDecorationColor:B.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:B.shadows("textShadow")},JV={clipPath:!0,transform:B.propT("transform",Je.transform),transformOrigin:!0,translateX:B.spaceT("--chakra-translate-x"),translateY:B.spaceT("--chakra-translate-y"),skewX:B.degreeT("--chakra-skew-x"),skewY:B.degreeT("--chakra-skew-y"),scaleX:B.prop("--chakra-scale-x"),scaleY:B.prop("--chakra-scale-y"),scale:B.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:B.degreeT("--chakra-rotate")},eW={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:B.prop("transitionDuration","transition.duration"),transitionProperty:B.prop("transitionProperty","transition.property"),transitionTimingFunction:B.prop("transitionTimingFunction","transition.easing")},tW={fontFamily:B.prop("fontFamily","fonts"),fontSize:B.prop("fontSize","fontSizes",Je.px),fontWeight:B.prop("fontWeight","fontWeights"),lineHeight:B.prop("lineHeight","lineHeights"),letterSpacing:B.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},nW={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:B.spaceT("scrollMargin"),scrollMarginTop:B.spaceT("scrollMarginTop"),scrollMarginBottom:B.spaceT("scrollMarginBottom"),scrollMarginLeft:B.spaceT("scrollMarginLeft"),scrollMarginRight:B.spaceT("scrollMarginRight"),scrollMarginX:B.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:B.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:B.spaceT("scrollPadding"),scrollPaddingTop:B.spaceT("scrollPaddingTop"),scrollPaddingBottom:B.spaceT("scrollPaddingBottom"),scrollPaddingLeft:B.spaceT("scrollPaddingLeft"),scrollPaddingRight:B.spaceT("scrollPaddingRight"),scrollPaddingX:B.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:B.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function Rk(e){return ri(e)&&e.reference?e.reference:String(e)}var B0=(e,...t)=>t.map(Rk).join(` ${e} `).replace(/calc/g,""),Ew=(...e)=>`calc(${B0("+",...e)})`,Lw=(...e)=>`calc(${B0("-",...e)})`,jy=(...e)=>`calc(${B0("*",...e)})`,Pw=(...e)=>`calc(${B0("/",...e)})`,Aw=e=>{const t=Rk(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:jy(t,-1)},bs=Object.assign(e=>({add:(...t)=>bs(Ew(e,...t)),subtract:(...t)=>bs(Lw(e,...t)),multiply:(...t)=>bs(jy(e,...t)),divide:(...t)=>bs(Pw(e,...t)),negate:()=>bs(Aw(e)),toString:()=>e.toString()}),{add:Ew,subtract:Lw,multiply:jy,divide:Pw,negate:Aw});function rW(e,t="-"){return e.replace(/\s+/g,t)}function oW(e){const t=rW(e.toString());return aW(iW(t))}function iW(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function aW(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function sW(e,t=""){return[t,e].filter(Boolean).join("-")}function lW(e,t){return`var(${e}${t?`, ${t}`:""})`}function uW(e,t=""){return oW(`--${sW(e,t)}`)}function ts(e,t,n){const r=uW(e,n);return{variable:r,reference:lW(r,t)}}function cW(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function fW(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function dW(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function Hy(e){if(e==null)return e;const{unitless:t}=dW(e);return t||typeof e=="number"?`${e}px`:e}var Nk=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,f3=e=>Object.fromEntries(Object.entries(e).sort(Nk));function Tw(e){const t=f3(e);return Object.assign(Object.values(t),t)}function pW(e){const t=Object.keys(f3(e));return new Set(t)}function Iw(e){if(!e)return e;e=Hy(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function $c(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${Hy(e)})`),t&&n.push("and",`(max-width: ${Hy(t)})`),n.join(" ")}function hW(e){if(!e)return null;e.base=e.base??"0px";const t=Tw(e),n=Object.entries(e).sort(Nk).map(([i,s],u,c)=>{let[,f]=c[u+1]??[];return f=parseFloat(f)>0?Iw(f):void 0,{_minW:Iw(s),breakpoint:i,minW:s,maxW:f,maxWQuery:$c(null,f),minWQuery:$c(s),minMaxQuery:$c(s,f)}}),r=pW(e),o=Array.from(r.values());return{keys:r,normalized:t,isResponsive(i){const s=Object.keys(i);return s.length>0&&s.every(u=>r.has(u))},asObject:f3(e),asArray:Tw(e),details:n,media:[null,...t.map(i=>$c(i)).slice(1)],toArrayValue(i){if(!cW(i))throw new Error("toArrayValue: value must be an object");const s=o.map(u=>i[u]??null);for(;fW(s)===null;)s.pop();return s},toObjectValue(i){if(!Array.isArray(i))throw new Error("toObjectValue: value must be an array");return i.reduce((s,u,c)=>{const f=o[c];return f!=null&&u!=null&&(s[f]=u),s},{})}}}var An={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},ga=e=>Dk(t=>e(t,"&"),"[role=group]","[data-group]",".group"),Ri=e=>Dk(t=>e(t,"~ &"),"[data-peer]",".peer"),Dk=(e,...t)=>t.map(e).join(", "),$0={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:ga(An.hover),_peerHover:Ri(An.hover),_groupFocus:ga(An.focus),_peerFocus:Ri(An.focus),_groupFocusVisible:ga(An.focusVisible),_peerFocusVisible:Ri(An.focusVisible),_groupActive:ga(An.active),_peerActive:Ri(An.active),_groupDisabled:ga(An.disabled),_peerDisabled:Ri(An.disabled),_groupInvalid:ga(An.invalid),_peerInvalid:Ri(An.invalid),_groupChecked:ga(An.checked),_peerChecked:Ri(An.checked),_groupFocusWithin:ga(An.focusWithin),_peerFocusWithin:Ri(An.focusWithin),_peerPlaceholderShown:Ri(An.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},mW=Object.keys($0);function Ow(e,t){return ts(String(e).replace(/\./g,"-"),void 0,t)}function gW(e,t){let n={};const r={};for(const[o,i]of Object.entries(e)){const{isSemantic:s,value:u}=i,{variable:c,reference:f}=Ow(o,t?.cssVarPrefix);if(!s){if(o.startsWith("space")){const m=o.split("."),[g,...b]=m,x=`${g}.-${b.join(".")}`,k=bs.negate(u),S=bs.negate(f);r[x]={value:k,var:c,varRef:S}}n[c]=u,r[o]={value:u,var:c,varRef:f};continue}const d=m=>{const b=[String(o).split(".")[0],m].join(".");if(!e[b])return m;const{reference:k}=Ow(b,t?.cssVarPrefix);return k},h=ri(u)?u:{default:u};n=Ga(n,Object.entries(h).reduce((m,[g,b])=>{var x;const k=d(b);if(g==="default")return m[c]=k,m;const S=((x=$0)==null?void 0:x[g])??g;return m[S]={[c]:k},m},{})),r[o]={value:f,var:c,varRef:f}}return{cssVars:n,cssMap:r}}function vW(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function yW(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var bW=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function xW(e){return yW(e,bW)}function wW(e){return e.semanticTokens}function SW(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...o}=e;return o}function CW({tokens:e,semanticTokens:t}){const n=Object.entries(Uy(e)??{}).map(([o,i])=>[o,{isSemantic:!1,value:i}]),r=Object.entries(Uy(t,1)??{}).map(([o,i])=>[o,{isSemantic:!0,value:i}]);return Object.fromEntries([...n,...r])}function Uy(e,t=1/0){return!ri(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,o])=>(ri(o)||Array.isArray(o)?Object.entries(Uy(o,t-1)).forEach(([i,s])=>{n[`${r}.${i}`]=s}):n[r]=o,n),{})}function _W(e){var t;const n=SW(e),r=xW(n),o=wW(n),i=CW({tokens:r,semanticTokens:o}),s=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:u,cssVars:c}=gW(i,{cssVarPrefix:s});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...c},__cssMap:u,__breakpoints:hW(n.breakpoints)}),n}var d3=Ga({},Gh,ot,VV,B1,oo,WV,XV,jV,Mk,YV,tf,Wy,Ot,nW,tW,QV,JV,HV,eW),kW=Object.assign({},Ot,oo,B1,Mk,tf),EW=Object.keys(kW),LW=[...Object.keys(d3),...mW],PW={...d3,...$0},AW=e=>e in PW;function TW(e){return/^var\(--.+\)$/.test(e)}var IW=(e,t)=>e.startsWith("--")&&typeof t=="string"&&!TW(t),OW=(e,t)=>{if(t==null)return t;const n=u=>{var c,f;return(f=(c=e.__cssMap)==null?void 0:c[u])==null?void 0:f.varRef},r=u=>n(u)??u,o=t.split(",").map(u=>u.trim()),[i,s]=o;return t=n(i)??r(s)??r(t),t};function MW(e){const{configs:t={},pseudos:n={},theme:r}=e;if(!r.__breakpoints)return()=>({});const{isResponsive:o,toArrayValue:i,media:s}=r.__breakpoints,u=(c,f=!1)=>{var d;const h=Hl(c,r);let m={};for(let g in h){let b=Hl(h[g],r);if(b==null)continue;if(Array.isArray(b)||ri(b)&&o(b)){let w=Array.isArray(b)?b:i(b);w=w.slice(0,s.length);for(let _=0;_t=>MW({theme:t,pseudos:$0,configs:d3})(e);function Bt(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function RW(e,t){if(Array.isArray(e))return e;if(ri(e))return t(e);if(e!=null)return[e]}function NW(e,t){for(let n=t+1;n{Ga(f,{[_]:m?w[_]:{[S]:w[_]}})});continue}if(!g){m?Ga(f,w):f[S]=w;continue}f[S]=w}}return f}}function zW(e){return t=>{const{variant:n,size:r,theme:o}=t,i=DW(o);return Ga({},Hl(e.baseStyle??{},t),i(e,"sizes",r,t),i(e,"variants",n,t))}}function FW(e,t,n){var r,o;return((o=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:o.varRef)??n}function vt(e){return vW(e,["styleConfig","size","variant","colorScheme"])}function BW(e){if(e.sheet)return e.sheet;for(var t=0;t0?vr(Mu,--kr):0,yu--,ln===10&&(yu=1,W0--),ln}function Vr(){return ln=kr2||Nf(ln)>3?"":" "}function XW(e,t){for(;--t&&Vr()&&!(ln<48||ln>102||ln>57&&ln<65||ln>70&&ln<97););return dd(e,Zh()+(t<6&&si()==32&&Vr()==32))}function Zy(e){for(;Vr();)switch(ln){case e:return kr;case 34:case 39:e!==34&&e!==39&&Zy(ln);break;case 40:e===41&&Zy(e);break;case 92:Vr();break}return kr}function QW(e,t){for(;Vr()&&e+ln!==47+10;)if(e+ln===42+42&&si()===47)break;return"/*"+dd(t,kr-1)+"*"+V0(e===47?e:Vr())}function JW(e){for(;!Nf(si());)Vr();return dd(e,kr)}function ej(e){return jk(qh("",null,null,null,[""],e=Wk(e),0,[0],e))}function qh(e,t,n,r,o,i,s,u,c){for(var f=0,d=0,h=s,m=0,g=0,b=0,x=1,k=1,S=1,w=0,_="",L=o,T=i,R=r,N=_;k;)switch(b=w,w=Vr()){case 40:if(b!=108&&N.charCodeAt(h-1)==58){Gy(N+=ft(Kh(w),"&","&\f"),"&\f")!=-1&&(S=-1);break}case 34:case 39:case 91:N+=Kh(w);break;case 9:case 10:case 13:case 32:N+=YW(b);break;case 92:N+=XW(Zh()-1,7);continue;case 47:switch(si()){case 42:case 47:ah(tj(QW(Vr(),Zh()),t,n),c);break;default:N+="/"}break;case 123*x:u[f++]=Qo(N)*S;case 125*x:case 59:case 0:switch(w){case 0:case 125:k=0;case 59+d:g>0&&Qo(N)-h&&ah(g>32?Rw(N+";",r,n,h-1):Rw(ft(N," ","")+";",r,n,h-2),c);break;case 59:N+=";";default:if(ah(R=Mw(N,t,n,f,d,o,u,_,L=[],T=[],h),i),w===123)if(d===0)qh(N,t,R,R,L,i,h,u,T);else switch(m){case 100:case 109:case 115:qh(e,R,R,r&&ah(Mw(e,R,R,0,0,o,u,_,o,L=[],h),T),o,T,h,u,r?L:T);break;default:qh(N,R,R,R,[""],T,0,u,T)}}f=d=g=0,x=S=1,_=N="",h=s;break;case 58:h=1+Qo(N),g=b;default:if(x<1){if(w==123)--x;else if(w==125&&x++==0&&qW()==125)continue}switch(N+=V0(w),w*x){case 38:S=d>0?1:(N+="\f",-1);break;case 44:u[f++]=(Qo(N)-1)*S,S=1;break;case 64:si()===45&&(N+=Kh(Vr())),m=si(),d=h=Qo(_=N+=JW(Zh())),w++;break;case 45:b===45&&Qo(N)==2&&(x=0)}}return i}function Mw(e,t,n,r,o,i,s,u,c,f,d){for(var h=o-1,m=o===0?i:[""],g=m3(m),b=0,x=0,k=0;b0?m[S]+" "+w:ft(w,/&\f/g,m[S])))&&(c[k++]=_);return j0(e,t,n,o===0?p3:u,c,f,d)}function tj(e,t,n){return j0(e,t,n,Fk,V0(KW()),Rf(e,2,-2),0)}function Rw(e,t,n,r){return j0(e,t,n,h3,Rf(e,0,r),Rf(e,r+1,-1),r)}function Hk(e,t){switch(UW(e,t)){case 5103:return it+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return it+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return it+e+$1+e+jn+e+e;case 6828:case 4268:return it+e+jn+e+e;case 6165:return it+e+jn+"flex-"+e+e;case 5187:return it+e+ft(e,/(\w+).+(:[^]+)/,it+"box-$1$2"+jn+"flex-$1$2")+e;case 5443:return it+e+jn+"flex-item-"+ft(e,/flex-|-self/,"")+e;case 4675:return it+e+jn+"flex-line-pack"+ft(e,/align-content|flex-|-self/,"")+e;case 5548:return it+e+jn+ft(e,"shrink","negative")+e;case 5292:return it+e+jn+ft(e,"basis","preferred-size")+e;case 6060:return it+"box-"+ft(e,"-grow","")+it+e+jn+ft(e,"grow","positive")+e;case 4554:return it+ft(e,/([^-])(transform)/g,"$1"+it+"$2")+e;case 6187:return ft(ft(ft(e,/(zoom-|grab)/,it+"$1"),/(image-set)/,it+"$1"),e,"")+e;case 5495:case 3959:return ft(e,/(image-set\([^]*)/,it+"$1$`$1");case 4968:return ft(ft(e,/(.+:)(flex-)?(.*)/,it+"box-pack:$3"+jn+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+it+e+e;case 4095:case 3583:case 4068:case 2532:return ft(e,/(.+)-inline(.+)/,it+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Qo(e)-1-t>6)switch(vr(e,t+1)){case 109:if(vr(e,t+4)!==45)break;case 102:return ft(e,/(.+:)(.+)-([^]+)/,"$1"+it+"$2-$3$1"+$1+(vr(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Gy(e,"stretch")?Hk(ft(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(vr(e,t+1)!==115)break;case 6444:switch(vr(e,Qo(e)-3-(~Gy(e,"!important")&&10))){case 107:return ft(e,":",":"+it)+e;case 101:return ft(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+it+(vr(e,14)===45?"inline-":"")+"box$3$1"+it+"$2$3$1"+jn+"$2box$3")+e}break;case 5936:switch(vr(e,t+11)){case 114:return it+e+jn+ft(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return it+e+jn+ft(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return it+e+jn+ft(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return it+e+jn+e+e}return e}function tu(e,t){for(var n="",r=m3(e),o=0;o-1&&!e.return)switch(e.type){case h3:e.return=Hk(e.value,e.length);break;case Bk:return tu([Lc(e,{value:ft(e.value,"@","@"+it)})],r);case p3:if(e.length)return ZW(e.props,function(o){switch(GW(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return tu([Lc(e,{props:[ft(o,/:(read-\w+)/,":"+$1+"$1")]})],r);case"::placeholder":return tu([Lc(e,{props:[ft(o,/:(plac\w+)/,":"+it+"input-$1")]}),Lc(e,{props:[ft(o,/:(plac\w+)/,":"+$1+"$1")]}),Lc(e,{props:[ft(o,/:(plac\w+)/,jn+"input-$1")]})],r)}return""})}}var Nw=function(t){var n=new WeakMap;return function(r){if(n.has(r))return n.get(r);var o=t(r);return n.set(r,o),o}};function Uk(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var aj=function(t,n,r){for(var o=0,i=0;o=i,i=si(),o===38&&i===12&&(n[r]=1),!Nf(i);)Vr();return dd(t,kr)},sj=function(t,n){var r=-1,o=44;do switch(Nf(o)){case 0:o===38&&si()===12&&(n[r]=1),t[r]+=aj(kr-1,n,r);break;case 2:t[r]+=Kh(o);break;case 4:if(o===44){t[++r]=si()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=V0(o)}while(o=Vr());return t},lj=function(t,n){return jk(sj(Wk(t),n))},Dw=new WeakMap,uj=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,o=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!Dw.get(r))&&!o){Dw.set(t,!0);for(var i=[],s=lj(n,i),u=r.props,c=0,f=0;c=4;++r,o-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(o){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var Cj={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},_j=/[A-Z]|^ms/g,kj=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Qk=function(t){return t.charCodeAt(1)===45},zw=function(t){return t!=null&&typeof t!="boolean"},Xv=Uk(function(e){return Qk(e)?e:e.replace(_j,"-$&").toLowerCase()}),Fw=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(kj,function(r,o,i){return Jo={name:o,styles:i,next:Jo},o})}return Cj[t]!==1&&!Qk(t)&&typeof n=="number"&&n!==0?n+"px":n};function zf(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return Jo={name:n.name,styles:n.styles,next:Jo},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)Jo={name:r.name,styles:r.styles,next:Jo},r=r.next;var o=n.styles+";";return o}return Ej(e,t,n)}case"function":{if(e!==void 0){var i=Jo,s=n(e);return Jo=i,zf(e,t,s)}break}}if(t==null)return n;var u=t[n];return u!==void 0?u:n}function Ej(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o{t.includes(r)||(n[r]=e[r])}),n}function Nj(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const u=t.get(r);if(u.has(o))return u.get(o);const c=e(r,o,i,s);return u.set(o,c),c}},rE=Dj(Nj);function oE(e,t){const n={};return Object.keys(e).forEach(r=>{const o=e[r];t(o,r,e)&&(n[r]=o)}),n}var iE=e=>oE(e,t=>t!=null);function x3(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function tm(e){if(!x3(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function zj(e){var t;return x3(e)?((t=hd(e))==null?void 0:t.defaultView)??window:window}function hd(e){return x3(e)?e.ownerDocument??document:document}function Fj(e){return e.view??window}function Bj(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var md=Bj();function $j(e){const t=hd(e);return t?.activeElement}function w3(e,t){return e?e===t||e.contains(t):!1}var aE=e=>e.hasAttribute("tabindex"),Vj=e=>aE(e)&&e.tabIndex===-1;function Wj(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function jj(e){return tm(e)&&e.localName==="input"&&"select"in e}function sE(e){return(tm(e)?hd(e):document).activeElement===e}function lE(e){return e.parentElement&&lE(e.parentElement)?!0:e.hidden}function Hj(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function uE(e){if(!tm(e)||lE(e)||Wj(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():Hj(e)?!0:aE(e)}function Uj(e){return e?tm(e)&&uE(e)&&!Vj(e):!1}var Gj=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],Zj=Gj.join(),Kj=e=>e.offsetWidth>0&&e.offsetHeight>0;function qj(e){const t=Array.from(e.querySelectorAll(Zj));return t.unshift(e),t.filter(n=>uE(n)&&Kj(n))}function V1(e,...t){return Ul(e)?e(...t):e}function Yj(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Xj(e){let t;return function(...r){return e&&(t=e.apply(this,r),e=null),t}}var Qj=Xj(e=>()=>{const{condition:t,message:n}=e;t&&Mj&&console.warn(n)}),Jj=(...e)=>t=>e.reduce((n,r)=>r(n),t);function W1(e,t={}){const{isActive:n=sE,nextTick:r,preventScroll:o=!0,selectTextIfInput:i=!0}=t;if(!e||n(e))return-1;function s(){if(!e){Qj({condition:!0,message:"[chakra-ui]: can't call focus() on `null` or `undefined` element"});return}if(eH())e.focus({preventScroll:o});else if(e.focus(),o){const u=tH(e);nH(u)}if(i){if(jj(e))e.select();else if("setSelectionRange"in e){const u=e;u.setSelectionRange(u.value.length,u.value.length)}}}return r?requestAnimationFrame(s):(s(),-1)}var sh=null;function eH(){if(sh==null){sh=!1;try{document.createElement("div").focus({get preventScroll(){return sh=!0,!0}})}catch{}}return sh}function tH(e){const t=hd(e),n=t.defaultView??window;let r=e.parentNode;const o=[],i=t.scrollingElement||t.documentElement;for(;r instanceof n.HTMLElement&&r!==i;)(r.offsetHeight{const n=Fj(t),r=t instanceof n.MouseEvent;(!r||r&&t.button===0)&&e(t)}}var iH={pageX:0,pageY:0};function aH(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||iH;return{x:r[`${t}X`],y:r[`${t}Y`]}}function sH(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function lH(e,t="page"){return{point:rH(e)?aH(e,t):sH(e,t)}}var uH=(e,t=!1)=>{const n=r=>e(r,lH(r));return t?oH(n):n},cH=()=>md&&window.onpointerdown===null,fH=()=>md&&window.ontouchstart===null,dH=()=>md&&window.onmousedown===null,pH={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},hH={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function mH(e){return cH()?e:fH()?hH[e]:dH()?pH[e]:e}Object.freeze(["base","sm","md","lg","xl","2xl"]);function gH(e){const{userAgent:t,vendor:n}=e,r=/(android)/i.test(t);switch(!0){case/CriOS/.test(t):return"Chrome for iOS";case/Edg\//.test(t):return"Edge";case(r&&/Silk\//.test(t)):return"Silk";case(/Chrome/.test(t)&&/Google Inc/.test(n)):return"Chrome";case/Firefox\/\d+\.\d+$/.test(t):return"Firefox";case r:return"AOSP";case/MSIE|Trident/.test(t):return"IE";case(/Safari/.test(e.userAgent)&&/Apple Computer/.test(t)):return"Safari";case/AppleWebKit/.test(t):return"WebKit";default:return null}}function vH(e){return md?gH(window.navigator)===e:!1}function yH(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,o=C.exports.createContext(void 0);o.displayName=r;function i(){var s;const u=C.exports.useContext(o);if(!u&&t){const c=new Error(n);throw c.name="ContextError",(s=Error.captureStackTrace)==null||s.call(Error,c,i),c}return u}return[o.Provider,i,o]}var bH=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,xH=Uk(function(e){return bH.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),wH=xH,SH=function(t){return t!=="theme"},Vw=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?wH:SH},Ww=function(t,n,r){var o;if(n){var i=n.shouldForwardProp;o=t.__emotion_forwardProp&&i?function(s){return t.__emotion_forwardProp(s)&&i(s)}:i}return typeof o!="function"&&r&&(o=t.__emotion_forwardProp),o},CH=function(t){var n=t.cache,r=t.serialized,o=t.isStringTag;return Yk(n,r,o),Pj(function(){return Xk(n,r,o)}),null},_H=function e(t,n){var r=t.__emotion_real===t,o=r&&t.__emotion_base||t,i,s;n!==void 0&&(i=n.label,s=n.target);var u=Ww(t,n,r),c=u||Vw(o),f=!c("as");return function(){var d=arguments,h=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(i!==void 0&&h.push("label:"+i+";"),d[0]==null||d[0].raw===void 0)h.push.apply(h,d);else{h.push(d[0][0]);for(var m=d.length,g=1;g` or ``");return e}function cE(){const e=c3(),t=nm();return{...e,theme:t}}function IH(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__breakpoints)==null?void 0:i.asArray)==null?void 0:s[o]};return r(t)??r(n)??n}function OH(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__cssMap)==null?void 0:i[o])==null?void 0:s.value};return r(t)??r(n)??n}function MH(e,t,n){const r=Array.isArray(t)?t:[t],o=Array.isArray(n)?n:[n];return i=>{const s=o.filter(Boolean),u=r.map((c,f)=>{if(e==="breakpoints")return IH(i,c,s[f]??c);const d=`${e}.${c}`;return OH(i,d,s[f]??c)});return Array.isArray(t)?u:u[0]}}function RH(e){const{cssVarsRoot:t,theme:n,children:r}=e,o=C.exports.useMemo(()=>_W(n),[n]);return q(Ij,{theme:o,children:[v(NH,{root:t}),r]})}function NH({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return v(em,{styles:n=>({[t]:n.__cssVars})})}yH({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function DH(){const{colorMode:e}=c3();return v(em,{styles:t=>{const n=rE(t,"styles.global"),r=V1(n,{theme:t,colorMode:e});return r?zk(r)(t):void 0}})}var zH=new Set([...LW,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),FH=new Set(["htmlWidth","htmlHeight","htmlSize"]);function BH(e){return FH.has(e)||!zH.has(e)}var $H=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:o,sx:i,...s}=t,u=oE(s,(h,m)=>AW(m)),c=V1(e,t),f=Object.assign({},o,c,iE(u),i),d=zk(f)(t.theme);return r?[d,r]:d};function Qv(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=BH);const o=$H({baseStyle:n});return Ky(e,r)(o)}function ue(e){return C.exports.forwardRef(e)}function fE(e,t={}){const{styleConfig:n,...r}=t,{theme:o,colorMode:i}=cE(),s=rE(o,`components.${e}`),u=n||s,c=Ga({theme:o,colorMode:i},u?.defaultProps??{},iE(Rj(r,["children"]))),f=C.exports.useRef({});if(u){const h=zW(u)(c);TH(f.current,h)||(f.current=h)}return f.current}function cr(e,t={}){return fE(e,t)}function fr(e,t={}){return fE(e,t)}function VH(){const e=new Map;return new Proxy(Qv,{apply(t,n,r){return Qv(...r)},get(t,n){return e.has(n)||e.set(n,Qv(n)),e.get(n)}})}var oe=VH();function WH(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function At(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:o="Provider",errorMessage:i}=e,s=C.exports.createContext(void 0);s.displayName=t;function u(){var c;const f=C.exports.useContext(s);if(!f&&n){const d=new Error(i??WH(r,o));throw d.name="ContextError",(c=Error.captureStackTrace)==null||c.call(Error,d,u),d}return f}return[s.Provider,u,s]}function jH(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function qt(...e){return t=>{e.forEach(n=>{jH(n,t)})}}function HH(...e){return C.exports.useMemo(()=>qt(...e),e)}function jw(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var UH=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function Hw(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function Uw(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var qy=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,j1=e=>e,GH=class{descendants=new Map;register=e=>{if(e!=null)return UH(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=jw(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=Hw(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=Hw(r,this.enabledCount(),t);return this.enabledItem(o)};prev=(e,t=!0)=>{const n=Uw(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=Uw(r,this.enabledCount()-1,t);return this.enabledItem(o)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=jw(n);t?.disabled&&(t.disabled=!!t.disabled);const o={node:e,index:-1,...t};this.descendants.set(e,o),this.assignIndex(r)}};function ZH(){const e=C.exports.useRef(new GH);return qy(()=>()=>e.current.destroy()),e.current}var[KH,dE]=At({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function qH(e){const t=dE(),[n,r]=C.exports.useState(-1),o=C.exports.useRef(null);qy(()=>()=>{!o.current||t.unregister(o.current)},[]),qy(()=>{if(!o.current)return;const s=Number(o.current.dataset.index);n!=s&&!Number.isNaN(s)&&r(s)});const i=j1(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(o.current),register:qt(i,o)}}function pE(){return[j1(KH),()=>j1(dE()),()=>ZH(),o=>qH(o)]}var Xt=(...e)=>e.filter(Boolean).join(" "),Gw={path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},Kr=ue((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:u,__css:c,...f}=e,d=Xt("chakra-icon",u),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:d,__css:h},g=r??Gw.viewBox;if(n&&typeof n!="string")return X.createElement(oe.svg,{as:n,...m,...f});const b=s??Gw.path;return X.createElement(oe.svg,{verticalAlign:"middle",viewBox:g,...m,...f},b)});Kr.displayName="Icon";function Ru(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=ue((u,c)=>v(Kr,{ref:c,viewBox:t,...o,...u,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}function Gn(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function hE(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:o=(m,g)=>m!==g}=e,i=Gn(r),s=Gn(o),[u,c]=C.exports.useState(n),f=t!==void 0,d=f?t:u,h=C.exports.useCallback(m=>{const b=typeof m=="function"?m(d):m;!s(d,b)||(f||c(b),i(b))},[f,i,d,s]);return[d,h]}const S3=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),rm=C.exports.createContext({});function YH(){return C.exports.useContext(rm).visualElement}const Nu=C.exports.createContext(null),Hs=typeof document<"u",H1=Hs?C.exports.useLayoutEffect:C.exports.useEffect,mE=C.exports.createContext({strict:!1});function XH(e,t,n,r){const o=YH(),i=C.exports.useContext(mE),s=C.exports.useContext(Nu),u=C.exports.useContext(S3).reducedMotion,c=C.exports.useRef(void 0);r=r||i.renderer,!c.current&&r&&(c.current=r(e,{visualState:t,parent:o,props:n,presenceId:s?s.id:void 0,blockInitialAnimation:s?s.initial===!1:!1,reducedMotionConfig:u}));const f=c.current;return H1(()=>{f&&f.syncRender()}),C.exports.useEffect(()=>{f&&f.animationState&&f.animationState.animateChanges()}),H1(()=>()=>f&&f.notifyUnmount(),[]),f}function Gl(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function QH(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):Gl(n)&&(n.current=r))},[t])}function Bf(e){return typeof e=="string"||Array.isArray(e)}function om(e){return typeof e=="object"&&typeof e.start=="function"}const JH=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function im(e){return om(e.animate)||JH.some(t=>Bf(e[t]))}function gE(e){return Boolean(im(e)||e.variants)}function eU(e,t){if(im(e)){const{initial:n,animate:r}=e;return{initial:n===!1||Bf(n)?n:void 0,animate:Bf(r)?r:void 0}}return e.inherit!==!1?t:{}}function tU(e){const{initial:t,animate:n}=eU(e,C.exports.useContext(rm));return C.exports.useMemo(()=>({initial:t,animate:n}),[Zw(t),Zw(n)])}function Zw(e){return Array.isArray(e)?e.join(" "):e}const Ni=e=>({isEnabled:t=>e.some(n=>!!t[n])}),$f={measureLayout:Ni(["layout","layoutId","drag"]),animation:Ni(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:Ni(["exit"]),drag:Ni(["drag","dragControls"]),focus:Ni(["whileFocus"]),hover:Ni(["whileHover","onHoverStart","onHoverEnd"]),tap:Ni(["whileTap","onTap","onTapStart","onTapCancel"]),pan:Ni(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:Ni(["whileInView","onViewportEnter","onViewportLeave"])};function nU(e){for(const t in e)t==="projectionNodeConstructor"?$f.projectionNodeConstructor=e[t]:$f[t].Component=e[t]}function am(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const nf={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let rU=1;function oU(){return am(()=>{if(nf.hasEverUpdated)return rU++})}const C3=C.exports.createContext({});class iU extends X.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const vE=C.exports.createContext({}),aU=Symbol.for("motionComponentSymbol");function sU({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:o,Component:i}){e&&nU(e);function s(c,f){const d={...C.exports.useContext(S3),...c,layoutId:lU(c)},{isStatic:h}=d;let m=null;const g=tU(c),b=h?void 0:oU(),x=o(c,h);if(!h&&Hs){g.visualElement=XH(i,x,d,t);const k=C.exports.useContext(mE).strict,S=C.exports.useContext(vE);g.visualElement&&(m=g.visualElement.loadFeatures(d,k,e,b,n||$f.projectionNodeConstructor,S))}return q(iU,{visualElement:g.visualElement,props:d,children:[m,v(rm.Provider,{value:g,children:r(i,c,b,QH(x,g.visualElement,f),x,h,g.visualElement)})]})}const u=C.exports.forwardRef(s);return u[aU]=i,u}function lU({layoutId:e}){const t=C.exports.useContext(C3).id;return t&&e!==void 0?t+"-"+e:e}function uU(e){function t(r,o={}){return sU(e(r,o))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,o)=>(n.has(o)||n.set(o,t(o)),n.get(o))})}const cU=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function _3(e){return typeof e!="string"||e.includes("-")?!1:!!(cU.indexOf(e)>-1||/[A-Z]/.test(e))}const U1={};function fU(e){Object.assign(U1,e)}const G1=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],gd=new Set(G1);function yE(e,{layout:t,layoutId:n}){return gd.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!U1[e]||e==="opacity")}const hi=e=>!!e?.getVelocity,dU={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},pU=(e,t)=>G1.indexOf(e)-G1.indexOf(t);function hU({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},o,i){let s="";t.sort(pU);for(const u of t)s+=`${dU[u]||u}(${e[u]}) `;return n&&!e.z&&(s+="translateZ(0)"),s=s.trim(),i?s=i(e,o?"":s):r&&o&&(s="none"),s}function bE(e){return e.startsWith("--")}const mU=(e,t)=>t&&typeof e=="number"?t.transform(e):e,xE=(e,t)=>n=>Math.max(Math.min(n,t),e),rf=e=>e%1?Number(e.toFixed(5)):e,Vf=/(-)?([\d]*\.?[\d])+/g,Yy=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,gU=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function vd(e){return typeof e=="string"}const Us={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},of=Object.assign(Object.assign({},Us),{transform:xE(0,1)}),lh=Object.assign(Object.assign({},Us),{default:1}),yd=e=>({test:t=>vd(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),ba=yd("deg"),li=yd("%"),Ne=yd("px"),vU=yd("vh"),yU=yd("vw"),Kw=Object.assign(Object.assign({},li),{parse:e=>li.parse(e)/100,transform:e=>li.transform(e*100)}),k3=(e,t)=>n=>Boolean(vd(n)&&gU.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),wE=(e,t,n)=>r=>{if(!vd(r))return r;const[o,i,s,u]=r.match(Vf);return{[e]:parseFloat(o),[t]:parseFloat(i),[n]:parseFloat(s),alpha:u!==void 0?parseFloat(u):1}},Es={test:k3("hsl","hue"),parse:wE("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+li.transform(rf(t))+", "+li.transform(rf(n))+", "+rf(of.transform(r))+")"},bU=xE(0,255),Jv=Object.assign(Object.assign({},Us),{transform:e=>Math.round(bU(e))}),Ia={test:k3("rgb","red"),parse:wE("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Jv.transform(e)+", "+Jv.transform(t)+", "+Jv.transform(n)+", "+rf(of.transform(r))+")"};function xU(e){let t="",n="",r="",o="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),o=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),o=e.substr(4,1),t+=t,n+=n,r+=r,o+=o),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:o?parseInt(o,16)/255:1}}const Xy={test:k3("#"),parse:xU,transform:Ia.transform},or={test:e=>Ia.test(e)||Xy.test(e)||Es.test(e),parse:e=>Ia.test(e)?Ia.parse(e):Es.test(e)?Es.parse(e):Xy.parse(e),transform:e=>vd(e)?e:e.hasOwnProperty("red")?Ia.transform(e):Es.transform(e)},SE="${c}",CE="${n}";function wU(e){var t,n,r,o;return isNaN(e)&&vd(e)&&((n=(t=e.match(Vf))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((o=(r=e.match(Yy))===null||r===void 0?void 0:r.length)!==null&&o!==void 0?o:0)>0}function _E(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(Yy);r&&(n=r.length,e=e.replace(Yy,SE),t.push(...r.map(or.parse)));const o=e.match(Vf);return o&&(e=e.replace(Vf,CE),t.push(...o.map(Us.parse))),{values:t,numColors:n,tokenised:e}}function kE(e){return _E(e).values}function EE(e){const{values:t,numColors:n,tokenised:r}=_E(e),o=t.length;return i=>{let s=r;for(let u=0;utypeof e=="number"?0:e;function CU(e){const t=kE(e);return EE(e)(t.map(SU))}const Xi={test:wU,parse:kE,createTransformer:EE,getAnimatableNone:CU},_U=new Set(["brightness","contrast","saturate","opacity"]);function kU(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match(Vf)||[];if(!r)return e;const o=n.replace(r,"");let i=_U.has(t)?1:0;return r!==n&&(i*=100),t+"("+i+o+")"}const EU=/([a-z-]*)\(.*?\)/g,Qy=Object.assign(Object.assign({},Xi),{getAnimatableNone:e=>{const t=e.match(EU);return t?t.map(kU).join(" "):e}}),qw={...Us,transform:Math.round},LE={borderWidth:Ne,borderTopWidth:Ne,borderRightWidth:Ne,borderBottomWidth:Ne,borderLeftWidth:Ne,borderRadius:Ne,radius:Ne,borderTopLeftRadius:Ne,borderTopRightRadius:Ne,borderBottomRightRadius:Ne,borderBottomLeftRadius:Ne,width:Ne,maxWidth:Ne,height:Ne,maxHeight:Ne,size:Ne,top:Ne,right:Ne,bottom:Ne,left:Ne,padding:Ne,paddingTop:Ne,paddingRight:Ne,paddingBottom:Ne,paddingLeft:Ne,margin:Ne,marginTop:Ne,marginRight:Ne,marginBottom:Ne,marginLeft:Ne,rotate:ba,rotateX:ba,rotateY:ba,rotateZ:ba,scale:lh,scaleX:lh,scaleY:lh,scaleZ:lh,skew:ba,skewX:ba,skewY:ba,distance:Ne,translateX:Ne,translateY:Ne,translateZ:Ne,x:Ne,y:Ne,z:Ne,perspective:Ne,transformPerspective:Ne,opacity:of,originX:Kw,originY:Kw,originZ:Ne,zIndex:qw,fillOpacity:of,strokeOpacity:of,numOctaves:qw};function E3(e,t,n,r){const{style:o,vars:i,transform:s,transformKeys:u,transformOrigin:c}=e;u.length=0;let f=!1,d=!1,h=!0;for(const m in t){const g=t[m];if(bE(m)){i[m]=g;continue}const b=LE[m],x=mU(g,b);if(gd.has(m)){if(f=!0,s[m]=x,u.push(m),!h)continue;g!==(b.default||0)&&(h=!1)}else m.startsWith("origin")?(d=!0,c[m]=x):o[m]=x}if(f||r?o.transform=hU(e,n,h,r):!t.transform&&o.transform&&(o.transform="none"),d){const{originX:m="50%",originY:g="50%",originZ:b=0}=c;o.transformOrigin=`${m} ${g} ${b}`}}const L3=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function PE(e,t,n){for(const r in t)!hi(t[r])&&!yE(r,n)&&(e[r]=t[r])}function LU({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=L3();return E3(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function PU(e,t,n){const r=e.style||{},o={};return PE(o,r,e),Object.assign(o,LU(e,t,n)),e.transformValues?e.transformValues(o):o}function AU(e,t,n){const r={},o=PU(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout="none",o.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=o,r}const TU=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],IU=["whileTap","onTap","onTapStart","onTapCancel"],OU=["onPan","onPanStart","onPanSessionStart","onPanEnd"],MU=["whileInView","onViewportEnter","onViewportLeave","viewport"],RU=new Set(["initial","style","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...MU,...IU,...TU,...OU]);function Z1(e){return RU.has(e)}let AE=e=>!Z1(e);function NU(e){!e||(AE=t=>t.startsWith("on")?!Z1(t):e(t))}try{NU(require("@emotion/is-prop-valid").default)}catch{}function DU(e,t,n){const r={};for(const o in e)(AE(o)||n===!0&&Z1(o)||!t&&!Z1(o)||e.draggable&&o.startsWith("onDrag"))&&(r[o]=e[o]);return r}function Yw(e,t,n){return typeof e=="string"?e:Ne.transform(t+n*e)}function zU(e,t,n){const r=Yw(t,e.x,e.width),o=Yw(n,e.y,e.height);return`${r} ${o}`}const FU={offset:"stroke-dashoffset",array:"stroke-dasharray"},BU={offset:"strokeDashoffset",array:"strokeDasharray"};function $U(e,t,n=1,r=0,o=!0){e.pathLength=1;const i=o?FU:BU;e[i.offset]=Ne.transform(-r);const s=Ne.transform(t),u=Ne.transform(n);e[i.array]=`${s} ${u}`}function P3(e,{attrX:t,attrY:n,originX:r,originY:o,pathLength:i,pathSpacing:s=1,pathOffset:u=0,...c},f,d){E3(e,c,f,d),e.attrs=e.style,e.style={};const{attrs:h,style:m,dimensions:g}=e;h.transform&&(g&&(m.transform=h.transform),delete h.transform),g&&(r!==void 0||o!==void 0||m.transform)&&(m.transformOrigin=zU(g,r!==void 0?r:.5,o!==void 0?o:.5)),t!==void 0&&(h.x=t),n!==void 0&&(h.y=n),i!==void 0&&$U(h,i,s,u,!1)}const TE=()=>({...L3(),attrs:{}});function VU(e,t){const n=C.exports.useMemo(()=>{const r=TE();return P3(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};PE(r,e.style,e),n.style={...r,...n.style}}return n}function WU(e=!1){return(n,r,o,i,{latestValues:s},u)=>{const f=(_3(n)?VU:AU)(r,s,u),h={...DU(r,typeof n=="string",e),...f,ref:i};return o&&(h["data-projection-id"]=o),C.exports.createElement(n,h)}}const IE=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function OE(e,{style:t,vars:n},r,o){Object.assign(e.style,t,o&&o.getProjectionStyles(r));for(const i in n)e.style.setProperty(i,n[i])}const ME=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function RE(e,t,n,r){OE(e,t,void 0,r);for(const o in t.attrs)e.setAttribute(ME.has(o)?o:IE(o),t.attrs[o])}function A3(e){const{style:t}=e,n={};for(const r in t)(hi(t[r])||yE(r,e))&&(n[r]=t[r]);return n}function NE(e){const t=A3(e);for(const n in e)if(hi(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function DE(e,t,n,r={},o={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),t}const Wf=e=>Array.isArray(e),jU=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),zE=e=>Wf(e)?e[e.length-1]||0:e;function Xh(e){const t=hi(e)?e.get():e;return jU(t)?t.toValue():t}function HU({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,o,i){const s={latestValues:UU(r,o,i,e),renderState:t()};return n&&(s.mount=u=>n(r,u,s)),s}const FE=e=>(t,n)=>{const r=C.exports.useContext(rm),o=C.exports.useContext(Nu),i=()=>HU(e,t,r,o);return n?i():am(i)};function UU(e,t,n,r){const o={},i=r(e);for(const m in i)o[m]=Xh(i[m]);let{initial:s,animate:u}=e;const c=im(e),f=gE(e);t&&f&&!c&&e.inherit!==!1&&(s===void 0&&(s=t.initial),u===void 0&&(u=t.animate));let d=n?n.initial===!1:!1;d=d||s===!1;const h=d?u:s;return h&&typeof h!="boolean"&&!om(h)&&(Array.isArray(h)?h:[h]).forEach(g=>{const b=DE(e,g);if(!b)return;const{transitionEnd:x,transition:k,...S}=b;for(const w in S){let _=S[w];if(Array.isArray(_)){const L=d?_.length-1:0;_=_[L]}_!==null&&(o[w]=_)}for(const w in x)o[w]=x[w]}),o}const GU={useVisualState:FE({scrapeMotionValuesFromProps:NE,createRenderState:TE,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}P3(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),RE(t,n)}})},ZU={useVisualState:FE({scrapeMotionValuesFromProps:A3,createRenderState:L3})};function KU(e,{forwardMotionProps:t=!1},n,r,o){return{..._3(e)?GU:ZU,preloadedFeatures:n,useRender:WU(t),createVisualElement:r,projectionNodeConstructor:o,Component:e}}var Lt;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(Lt||(Lt={}));function sm(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function Jy(e,t,n,r){C.exports.useEffect(()=>{const o=e.current;if(n&&o)return sm(o,t,n,r)},[e,t,n,r])}function qU({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(Lt.Focus,!0)},o=()=>{n&&n.setActive(Lt.Focus,!1)};Jy(t,"focus",e?r:void 0),Jy(t,"blur",e?o:void 0)}function BE(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function $E(e){return!!e.touches}function YU(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const XU={pageX:0,pageY:0};function QU(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||XU;return{x:r[t+"X"],y:r[t+"Y"]}}function JU(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function T3(e,t="page"){return{point:$E(e)?QU(e,t):JU(e,t)}}const VE=(e,t=!1)=>{const n=r=>e(r,T3(r));return t?YU(n):n},eG=()=>Hs&&window.onpointerdown===null,tG=()=>Hs&&window.ontouchstart===null,nG=()=>Hs&&window.onmousedown===null,rG={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},oG={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function WE(e){return eG()?e:tG()?oG[e]:nG()?rG[e]:e}function nu(e,t,n,r){return sm(e,WE(t),VE(n,t==="pointerdown"),r)}function K1(e,t,n,r){return Jy(e,WE(t),n&&VE(n,t==="pointerdown"),r)}function jE(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const Xw=jE("dragHorizontal"),Qw=jE("dragVertical");function HE(e){let t=!1;if(e==="y")t=Qw();else if(e==="x")t=Xw();else{const n=Xw(),r=Qw();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function UE(){const e=HE(!0);return e?(e(),!1):!0}function Jw(e,t,n){return(r,o)=>{!BE(r)||UE()||(e.animationState&&e.animationState.setActive(Lt.Hover,t),n&&n(r,o))}}function iG({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){K1(r,"pointerenter",e||n?Jw(r,!0,e):void 0,{passive:!e}),K1(r,"pointerleave",t||n?Jw(r,!1,t):void 0,{passive:!t})}const GE=(e,t)=>t?e===t?!0:GE(e,t.parentElement):!1;function I3(e){return C.exports.useEffect(()=>()=>e(),[])}var ti=function(){return ti=Object.assign||function(t){for(var n,r=1,o=arguments.length;r0&&i[i.length-1])&&(f[0]===6||f[0]===2)){n=0;continue}if(f[0]===3&&(!i||f[1]>i[0]&&f[1]0)&&!(o=r.next()).done;)i.push(o.value)}catch(u){s={error:u}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i}function e4(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;rMath.min(Math.max(n,e),t),e2=.001,sG=.01,tS=10,lG=.05,uG=1;function cG({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let o,i;aG(e<=tS*1e3);let s=1-t;s=Y1(lG,uG,s),e=Y1(sG,tS,e/1e3),s<1?(o=f=>{const d=f*s,h=d*e,m=d-n,g=t4(f,s),b=Math.exp(-h);return e2-m/g*b},i=f=>{const h=f*s*e,m=h*n+n,g=Math.pow(s,2)*Math.pow(f,2)*e,b=Math.exp(-h),x=t4(Math.pow(f,2),s);return(-o(f)+e2>0?-1:1)*((m-g)*b)/x}):(o=f=>{const d=Math.exp(-f*e),h=(f-n)*e+1;return-e2+d*h},i=f=>{const d=Math.exp(-f*e),h=(n-f)*(e*e);return d*h});const u=5/e,c=dG(o,i,u);if(e=e*1e3,isNaN(c))return{stiffness:100,damping:10,duration:e};{const f=Math.pow(c,2)*r;return{stiffness:f,damping:s*2*Math.sqrt(r*f),duration:e}}}const fG=12;function dG(e,t,n){let r=n;for(let o=1;oe[n]!==void 0)}function mG(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!nS(e,hG)&&nS(e,pG)){const n=cG(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function O3(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:o}=e,i=lm(e,["from","to","restSpeed","restDelta"]);const s={done:!1,value:t};let{stiffness:u,damping:c,mass:f,velocity:d,duration:h,isResolvedFromDuration:m}=mG(i),g=rS,b=rS;function x(){const k=d?-(d/1e3):0,S=n-t,w=c/(2*Math.sqrt(u*f)),_=Math.sqrt(u/f)/1e3;if(o===void 0&&(o=Math.min(Math.abs(n-t)/100,.4)),w<1){const L=t4(_,w);g=T=>{const R=Math.exp(-w*_*T);return n-R*((k+w*_*S)/L*Math.sin(L*T)+S*Math.cos(L*T))},b=T=>{const R=Math.exp(-w*_*T);return w*_*R*(Math.sin(L*T)*(k+w*_*S)/L+S*Math.cos(L*T))-R*(Math.cos(L*T)*(k+w*_*S)-L*S*Math.sin(L*T))}}else if(w===1)g=L=>n-Math.exp(-_*L)*(S+(k+_*S)*L);else{const L=_*Math.sqrt(w*w-1);g=T=>{const R=Math.exp(-w*_*T),N=Math.min(L*T,300);return n-R*((k+w*_*S)*Math.sinh(N)+L*S*Math.cosh(N))/L}}}return x(),{next:k=>{const S=g(k);if(m)s.done=k>=h;else{const w=b(k)*1e3,_=Math.abs(w)<=r,L=Math.abs(n-S)<=o;s.done=_&&L}return s.value=s.done?n:S,s},flipTarget:()=>{d=-d,[t,n]=[n,t],x()}}}O3.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const rS=e=>0,jf=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Yt=(e,t,n)=>-n*e+n*t+e;function t2(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function oS({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let o=0,i=0,s=0;if(!t)o=i=s=n;else{const u=n<.5?n*(1+t):n+t-n*t,c=2*n-u;o=t2(c,u,e+1/3),i=t2(c,u,e),s=t2(c,u,e-1/3)}return{red:Math.round(o*255),green:Math.round(i*255),blue:Math.round(s*255),alpha:r}}const gG=(e,t,n)=>{const r=e*e,o=t*t;return Math.sqrt(Math.max(0,n*(o-r)+r))},vG=[Xy,Ia,Es],iS=e=>vG.find(t=>t.test(e)),ZE=(e,t)=>{let n=iS(e),r=iS(t),o=n.parse(e),i=r.parse(t);n===Es&&(o=oS(o),n=Ia),r===Es&&(i=oS(i),r=Ia);const s=Object.assign({},o);return u=>{for(const c in s)c!=="alpha"&&(s[c]=gG(o[c],i[c],u));return s.alpha=Yt(o.alpha,i.alpha,u),n.transform(s)}},n4=e=>typeof e=="number",yG=(e,t)=>n=>t(e(n)),um=(...e)=>e.reduce(yG);function KE(e,t){return n4(e)?n=>Yt(e,t,n):or.test(e)?ZE(e,t):YE(e,t)}const qE=(e,t)=>{const n=[...e],r=n.length,o=e.map((i,s)=>KE(i,t[s]));return i=>{for(let s=0;s{const n=Object.assign(Object.assign({},e),t),r={};for(const o in n)e[o]!==void 0&&t[o]!==void 0&&(r[o]=KE(e[o],t[o]));return o=>{for(const i in r)n[i]=r[i](o);return n}};function aS(e){const t=Xi.parse(e),n=t.length;let r=0,o=0,i=0;for(let s=0;s{const n=Xi.createTransformer(t),r=aS(e),o=aS(t);return r.numHSL===o.numHSL&&r.numRGB===o.numRGB&&r.numNumbers>=o.numNumbers?um(qE(r.parsed,o.parsed),n):s=>`${s>0?t:e}`},xG=(e,t)=>n=>Yt(e,t,n);function wG(e){if(typeof e=="number")return xG;if(typeof e=="string")return or.test(e)?ZE:YE;if(Array.isArray(e))return qE;if(typeof e=="object")return bG}function SG(e,t,n){const r=[],o=n||wG(e[0]),i=e.length-1;for(let s=0;sn(jf(e,t,r))}function _G(e,t){const n=e.length,r=n-1;return o=>{let i=0,s=!1;if(o<=e[0]?s=!0:o>=e[r]&&(i=r-1,s=!0),!s){let c=1;for(;co||c===r);c++);i=c-1}const u=jf(e[i],e[i+1],o);return t[i](u)}}function XE(e,t,{clamp:n=!0,ease:r,mixer:o}={}){const i=e.length;q1(i===t.length),q1(!r||!Array.isArray(r)||r.length===i-1),e[0]>e[i-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const s=SG(t,r,o),u=i===2?CG(e,s):_G(e,s);return n?c=>u(Y1(e[0],e[i-1],c)):u}const cm=e=>t=>1-e(1-t),M3=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,kG=e=>t=>Math.pow(t,e),QE=e=>t=>t*t*((e+1)*t-e),EG=e=>{const t=QE(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},JE=1.525,LG=4/11,PG=8/11,AG=9/10,R3=e=>e,N3=kG(2),TG=cm(N3),eL=M3(N3),tL=e=>1-Math.sin(Math.acos(e)),D3=cm(tL),IG=M3(D3),z3=QE(JE),OG=cm(z3),MG=M3(z3),RG=EG(JE),NG=4356/361,DG=35442/1805,zG=16061/1805,X1=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-X1(1-e*2)):.5*X1(e*2-1)+.5;function $G(e,t){return e.map(()=>t||eL).splice(0,e.length-1)}function VG(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function WG(e,t){return e.map(n=>n*t)}function Qh({from:e=0,to:t=1,ease:n,offset:r,duration:o=300}){const i={done:!1,value:e},s=Array.isArray(t)?t:[e,t],u=WG(r&&r.length===s.length?r:VG(s),o);function c(){return XE(u,s,{ease:Array.isArray(n)?n:$G(s,n)})}let f=c();return{next:d=>(i.value=f(d),i.done=d>=o,i),flipTarget:()=>{s.reverse(),f=c()}}}function jG({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:o=.5,modifyTarget:i}){const s={done:!1,value:t};let u=n*e;const c=t+u,f=i===void 0?c:i(c);return f!==c&&(u=f-t),{next:d=>{const h=-u*Math.exp(-d/r);return s.done=!(h>o||h<-o),s.value=s.done?f:f+h,s},flipTarget:()=>{}}}const sS={keyframes:Qh,spring:O3,decay:jG};function HG(e){if(Array.isArray(e.to))return Qh;if(sS[e.type])return sS[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?Qh:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?O3:Qh}const nL=1/60*1e3,UG=typeof performance<"u"?()=>performance.now():()=>Date.now(),rL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(UG()),nL);function GG(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,u={schedule:(c,f=!1,d=!1)=>{const h=d&&o,m=h?t:n;return f&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const f=n.indexOf(c);f!==-1&&n.splice(f,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let f=0;f(e[t]=GG(()=>Hf=!0),e),{}),KG=bd.reduce((e,t)=>{const n=fm[t];return e[t]=(r,o=!1,i=!1)=>(Hf||XG(),n.schedule(r,o,i)),e},{}),qG=bd.reduce((e,t)=>(e[t]=fm[t].cancel,e),{});bd.reduce((e,t)=>(e[t]=()=>fm[t].process(ru),e),{});const YG=e=>fm[e].process(ru),oL=e=>{Hf=!1,ru.delta=r4?nL:Math.max(Math.min(e-ru.timestamp,ZG),1),ru.timestamp=e,o4=!0,bd.forEach(YG),o4=!1,Hf&&(r4=!1,rL(oL))},XG=()=>{Hf=!0,r4=!0,o4||rL(oL)},QG=()=>ru;function iL(e,t,n=0){return e-t-n}function JG(e,t,n=0,r=!0){return r?iL(t+-e,t,n):t-(e-t)+n}function eZ(e,t,n,r){return r?e>=t+n:e<=-n}const tZ=e=>{const t=({delta:n})=>e(n);return{start:()=>KG.update(t,!0),stop:()=>qG.update(t)}};function aL(e){var t,n,{from:r,autoplay:o=!0,driver:i=tZ,elapsed:s=0,repeat:u=0,repeatType:c="loop",repeatDelay:f=0,onPlay:d,onStop:h,onComplete:m,onRepeat:g,onUpdate:b}=e,x=lm(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:k}=x,S,w=0,_=x.duration,L,T=!1,R=!0,N;const z=HG(x);!((n=(t=z).needsInterpolation)===null||n===void 0)&&n.call(t,r,k)&&(N=XE([0,100],[r,k],{clamp:!1}),r=0,k=100);const K=z(Object.assign(Object.assign({},x),{from:r,to:k}));function W(){w++,c==="reverse"?(R=w%2===0,s=JG(s,_,f,R)):(s=iL(s,_,f),c==="mirror"&&K.flipTarget()),T=!1,g&&g()}function J(){S.stop(),m&&m()}function ve(he){if(R||(he=-he),s+=he,!T){const fe=K.next(Math.max(0,s));L=fe.value,N&&(L=N(L)),T=R?fe.done:s<=0}b?.(L),T&&(w===0&&(_??(_=s)),w{h?.(),S.stop()}}}function sL(e,t){return t?e*(1e3/t):0}function nZ({from:e=0,velocity:t=0,min:n,max:r,power:o=.8,timeConstant:i=750,bounceStiffness:s=500,bounceDamping:u=10,restDelta:c=1,modifyTarget:f,driver:d,onUpdate:h,onComplete:m,onStop:g}){let b;function x(_){return n!==void 0&&_r}function k(_){return n===void 0?r:r===void 0||Math.abs(n-_){var T;h?.(L),(T=_.onUpdate)===null||T===void 0||T.call(_,L)},onComplete:m,onStop:g}))}function w(_){S(Object.assign({type:"spring",stiffness:s,damping:u,restDelta:c},_))}if(x(e))w({from:e,velocity:t,to:k(e)});else{let _=o*t+e;typeof f<"u"&&(_=f(_));const L=k(_),T=L===n?-1:1;let R,N;const z=K=>{R=N,N=K,t=sL(K-R,QG().delta),(T===1&&K>L||T===-1&&Kb?.stop()}}const i4=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),lS=e=>i4(e)&&e.hasOwnProperty("z"),uh=(e,t)=>Math.abs(e-t);function F3(e,t){if(n4(e)&&n4(t))return uh(e,t);if(i4(e)&&i4(t)){const n=uh(e.x,t.x),r=uh(e.y,t.y),o=lS(e)&&lS(t)?uh(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(o,2))}}const lL=(e,t)=>1-3*t+3*e,uL=(e,t)=>3*t-6*e,cL=e=>3*e,Q1=(e,t,n)=>((lL(t,n)*e+uL(t,n))*e+cL(t))*e,fL=(e,t,n)=>3*lL(t,n)*e*e+2*uL(t,n)*e+cL(t),rZ=1e-7,oZ=10;function iZ(e,t,n,r,o){let i,s,u=0;do s=t+(n-t)/2,i=Q1(s,r,o)-e,i>0?n=s:t=s;while(Math.abs(i)>rZ&&++u=sZ?lZ(s,h,e,n):m===0?h:iZ(s,u,u+ch,e,n)}return s=>s===0||s===1?s:Q1(i(s),t,r)}function cZ({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(!1),u=C.exports.useRef(null),c={passive:!(t||e||n||g)};function f(){u.current&&u.current(),u.current=null}function d(){return f(),s.current=!1,o.animationState&&o.animationState.setActive(Lt.Tap,!1),!UE()}function h(b,x){!d()||(GE(o.getInstance(),b.target)?e&&e(b,x):n&&n(b,x))}function m(b,x){!d()||n&&n(b,x)}function g(b,x){f(),!s.current&&(s.current=!0,u.current=um(nu(window,"pointerup",h,c),nu(window,"pointercancel",m,c)),o.animationState&&o.animationState.setActive(Lt.Tap,!0),t&&t(b,x))}K1(o,"pointerdown",i?g:void 0,c),I3(f)}const fZ="production",dL=typeof process>"u"||process.env===void 0?fZ:"production",uS=new Set;function pL(e,t,n){e||uS.has(t)||(console.warn(t),n&&console.warn(n),uS.add(t))}const a4=new WeakMap,n2=new WeakMap,dZ=e=>{const t=a4.get(e.target);t&&t(e)},pZ=e=>{e.forEach(dZ)};function hZ({root:e,...t}){const n=e||document;n2.has(n)||n2.set(n,{});const r=n2.get(n),o=JSON.stringify(t);return r[o]||(r[o]=new IntersectionObserver(pZ,{root:e,...t})),r[o]}function mZ(e,t,n){const r=hZ(t);return a4.set(e,n),r.observe(e),()=>{a4.delete(e),r.unobserve(e)}}function gZ({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:o={}}){const i=C.exports.useRef({hasEnteredView:!1,isInView:!1});let s=Boolean(t||n||r);o.once&&i.current.hasEnteredView&&(s=!1),(typeof IntersectionObserver>"u"?bZ:yZ)(s,i.current,e,o)}const vZ={some:0,all:1};function yZ(e,t,n,{root:r,margin:o,amount:i="some",once:s}){C.exports.useEffect(()=>{if(!e)return;const u={root:r?.current,rootMargin:o,threshold:typeof i=="number"?i:vZ[i]},c=f=>{const{isIntersecting:d}=f;if(t.isInView===d||(t.isInView=d,s&&!d&&t.hasEnteredView))return;d&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(Lt.InView,d);const h=n.getProps(),m=d?h.onViewportEnter:h.onViewportLeave;m&&m(f)};return mZ(n.getInstance(),u,c)},[e,r,o,i])}function bZ(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(dL!=="production"&&pL(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:o}=n.getProps();o&&o(null),n.animationState&&n.animationState.setActive(Lt.InView,!0)}))},[e])}const Oa=e=>t=>(e(t),null),xZ={inView:Oa(gZ),tap:Oa(cZ),focus:Oa(qU),hover:Oa(iG)};function B3(){const e=C.exports.useContext(Nu);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,o=C.exports.useId();return C.exports.useEffect(()=>r(o),[]),!t&&n?[!1,()=>n&&n(o)]:[!0]}function wZ(){return SZ(C.exports.useContext(Nu))}function SZ(e){return e===null?!0:e.isPresent}function hL(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,CZ={linear:R3,easeIn:N3,easeInOut:eL,easeOut:TG,circIn:tL,circInOut:IG,circOut:D3,backIn:z3,backInOut:MG,backOut:OG,anticipate:RG,bounceIn:FG,bounceInOut:BG,bounceOut:X1},cS=e=>{if(Array.isArray(e)){q1(e.length===4);const[t,n,r,o]=e;return uZ(t,n,r,o)}else if(typeof e=="string")return CZ[e];return e},_Z=e=>Array.isArray(e)&&typeof e[0]!="number",fS=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&Xi.test(t)&&!t.startsWith("url(")),hs=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),fh=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),r2=()=>({type:"keyframes",ease:"linear",duration:.3}),kZ=e=>({type:"keyframes",duration:.8,values:e}),dS={x:hs,y:hs,z:hs,rotate:hs,rotateX:hs,rotateY:hs,rotateZ:hs,scaleX:fh,scaleY:fh,scale:fh,opacity:r2,backgroundColor:r2,color:r2,default:fh},EZ=(e,t)=>{let n;return Wf(t)?n=kZ:n=dS[e]||dS.default,{to:t,...n(t)}},LZ={...LE,color:or,backgroundColor:or,outlineColor:or,fill:or,stroke:or,borderColor:or,borderTopColor:or,borderRightColor:or,borderBottomColor:or,borderLeftColor:or,filter:Qy,WebkitFilter:Qy},$3=e=>LZ[e];function V3(e,t){var n;let r=$3(e);return r!==Qy&&(r=Xi),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const PZ={current:!1};function AZ({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:o,repeat:i,repeatType:s,repeatDelay:u,from:c,...f}){return!!Object.keys(f).length}function TZ({ease:e,times:t,yoyo:n,flip:r,loop:o,...i}){const s={...i};return t&&(s.offset=t),i.duration&&(s.duration=J1(i.duration)),i.repeatDelay&&(s.repeatDelay=J1(i.repeatDelay)),e&&(s.ease=_Z(e)?e.map(cS):cS(e)),i.type==="tween"&&(s.type="keyframes"),(n||o||r)&&(n?s.repeatType="reverse":o?s.repeatType="loop":r&&(s.repeatType="mirror"),s.repeat=o||n||r||i.repeat),i.type!=="spring"&&(s.type="keyframes"),s}function IZ(e,t){var n,r;return(r=(n=(W3(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function OZ(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function MZ(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),OZ(t),AZ(e)||(e={...e,...EZ(n,t.to)}),{...t,...TZ(e)}}function RZ(e,t,n,r,o){const i=W3(r,e)||{};let s=i.from!==void 0?i.from:t.get();const u=fS(e,n);s==="none"&&u&&typeof n=="string"?s=V3(e,n):pS(s)&&typeof n=="string"?s=hS(n):!Array.isArray(n)&&pS(n)&&typeof s=="string"&&(n=hS(s));const c=fS(e,s);function f(){const h={from:s,to:n,velocity:t.getVelocity(),onComplete:o,onUpdate:m=>t.set(m)};return i.type==="inertia"||i.type==="decay"?nZ({...h,...i}):aL({...MZ(i,h,e),onUpdate:m=>{h.onUpdate(m),i.onUpdate&&i.onUpdate(m)},onComplete:()=>{h.onComplete(),i.onComplete&&i.onComplete()}})}function d(){const h=zE(n);return t.set(h),o(),i.onUpdate&&i.onUpdate(h),i.onComplete&&i.onComplete(),{stop:()=>{}}}return!c||!u||i.type===!1?d:f}function pS(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function hS(e){return typeof e=="number"?0:V3("",e)}function W3(e,t){return e[t]||e.default||e}function j3(e,t,n,r={}){return PZ.current&&(r={type:!1}),t.start(o=>{let i,s;const u=RZ(e,t,n,r,o),c=IZ(r,e),f=()=>s=u();return c?i=window.setTimeout(f,J1(c)):f(),()=>{clearTimeout(i),s&&s.stop()}})}const NZ=e=>/^\-?\d*\.?\d+$/.test(e),DZ=e=>/^0[^.\s]+$/.test(e),mL=1/60*1e3,zZ=typeof performance<"u"?()=>performance.now():()=>Date.now(),gL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(zZ()),mL);function FZ(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,u={schedule:(c,f=!1,d=!1)=>{const h=d&&o,m=h?t:n;return f&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const f=n.indexOf(c);f!==-1&&n.splice(f,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let f=0;f(e[t]=FZ(()=>Uf=!0),e),{}),ui=xd.reduce((e,t)=>{const n=dm[t];return e[t]=(r,o=!1,i=!1)=>(Uf||VZ(),n.schedule(r,o,i)),e},{}),Gf=xd.reduce((e,t)=>(e[t]=dm[t].cancel,e),{}),o2=xd.reduce((e,t)=>(e[t]=()=>dm[t].process(ou),e),{}),$Z=e=>dm[e].process(ou),vL=e=>{Uf=!1,ou.delta=s4?mL:Math.max(Math.min(e-ou.timestamp,BZ),1),ou.timestamp=e,l4=!0,xd.forEach($Z),l4=!1,Uf&&(s4=!1,gL(vL))},VZ=()=>{Uf=!0,s4=!0,l4||gL(vL)},u4=()=>ou;function H3(e,t){e.indexOf(t)===-1&&e.push(t)}function U3(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class af{constructor(){this.subscriptions=[]}add(t){return H3(this.subscriptions,t),()=>U3(this.subscriptions,t)}notify(t,n,r){const o=this.subscriptions.length;if(!!o)if(o===1)this.subscriptions[0](t,n,r);else for(let i=0;i!isNaN(parseFloat(e));class jZ{constructor(t){this.version="7.3.5",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new af,this.velocityUpdateSubscribers=new af,this.renderSubscribers=new af,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:o,timestamp:i}=u4();this.lastUpdated!==i&&(this.timeDelta=o,this.lastUpdated=i,ui.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>ui.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=WZ(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?sL(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function bu(e){return new jZ(e)}const yL=e=>t=>t.test(e),HZ={test:e=>e==="auto",parse:e=>e},bL=[Us,Ne,li,ba,yU,vU,HZ],Pc=e=>bL.find(yL(e)),UZ=[...bL,or,Xi],GZ=e=>UZ.find(yL(e));function ZZ(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function KZ(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function pm(e,t,n){const r=e.getProps();return DE(r,t,n!==void 0?n:r.custom,ZZ(e),KZ(e))}function qZ(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,bu(n))}function YZ(e,t){const n=pm(e,t);let{transitionEnd:r={},transition:o={},...i}=n?e.makeTargetAnimatable(n,!1):{};i={...i,...r};for(const s in i){const u=zE(i[s]);qZ(e,s,u)}}function XZ(e,t,n){var r,o;const i=Object.keys(t).filter(u=>!e.hasValue(u)),s=i.length;if(!!s)for(let u=0;uc4(e,i,n));r=Promise.all(o)}else if(typeof t=="string")r=c4(e,t,n);else{const o=typeof t=="function"?pm(e,t,n.custom):t;r=xL(e,o,n)}return r.then(()=>e.notifyAnimationComplete(t))}function c4(e,t,n={}){var r;const o=pm(e,t,n.custom);let{transition:i=e.getDefaultTransition()||{}}=o||{};n.transitionOverride&&(i=n.transitionOverride);const s=o?()=>xL(e,o,n):()=>Promise.resolve(),u=!((r=e.variantChildren)===null||r===void 0)&&r.size?(f=0)=>{const{delayChildren:d=0,staggerChildren:h,staggerDirection:m}=i;return tK(e,t,d+f,h,m,n)}:()=>Promise.resolve(),{when:c}=i;if(c){const[f,d]=c==="beforeChildren"?[s,u]:[u,s];return f().then(d)}else return Promise.all([s(),u(n.delay)])}function xL(e,t,{delay:n=0,transitionOverride:r,type:o}={}){var i;let{transition:s=e.getDefaultTransition(),transitionEnd:u,...c}=e.makeTargetAnimatable(t);const f=e.getValue("willChange");r&&(s=r);const d=[],h=o&&((i=e.animationState)===null||i===void 0?void 0:i.getState()[o]);for(const m in c){const g=e.getValue(m),b=c[m];if(!g||b===void 0||h&&rK(h,m))continue;let x={delay:n,...s};e.shouldReduceMotion&&gd.has(m)&&(x={...x,type:!1,delay:0});let k=j3(m,g,b,x);e0(f)&&(f.add(m),k=k.then(()=>f.remove(m))),d.push(k)}return Promise.all(d).then(()=>{u&&YZ(e,u)})}function tK(e,t,n=0,r=0,o=1,i){const s=[],u=(e.variantChildren.size-1)*r,c=o===1?(f=0)=>f*r:(f=0)=>u-f*r;return Array.from(e.variantChildren).sort(nK).forEach((f,d)=>{s.push(c4(f,t,{...i,delay:n+c(d)}).then(()=>f.notifyAnimationComplete(t)))}),Promise.all(s)}function nK(e,t){return e.sortNodePosition(t)}function rK({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const G3=[Lt.Animate,Lt.InView,Lt.Focus,Lt.Hover,Lt.Tap,Lt.Drag,Lt.Exit],oK=[...G3].reverse(),iK=G3.length;function aK(e){return t=>Promise.all(t.map(({animation:n,options:r})=>eK(e,n,r)))}function sK(e){let t=aK(e);const n=uK();let r=!0;const o=(c,f)=>{const d=pm(e,f);if(d){const{transition:h,transitionEnd:m,...g}=d;c={...c,...g,...m}}return c};function i(c){t=c(e)}function s(c,f){var d;const h=e.getProps(),m=e.getVariantContext(!0)||{},g=[],b=new Set;let x={},k=1/0;for(let w=0;wk&&R;const J=Array.isArray(T)?T:[T];let ve=J.reduce(o,{});N===!1&&(ve={});const{prevResolvedValues:xe={}}=L,he={...xe,...ve},fe=me=>{W=!0,b.delete(me),L.needsAnimating[me]=!0};for(const me in he){const ne=ve[me],j=xe[me];x.hasOwnProperty(me)||(ne!==j?Wf(ne)&&Wf(j)?!hL(ne,j)||K?fe(me):L.protectedKeys[me]=!0:ne!==void 0?fe(me):b.add(me):ne!==void 0&&b.has(me)?fe(me):L.protectedKeys[me]=!0)}L.prevProp=T,L.prevResolvedValues=ve,L.isActive&&(x={...x,...ve}),r&&e.blockInitialAnimation&&(W=!1),W&&!z&&g.push(...J.map(me=>({animation:me,options:{type:_,...c}})))}if(b.size){const w={};b.forEach(_=>{const L=e.getBaseTarget(_);L!==void 0&&(w[_]=L)}),g.push({animation:w})}let S=Boolean(g.length);return r&&h.initial===!1&&!e.manuallyAnimateOnMount&&(S=!1),r=!1,S?t(g):Promise.resolve()}function u(c,f,d){var h;if(n[c].isActive===f)return Promise.resolve();(h=e.variantChildren)===null||h===void 0||h.forEach(g=>{var b;return(b=g.animationState)===null||b===void 0?void 0:b.setActive(c,f)}),n[c].isActive=f;const m=s(d,c);for(const g in n)n[g].protectedKeys={};return m}return{animateChanges:s,setActive:u,setAnimateFunction:i,getState:()=>n}}function lK(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!hL(t,e):!1}function ms(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function uK(){return{[Lt.Animate]:ms(!0),[Lt.InView]:ms(),[Lt.Hover]:ms(),[Lt.Tap]:ms(),[Lt.Drag]:ms(),[Lt.Focus]:ms(),[Lt.Exit]:ms()}}const cK={animation:Oa(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=sK(e)),om(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:Oa(e=>{const{custom:t,visualElement:n}=e,[r,o]=B3(),i=C.exports.useContext(Nu);C.exports.useEffect(()=>{n.isPresent=r;const s=n.animationState&&n.animationState.setActive(Lt.Exit,!r,{custom:i&&i.custom||t});s&&!r&&s.then(o)},[r])})};class wL{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const f=a2(this.lastMoveEventInfo,this.history),d=this.startEvent!==null,h=F3(f.offset,{x:0,y:0})>=3;if(!d&&!h)return;const{point:m}=f,{timestamp:g}=u4();this.history.push({...m,timestamp:g});const{onStart:b,onMove:x}=this.handlers;d||(b&&b(this.lastMoveEvent,f),this.startEvent=this.lastMoveEvent),x&&x(this.lastMoveEvent,f)},this.handlePointerMove=(f,d)=>{if(this.lastMoveEvent=f,this.lastMoveEventInfo=i2(d,this.transformPagePoint),BE(f)&&f.buttons===0){this.handlePointerUp(f,d);return}ui.update(this.updatePoint,!0)},this.handlePointerUp=(f,d)=>{this.end();const{onEnd:h,onSessionEnd:m}=this.handlers,g=a2(i2(d,this.transformPagePoint),this.history);this.startEvent&&h&&h(f,g),m&&m(f,g)},$E(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const o=T3(t),i=i2(o,this.transformPagePoint),{point:s}=i,{timestamp:u}=u4();this.history=[{...s,timestamp:u}];const{onSessionStart:c}=n;c&&c(t,a2(i,this.history)),this.removeListeners=um(nu(window,"pointermove",this.handlePointerMove),nu(window,"pointerup",this.handlePointerUp),nu(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),Gf.update(this.updatePoint)}}function i2(e,t){return t?{point:t(e.point)}:e}function mS(e,t){return{x:e.x-t.x,y:e.y-t.y}}function a2({point:e},t){return{point:e,delta:mS(e,SL(t)),offset:mS(e,fK(t)),velocity:dK(t,.1)}}function fK(e){return e[0]}function SL(e){return e[e.length-1]}function dK(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const o=SL(e);for(;n>=0&&(r=e[n],!(o.timestamp-r.timestamp>J1(t)));)n--;if(!r)return{x:0,y:0};const i=(o.timestamp-r.timestamp)/1e3;if(i===0)return{x:0,y:0};const s={x:(o.x-r.x)/i,y:(o.y-r.y)/i};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}function jr(e){return e.max-e.min}function gS(e,t=0,n=.01){return F3(e,t)n&&(e=r?Yt(n,e,r.max):Math.min(e,n)),e}function xS(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function mK(e,{top:t,left:n,bottom:r,right:o}){return{x:xS(e.x,n,o),y:xS(e.y,t,r)}}function wS(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=jf(t.min,t.max-r,e.min):r>o&&(n=jf(e.min,e.max-o,t.min)),Y1(0,1,n)}function yK(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const f4=.35;function bK(e=f4){return e===!1?e=0:e===!0&&(e=f4),{x:SS(e,"left","right"),y:SS(e,"top","bottom")}}function SS(e,t,n){return{min:CS(e,t),max:CS(e,n)}}function CS(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const _S=()=>({translate:0,scale:1,origin:0,originPoint:0}),uf=()=>({x:_S(),y:_S()}),kS=()=>({min:0,max:0}),In=()=>({x:kS(),y:kS()});function Yo(e){return[e("x"),e("y")]}function CL({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function xK({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function wK(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function s2(e){return e===void 0||e===1}function _L({scale:e,scaleX:t,scaleY:n}){return!s2(e)||!s2(t)||!s2(n)}function xa(e){return _L(e)||ES(e.x)||ES(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function ES(e){return e&&e!=="0%"}function t0(e,t,n){const r=e-n,o=t*r;return n+o}function LS(e,t,n,r,o){return o!==void 0&&(e=t0(e,o,r)),t0(e,n,r)+t}function d4(e,t=0,n=1,r,o){e.min=LS(e.min,t,n,r,o),e.max=LS(e.max,t,n,r,o)}function kL(e,{x:t,y:n}){d4(e.x,t.translate,t.scale,t.originPoint),d4(e.y,n.translate,n.scale,n.originPoint)}function SK(e,t,n,r=!1){var o,i;const s=n.length;if(!s)return;t.x=t.y=1;let u,c;for(let f=0;f{this.stopAnimation(),n&&this.snapToCursor(T3(u,"page").point)},o=(u,c)=>{var f;const{drag:d,dragPropagation:h,onDragStart:m}=this.getProps();d&&!h&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=HE(d),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Yo(g=>{var b,x;let k=this.getAxisMotionValue(g).get()||0;if(li.test(k)){const S=(x=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||x===void 0?void 0:x.actual[g];S&&(k=jr(S)*(parseFloat(k)/100))}this.originPoint[g]=k}),m?.(u,c),(f=this.visualElement.animationState)===null||f===void 0||f.setActive(Lt.Drag,!0))},i=(u,c)=>{const{dragPropagation:f,dragDirectionLock:d,onDirectionLock:h,onDrag:m}=this.getProps();if(!f&&!this.openGlobalLock)return;const{offset:g}=c;if(d&&this.currentDirection===null){this.currentDirection=PK(g),this.currentDirection!==null&&h?.(this.currentDirection);return}this.updateAxis("x",c.point,g),this.updateAxis("y",c.point,g),this.visualElement.syncRender(),m?.(u,c)},s=(u,c)=>this.stop(u,c);this.panSession=new wL(t,{onSessionStart:r,onStart:o,onMove:i,onSessionEnd:s},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:o}=n;this.startAnimation(o);const{onDragEnd:i}=this.getProps();i?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Lt.Drag,!1)}updateAxis(t,n,r){const{drag:o}=this.getProps();if(!r||!dh(t,o,this.currentDirection))return;const i=this.getAxisMotionValue(t);let s=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(s=hK(s,this.constraints[t],this.elastic[t])),i.set(s)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},o=this.constraints;t&&Gl(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=mK(r.actual,t):this.constraints=!1,this.elastic=bK(n),o!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&Yo(i=>{this.getAxisMotionValue(i)&&(this.constraints[i]=yK(r.actual[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Gl(t))return!1;const r=t.current,{projection:o}=this.visualElement;if(!o||!o.layout)return!1;const i=kK(r,o.root,this.visualElement.getTransformPagePoint());let s=gK(o.layout.actual,i);if(n){const u=n(xK(s));this.hasMutatedConstraints=!!u,u&&(s=CL(u))}return s}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:o,dragTransition:i,dragSnapToOrigin:s,onDragTransitionEnd:u}=this.getProps(),c=this.constraints||{},f=Yo(d=>{var h;if(!dh(d,n,this.currentDirection))return;let m=(h=c?.[d])!==null&&h!==void 0?h:{};s&&(m={min:0,max:0});const g=o?200:1e6,b=o?40:1e7,x={type:"inertia",velocity:r?t[d]:0,bounceStiffness:g,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...i,...m};return this.startAxisValueAnimation(d,x)});return Promise.all(f).then(u)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return j3(t,r,0,n)}stopAnimation(){Yo(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const o="_drag"+t.toUpperCase(),i=this.visualElement.getProps()[o];return i||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){Yo(n=>{const{drag:r}=this.getProps();if(!dh(n,r,this.currentDirection))return;const{projection:o}=this.visualElement,i=this.getAxisMotionValue(n);if(o&&o.layout){const{min:s,max:u}=o.layout.actual[n];i.set(t[n]-Yt(s,u,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:o}=this.visualElement;if(!Gl(r)||!o||!this.constraints)return;this.stopAnimation();const i={x:0,y:0};Yo(u=>{const c=this.getAxisMotionValue(u);if(c){const f=c.get();i[u]=vK({min:f,max:f},this.constraints[u])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=s?s({},""):"none",(t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout(),this.resolveConstraints(),Yo(u=>{if(!dh(u,n,null))return;const c=this.getAxisMotionValue(u),{min:f,max:d}=this.constraints[u];c.set(Yt(f,d,i[u]))})}addListeners(){var t;EK.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=nu(n,"pointerdown",f=>{const{drag:d,dragListener:h=!0}=this.getProps();d&&h&&this.start(f)}),o=()=>{const{dragConstraints:f}=this.getProps();Gl(f)&&(this.constraints=this.resolveRefConstraints())},{projection:i}=this.visualElement,s=i.addEventListener("measure",o);i&&!i.layout&&((t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout()),o();const u=sm(window,"resize",()=>this.scalePositionWithinConstraints()),c=i.addEventListener("didUpdate",({delta:f,hasLayoutChanged:d})=>{this.isDragging&&d&&(Yo(h=>{const m=this.getAxisMotionValue(h);!m||(this.originPoint[h]+=f[h].translate,m.set(m.get()+f[h].translate))}),this.visualElement.syncRender())});return()=>{u(),r(),s(),c?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:o=!1,dragConstraints:i=!1,dragElastic:s=f4,dragMomentum:u=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:o,dragConstraints:i,dragElastic:s,dragMomentum:u}}}function dh(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function PK(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function AK(e){const{dragControls:t,visualElement:n}=e,r=am(()=>new LK(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function TK({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(null),{transformPagePoint:u}=C.exports.useContext(S3),c={onSessionStart:r,onStart:t,onMove:e,onEnd:(d,h)=>{s.current=null,n&&n(d,h)}};C.exports.useEffect(()=>{s.current!==null&&s.current.updateHandlers(c)});function f(d){s.current=new wL(d,c,{transformPagePoint:u})}K1(o,"pointerdown",i&&f),I3(()=>s.current&&s.current.end())}const IK={pan:Oa(TK),drag:Oa(AK)},p4={current:null},LL={current:!1};function OK(){if(LL.current=!0,!!Hs)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>p4.current=e.matches;e.addListener(t),t()}else p4.current=!1}const ph=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function MK(){const e=ph.map(()=>new af),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{ph.forEach(o=>{var i;const s="on"+o,u=r[s];(i=t[o])===null||i===void 0||i.call(t),u&&(t[o]=n[s](u))})}};return e.forEach((r,o)=>{n["on"+ph[o]]=i=>r.add(i),n["notify"+ph[o]]=(...i)=>r.notify(...i)}),n}function RK(e,t,n){const{willChange:r}=t;for(const o in t){const i=t[o],s=n[o];if(hi(i))e.addValue(o,i),e0(r)&&r.add(o);else if(hi(s))e.addValue(o,bu(i)),e0(r)&&r.remove(o);else if(s!==i)if(e.hasValue(o)){const u=e.getValue(o);!u.hasAnimated&&u.set(i)}else{const u=e.getStaticValue(o);e.addValue(o,bu(u!==void 0?u:i))}}for(const o in n)t[o]===void 0&&e.removeValue(o);return t}const PL=Object.keys($f),NK=PL.length,AL=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:o,render:i,readValueFromInstance:s,removeValueFromRenderState:u,sortNodePosition:c,scrapeMotionValuesFromProps:f})=>({parent:d,props:h,presenceId:m,blockInitialAnimation:g,visualState:b,reducedMotionConfig:x},k={})=>{let S=!1;const{latestValues:w,renderState:_}=b;let L;const T=MK(),R=new Map,N=new Map;let z={};const K={...w};let W;function J(){!L||!S||(ve(),i(L,_,h.style,Y.projection))}function ve(){t(Y,_,w,k,h)}function xe(){T.notifyUpdate(w)}function he(Z,O){const H=O.onChange(ce=>{w[Z]=ce,h.onUpdate&&ui.update(xe,!1,!0)}),se=O.onRenderRequest(Y.scheduleRender);N.set(Z,()=>{H(),se()})}const{willChange:fe,...me}=f(h);for(const Z in me){const O=me[Z];w[Z]!==void 0&&hi(O)&&(O.set(w[Z],!1),e0(fe)&&fe.add(Z))}const ne=im(h),j=gE(h),Y={treeType:e,current:null,depth:d?d.depth+1:0,parent:d,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:j?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(d?.isMounted()),blockInitialAnimation:g,isMounted:()=>Boolean(L),mount(Z){S=!0,L=Y.current=Z,Y.projection&&Y.projection.mount(Z),j&&d&&!ne&&(W=d?.addVariantChild(Y)),R.forEach((O,H)=>he(H,O)),LL.current||OK(),Y.shouldReduceMotion=x==="never"?!1:x==="always"?!0:p4.current,d?.children.add(Y),Y.setProps(h)},unmount(){var Z;(Z=Y.projection)===null||Z===void 0||Z.unmount(),Gf.update(xe),Gf.render(J),N.forEach(O=>O()),W?.(),d?.children.delete(Y),T.clearAllListeners(),L=void 0,S=!1},loadFeatures(Z,O,H,se,ce,ye){const be=[];for(let Pe=0;PeY.scheduleRender(),animationType:typeof de=="string"?de:"both",initialPromotionConfig:ye,layoutScroll:st})}return be},addVariantChild(Z){var O;const H=Y.getClosestVariantNode();if(H)return(O=H.variantChildren)===null||O===void 0||O.add(Z),()=>H.variantChildren.delete(Z)},sortNodePosition(Z){return!c||e!==Z.treeType?0:c(Y.getInstance(),Z.getInstance())},getClosestVariantNode:()=>j?Y:d?.getClosestVariantNode(),getLayoutId:()=>h.layoutId,getInstance:()=>L,getStaticValue:Z=>w[Z],setStaticValue:(Z,O)=>w[Z]=O,getLatestValues:()=>w,setVisibility(Z){Y.isVisible!==Z&&(Y.isVisible=Z,Y.scheduleRender())},makeTargetAnimatable(Z,O=!0){return r(Y,Z,h,O)},measureViewportBox(){return o(L,h)},addValue(Z,O){Y.hasValue(Z)&&Y.removeValue(Z),R.set(Z,O),w[Z]=O.get(),he(Z,O)},removeValue(Z){var O;R.delete(Z),(O=N.get(Z))===null||O===void 0||O(),N.delete(Z),delete w[Z],u(Z,_)},hasValue:Z=>R.has(Z),getValue(Z,O){let H=R.get(Z);return H===void 0&&O!==void 0&&(H=bu(O),Y.addValue(Z,H)),H},forEachValue:Z=>R.forEach(Z),readValue:Z=>w[Z]!==void 0?w[Z]:s(L,Z,k),setBaseTarget(Z,O){K[Z]=O},getBaseTarget(Z){if(n){const O=n(h,Z);if(O!==void 0&&!hi(O))return O}return K[Z]},...T,build(){return ve(),_},scheduleRender(){ui.render(J,!1,!0)},syncRender:J,setProps(Z){(Z.transformTemplate||h.transformTemplate)&&Y.scheduleRender(),h=Z,T.updatePropListeners(Z),z=RK(Y,f(h),z)},getProps:()=>h,getVariant:Z=>{var O;return(O=h.variants)===null||O===void 0?void 0:O[Z]},getDefaultTransition:()=>h.transition,getTransformPagePoint:()=>h.transformPagePoint,getVariantContext(Z=!1){if(Z)return d?.getVariantContext();if(!ne){const H=d?.getVariantContext()||{};return h.initial!==void 0&&(H.initial=h.initial),H}const O={};for(let H=0;H{const i=o.get();if(!h4(i))return;const s=m4(i,r);s&&o.set(s)});for(const o in t){const i=t[o];if(!h4(i))continue;const s=m4(i,r);!s||(t[o]=s,n&&n[o]===void 0&&(n[o]=i))}return{target:t,transitionEnd:n}}const BK=new Set(["width","height","top","left","right","bottom","x","y"]),OL=e=>BK.has(e),$K=e=>Object.keys(e).some(OL),ML=(e,t)=>{e.set(t,!1),e.set(t)},AS=e=>e===Us||e===Ne;var TS;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(TS||(TS={}));const IS=(e,t)=>parseFloat(e.split(", ")[t]),OS=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const o=r.match(/^matrix3d\((.+)\)$/);if(o)return IS(o[1],t);{const i=r.match(/^matrix\((.+)\)$/);return i?IS(i[1],e):0}},VK=new Set(["x","y","z"]),WK=G1.filter(e=>!VK.has(e));function jK(e){const t=[];return WK.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const MS={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:OS(4,13),y:OS(5,14)},HK=(e,t,n)=>{const r=t.measureViewportBox(),o=t.getInstance(),i=getComputedStyle(o),{display:s}=i,u={};s==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(f=>{u[f]=MS[f](r,i)}),t.syncRender();const c=t.measureViewportBox();return n.forEach(f=>{const d=t.getValue(f);ML(d,u[f]),e[f]=MS[f](c,i)}),e},UK=(e,t,n={},r={})=>{t={...t},r={...r};const o=Object.keys(t).filter(OL);let i=[],s=!1;const u=[];if(o.forEach(c=>{const f=e.getValue(c);if(!e.hasValue(c))return;let d=n[c],h=Pc(d);const m=t[c];let g;if(Wf(m)){const b=m.length,x=m[0]===null?1:0;d=m[x],h=Pc(d);for(let k=x;k=0?window.pageYOffset:null,f=HK(t,e,u);return i.length&&i.forEach(([d,h])=>{e.getValue(d).set(h)}),e.syncRender(),Hs&&c!==null&&window.scrollTo({top:c}),{target:f,transitionEnd:r}}else return{target:t,transitionEnd:r}};function GK(e,t,n,r){return $K(t)?UK(e,t,n,r):{target:t,transitionEnd:r}}const ZK=(e,t,n,r)=>{const o=FK(e,t,r);return t=o.target,r=o.transitionEnd,GK(e,t,n,r)};function KK(e){return window.getComputedStyle(e)}const RL={treeType:"dom",readValueFromInstance(e,t){if(gd.has(t)){const n=$3(t);return n&&n.default||0}else{const n=KK(e),r=(bE(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return EL(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:o},i=!0){let s=JZ(r,t||{},e);if(o&&(n&&(n=o(n)),r&&(r=o(r)),s&&(s=o(s))),i){XZ(e,r,s);const u=ZK(e,r,s,n);n=u.transitionEnd,r=u.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:A3,build(e,t,n,r,o){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),E3(t,n,r,o.transformTemplate)},render:OE},qK=AL(RL),YK=AL({...RL,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return gd.has(t)?((n=$3(t))===null||n===void 0?void 0:n.default)||0:(t=ME.has(t)?t:IE(t),e.getAttribute(t))},scrapeMotionValuesFromProps:NE,build(e,t,n,r,o){P3(t,n,r,o.transformTemplate)},render:RE}),XK=(e,t)=>_3(e)?YK(t,{enableHardwareAcceleration:!1}):qK(t,{enableHardwareAcceleration:!0});function RS(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const Ac={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(Ne.test(e))e=parseFloat(e);else return e;const n=RS(e,t.target.x),r=RS(e,t.target.y);return`${n}% ${r}%`}},NS="_$css",QK={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,o=e.includes("var("),i=[];o&&(e=e.replace(IL,g=>(i.push(g),NS)));const s=Xi.parse(e);if(s.length>5)return r;const u=Xi.createTransformer(e),c=typeof s[0]!="number"?1:0,f=n.x.scale*t.x,d=n.y.scale*t.y;s[0+c]/=f,s[1+c]/=d;const h=Yt(f,d,.5);typeof s[2+c]=="number"&&(s[2+c]/=h),typeof s[3+c]=="number"&&(s[3+c]/=h);let m=u(s);if(o){let g=0;m=m.replace(NS,()=>{const b=i[g];return g++,b})}return m}};class JK extends X.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:o}=this.props,{projection:i}=t;fU(tq),i&&(n.group&&n.group.add(i),r&&r.register&&o&&r.register(i),i.root.didUpdate(),i.addEventListener("animationComplete",()=>{this.safeToRemove()}),i.setOptions({...i.options,onExitComplete:()=>this.safeToRemove()})),nf.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:o,isPresent:i}=this.props,s=r.projection;return s&&(s.isPresent=i,o||t.layoutDependency!==n||n===void 0?s.willUpdate():this.safeToRemove(),t.isPresent!==i&&(i?s.promote():s.relegate()||ui.postRender(()=>{var u;!((u=s.getStack())===null||u===void 0)&&u.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:o}=t;o&&(o.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(o),r?.deregister&&r.deregister(o))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function eq(e){const[t,n]=B3(),r=C.exports.useContext(C3);return v(JK,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(vE),isPresent:t,safeToRemove:n})}const tq={borderRadius:{...Ac,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Ac,borderTopRightRadius:Ac,borderBottomLeftRadius:Ac,borderBottomRightRadius:Ac,boxShadow:QK},nq={measureLayout:eq};function rq(e,t,n={}){const r=hi(e)?e:bu(e);return j3("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const NL=["TopLeft","TopRight","BottomLeft","BottomRight"],oq=NL.length,DS=e=>typeof e=="string"?parseFloat(e):e,zS=e=>typeof e=="number"||Ne.test(e);function iq(e,t,n,r,o,i){var s,u,c,f;o?(e.opacity=Yt(0,(s=n.opacity)!==null&&s!==void 0?s:1,aq(r)),e.opacityExit=Yt((u=t.opacity)!==null&&u!==void 0?u:1,0,sq(r))):i&&(e.opacity=Yt((c=t.opacity)!==null&&c!==void 0?c:1,(f=n.opacity)!==null&&f!==void 0?f:1,r));for(let d=0;drt?1:n(jf(e,t,r))}function BS(e,t){e.min=t.min,e.max=t.max}function Lo(e,t){BS(e.x,t.x),BS(e.y,t.y)}function $S(e,t,n,r,o){return e-=t,e=t0(e,1/n,r),o!==void 0&&(e=t0(e,1/o,r)),e}function lq(e,t=0,n=1,r=.5,o,i=e,s=e){if(li.test(t)&&(t=parseFloat(t),t=Yt(s.min,s.max,t/100)-s.min),typeof t!="number")return;let u=Yt(i.min,i.max,r);e===i&&(u-=t),e.min=$S(e.min,t,n,u,o),e.max=$S(e.max,t,n,u,o)}function VS(e,t,[n,r,o],i,s){lq(e,t[n],t[r],t[o],t.scale,i,s)}const uq=["x","scaleX","originX"],cq=["y","scaleY","originY"];function WS(e,t,n,r){VS(e.x,t,uq,n?.x,r?.x),VS(e.y,t,cq,n?.y,r?.y)}function jS(e){return e.translate===0&&e.scale===1}function zL(e){return jS(e.x)&&jS(e.y)}function FL(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function HS(e){return jr(e.x)/jr(e.y)}function fq(e,t,n=.01){return F3(e,t)<=n}class dq{constructor(){this.members=[]}add(t){H3(this.members,t),t.scheduleRender()}remove(t){if(U3(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(o=>t===o);if(n===0)return!1;let r;for(let o=n;o>=0;o--){const i=this.members[o];if(i.isPresent!==!1){r=i;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:i}=t.options;i===!1&&o.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,o,i,s;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(s=(o=t.resumingFrom)===null||o===void 0?void 0:(i=o.options).onExitComplete)===null||s===void 0||s.call(i)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const pq="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function US(e,t,n){const r=e.x.translate/t.x,o=e.y.translate/t.y;let i=`translate3d(${r}px, ${o}px, 0) `;if(i+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:c,rotateX:f,rotateY:d}=n;c&&(i+=`rotate(${c}deg) `),f&&(i+=`rotateX(${f}deg) `),d&&(i+=`rotateY(${d}deg) `)}const s=e.x.scale*t.x,u=e.y.scale*t.y;return i+=`scale(${s}, ${u})`,i===pq?"none":i}const hq=(e,t)=>e.depth-t.depth;class mq{constructor(){this.children=[],this.isDirty=!1}add(t){H3(this.children,t),this.isDirty=!0}remove(t){U3(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(hq),this.isDirty=!1,this.children.forEach(t)}}const GS=["","X","Y","Z"],ZS=1e3;function BL({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:o}){return class{constructor(s,u={},c=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(wq),this.nodes.forEach(Sq)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=s,this.latestValues=u,this.root=c?c.root||c:this,this.path=c?[...c.path,c]:[],this.parent=c,this.depth=c?c.depth+1:0,s&&this.root.registerPotentialNode(s,this);for(let f=0;fthis.root.updateBlockedByResize=!1;e(s,()=>{this.root.updateBlockedByResize=!0,clearTimeout(m),m=window.setTimeout(g,250),nf.hasAnimatedSinceResize&&(nf.hasAnimatedSinceResize=!1,this.nodes.forEach(xq))})}f&&this.root.registerSharedNode(f,this),this.options.animate!==!1&&h&&(f||d)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:g,hasRelativeTargetChanged:b,layout:x})=>{var k,S,w,_,L;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const T=(S=(k=this.options.transition)!==null&&k!==void 0?k:h.getDefaultTransition())!==null&&S!==void 0?S:Lq,{onLayoutAnimationStart:R,onLayoutAnimationComplete:N}=h.getProps(),z=!this.targetLayout||!FL(this.targetLayout,x)||b,K=!g&&b;if(((w=this.resumeFrom)===null||w===void 0?void 0:w.instance)||K||g&&(z||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,K);const W={...W3(T,"layout"),onPlay:R,onComplete:N};h.shouldReduceMotion&&(W.delay=0,W.type=!1),this.startAnimation(W)}else!g&&this.animationProgress===0&&this.finishAnimation(),this.isLead()&&((L=(_=this.options).onExitComplete)===null||L===void 0||L.call(_));this.targetLayout=x})}unmount(){var s,u;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(s=this.getStack())===null||s===void 0||s.remove(this),(u=this.parent)===null||u===void 0||u.children.delete(this),this.instance=void 0,Gf.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var s;return this.isAnimationBlocked||((s=this.parent)===null||s===void 0?void 0:s.isTreeAnimationBlocked())||!1}startUpdate(){var s;this.isUpdateBlocked()||(this.isUpdating=!0,(s=this.nodes)===null||s===void 0||s.forEach(Cq))}willUpdate(s=!0){var u,c,f;if(this.root.isUpdateBlocked()){(c=(u=this.options).onExitComplete)===null||c===void 0||c.call(u);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let g=0;g{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const s=this.measure(),u=this.removeTransform(this.removeElementScroll(s));QS(u),this.snapshot={measured:s,layout:u,latestValues:{}}}updateLayout(){var s;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let f=0;f{var w;const _=S/1e3;qS(m.x,s.x,_),qS(m.y,s.y,_),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((w=this.relativeParent)===null||w===void 0?void 0:w.layout)&&(lf(g,this.layout.actual,this.relativeParent.layout.actual),kq(this.relativeTarget,this.relativeTargetOrigin,g,_)),b&&(this.animationValues=h,iq(h,d,this.latestValues,_,k,x)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=_},this.mixTargetDelta(0)}startAnimation(s){var u,c;this.notifyListeners("animationStart"),(u=this.currentAnimation)===null||u===void 0||u.stop(),this.resumingFrom&&((c=this.resumingFrom.currentAnimation)===null||c===void 0||c.stop()),this.pendingAnimation&&(Gf.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=ui.update(()=>{nf.hasAnimatedSinceResize=!0,this.currentAnimation=rq(0,ZS,{...s,onUpdate:f=>{var d;this.mixTargetDelta(f),(d=s.onUpdate)===null||d===void 0||d.call(s,f)},onComplete:()=>{var f;(f=s.onComplete)===null||f===void 0||f.call(s),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var s;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(s=this.getStack())===null||s===void 0||s.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var s;this.currentAnimation&&((s=this.mixTargetDelta)===null||s===void 0||s.call(this,ZS),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const s=this.getLead();let{targetWithTransforms:u,target:c,layout:f,latestValues:d}=s;if(!(!u||!c||!f)){if(this!==s&&this.layout&&f&&$L(this.options.animationType,this.layout.actual,f.actual)){c=this.target||In();const h=jr(this.layout.actual.x);c.x.min=s.target.x.min,c.x.max=c.x.min+h;const m=jr(this.layout.actual.y);c.y.min=s.target.y.min,c.y.max=c.y.min+m}Lo(u,c),Zl(u,d),sf(this.projectionDeltaWithTransform,this.layoutCorrected,u,d)}}registerSharedNode(s,u){var c,f,d;this.sharedNodes.has(s)||this.sharedNodes.set(s,new dq),this.sharedNodes.get(s).add(u),u.promote({transition:(c=u.options.initialPromotionConfig)===null||c===void 0?void 0:c.transition,preserveFollowOpacity:(d=(f=u.options.initialPromotionConfig)===null||f===void 0?void 0:f.shouldPreserveFollowOpacity)===null||d===void 0?void 0:d.call(f,u)})}isLead(){const s=this.getStack();return s?s.lead===this:!0}getLead(){var s;const{layoutId:u}=this.options;return u?((s=this.getStack())===null||s===void 0?void 0:s.lead)||this:this}getPrevLead(){var s;const{layoutId:u}=this.options;return u?(s=this.getStack())===null||s===void 0?void 0:s.prevLead:void 0}getStack(){const{layoutId:s}=this.options;if(s)return this.root.sharedNodes.get(s)}promote({needsReset:s,transition:u,preserveFollowOpacity:c}={}){const f=this.getStack();f&&f.promote(this,c),s&&(this.projectionDelta=void 0,this.needsReset=!0),u&&this.setOptions({transition:u})}relegate(){const s=this.getStack();return s?s.relegate(this):!1}resetRotation(){const{visualElement:s}=this.options;if(!s)return;let u=!1;const c={};for(let f=0;f{var u;return(u=s.currentAnimation)===null||u===void 0?void 0:u.stop()}),this.root.nodes.forEach(KS),this.root.sharedNodes.clear()}}}function gq(e){e.updateLayout()}function vq(e){var t,n,r;const o=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&o&&e.hasListeners("didUpdate")){const{actual:i,measured:s}=e.layout,{animationType:u}=e.options;u==="size"?Yo(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=jr(g);g.min=i[m].min,g.max=g.min+b}):$L(u,o.layout,i)&&Yo(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=jr(i[m]);g.max=g.min+b});const c=uf();sf(c,i,o.layout);const f=uf();o.isShared?sf(f,e.applyTransform(s,!0),o.measured):sf(f,i,o.layout);const d=!zL(c);let h=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:g}=e.relativeParent;if(m&&g){const b=In();lf(b,o.layout,m.layout);const x=In();lf(x,i,g.actual),FL(b,x)||(h=!0)}}e.notifyListeners("didUpdate",{layout:i,snapshot:o,delta:f,layoutDelta:c,hasLayoutChanged:d,hasRelativeTargetChanged:h})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function yq(e){e.clearSnapshot()}function KS(e){e.clearMeasurements()}function bq(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function xq(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function wq(e){e.resolveTargetDelta()}function Sq(e){e.calcProjection()}function Cq(e){e.resetRotation()}function _q(e){e.removeLeadSnapshot()}function qS(e,t,n){e.translate=Yt(t.translate,0,n),e.scale=Yt(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function YS(e,t,n,r){e.min=Yt(t.min,n.min,r),e.max=Yt(t.max,n.max,r)}function kq(e,t,n,r){YS(e.x,t.x,n.x,r),YS(e.y,t.y,n.y,r)}function Eq(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const Lq={duration:.45,ease:[.4,0,.1,1]};function Pq(e,t){let n=e.root;for(let i=e.path.length-1;i>=0;i--)if(Boolean(e.path[i].instance)){n=e.path[i];break}const o=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);o&&e.mount(o,!0)}function XS(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function QS(e){XS(e.x),XS(e.y)}function $L(e,t,n){return e==="position"||e==="preserve-aspect"&&!fq(HS(t),HS(n))}const Aq=BL({attachResizeListener:(e,t)=>sm(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),l2={current:void 0},Tq=BL({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!l2.current){const e=new Aq(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),l2.current=e}return l2.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),Iq={...cK,...xZ,...IK,...nq},go=uU((e,t)=>KU(e,t,Iq,XK,Tq));function VL(){const e=C.exports.useRef(!1);return H1(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function Oq(){const e=VL(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>ui.postRender(r),[r]),t]}class Mq extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function Rq({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),o=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:i,height:s,top:u,left:c}=o.current;if(t||!r.current||!i||!s)return;r.current.dataset.motionPopId=n;const f=document.createElement("style");return document.head.appendChild(f),f.sheet&&f.sheet.insertRule(` - [data-motion-pop-id="${n}"] { - position: absolute !important; - width: ${i}px !important; - height: ${s}px !important; - top: ${u}px !important; - left: ${c}px !important; - } - `),()=>{document.head.removeChild(f)}},[t]),v(Mq,{isPresent:t,childRef:r,sizeRef:o,children:C.exports.cloneElement(e,{ref:r})})}const u2=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:o,presenceAffectsLayout:i,mode:s})=>{const u=am(Nq),c=C.exports.useId(),f=C.exports.useMemo(()=>({id:c,initial:t,isPresent:n,custom:o,onExitComplete:d=>{u.set(d,!0);for(const h of u.values())if(!h)return;r&&r()},register:d=>(u.set(d,!1),()=>u.delete(d))}),i?void 0:[n]);return C.exports.useMemo(()=>{u.forEach((d,h)=>u.set(h,!1))},[n]),C.exports.useEffect(()=>{!n&&!u.size&&r&&r()},[n]),s==="popLayout"&&(e=v(Rq,{isPresent:n,children:e})),v(Nu.Provider,{value:f,children:e})};function Nq(){return new Map}const Tl=e=>e.key||"";function Dq(e,t){e.forEach(n=>{const r=Tl(n);t.set(r,n)})}function zq(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const na=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:o,presenceAffectsLayout:i=!0,mode:s="sync"})=>{o&&(s="wait",pL(!1,"Replace exitBeforeEnter with mode='wait'"));let[u]=Oq();const c=C.exports.useContext(C3).forceRender;c&&(u=c);const f=VL(),d=zq(e);let h=d;const m=new Set,g=C.exports.useRef(h),b=C.exports.useRef(new Map).current,x=C.exports.useRef(!0);if(H1(()=>{x.current=!1,Dq(d,b),g.current=h}),I3(()=>{x.current=!0,b.clear(),m.clear()}),x.current)return v(yn,{children:h.map(_=>v(u2,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:i,mode:s,children:_},Tl(_)))});h=[...h];const k=g.current.map(Tl),S=d.map(Tl),w=k.length;for(let _=0;_{if(S.indexOf(_)!==-1)return;const L=b.get(_);if(!L)return;const T=k.indexOf(_),R=()=>{b.delete(_),m.delete(_);const N=g.current.findIndex(z=>z.key===_);if(g.current.splice(N,1),!m.size){if(g.current=d,f.current===!1)return;u(),r&&r()}};h.splice(T,0,v(u2,{isPresent:!1,onExitComplete:R,custom:t,presenceAffectsLayout:i,mode:s,children:L},Tl(L)))}),h=h.map(_=>{const L=_.key;return m.has(L)?_:v(u2,{isPresent:!0,presenceAffectsLayout:i,mode:s,children:_},Tl(_))}),dL!=="production"&&s==="wait"&&h.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),v(yn,{children:m.size?h:h.map(_=>C.exports.cloneElement(_))})};var wd=(...e)=>e.filter(Boolean).join(" ");function Fq(){return!1}var Bq=e=>{const{condition:t,message:n}=e;t&&Fq()&&console.warn(n)},Ls={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},Tc={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function g4(e){switch(e?.direction??"right"){case"right":return Tc.slideRight;case"left":return Tc.slideLeft;case"bottom":return Tc.slideDown;case"top":return Tc.slideUp;default:return Tc.slideRight}}var Is={enter:{duration:.2,ease:Ls.easeOut},exit:{duration:.1,ease:Ls.easeIn}},Fo={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},$q=e=>e!=null&&parseInt(e.toString(),10)>0,JS={exit:{height:{duration:.2,ease:Ls.ease},opacity:{duration:.3,ease:Ls.ease}},enter:{height:{duration:.3,ease:Ls.ease},opacity:{duration:.4,ease:Ls.ease}}},Vq={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:$q(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Fo.exit(JS.exit,o)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Fo.enter(JS.enter,o)})},WL=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:o=!0,startingHeight:i=0,endingHeight:s="auto",style:u,className:c,transition:f,transitionEnd:d,...h}=e,[m,g]=C.exports.useState(!1);C.exports.useEffect(()=>{const w=setTimeout(()=>{g(!0)});return()=>clearTimeout(w)},[]),Bq({condition:Boolean(i>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(i.toString())>0,x={startingHeight:i,endingHeight:s,animateOpacity:o,transition:m?f:{enter:{duration:0}},transitionEnd:{enter:d?.enter,exit:r?d?.exit:{...d?.exit,display:b?"block":"none"}}},k=r?n:!0,S=n||r?"enter":"exit";return v(na,{initial:!1,custom:x,children:k&&X.createElement(go.div,{ref:t,...h,className:wd("chakra-collapse",c),style:{overflow:"hidden",display:"block",...u},custom:x,variants:Vq,initial:r?"exit":!1,animate:S,exit:"exit"})})});WL.displayName="Collapse";var Wq={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Fo.enter(Is.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Fo.exit(Is.exit,n),transitionEnd:t?.exit})},jL={initial:"exit",animate:"enter",exit:"exit",variants:Wq},jq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,className:i,transition:s,transitionEnd:u,delay:c,...f}=t,d=o||r?"enter":"exit",h=r?o&&r:!0,m={transition:s,transitionEnd:u,delay:c};return v(na,{custom:m,children:h&&X.createElement(go.div,{ref:n,className:wd("chakra-fade",i),custom:m,...jL,animate:d,...f})})});jq.displayName="Fade";var Hq={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Fo.exit(Is.exit,o)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Fo.enter(Is.enter,n),transitionEnd:e?.enter})},HL={initial:"exit",animate:"enter",exit:"exit",variants:Hq},Uq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,initialScale:s=.95,className:u,transition:c,transitionEnd:f,delay:d,...h}=t,m=r?o&&r:!0,g=o||r?"enter":"exit",b={initialScale:s,reverse:i,transition:c,transitionEnd:f,delay:d};return v(na,{custom:b,children:m&&X.createElement(go.div,{ref:n,className:wd("chakra-offset-slide",u),...HL,animate:g,custom:b,...h})})});Uq.displayName="ScaleFade";var e8={exit:{duration:.15,ease:Ls.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},Gq={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:o}=g4({direction:e});return{...o,transition:t?.exit??Fo.exit(e8.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:o}=g4({direction:e});return{...o,transition:n?.enter??Fo.enter(e8.enter,r),transitionEnd:t?.enter}}},UL=C.exports.forwardRef(function(t,n){const{direction:r="right",style:o,unmountOnExit:i,in:s,className:u,transition:c,transitionEnd:f,delay:d,...h}=t,m=g4({direction:r}),g=Object.assign({position:"fixed"},m.position,o),b=i?s&&i:!0,x=s||i?"enter":"exit",k={transitionEnd:f,transition:c,direction:r,delay:d};return v(na,{custom:k,children:b&&X.createElement(go.div,{...h,ref:n,initial:"exit",className:wd("chakra-slide",u),animate:x,exit:"exit",custom:k,variants:Gq,style:g})})});UL.displayName="Slide";var Zq={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,x:e,y:t,transition:n?.exit??Fo.exit(Is.exit,o),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Fo.enter(Is.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:o,delay:i})=>{const s={x:t,y:e};return{opacity:0,transition:n?.exit??Fo.exit(Is.exit,i),...o?{...s,transitionEnd:r?.exit}:{transitionEnd:{...s,...r?.exit}}}}},v4={initial:"initial",animate:"enter",exit:"exit",variants:Zq},Kq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,className:s,offsetX:u=0,offsetY:c=8,transition:f,transitionEnd:d,delay:h,...m}=t,g=r?o&&r:!0,b=o||r?"enter":"exit",x={offsetX:u,offsetY:c,reverse:i,transition:f,transitionEnd:d,delay:h};return v(na,{custom:x,children:g&&X.createElement(go.div,{ref:n,className:wd("chakra-offset-slide",s),custom:x,...v4,animate:b,...m})})});Kq.displayName="SlideFade";var Sd=(...e)=>e.filter(Boolean).join(" ");function qq(){return!1}var hm=e=>{const{condition:t,message:n}=e;t&&qq()&&console.warn(n)};function c2(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Yq,mm]=At({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[Xq,Z3]=At({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[Qq,S0e,Jq,eY]=pE(),GL=ue(function(t,n){const{getButtonProps:r}=Z3(),o=r(t,n),i=mm(),s={display:"flex",alignItems:"center",width:"100%",outline:0,...i.button};return X.createElement(oe.button,{...o,className:Sd("chakra-accordion__button",t.className),__css:s})});GL.displayName="AccordionButton";function tY(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:o,allowToggle:i,...s}=e;oY(e),iY(e);const u=Jq(),[c,f]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{f(-1)},[]);const[d,h]=hE({value:r,defaultValue(){return o?n??[]:n??-1},onChange:t});return{index:d,setIndex:h,htmlProps:s,getAccordionItemProps:g=>{let b=!1;return g!==null&&(b=Array.isArray(d)?d.includes(g):d===g),{isOpen:b,onChange:k=>{if(g!==null)if(o&&Array.isArray(d)){const S=k?d.concat(g):d.filter(w=>w!==g);h(S)}else k?h(g):i&&h(-1)}}},focusedIndex:c,setFocusedIndex:f,descendants:u}}var[nY,K3]=At({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function rY(e){const{isDisabled:t,isFocusable:n,id:r,...o}=e,{getAccordionItemProps:i,setFocusedIndex:s}=K3(),u=C.exports.useRef(null),c=C.exports.useId(),f=r??c,d=`accordion-button-${f}`,h=`accordion-panel-${f}`;aY(e);const{register:m,index:g,descendants:b}=eY({disabled:t&&!n}),{isOpen:x,onChange:k}=i(g===-1?null:g);sY({isOpen:x,isDisabled:t});const S=()=>{k?.(!0)},w=()=>{k?.(!1)},_=C.exports.useCallback(()=>{k?.(!x),s(g)},[g,s,x,k]),L=C.exports.useCallback(z=>{const W={ArrowDown:()=>{const J=b.nextEnabled(g);J?.node.focus()},ArrowUp:()=>{const J=b.prevEnabled(g);J?.node.focus()},Home:()=>{const J=b.firstEnabled();J?.node.focus()},End:()=>{const J=b.lastEnabled();J?.node.focus()}}[z.key];W&&(z.preventDefault(),W(z))},[b,g]),T=C.exports.useCallback(()=>{s(g)},[s,g]),R=C.exports.useCallback(function(K={},W=null){return{...K,type:"button",ref:qt(m,u,W),id:d,disabled:!!t,"aria-expanded":!!x,"aria-controls":h,onClick:c2(K.onClick,_),onFocus:c2(K.onFocus,T),onKeyDown:c2(K.onKeyDown,L)}},[d,t,x,_,T,L,h,m]),N=C.exports.useCallback(function(K={},W=null){return{...K,ref:W,role:"region",id:h,"aria-labelledby":d,hidden:!x}},[d,x,h]);return{isOpen:x,isDisabled:t,isFocusable:n,onOpen:S,onClose:w,getButtonProps:R,getPanelProps:N,htmlProps:o}}function oY(e){const t=e.index||e.defaultIndex,n=t==null&&!Array.isArray(t)&&e.allowMultiple;hm({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function iY(e){hm({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function aY(e){hm({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. - `})}function sY(e){hm({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function ZL(e){const{isOpen:t,isDisabled:n}=Z3(),{reduceMotion:r}=K3(),o=Sd("chakra-accordion__icon",e.className),i=mm(),s={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...i.icon};return v(Kr,{viewBox:"0 0 24 24","aria-hidden":!0,className:o,__css:s,...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}ZL.displayName="AccordionIcon";var KL=ue(function(t,n){const{children:r,className:o}=t,{htmlProps:i,...s}=rY(t),c={...mm().container,overflowAnchor:"none"},f=C.exports.useMemo(()=>s,[s]);return X.createElement(Xq,{value:f},X.createElement(oe.div,{ref:n,...i,className:Sd("chakra-accordion__item",o),__css:c},typeof r=="function"?r({isExpanded:!!s.isOpen,isDisabled:!!s.isDisabled}):r))});KL.displayName="AccordionItem";var qL=ue(function(t,n){const{reduceMotion:r}=K3(),{getPanelProps:o,isOpen:i}=Z3(),s=o(t,n),u=Sd("chakra-accordion__panel",t.className),c=mm();r||delete s.hidden;const f=X.createElement(oe.div,{...s,__css:c.panel,className:u});return r?f:v(WL,{in:i,children:f})});qL.displayName="AccordionPanel";var YL=ue(function({children:t,reduceMotion:n,...r},o){const i=fr("Accordion",r),s=vt(r),{htmlProps:u,descendants:c,...f}=tY(s),d=C.exports.useMemo(()=>({...f,reduceMotion:!!n}),[f,n]);return X.createElement(Qq,{value:c},X.createElement(nY,{value:d},X.createElement(Yq,{value:i},X.createElement(oe.div,{ref:o,...u,className:Sd("chakra-accordion",r.className),__css:i.root},t))))});YL.displayName="Accordion";var lY=(...e)=>e.filter(Boolean).join(" "),uY=pd({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),gm=ue((e,t)=>{const n=cr("Spinner",e),{label:r="Loading...",thickness:o="2px",speed:i="0.45s",emptyColor:s="transparent",className:u,...c}=vt(e),f=lY("chakra-spinner",u),d={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:o,borderBottomColor:s,borderLeftColor:s,animation:`${uY} ${i} linear infinite`,...n};return X.createElement(oe.div,{ref:t,__css:d,className:f,...c},r&&X.createElement(oe.span,{srOnly:!0},r))});gm.displayName="Spinner";var vm=(...e)=>e.filter(Boolean).join(" ");function cY(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function fY(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function t8(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[dY,pY]=At({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[hY,q3]=At({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),XL={info:{icon:fY,colorScheme:"blue"},warning:{icon:t8,colorScheme:"orange"},success:{icon:cY,colorScheme:"green"},error:{icon:t8,colorScheme:"red"},loading:{icon:gm,colorScheme:"blue"}};function mY(e){return XL[e].colorScheme}function gY(e){return XL[e].icon}var QL=ue(function(t,n){const{status:r="info",addRole:o=!0,...i}=vt(t),s=t.colorScheme??mY(r),u=fr("Alert",{...t,colorScheme:s}),c={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...u.container};return X.createElement(dY,{value:{status:r}},X.createElement(hY,{value:u},X.createElement(oe.div,{role:o?"alert":void 0,ref:n,...i,className:vm("chakra-alert",t.className),__css:c})))});QL.displayName="Alert";var JL=ue(function(t,n){const r=q3(),o={display:"inline",...r.description};return X.createElement(oe.div,{ref:n,...t,className:vm("chakra-alert__desc",t.className),__css:o})});JL.displayName="AlertDescription";function eP(e){const{status:t}=pY(),n=gY(t),r=q3(),o=t==="loading"?r.spinner:r.icon;return X.createElement(oe.span,{display:"inherit",...e,className:vm("chakra-alert__icon",e.className),__css:o},e.children||v(n,{h:"100%",w:"100%"}))}eP.displayName="AlertIcon";var tP=ue(function(t,n){const r=q3();return X.createElement(oe.div,{ref:n,...t,className:vm("chakra-alert__title",t.className),__css:r.title})});tP.displayName="AlertTitle";function vY(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function yY(e){const{loading:t,src:n,srcSet:r,onLoad:o,onError:i,crossOrigin:s,sizes:u,ignoreFallback:c}=e,[f,d]=C.exports.useState("pending");C.exports.useEffect(()=>{d(n?"loading":"pending")},[n]);const h=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;g();const b=new Image;b.src=n,s&&(b.crossOrigin=s),r&&(b.srcset=r),u&&(b.sizes=u),t&&(b.loading=t),b.onload=x=>{g(),d("loaded"),o?.(x)},b.onerror=x=>{g(),d("failed"),i?.(x)},h.current=b},[n,s,r,u,o,i,t]),g=()=>{h.current&&(h.current.onload=null,h.current.onerror=null,h.current=null)};return ai(()=>{if(!c)return f==="loading"&&m(),()=>{g()}},[f,m,c]),c?"loaded":f}var bY=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",n0=ue(function(t,n){const{htmlWidth:r,htmlHeight:o,alt:i,...s}=t;return v("img",{width:r,height:o,ref:n,alt:i,...s})});n0.displayName="NativeImage";var ym=ue(function(t,n){const{fallbackSrc:r,fallback:o,src:i,srcSet:s,align:u,fit:c,loading:f,ignoreFallback:d,crossOrigin:h,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:g,...b}=t,x=r!==void 0||o!==void 0,k=f!=null||d||!x,S=yY({...t,ignoreFallback:k}),w=bY(S,m),_={ref:n,objectFit:c,objectPosition:u,...k?b:vY(b,["onError","onLoad"])};return w?o||X.createElement(oe.img,{as:n0,className:"chakra-image__placeholder",src:r,..._}):X.createElement(oe.img,{as:n0,src:i,srcSet:s,crossOrigin:h,loading:f,referrerPolicy:g,className:"chakra-image",..._})});ym.displayName="Image";ue((e,t)=>X.createElement(oe.img,{ref:t,as:n0,className:"chakra-image",...e}));var xY=Object.create,nP=Object.defineProperty,wY=Object.getOwnPropertyDescriptor,rP=Object.getOwnPropertyNames,SY=Object.getPrototypeOf,CY=Object.prototype.hasOwnProperty,oP=(e,t)=>function(){return t||(0,e[rP(e)[0]])((t={exports:{}}).exports,t),t.exports},_Y=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of rP(t))!CY.call(e,o)&&o!==n&&nP(e,o,{get:()=>t[o],enumerable:!(r=wY(t,o))||r.enumerable});return e},kY=(e,t,n)=>(n=e!=null?xY(SY(e)):{},_Y(t||!e||!e.__esModule?nP(n,"default",{value:e,enumerable:!0}):n,e)),EY=oP({"../../node_modules/.pnpm/react@18.2.0/node_modules/react/cjs/react.production.min.js"(e){var t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),u=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),f=Symbol.for("react.suspense"),d=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),m=Symbol.iterator;function g(O){return O===null||typeof O!="object"?null:(O=m&&O[m]||O["@@iterator"],typeof O=="function"?O:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},x=Object.assign,k={};function S(O,H,se){this.props=O,this.context=H,this.refs=k,this.updater=se||b}S.prototype.isReactComponent={},S.prototype.setState=function(O,H){if(typeof O!="object"&&typeof O!="function"&&O!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,O,H,"setState")},S.prototype.forceUpdate=function(O){this.updater.enqueueForceUpdate(this,O,"forceUpdate")};function w(){}w.prototype=S.prototype;function _(O,H,se){this.props=O,this.context=H,this.refs=k,this.updater=se||b}var L=_.prototype=new w;L.constructor=_,x(L,S.prototype),L.isPureReactComponent=!0;var T=Array.isArray,R=Object.prototype.hasOwnProperty,N={current:null},z={key:!0,ref:!0,__self:!0,__source:!0};function K(O,H,se){var ce,ye={},be=null,Pe=null;if(H!=null)for(ce in H.ref!==void 0&&(Pe=H.ref),H.key!==void 0&&(be=""+H.key),H)R.call(H,ce)&&!z.hasOwnProperty(ce)&&(ye[ce]=H[ce]);var de=arguments.length-2;if(de===1)ye.children=se;else if(1(0,n8.isValidElement)(t))}/** - * @license React - * react.development.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - *//** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var xm=(...e)=>e.filter(Boolean).join(" "),r8=e=>e?"":void 0,[PY,AY]=At({strict:!1,name:"ButtonGroupContext"});function y4(e){const{children:t,className:n,...r}=e,o=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,i=xm("chakra-button__icon",n);return X.createElement(oe.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:i},o)}y4.displayName="ButtonIcon";function b4(e){const{label:t,placement:n,spacing:r="0.5rem",children:o=v(gm,{color:"currentColor",width:"1em",height:"1em"}),className:i,__css:s,...u}=e,c=xm("chakra-button__spinner",i),f=n==="start"?"marginEnd":"marginStart",d=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[f]:t?r:0,fontSize:"1em",lineHeight:"normal",...s}),[s,t,f,r]);return X.createElement(oe.div,{className:c,...u,__css:d},o)}b4.displayName="ButtonSpinner";function TY(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(i=>{!i||n(i.tagName==="BUTTON")},[]),type:t?"button":void 0}}var mi=ue((e,t)=>{const n=AY(),r=cr("Button",{...n,...e}),{isDisabled:o=n?.isDisabled,isLoading:i,isActive:s,children:u,leftIcon:c,rightIcon:f,loadingText:d,iconSpacing:h="0.5rem",type:m,spinner:g,spinnerPlacement:b="start",className:x,as:k,...S}=vt(e),w=C.exports.useMemo(()=>{const R={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:R}}},[r,n]),{ref:_,type:L}=TY(k),T={rightIcon:f,leftIcon:c,iconSpacing:h,children:u};return X.createElement(oe.button,{disabled:o||i,ref:HH(t,_),as:k,type:m??L,"data-active":r8(s),"data-loading":r8(i),__css:w,className:xm("chakra-button",x),...S},i&&b==="start"&&v(b4,{className:"chakra-button__spinner--start",label:d,placement:"start",spacing:h,children:g}),i?d||X.createElement(oe.span,{opacity:0},v(o8,{...T})):v(o8,{...T}),i&&b==="end"&&v(b4,{className:"chakra-button__spinner--end",label:d,placement:"end",spacing:h,children:g}))});mi.displayName="Button";function o8(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:o}=e;return q(yn,{children:[t&&v(y4,{marginEnd:o,children:t}),r,n&&v(y4,{marginStart:o,children:n})]})}var IY=ue(function(t,n){const{size:r,colorScheme:o,variant:i,className:s,spacing:u="0.5rem",isAttached:c,isDisabled:f,...d}=t,h=xm("chakra-button__group",s),m=C.exports.useMemo(()=>({size:r,colorScheme:o,variant:i,isDisabled:f}),[r,o,i,f]);let g={display:"inline-flex"};return c?g={...g,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:g={...g,"& > *:not(style) ~ *:not(style)":{marginStart:u}},X.createElement(PY,{value:m},X.createElement(oe.div,{ref:n,role:"group",__css:g,className:h,"data-attached":c?"":void 0,...d}))});IY.displayName="ButtonGroup";var un=ue((e,t)=>{const{icon:n,children:r,isRound:o,"aria-label":i,...s}=e,u=n||r,c=C.exports.isValidElement(u)?C.exports.cloneElement(u,{"aria-hidden":!0,focusable:!1}):null;return v(mi,{padding:"0",borderRadius:o?"full":void 0,ref:t,"aria-label":i,...s,children:c})});un.displayName="IconButton";var Fu=(...e)=>e.filter(Boolean).join(" "),hh=e=>e?"":void 0,f2=e=>e?!0:void 0;function i8(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[OY,iP]=At({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[MY,Bu]=At({strict:!1,name:"FormControlContext"});function RY(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:o,isReadOnly:i,...s}=e,u=C.exports.useId(),c=t||`field-${u}`,f=`${c}-label`,d=`${c}-feedback`,h=`${c}-helptext`,[m,g]=C.exports.useState(!1),[b,x]=C.exports.useState(!1),[k,S]=C.exports.useState(!1),w=C.exports.useCallback((N={},z=null)=>({id:h,...N,ref:qt(z,K=>{!K||x(!0)})}),[h]),_=C.exports.useCallback((N={},z=null)=>({...N,ref:z,"data-focus":hh(k),"data-disabled":hh(o),"data-invalid":hh(r),"data-readonly":hh(i),id:N.id??f,htmlFor:N.htmlFor??c}),[c,o,k,r,i,f]),L=C.exports.useCallback((N={},z=null)=>({id:d,...N,ref:qt(z,K=>{!K||g(!0)}),"aria-live":"polite"}),[d]),T=C.exports.useCallback((N={},z=null)=>({...N,...s,ref:z,role:"group"}),[s]),R=C.exports.useCallback((N={},z=null)=>({...N,ref:z,role:"presentation","aria-hidden":!0,children:N.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!i,isDisabled:!!o,isFocused:!!k,onFocus:()=>S(!0),onBlur:()=>S(!1),hasFeedbackText:m,setHasFeedbackText:g,hasHelpText:b,setHasHelpText:x,id:c,labelId:f,feedbackId:d,helpTextId:h,htmlProps:s,getHelpTextProps:w,getErrorMessageProps:L,getRootProps:T,getLabelProps:_,getRequiredIndicatorProps:R}}var ns=ue(function(t,n){const r=fr("Form",t),o=vt(t),{getRootProps:i,htmlProps:s,...u}=RY(o),c=Fu("chakra-form-control",t.className);return X.createElement(MY,{value:u},X.createElement(OY,{value:r},X.createElement(oe.div,{...i({},n),className:c,__css:r.container})))});ns.displayName="FormControl";var NY=ue(function(t,n){const r=Bu(),o=iP(),i=Fu("chakra-form__helper-text",t.className);return X.createElement(oe.div,{...r?.getHelpTextProps(t,n),__css:o.helperText,className:i})});NY.displayName="FormHelperText";function Y3(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:o,...i}=X3(e);return{...i,disabled:t,readOnly:r,required:o,"aria-invalid":f2(n),"aria-required":f2(o),"aria-readonly":f2(r)}}function X3(e){const t=Bu(),{id:n,disabled:r,readOnly:o,required:i,isRequired:s,isInvalid:u,isReadOnly:c,isDisabled:f,onFocus:d,onBlur:h,...m}=e,g=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&g.push(t.feedbackId),t?.hasHelpText&&g.push(t.helpTextId),{...m,"aria-describedby":g.join(" ")||void 0,id:n??t?.id,isDisabled:r??f??t?.isDisabled,isReadOnly:o??c??t?.isReadOnly,isRequired:i??s??t?.isRequired,isInvalid:u??t?.isInvalid,onFocus:i8(t?.onFocus,d),onBlur:i8(t?.onBlur,h)}}var[DY,zY]=At({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),FY=ue((e,t)=>{const n=fr("FormError",e),r=vt(e),o=Bu();return o?.isInvalid?X.createElement(DY,{value:n},X.createElement(oe.div,{...o?.getErrorMessageProps(r,t),className:Fu("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});FY.displayName="FormErrorMessage";var BY=ue((e,t)=>{const n=zY(),r=Bu();if(!r?.isInvalid)return null;const o=Fu("chakra-form__error-icon",e.className);return v(Kr,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:o,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});BY.displayName="FormErrorIcon";var Gs=ue(function(t,n){const r=cr("FormLabel",t),o=vt(t),{className:i,children:s,requiredIndicator:u=v(aP,{}),optionalIndicator:c=null,...f}=o,d=Bu(),h=d?.getLabelProps(f,n)??{ref:n,...f};return X.createElement(oe.label,{...h,className:Fu("chakra-form__label",o.className),__css:{display:"block",textAlign:"start",...r}},s,d?.isRequired?u:c)});Gs.displayName="FormLabel";var aP=ue(function(t,n){const r=Bu(),o=iP();if(!r?.isRequired)return null;const i=Fu("chakra-form__required-indicator",t.className);return X.createElement(oe.span,{...r?.getRequiredIndicatorProps(t,n),__css:o.requiredIndicator,className:i})});aP.displayName="RequiredIndicator";function r0(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var Q3={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},$Y=oe("span",{baseStyle:Q3});$Y.displayName="VisuallyHidden";var VY=oe("input",{baseStyle:Q3});VY.displayName="VisuallyHiddenInput";var a8=!1,wm=null,xu=!1,x4=new Set,WY=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function jY(e){return!(e.metaKey||!WY&&e.altKey||e.ctrlKey)}function J3(e,t){x4.forEach(n=>n(e,t))}function s8(e){xu=!0,jY(e)&&(wm="keyboard",J3("keyboard",e))}function wl(e){wm="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(xu=!0,J3("pointer",e))}function HY(e){e.target===window||e.target===document||(xu||(wm="keyboard",J3("keyboard",e)),xu=!1)}function UY(){xu=!1}function l8(){return wm!=="pointer"}function GY(){if(typeof window>"u"||a8)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){xu=!0,e.apply(this,n)},document.addEventListener("keydown",s8,!0),document.addEventListener("keyup",s8,!0),window.addEventListener("focus",HY,!0),window.addEventListener("blur",UY,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",wl,!0),document.addEventListener("pointermove",wl,!0),document.addEventListener("pointerup",wl,!0)):(document.addEventListener("mousedown",wl,!0),document.addEventListener("mousemove",wl,!0),document.addEventListener("mouseup",wl,!0)),a8=!0}function ZY(e){GY(),e(l8());const t=()=>e(l8());return x4.add(t),()=>{x4.delete(t)}}var[C0e,KY]=At({name:"CheckboxGroupContext",strict:!1}),qY=(...e)=>e.filter(Boolean).join(" "),tr=e=>e?"":void 0;function ro(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function YY(...e){return function(n){e.forEach(r=>{r?.(n)})}}function XY(e){const t=go;return"custom"in t&&typeof t.custom=="function"?t.custom(e):t(e)}var sP=XY(oe.svg);function QY(e){return v(sP,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:v("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function JY(e){return v(sP,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:v("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function eX({open:e,children:t}){return v(na,{initial:!1,children:e&&X.createElement(go.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function tX(e){const{isIndeterminate:t,isChecked:n,...r}=e;return v(eX,{open:n||t,children:v(t?JY:QY,{...r})})}function nX(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function lP(e={}){const t=X3(e),{isDisabled:n,isReadOnly:r,isRequired:o,isInvalid:i,id:s,onBlur:u,onFocus:c,"aria-describedby":f}=t,{defaultChecked:d,isChecked:h,isFocusable:m,onChange:g,isIndeterminate:b,name:x,value:k,tabIndex:S=void 0,"aria-label":w,"aria-labelledby":_,"aria-invalid":L,...T}=e,R=nX(T,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),N=Gn(g),z=Gn(u),K=Gn(c),[W,J]=C.exports.useState(!1),[ve,xe]=C.exports.useState(!1),[he,fe]=C.exports.useState(!1),[me,ne]=C.exports.useState(!1);C.exports.useEffect(()=>ZY(J),[]);const j=C.exports.useRef(null),[Y,Z]=C.exports.useState(!0),[O,H]=C.exports.useState(!!d),se=h!==void 0,ce=se?h:O,ye=C.exports.useCallback(we=>{if(r||n){we.preventDefault();return}se||H(ce?we.target.checked:b?!0:we.target.checked),N?.(we)},[r,n,ce,se,b,N]);ai(()=>{j.current&&(j.current.indeterminate=Boolean(b))},[b]),r0(()=>{n&&xe(!1)},[n,xe]),ai(()=>{const we=j.current;!we?.form||(we.form.onreset=()=>{H(!!d)})},[]);const be=n&&!m,Pe=C.exports.useCallback(we=>{we.key===" "&&ne(!0)},[ne]),de=C.exports.useCallback(we=>{we.key===" "&&ne(!1)},[ne]);ai(()=>{if(!j.current)return;j.current.checked!==ce&&H(j.current.checked)},[j.current]);const _e=C.exports.useCallback((we={},Ie=null)=>{const tt=ze=>{ve&&ze.preventDefault(),ne(!0)};return{...we,ref:Ie,"data-active":tr(me),"data-hover":tr(he),"data-checked":tr(ce),"data-focus":tr(ve),"data-focus-visible":tr(ve&&W),"data-indeterminate":tr(b),"data-disabled":tr(n),"data-invalid":tr(i),"data-readonly":tr(r),"aria-hidden":!0,onMouseDown:ro(we.onMouseDown,tt),onMouseUp:ro(we.onMouseUp,()=>ne(!1)),onMouseEnter:ro(we.onMouseEnter,()=>fe(!0)),onMouseLeave:ro(we.onMouseLeave,()=>fe(!1))}},[me,ce,n,ve,W,he,b,i,r]),De=C.exports.useCallback((we={},Ie=null)=>({...R,...we,ref:qt(Ie,tt=>{!tt||Z(tt.tagName==="LABEL")}),onClick:ro(we.onClick,()=>{var tt;Y||((tt=j.current)==null||tt.click(),requestAnimationFrame(()=>{var ze;(ze=j.current)==null||ze.focus()}))}),"data-disabled":tr(n),"data-checked":tr(ce),"data-invalid":tr(i)}),[R,n,ce,i,Y]),st=C.exports.useCallback((we={},Ie=null)=>({...we,ref:qt(j,Ie),type:"checkbox",name:x,value:k,id:s,tabIndex:S,onChange:ro(we.onChange,ye),onBlur:ro(we.onBlur,z,()=>xe(!1)),onFocus:ro(we.onFocus,K,()=>xe(!0)),onKeyDown:ro(we.onKeyDown,Pe),onKeyUp:ro(we.onKeyUp,de),required:o,checked:ce,disabled:be,readOnly:r,"aria-label":w,"aria-labelledby":_,"aria-invalid":L?Boolean(L):i,"aria-describedby":f,"aria-disabled":n,style:Q3}),[x,k,s,ye,z,K,Pe,de,o,ce,be,r,w,_,L,i,f,n,S]),Tt=C.exports.useCallback((we={},Ie=null)=>({...we,ref:Ie,onMouseDown:ro(we.onMouseDown,u8),onTouchStart:ro(we.onTouchStart,u8),"data-disabled":tr(n),"data-checked":tr(ce),"data-invalid":tr(i)}),[ce,n,i]);return{state:{isInvalid:i,isFocused:ve,isChecked:ce,isActive:me,isHovered:he,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:o},getRootProps:De,getCheckboxProps:_e,getInputProps:st,getLabelProps:Tt,htmlProps:R}}function u8(e){e.preventDefault(),e.stopPropagation()}var rX=oe("span",{baseStyle:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0}}),oX=oe("label",{baseStyle:{cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"}}),iX=ue(function(t,n){const r=KY(),o={...r,...t},i=fr("Checkbox",o),s=vt(t),{spacing:u="0.5rem",className:c,children:f,iconColor:d,iconSize:h,icon:m=v(tX,{}),isChecked:g,isDisabled:b=r?.isDisabled,onChange:x,inputProps:k,...S}=s;let w=g;r?.value&&s.value&&(w=r.value.includes(s.value));let _=x;r?.onChange&&s.value&&(_=YY(r.onChange,x));const{state:L,getInputProps:T,getCheckboxProps:R,getLabelProps:N,getRootProps:z}=lP({...S,isDisabled:b,isChecked:w,onChange:_}),K=C.exports.useMemo(()=>({opacity:L.isChecked||L.isIndeterminate?1:0,transform:L.isChecked||L.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:h,color:d,...i.icon}),[d,h,L.isChecked,L.isIndeterminate,i.icon]),W=C.exports.cloneElement(m,{__css:K,isIndeterminate:L.isIndeterminate,isChecked:L.isChecked});return q(oX,{__css:i.container,className:qY("chakra-checkbox",c),...z(),children:[v("input",{className:"chakra-checkbox__input",...T(k,n)}),v(rX,{__css:i.control,className:"chakra-checkbox__control",...R(),children:W}),f&&X.createElement(oe.span,{className:"chakra-checkbox__label",...N(),__css:{marginStart:u,...i.label}},f)]})});iX.displayName="Checkbox";function aX(e){return v(Kr,{focusable:"false","aria-hidden":!0,...e,children:v("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var Sm=ue(function(t,n){const r=cr("CloseButton",t),{children:o,isDisabled:i,__css:s,...u}=vt(t),c={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return X.createElement(oe.button,{type:"button","aria-label":"Close",ref:n,disabled:i,__css:{...c,...r,...s},...u},o||v(aX,{width:"1em",height:"1em"}))});Sm.displayName="CloseButton";function sX(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function uP(e,t){let n=sX(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function c8(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function lX(e,t,n){return e==null?e:(nr==null?"":d2(r,i,n)??""),m=typeof o<"u",g=m?o:d,b=cP(wa(g),i),x=n??b,k=C.exports.useCallback(W=>{W!==g&&(m||h(W.toString()),f?.(W.toString(),wa(W)))},[f,m,g]),S=C.exports.useCallback(W=>{let J=W;return c&&(J=lX(J,s,u)),uP(J,x)},[x,c,u,s]),w=C.exports.useCallback((W=i)=>{let J;g===""?J=wa(W):J=wa(g)+W,J=S(J),k(J)},[S,i,k,g]),_=C.exports.useCallback((W=i)=>{let J;g===""?J=wa(-W):J=wa(g)-W,J=S(J),k(J)},[S,i,k,g]),L=C.exports.useCallback(()=>{let W;r==null?W="":W=d2(r,i,n)??s,k(W)},[r,n,i,k,s]),T=C.exports.useCallback(W=>{const J=d2(W,i,x)??s;k(J)},[x,i,k,s]),R=wa(g);return{isOutOfRange:R>u||Rv(em,{styles:fP}),fX=()=>v(em,{styles:` - html { - line-height: 1.5; - -webkit-text-size-adjust: 100%; - font-family: system-ui, sans-serif; - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; - -moz-osx-font-smoothing: grayscale; - touch-action: manipulation; - } - - body { - position: relative; - min-height: 100%; - font-feature-settings: 'kern'; - } - - *, - *::before, - *::after { - border-width: 0; - border-style: solid; - box-sizing: border-box; - } - - main { - display: block; - } - - hr { - border-top-width: 1px; - box-sizing: content-box; - height: 0; - overflow: visible; - } - - pre, - code, - kbd, - samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; - font-size: 1em; - } - - a { - background-color: transparent; - color: inherit; - text-decoration: inherit; - } - - abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - } - - b, - strong { - font-weight: bold; - } - - small { - font-size: 80%; - } - - sub, - sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; - } - - sub { - bottom: -0.25em; - } - - sup { - top: -0.5em; - } - - img { - border-style: none; - } - - button, - input, - optgroup, - select, - textarea { - font-family: inherit; - font-size: 100%; - line-height: 1.15; - margin: 0; - } - - button, - input { - overflow: visible; - } - - button, - select { - text-transform: none; - } - - button::-moz-focus-inner, - [type="button"]::-moz-focus-inner, - [type="reset"]::-moz-focus-inner, - [type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; - } - - fieldset { - padding: 0.35em 0.75em 0.625em; - } - - legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - } - - progress { - vertical-align: baseline; - } - - textarea { - overflow: auto; - } - - [type="checkbox"], - [type="radio"] { - box-sizing: border-box; - padding: 0; - } - - [type="number"]::-webkit-inner-spin-button, - [type="number"]::-webkit-outer-spin-button { - -webkit-appearance: none !important; - } - - input[type="number"] { - -moz-appearance: textfield; - } - - [type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; - } - - [type="search"]::-webkit-search-decoration { - -webkit-appearance: none !important; - } - - ::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; - } - - details { - display: block; - } - - summary { - display: list-item; - } - - template { - display: none; - } - - [hidden] { - display: none !important; - } - - body, - blockquote, - dl, - dd, - h1, - h2, - h3, - h4, - h5, - h6, - hr, - figure, - p, - pre { - margin: 0; - } - - button { - background: transparent; - padding: 0; - } - - fieldset { - margin: 0; - padding: 0; - } - - ol, - ul { - margin: 0; - padding: 0; - } - - textarea { - resize: vertical; - } - - button, - [role="button"] { - cursor: pointer; - } - - button::-moz-focus-inner { - border: 0 !important; - } - - table { - border-collapse: collapse; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - font-size: inherit; - font-weight: inherit; - } - - button, - input, - optgroup, - select, - textarea { - padding: 0; - line-height: inherit; - color: inherit; - } - - img, - svg, - video, - canvas, - audio, - iframe, - embed, - object { - display: block; - } - - img, - video { - max-width: 100%; - height: auto; - } - - [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { - outline: none; - box-shadow: none; - } - - select::-ms-expand { - display: none; - } - - ${fP} - `});function w4(e,t,n,r){const o=Gn(n);return C.exports.useEffect(()=>{const i=typeof e=="function"?e():e??document;if(!(!n||!i))return i.addEventListener(t,o,r),()=>{i.removeEventListener(t,o,r)}},[t,e,r,o,n]),()=>{const i=typeof e=="function"?e():e??document;i?.removeEventListener(t,o,r)}}var dX=md?C.exports.useLayoutEffect:C.exports.useEffect;function S4(e,t=[]){const n=C.exports.useRef(e);return dX(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function eb(e,t,n,r){const o=S4(t);return C.exports.useEffect(()=>{const i=V1(n)??document;if(!!t)return i.addEventListener(e,o,r),()=>{i.removeEventListener(e,o,r)}},[e,n,r,o,t]),()=>{(V1(n)??document).removeEventListener(e,o,r)}}function pX(e){const{isOpen:t,ref:n}=e,[r,o]=C.exports.useState(t),[i,s]=C.exports.useState(!1);return C.exports.useEffect(()=>{i||(o(t),s(!0))},[t,i,r]),eb("animationend",()=>{o(t)},()=>n.current),{present:!(t?!1:!r),onComplete(){var c;const f=zj(n.current),d=new f.CustomEvent("animationend",{bubbles:!0});(c=n.current)==null||c.dispatchEvent(d)}}}function hX(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function mX(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function o0(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=S4(n),s=S4(t),[u,c]=C.exports.useState(e.defaultIsOpen||!1),[f,d]=hX(r,u),h=mX(o,"disclosure"),m=C.exports.useCallback(()=>{f||c(!1),s?.()},[f,s]),g=C.exports.useCallback(()=>{f||c(!0),i?.()},[f,i]),b=C.exports.useCallback(()=>{(d?m:g)()},[d,g,m]);return{isOpen:!!d,onOpen:g,onClose:m,onToggle:b,isControlled:f,getButtonProps:(x={})=>({...x,"aria-expanded":d,"aria-controls":h,onClick:Yj(x.onClick,b)}),getDisclosureProps:(x={})=>({...x,hidden:!d,id:h})}}var dP=(e,t)=>{const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])};function gX(e){const t=e.current;if(!t)return!1;const n=$j(t);return!n||w3(t,n)?!1:!!Uj(n)}function vX(e,t){const{shouldFocus:n,visible:r,focusRef:o}=t,i=n&&!r;dP(()=>{if(!i||gX(e))return;const s=o?.current||e.current;s&&W1(s,{nextTick:!0})},[i,e,o])}function yX(e,t,n,r){return eb(mH(t),uH(n,t==="pointerdown"),e,r)}function bX(e){const{ref:t,elements:n,enabled:r}=e,o=vH("Safari");yX(()=>hd(t.current),"pointerdown",s=>{if(!o||!r)return;const u=s.target,f=(n??[t]).some(d=>{const h=nE(d)?d.current:d;return w3(h,u)});!sE(u)&&f&&(s.preventDefault(),W1(u))})}var xX={preventScroll:!0,shouldFocus:!1};function wX(e,t=xX){const{focusRef:n,preventScroll:r,shouldFocus:o,visible:i}=t,s=nE(e)?e.current:e,u=o&&i,c=C.exports.useCallback(()=>{if(!(!s||!u)&&!w3(s,document.activeElement))if(n?.current)W1(n.current,{preventScroll:r,nextTick:!0});else{const f=qj(s);f.length>0&&W1(f[0],{preventScroll:r,nextTick:!0})}},[u,r,s,n]);dP(()=>{c()},[c]),eb("transitionend",c,s)}function tb(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var nb=ue(function(t,n){const{htmlSize:r,...o}=t,i=fr("Input",o),s=vt(o),u=Y3(s),c=Xt("chakra-input",t.className);return X.createElement(oe.input,{size:r,...u,__css:i.field,ref:n,className:c})});nb.displayName="Input";nb.id="Input";var[SX,pP]=At({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),CX=ue(function(t,n){const r=fr("Input",t),{children:o,className:i,...s}=vt(t),u=Xt("chakra-input__group",i),c={},f=bm(o),d=r.field;f.forEach(m=>{!r||(d&&m.type.id==="InputLeftElement"&&(c.paddingStart=d.height??d.h),d&&m.type.id==="InputRightElement"&&(c.paddingEnd=d.height??d.h),m.type.id==="InputRightAddon"&&(c.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(c.borderStartRadius=0))});const h=f.map(m=>{var g,b;const x=tb({size:((g=m.props)==null?void 0:g.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,x):C.exports.cloneElement(m,Object.assign(x,c,m.props))});return X.createElement(oe.div,{className:u,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...s},v(SX,{value:r,children:h}))});CX.displayName="InputGroup";var _X={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},kX=oe("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),rb=ue(function(t,n){const{placement:r="left",...o}=t,i=_X[r]??{},s=pP();return v(kX,{ref:n,...o,__css:{...s.addon,...i}})});rb.displayName="InputAddon";var hP=ue(function(t,n){return v(rb,{ref:n,placement:"left",...t,className:Xt("chakra-input__left-addon",t.className)})});hP.displayName="InputLeftAddon";hP.id="InputLeftAddon";var mP=ue(function(t,n){return v(rb,{ref:n,placement:"right",...t,className:Xt("chakra-input__right-addon",t.className)})});mP.displayName="InputRightAddon";mP.id="InputRightAddon";var EX=oe("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),Cm=ue(function(t,n){const{placement:r="left",...o}=t,i=pP(),s=i.field,c={[r==="left"?"insetStart":"insetEnd"]:"0",width:s?.height??s?.h,height:s?.height??s?.h,fontSize:s?.fontSize,...i.element};return v(EX,{ref:n,__css:c,...o})});Cm.id="InputElement";Cm.displayName="InputElement";var gP=ue(function(t,n){const{className:r,...o}=t,i=Xt("chakra-input__left-element",r);return v(Cm,{ref:n,placement:"left",className:i,...o})});gP.id="InputLeftElement";gP.displayName="InputLeftElement";var vP=ue(function(t,n){const{className:r,...o}=t,i=Xt("chakra-input__right-element",r);return v(Cm,{ref:n,placement:"right",className:i,...o})});vP.id="InputRightElement";vP.displayName="InputRightElement";function LX(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function Za(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):LX(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var PX=ue(function(e,t){const{ratio:n=4/3,children:r,className:o,...i}=e,s=C.exports.Children.only(r),u=Xt("chakra-aspect-ratio",o);return X.createElement(oe.div,{ref:t,position:"relative",className:u,_before:{height:0,content:'""',display:"block",paddingBottom:Za(n,c=>`${1/c*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...i},s)});PX.displayName="AspectRatio";var AX=ue(function(t,n){const r=cr("Badge",t),{className:o,...i}=vt(t);return X.createElement(oe.span,{ref:n,className:Xt("chakra-badge",t.className),...i,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});AX.displayName="Badge";var po=oe("div");po.displayName="Box";var yP=ue(function(t,n){const{size:r,centerContent:o=!0,...i}=t;return v(po,{ref:n,boxSize:r,__css:{...o?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...i})});yP.displayName="Square";var TX=ue(function(t,n){const{size:r,...o}=t;return v(yP,{size:r,ref:n,borderRadius:"9999px",...o})});TX.displayName="Circle";var bP=oe("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});bP.displayName="Center";var IX={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};ue(function(t,n){const{axis:r="both",...o}=t;return X.createElement(oe.div,{ref:n,__css:IX[r],...o,position:"absolute"})});var OX=ue(function(t,n){const r=cr("Code",t),{className:o,...i}=vt(t);return X.createElement(oe.code,{ref:n,className:Xt("chakra-code",t.className),...i,__css:{display:"inline-block",...r}})});OX.displayName="Code";var MX=ue(function(t,n){const{className:r,centerContent:o,...i}=vt(t),s=cr("Container",t);return X.createElement(oe.div,{ref:n,className:Xt("chakra-container",r),...i,__css:{...s,...o&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});MX.displayName="Container";var RX=ue(function(t,n){const{borderLeftWidth:r,borderBottomWidth:o,borderTopWidth:i,borderRightWidth:s,borderWidth:u,borderStyle:c,borderColor:f,...d}=cr("Divider",t),{className:h,orientation:m="horizontal",__css:g,...b}=vt(t),x={vertical:{borderLeftWidth:r||s||u||"1px",height:"100%"},horizontal:{borderBottomWidth:o||i||u||"1px",width:"100%"}};return X.createElement(oe.hr,{ref:n,"aria-orientation":m,...b,__css:{...d,border:"0",borderColor:f,borderStyle:c,...x[m],...g},className:Xt("chakra-divider",h)})});RX.displayName="Divider";var Ft=ue(function(t,n){const{direction:r,align:o,justify:i,wrap:s,basis:u,grow:c,shrink:f,...d}=t,h={display:"flex",flexDirection:r,alignItems:o,justifyContent:i,flexWrap:s,flexBasis:u,flexGrow:c,flexShrink:f};return X.createElement(oe.div,{ref:n,__css:h,...d})});Ft.displayName="Flex";var xP=ue(function(t,n){const{templateAreas:r,gap:o,rowGap:i,columnGap:s,column:u,row:c,autoFlow:f,autoRows:d,templateRows:h,autoColumns:m,templateColumns:g,...b}=t,x={display:"grid",gridTemplateAreas:r,gridGap:o,gridRowGap:i,gridColumnGap:s,gridAutoColumns:m,gridColumn:u,gridRow:c,gridAutoFlow:f,gridAutoRows:d,gridTemplateRows:h,gridTemplateColumns:g};return X.createElement(oe.div,{ref:n,__css:x,...b})});xP.displayName="Grid";function f8(e){return Za(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var NX=ue(function(t,n){const{area:r,colSpan:o,colStart:i,colEnd:s,rowEnd:u,rowSpan:c,rowStart:f,...d}=t,h=tb({gridArea:r,gridColumn:f8(o),gridRow:f8(c),gridColumnStart:i,gridColumnEnd:s,gridRowStart:f,gridRowEnd:u});return X.createElement(oe.div,{ref:n,__css:h,...d})});NX.displayName="GridItem";var ob=ue(function(t,n){const r=cr("Heading",t),{className:o,...i}=vt(t);return X.createElement(oe.h2,{ref:n,className:Xt("chakra-heading",t.className),...i,__css:r})});ob.displayName="Heading";ue(function(t,n){const r=cr("Mark",t),o=vt(t);return v(po,{ref:n,...o,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var DX=ue(function(t,n){const r=cr("Kbd",t),{className:o,...i}=vt(t);return X.createElement(oe.kbd,{ref:n,className:Xt("chakra-kbd",o),...i,__css:{fontFamily:"mono",...r}})});DX.displayName="Kbd";var iu=ue(function(t,n){const r=cr("Link",t),{className:o,isExternal:i,...s}=vt(t);return X.createElement(oe.a,{target:i?"_blank":void 0,rel:i?"noopener":void 0,ref:n,className:Xt("chakra-link",o),...s,__css:r})});iu.displayName="Link";ue(function(t,n){const{isExternal:r,target:o,rel:i,className:s,...u}=t;return X.createElement(oe.a,{...u,ref:n,className:Xt("chakra-linkbox__overlay",s),rel:r?"noopener noreferrer":i,target:r?"_blank":o,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});ue(function(t,n){const{className:r,...o}=t;return X.createElement(oe.div,{ref:n,position:"relative",...o,className:Xt("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[zX,wP]=At({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),ib=ue(function(t,n){const r=fr("List",t),{children:o,styleType:i="none",stylePosition:s,spacing:u,...c}=vt(t),f=bm(o),h=u?{["& > *:not(style) ~ *:not(style)"]:{mt:u}}:{};return X.createElement(zX,{value:r},X.createElement(oe.ul,{ref:n,listStyleType:i,listStylePosition:s,role:"list",__css:{...r.container,...h},...c},f))});ib.displayName="List";var FX=ue((e,t)=>{const{as:n,...r}=e;return v(ib,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});FX.displayName="OrderedList";var BX=ue(function(t,n){const{as:r,...o}=t;return v(ib,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...o})});BX.displayName="UnorderedList";var $X=ue(function(t,n){const r=wP();return X.createElement(oe.li,{ref:n,...t,__css:r.item})});$X.displayName="ListItem";var VX=ue(function(t,n){const r=wP();return v(Kr,{ref:n,role:"presentation",...t,__css:r.icon})});VX.displayName="ListIcon";var WX=ue(function(t,n){const{columns:r,spacingX:o,spacingY:i,spacing:s,minChildWidth:u,...c}=t,f=nm(),d=u?HX(u,f):UX(r);return v(xP,{ref:n,gap:s,columnGap:o,rowGap:i,templateColumns:d,...c})});WX.displayName="SimpleGrid";function jX(e){return typeof e=="number"?`${e}px`:e}function HX(e,t){return Za(e,n=>{const r=MH("sizes",n,jX(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function UX(e){return Za(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var GX=oe("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});GX.displayName="Spacer";var C4="& > *:not(style) ~ *:not(style)";function ZX(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[C4]:Za(n,o=>r[o])}}function KX(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":Za(n,o=>r[o])}}var SP=e=>X.createElement(oe.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});SP.displayName="StackItem";var ab=ue((e,t)=>{const{isInline:n,direction:r,align:o,justify:i,spacing:s="0.5rem",wrap:u,children:c,divider:f,className:d,shouldWrapChildren:h,...m}=e,g=n?"row":r??"column",b=C.exports.useMemo(()=>ZX({direction:g,spacing:s}),[g,s]),x=C.exports.useMemo(()=>KX({spacing:s,direction:g}),[s,g]),k=!!f,S=!h&&!k,w=bm(c),_=S?w:w.map((T,R)=>{const N=typeof T.key<"u"?T.key:R,z=R+1===w.length,W=h?v(SP,{children:T},N):T;if(!k)return W;const J=C.exports.cloneElement(f,{__css:x}),ve=z?null:J;return q(C.exports.Fragment,{children:[W,ve]},N)}),L=Xt("chakra-stack",d);return X.createElement(oe.div,{ref:t,display:"flex",alignItems:o,justifyContent:i,flexDirection:b.flexDirection,flexWrap:u,className:L,__css:k?{}:{[C4]:b[C4]},...m},_)});ab.displayName="Stack";var qX=ue((e,t)=>v(ab,{align:"center",...e,direction:"row",ref:t}));qX.displayName="HStack";var YX=ue((e,t)=>v(ab,{align:"center",...e,direction:"column",ref:t}));YX.displayName="VStack";var zr=ue(function(t,n){const r=cr("Text",t),{className:o,align:i,decoration:s,casing:u,...c}=vt(t),f=tb({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return X.createElement(oe.p,{ref:n,className:Xt("chakra-text",t.className),...f,...c,__css:r})});zr.displayName="Text";function d8(e){return typeof e=="number"?`${e}px`:e}var XX=ue(function(t,n){const{spacing:r="0.5rem",spacingX:o,spacingY:i,children:s,justify:u,direction:c,align:f,className:d,shouldWrapChildren:h,...m}=t,g=C.exports.useMemo(()=>{const{spacingX:x=r,spacingY:k=r}={spacingX:o,spacingY:i};return{"--chakra-wrap-x-spacing":S=>Za(x,w=>d8($y("space",w)(S))),"--chakra-wrap-y-spacing":S=>Za(k,w=>d8($y("space",w)(S))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:u,alignItems:f,flexDirection:c,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,o,i,u,f,c]),b=h?C.exports.Children.map(s,(x,k)=>v(CP,{children:x},k)):s;return X.createElement(oe.div,{ref:n,className:Xt("chakra-wrap",d),overflow:"hidden",...m},X.createElement(oe.ul,{className:"chakra-wrap__list",__css:g},b))});XX.displayName="Wrap";var CP=ue(function(t,n){const{className:r,...o}=t;return X.createElement(oe.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:Xt("chakra-wrap__listitem",r),...o})});CP.displayName="WrapItem";var QX={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},_P=QX,Sl=()=>{},JX={document:_P,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:Sl,removeEventListener:Sl,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:Sl,removeListener:Sl}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:Sl,setInterval:()=>0,clearInterval:Sl},eQ=JX,tQ={window:eQ,document:_P},kP=typeof window<"u"?{window,document}:tQ,EP=C.exports.createContext(kP);EP.displayName="EnvironmentContext";function LP(e){const{children:t,environment:n}=e,[r,o]=C.exports.useState(null),[i,s]=C.exports.useState(!1);C.exports.useEffect(()=>s(!0),[]);const u=C.exports.useMemo(()=>{if(n)return n;const c=r?.ownerDocument,f=r?.ownerDocument.defaultView;return c?{document:c,window:f}:kP},[r,n]);return q(EP.Provider,{value:u,children:[t,!n&&i&&v("span",{id:"__chakra_env",hidden:!0,ref:c=>{C.exports.startTransition(()=>{c&&o(c)})}})]})}LP.displayName="EnvironmentProvider";var nQ=e=>e?"":void 0;function rQ(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((o,i,s,u)=>{e.current.set(s,{type:i,el:o,options:u}),o.addEventListener(i,s,u)},[]),r=C.exports.useCallback((o,i,s,u)=>{o.removeEventListener(i,s,u),e.current.delete(s)},[]);return C.exports.useEffect(()=>()=>{t.forEach((o,i)=>{r(o.el,o.type,i,o.options)})},[r,t]),{add:n,remove:r}}function p2(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function oQ(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:o=!0,clickOnSpace:i=!0,onMouseDown:s,onMouseUp:u,onClick:c,onKeyDown:f,onKeyUp:d,tabIndex:h,onMouseOver:m,onMouseLeave:g,...b}=e,[x,k]=C.exports.useState(!0),[S,w]=C.exports.useState(!1),_=rQ(),L=ne=>{!ne||ne.tagName!=="BUTTON"&&k(!1)},T=x?h:h||0,R=n&&!r,N=C.exports.useCallback(ne=>{if(n){ne.stopPropagation(),ne.preventDefault();return}ne.currentTarget.focus(),c?.(ne)},[n,c]),z=C.exports.useCallback(ne=>{S&&p2(ne)&&(ne.preventDefault(),ne.stopPropagation(),w(!1),_.remove(document,"keyup",z,!1))},[S,_]),K=C.exports.useCallback(ne=>{if(f?.(ne),n||ne.defaultPrevented||ne.metaKey||!p2(ne.nativeEvent)||x)return;const j=o&&ne.key==="Enter";i&&ne.key===" "&&(ne.preventDefault(),w(!0)),j&&(ne.preventDefault(),ne.currentTarget.click()),_.add(document,"keyup",z,!1)},[n,x,f,o,i,_,z]),W=C.exports.useCallback(ne=>{if(d?.(ne),n||ne.defaultPrevented||ne.metaKey||!p2(ne.nativeEvent)||x)return;i&&ne.key===" "&&(ne.preventDefault(),w(!1),ne.currentTarget.click())},[i,x,n,d]),J=C.exports.useCallback(ne=>{ne.button===0&&(w(!1),_.remove(document,"mouseup",J,!1))},[_]),ve=C.exports.useCallback(ne=>{if(ne.button!==0)return;if(n){ne.stopPropagation(),ne.preventDefault();return}x||w(!0),ne.currentTarget.focus({preventScroll:!0}),_.add(document,"mouseup",J,!1),s?.(ne)},[n,x,s,_,J]),xe=C.exports.useCallback(ne=>{ne.button===0&&(x||w(!1),u?.(ne))},[u,x]),he=C.exports.useCallback(ne=>{if(n){ne.preventDefault();return}m?.(ne)},[n,m]),fe=C.exports.useCallback(ne=>{S&&(ne.preventDefault(),w(!1)),g?.(ne)},[S,g]),me=qt(t,L);return x?{...b,ref:me,type:"button","aria-disabled":R?void 0:n,disabled:R,onClick:N,onMouseDown:s,onMouseUp:u,onKeyUp:d,onKeyDown:f,onMouseOver:m,onMouseLeave:g}:{...b,ref:me,role:"button","data-active":nQ(S),"aria-disabled":n?"true":void 0,tabIndex:R?void 0:T,onClick:N,onMouseDown:ve,onMouseUp:xe,onKeyUp:W,onKeyDown:K,onMouseOver:he,onMouseLeave:fe}}function iQ(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function aQ(e){if(!iQ(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}var sQ=e=>e.hasAttribute("tabindex");function lQ(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function PP(e){return e.parentElement&&PP(e.parentElement)?!0:e.hidden}function uQ(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function cQ(e){if(!aQ(e)||PP(e)||lQ(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():uQ(e)?!0:sQ(e)}var fQ=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],dQ=fQ.join(),pQ=e=>e.offsetWidth>0&&e.offsetHeight>0;function hQ(e){const t=Array.from(e.querySelectorAll(dQ));return t.unshift(e),t.filter(n=>cQ(n)&&pQ(n))}var Cr="top",ho="bottom",mo="right",_r="left",sb="auto",Cd=[Cr,ho,mo,_r],wu="start",Zf="end",mQ="clippingParents",AP="viewport",Ic="popper",gQ="reference",p8=Cd.reduce(function(e,t){return e.concat([t+"-"+wu,t+"-"+Zf])},[]),TP=[].concat(Cd,[sb]).reduce(function(e,t){return e.concat([t,t+"-"+wu,t+"-"+Zf])},[]),vQ="beforeRead",yQ="read",bQ="afterRead",xQ="beforeMain",wQ="main",SQ="afterMain",CQ="beforeWrite",_Q="write",kQ="afterWrite",EQ=[vQ,yQ,bQ,xQ,wQ,SQ,CQ,_Q,kQ];function gi(e){return e?(e.nodeName||"").toLowerCase():null}function vo(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function $s(e){var t=vo(e).Element;return e instanceof t||e instanceof Element}function uo(e){var t=vo(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function lb(e){if(typeof ShadowRoot>"u")return!1;var t=vo(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function LQ(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},o=t.attributes[n]||{},i=t.elements[n];!uo(i)||!gi(i)||(Object.assign(i.style,r),Object.keys(o).forEach(function(s){var u=o[s];u===!1?i.removeAttribute(s):i.setAttribute(s,u===!0?"":u)}))})}function PQ(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var o=t.elements[r],i=t.attributes[r]||{},s=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),u=s.reduce(function(c,f){return c[f]="",c},{});!uo(o)||!gi(o)||(Object.assign(o.style,u),Object.keys(i).forEach(function(c){o.removeAttribute(c)}))})}}const AQ={name:"applyStyles",enabled:!0,phase:"write",fn:LQ,effect:PQ,requires:["computeStyles"]};function ci(e){return e.split("-")[0]}var Os=Math.max,i0=Math.min,Su=Math.round;function _4(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function IP(){return!/^((?!chrome|android).)*safari/i.test(_4())}function Cu(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),o=1,i=1;t&&uo(e)&&(o=e.offsetWidth>0&&Su(r.width)/e.offsetWidth||1,i=e.offsetHeight>0&&Su(r.height)/e.offsetHeight||1);var s=$s(e)?vo(e):window,u=s.visualViewport,c=!IP()&&n,f=(r.left+(c&&u?u.offsetLeft:0))/o,d=(r.top+(c&&u?u.offsetTop:0))/i,h=r.width/o,m=r.height/i;return{width:h,height:m,top:d,right:f+h,bottom:d+m,left:f,x:f,y:d}}function ub(e){var t=Cu(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function OP(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&lb(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function Qi(e){return vo(e).getComputedStyle(e)}function TQ(e){return["table","td","th"].indexOf(gi(e))>=0}function rs(e){return(($s(e)?e.ownerDocument:e.document)||window.document).documentElement}function _m(e){return gi(e)==="html"?e:e.assignedSlot||e.parentNode||(lb(e)?e.host:null)||rs(e)}function h8(e){return!uo(e)||Qi(e).position==="fixed"?null:e.offsetParent}function IQ(e){var t=/firefox/i.test(_4()),n=/Trident/i.test(_4());if(n&&uo(e)){var r=Qi(e);if(r.position==="fixed")return null}var o=_m(e);for(lb(o)&&(o=o.host);uo(o)&&["html","body"].indexOf(gi(o))<0;){var i=Qi(o);if(i.transform!=="none"||i.perspective!=="none"||i.contain==="paint"||["transform","perspective"].indexOf(i.willChange)!==-1||t&&i.willChange==="filter"||t&&i.filter&&i.filter!=="none")return o;o=o.parentNode}return null}function _d(e){for(var t=vo(e),n=h8(e);n&&TQ(n)&&Qi(n).position==="static";)n=h8(n);return n&&(gi(n)==="html"||gi(n)==="body"&&Qi(n).position==="static")?t:n||IQ(e)||t}function cb(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function cf(e,t,n){return Os(e,i0(t,n))}function OQ(e,t,n){var r=cf(e,t,n);return r>n?n:r}function MP(){return{top:0,right:0,bottom:0,left:0}}function RP(e){return Object.assign({},MP(),e)}function NP(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var MQ=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,RP(typeof t!="number"?t:NP(t,Cd))};function RQ(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,s=n.modifiersData.popperOffsets,u=ci(n.placement),c=cb(u),f=[_r,mo].indexOf(u)>=0,d=f?"height":"width";if(!(!i||!s)){var h=MQ(o.padding,n),m=ub(i),g=c==="y"?Cr:_r,b=c==="y"?ho:mo,x=n.rects.reference[d]+n.rects.reference[c]-s[c]-n.rects.popper[d],k=s[c]-n.rects.reference[c],S=_d(i),w=S?c==="y"?S.clientHeight||0:S.clientWidth||0:0,_=x/2-k/2,L=h[g],T=w-m[d]-h[b],R=w/2-m[d]/2+_,N=cf(L,R,T),z=c;n.modifiersData[r]=(t={},t[z]=N,t.centerOffset=N-R,t)}}function NQ(e){var t=e.state,n=e.options,r=n.element,o=r===void 0?"[data-popper-arrow]":r;o!=null&&(typeof o=="string"&&(o=t.elements.popper.querySelector(o),!o)||!OP(t.elements.popper,o)||(t.elements.arrow=o))}const DQ={name:"arrow",enabled:!0,phase:"main",fn:RQ,effect:NQ,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function _u(e){return e.split("-")[1]}var zQ={top:"auto",right:"auto",bottom:"auto",left:"auto"};function FQ(e){var t=e.x,n=e.y,r=window,o=r.devicePixelRatio||1;return{x:Su(t*o)/o||0,y:Su(n*o)/o||0}}function m8(e){var t,n=e.popper,r=e.popperRect,o=e.placement,i=e.variation,s=e.offsets,u=e.position,c=e.gpuAcceleration,f=e.adaptive,d=e.roundOffsets,h=e.isFixed,m=s.x,g=m===void 0?0:m,b=s.y,x=b===void 0?0:b,k=typeof d=="function"?d({x:g,y:x}):{x:g,y:x};g=k.x,x=k.y;var S=s.hasOwnProperty("x"),w=s.hasOwnProperty("y"),_=_r,L=Cr,T=window;if(f){var R=_d(n),N="clientHeight",z="clientWidth";if(R===vo(n)&&(R=rs(n),Qi(R).position!=="static"&&u==="absolute"&&(N="scrollHeight",z="scrollWidth")),R=R,o===Cr||(o===_r||o===mo)&&i===Zf){L=ho;var K=h&&R===T&&T.visualViewport?T.visualViewport.height:R[N];x-=K-r.height,x*=c?1:-1}if(o===_r||(o===Cr||o===ho)&&i===Zf){_=mo;var W=h&&R===T&&T.visualViewport?T.visualViewport.width:R[z];g-=W-r.width,g*=c?1:-1}}var J=Object.assign({position:u},f&&zQ),ve=d===!0?FQ({x:g,y:x}):{x:g,y:x};if(g=ve.x,x=ve.y,c){var xe;return Object.assign({},J,(xe={},xe[L]=w?"0":"",xe[_]=S?"0":"",xe.transform=(T.devicePixelRatio||1)<=1?"translate("+g+"px, "+x+"px)":"translate3d("+g+"px, "+x+"px, 0)",xe))}return Object.assign({},J,(t={},t[L]=w?x+"px":"",t[_]=S?g+"px":"",t.transform="",t))}function BQ(e){var t=e.state,n=e.options,r=n.gpuAcceleration,o=r===void 0?!0:r,i=n.adaptive,s=i===void 0?!0:i,u=n.roundOffsets,c=u===void 0?!0:u,f={placement:ci(t.placement),variation:_u(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,m8(Object.assign({},f,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:c})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,m8(Object.assign({},f,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:c})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const $Q={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:BQ,data:{}};var mh={passive:!0};function VQ(e){var t=e.state,n=e.instance,r=e.options,o=r.scroll,i=o===void 0?!0:o,s=r.resize,u=s===void 0?!0:s,c=vo(t.elements.popper),f=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&f.forEach(function(d){d.addEventListener("scroll",n.update,mh)}),u&&c.addEventListener("resize",n.update,mh),function(){i&&f.forEach(function(d){d.removeEventListener("scroll",n.update,mh)}),u&&c.removeEventListener("resize",n.update,mh)}}const WQ={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:VQ,data:{}};var jQ={left:"right",right:"left",bottom:"top",top:"bottom"};function e1(e){return e.replace(/left|right|bottom|top/g,function(t){return jQ[t]})}var HQ={start:"end",end:"start"};function g8(e){return e.replace(/start|end/g,function(t){return HQ[t]})}function fb(e){var t=vo(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function db(e){return Cu(rs(e)).left+fb(e).scrollLeft}function UQ(e,t){var n=vo(e),r=rs(e),o=n.visualViewport,i=r.clientWidth,s=r.clientHeight,u=0,c=0;if(o){i=o.width,s=o.height;var f=IP();(f||!f&&t==="fixed")&&(u=o.offsetLeft,c=o.offsetTop)}return{width:i,height:s,x:u+db(e),y:c}}function GQ(e){var t,n=rs(e),r=fb(e),o=(t=e.ownerDocument)==null?void 0:t.body,i=Os(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=Os(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),u=-r.scrollLeft+db(e),c=-r.scrollTop;return Qi(o||n).direction==="rtl"&&(u+=Os(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:s,x:u,y:c}}function pb(e){var t=Qi(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function DP(e){return["html","body","#document"].indexOf(gi(e))>=0?e.ownerDocument.body:uo(e)&&pb(e)?e:DP(_m(e))}function ff(e,t){var n;t===void 0&&(t=[]);var r=DP(e),o=r===((n=e.ownerDocument)==null?void 0:n.body),i=vo(r),s=o?[i].concat(i.visualViewport||[],pb(r)?r:[]):r,u=t.concat(s);return o?u:u.concat(ff(_m(s)))}function k4(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function ZQ(e,t){var n=Cu(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function v8(e,t,n){return t===AP?k4(UQ(e,n)):$s(t)?ZQ(t,n):k4(GQ(rs(e)))}function KQ(e){var t=ff(_m(e)),n=["absolute","fixed"].indexOf(Qi(e).position)>=0,r=n&&uo(e)?_d(e):e;return $s(r)?t.filter(function(o){return $s(o)&&OP(o,r)&&gi(o)!=="body"}):[]}function qQ(e,t,n,r){var o=t==="clippingParents"?KQ(e):[].concat(t),i=[].concat(o,[n]),s=i[0],u=i.reduce(function(c,f){var d=v8(e,f,r);return c.top=Os(d.top,c.top),c.right=i0(d.right,c.right),c.bottom=i0(d.bottom,c.bottom),c.left=Os(d.left,c.left),c},v8(e,s,r));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function zP(e){var t=e.reference,n=e.element,r=e.placement,o=r?ci(r):null,i=r?_u(r):null,s=t.x+t.width/2-n.width/2,u=t.y+t.height/2-n.height/2,c;switch(o){case Cr:c={x:s,y:t.y-n.height};break;case ho:c={x:s,y:t.y+t.height};break;case mo:c={x:t.x+t.width,y:u};break;case _r:c={x:t.x-n.width,y:u};break;default:c={x:t.x,y:t.y}}var f=o?cb(o):null;if(f!=null){var d=f==="y"?"height":"width";switch(i){case wu:c[f]=c[f]-(t[d]/2-n[d]/2);break;case Zf:c[f]=c[f]+(t[d]/2-n[d]/2);break}}return c}function Kf(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=r===void 0?e.placement:r,i=n.strategy,s=i===void 0?e.strategy:i,u=n.boundary,c=u===void 0?mQ:u,f=n.rootBoundary,d=f===void 0?AP:f,h=n.elementContext,m=h===void 0?Ic:h,g=n.altBoundary,b=g===void 0?!1:g,x=n.padding,k=x===void 0?0:x,S=RP(typeof k!="number"?k:NP(k,Cd)),w=m===Ic?gQ:Ic,_=e.rects.popper,L=e.elements[b?w:m],T=qQ($s(L)?L:L.contextElement||rs(e.elements.popper),c,d,s),R=Cu(e.elements.reference),N=zP({reference:R,element:_,strategy:"absolute",placement:o}),z=k4(Object.assign({},_,N)),K=m===Ic?z:R,W={top:T.top-K.top+S.top,bottom:K.bottom-T.bottom+S.bottom,left:T.left-K.left+S.left,right:K.right-T.right+S.right},J=e.modifiersData.offset;if(m===Ic&&J){var ve=J[o];Object.keys(W).forEach(function(xe){var he=[mo,ho].indexOf(xe)>=0?1:-1,fe=[Cr,ho].indexOf(xe)>=0?"y":"x";W[xe]+=ve[fe]*he})}return W}function YQ(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,s=n.padding,u=n.flipVariations,c=n.allowedAutoPlacements,f=c===void 0?TP:c,d=_u(r),h=d?u?p8:p8.filter(function(b){return _u(b)===d}):Cd,m=h.filter(function(b){return f.indexOf(b)>=0});m.length===0&&(m=h);var g=m.reduce(function(b,x){return b[x]=Kf(e,{placement:x,boundary:o,rootBoundary:i,padding:s})[ci(x)],b},{});return Object.keys(g).sort(function(b,x){return g[b]-g[x]})}function XQ(e){if(ci(e)===sb)return[];var t=e1(e);return[g8(e),t,g8(t)]}function QQ(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,u=s===void 0?!0:s,c=n.fallbackPlacements,f=n.padding,d=n.boundary,h=n.rootBoundary,m=n.altBoundary,g=n.flipVariations,b=g===void 0?!0:g,x=n.allowedAutoPlacements,k=t.options.placement,S=ci(k),w=S===k,_=c||(w||!b?[e1(k)]:XQ(k)),L=[k].concat(_).reduce(function(ce,ye){return ce.concat(ci(ye)===sb?YQ(t,{placement:ye,boundary:d,rootBoundary:h,padding:f,flipVariations:b,allowedAutoPlacements:x}):ye)},[]),T=t.rects.reference,R=t.rects.popper,N=new Map,z=!0,K=L[0],W=0;W=0,fe=he?"width":"height",me=Kf(t,{placement:J,boundary:d,rootBoundary:h,altBoundary:m,padding:f}),ne=he?xe?mo:_r:xe?ho:Cr;T[fe]>R[fe]&&(ne=e1(ne));var j=e1(ne),Y=[];if(i&&Y.push(me[ve]<=0),u&&Y.push(me[ne]<=0,me[j]<=0),Y.every(function(ce){return ce})){K=J,z=!1;break}N.set(J,Y)}if(z)for(var Z=b?3:1,O=function(ye){var be=L.find(function(Pe){var de=N.get(Pe);if(de)return de.slice(0,ye).every(function(_e){return _e})});if(be)return K=be,"break"},H=Z;H>0;H--){var se=O(H);if(se==="break")break}t.placement!==K&&(t.modifiersData[r]._skip=!0,t.placement=K,t.reset=!0)}}const JQ={name:"flip",enabled:!0,phase:"main",fn:QQ,requiresIfExists:["offset"],data:{_skip:!1}};function y8(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function b8(e){return[Cr,mo,ho,_r].some(function(t){return e[t]>=0})}function eJ(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,s=Kf(t,{elementContext:"reference"}),u=Kf(t,{altBoundary:!0}),c=y8(s,r),f=y8(u,o,i),d=b8(c),h=b8(f);t.modifiersData[n]={referenceClippingOffsets:c,popperEscapeOffsets:f,isReferenceHidden:d,hasPopperEscaped:h},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":d,"data-popper-escaped":h})}const tJ={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:eJ};function nJ(e,t,n){var r=ci(e),o=[_r,Cr].indexOf(r)>=0?-1:1,i=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,s=i[0],u=i[1];return s=s||0,u=(u||0)*o,[_r,mo].indexOf(r)>=0?{x:u,y:s}:{x:s,y:u}}function rJ(e){var t=e.state,n=e.options,r=e.name,o=n.offset,i=o===void 0?[0,0]:o,s=TP.reduce(function(d,h){return d[h]=nJ(h,t.rects,i),d},{}),u=s[t.placement],c=u.x,f=u.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=c,t.modifiersData.popperOffsets.y+=f),t.modifiersData[r]=s}const oJ={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:rJ};function iJ(e){var t=e.state,n=e.name;t.modifiersData[n]=zP({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const aJ={name:"popperOffsets",enabled:!0,phase:"read",fn:iJ,data:{}};function sJ(e){return e==="x"?"y":"x"}function lJ(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,u=s===void 0?!1:s,c=n.boundary,f=n.rootBoundary,d=n.altBoundary,h=n.padding,m=n.tether,g=m===void 0?!0:m,b=n.tetherOffset,x=b===void 0?0:b,k=Kf(t,{boundary:c,rootBoundary:f,padding:h,altBoundary:d}),S=ci(t.placement),w=_u(t.placement),_=!w,L=cb(S),T=sJ(L),R=t.modifiersData.popperOffsets,N=t.rects.reference,z=t.rects.popper,K=typeof x=="function"?x(Object.assign({},t.rects,{placement:t.placement})):x,W=typeof K=="number"?{mainAxis:K,altAxis:K}:Object.assign({mainAxis:0,altAxis:0},K),J=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,ve={x:0,y:0};if(!!R){if(i){var xe,he=L==="y"?Cr:_r,fe=L==="y"?ho:mo,me=L==="y"?"height":"width",ne=R[L],j=ne+k[he],Y=ne-k[fe],Z=g?-z[me]/2:0,O=w===wu?N[me]:z[me],H=w===wu?-z[me]:-N[me],se=t.elements.arrow,ce=g&&se?ub(se):{width:0,height:0},ye=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:MP(),be=ye[he],Pe=ye[fe],de=cf(0,N[me],ce[me]),_e=_?N[me]/2-Z-de-be-W.mainAxis:O-de-be-W.mainAxis,De=_?-N[me]/2+Z+de+Pe+W.mainAxis:H+de+Pe+W.mainAxis,st=t.elements.arrow&&_d(t.elements.arrow),Tt=st?L==="y"?st.clientTop||0:st.clientLeft||0:0,bn=(xe=J?.[L])!=null?xe:0,we=ne+_e-bn-Tt,Ie=ne+De-bn,tt=cf(g?i0(j,we):j,ne,g?Os(Y,Ie):Y);R[L]=tt,ve[L]=tt-ne}if(u){var ze,$t=L==="x"?Cr:_r,xn=L==="x"?ho:mo,lt=R[T],Ct=T==="y"?"height":"width",Qt=lt+k[$t],Gt=lt-k[xn],pe=[Cr,_r].indexOf(S)!==-1,Le=(ze=J?.[T])!=null?ze:0,dt=pe?Qt:lt-N[Ct]-z[Ct]-Le+W.altAxis,ut=pe?lt+N[Ct]+z[Ct]-Le-W.altAxis:Gt,ie=g&&pe?OQ(dt,lt,ut):cf(g?dt:Qt,lt,g?ut:Gt);R[T]=ie,ve[T]=ie-lt}t.modifiersData[r]=ve}}const uJ={name:"preventOverflow",enabled:!0,phase:"main",fn:lJ,requiresIfExists:["offset"]};function cJ(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function fJ(e){return e===vo(e)||!uo(e)?fb(e):cJ(e)}function dJ(e){var t=e.getBoundingClientRect(),n=Su(t.width)/e.offsetWidth||1,r=Su(t.height)/e.offsetHeight||1;return n!==1||r!==1}function pJ(e,t,n){n===void 0&&(n=!1);var r=uo(t),o=uo(t)&&dJ(t),i=rs(t),s=Cu(e,o,n),u={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(r||!r&&!n)&&((gi(t)!=="body"||pb(i))&&(u=fJ(t)),uo(t)?(c=Cu(t,!0),c.x+=t.clientLeft,c.y+=t.clientTop):i&&(c.x=db(i))),{x:s.left+u.scrollLeft-c.x,y:s.top+u.scrollTop-c.y,width:s.width,height:s.height}}function hJ(e){var t=new Map,n=new Set,r=[];e.forEach(function(i){t.set(i.name,i)});function o(i){n.add(i.name);var s=[].concat(i.requires||[],i.requiresIfExists||[]);s.forEach(function(u){if(!n.has(u)){var c=t.get(u);c&&o(c)}}),r.push(i)}return e.forEach(function(i){n.has(i.name)||o(i)}),r}function mJ(e){var t=hJ(e);return EQ.reduce(function(n,r){return n.concat(t.filter(function(o){return o.phase===r}))},[])}function gJ(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function vJ(e){var t=e.reduce(function(n,r){var o=n[r.name];return n[r.name]=o?Object.assign({},o,r,{options:Object.assign({},o.options,r.options),data:Object.assign({},o.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var x8={placement:"bottom",modifiers:[],strategy:"absolute"};function w8(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),cn={arrowShadowColor:Cl("--popper-arrow-shadow-color"),arrowSize:Cl("--popper-arrow-size","8px"),arrowSizeHalf:Cl("--popper-arrow-size-half"),arrowBg:Cl("--popper-arrow-bg"),transformOrigin:Cl("--popper-transform-origin"),arrowOffset:Cl("--popper-arrow-offset")};function wJ(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var SJ={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},CJ=e=>SJ[e],S8={scroll:!0,resize:!0};function _J(e){let t;return typeof e=="object"?t={enabled:!0,options:{...S8,...e}}:t={enabled:e,options:S8},t}var kJ={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},EJ={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{C8(e)},effect:({state:e})=>()=>{C8(e)}},C8=e=>{e.elements.popper.style.setProperty(cn.transformOrigin.var,CJ(e.placement))},LJ={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{PJ(e)}},PJ=e=>{var t;if(!e.placement)return;const n=AJ(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:cn.arrowSize.varRef,height:cn.arrowSize.varRef,zIndex:-1});const r={[cn.arrowSizeHalf.var]:`calc(${cn.arrowSize.varRef} / 2)`,[cn.arrowOffset.var]:`calc(${cn.arrowSizeHalf.varRef} * -1)`};for(const o in r)e.elements.arrow.style.setProperty(o,r[o])}},AJ=e=>{if(e.startsWith("top"))return{property:"bottom",value:cn.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:cn.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:cn.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:cn.arrowOffset.varRef}},TJ={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{_8(e)},effect:({state:e})=>()=>{_8(e)}},_8=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:cn.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:wJ(e.placement)})},IJ={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},OJ={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function MJ(e,t="ltr"){var n;const r=((n=IJ[e])==null?void 0:n[t])||e;return t==="ltr"?r:OJ[e]??r}function FP(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:o="absolute",arrowPadding:i=8,eventListeners:s=!0,offset:u,gutter:c=8,flip:f=!0,boundary:d="clippingParents",preventOverflow:h=!0,matchWidth:m,direction:g="ltr"}=e,b=C.exports.useRef(null),x=C.exports.useRef(null),k=C.exports.useRef(null),S=MJ(r,g),w=C.exports.useRef(()=>{}),_=C.exports.useCallback(()=>{var W;!t||!b.current||!x.current||((W=w.current)==null||W.call(w),k.current=xJ(b.current,x.current,{placement:S,modifiers:[TJ,LJ,EJ,{...kJ,enabled:!!m},{name:"eventListeners",..._J(s)},{name:"arrow",options:{padding:i}},{name:"offset",options:{offset:u??[0,c]}},{name:"flip",enabled:!!f,options:{padding:8}},{name:"preventOverflow",enabled:!!h,options:{boundary:d}},...n??[]],strategy:o}),k.current.forceUpdate(),w.current=k.current.destroy)},[S,t,n,m,s,i,u,c,f,h,d,o]);C.exports.useEffect(()=>()=>{var W;!b.current&&!x.current&&((W=k.current)==null||W.destroy(),k.current=null)},[]);const L=C.exports.useCallback(W=>{b.current=W,_()},[_]),T=C.exports.useCallback((W={},J=null)=>({...W,ref:qt(L,J)}),[L]),R=C.exports.useCallback(W=>{x.current=W,_()},[_]),N=C.exports.useCallback((W={},J=null)=>({...W,ref:qt(R,J),style:{...W.style,position:o,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[o,R,m]),z=C.exports.useCallback((W={},J=null)=>{const{size:ve,shadowColor:xe,bg:he,style:fe,...me}=W;return{...me,ref:J,"data-popper-arrow":"",style:RJ(W)}},[]),K=C.exports.useCallback((W={},J=null)=>({...W,ref:J,"data-popper-arrow-inner":""}),[]);return{update(){var W;(W=k.current)==null||W.update()},forceUpdate(){var W;(W=k.current)==null||W.forceUpdate()},transformOrigin:cn.transformOrigin.varRef,referenceRef:L,popperRef:R,getPopperProps:N,getArrowProps:z,getArrowInnerProps:K,getReferenceProps:T}}function RJ(e){const{size:t,shadowColor:n,bg:r,style:o}=e,i={...o,position:"absolute"};return t&&(i["--popper-arrow-size"]=t),n&&(i["--popper-arrow-shadow-color"]=n),r&&(i["--popper-arrow-bg"]=r),i}function BP(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=Gn(n),s=Gn(t),[u,c]=C.exports.useState(e.defaultIsOpen||!1),f=r!==void 0?r:u,d=r!==void 0,h=o??`disclosure-${C.exports.useId()}`,m=C.exports.useCallback(()=>{d||c(!1),s?.()},[d,s]),g=C.exports.useCallback(()=>{d||c(!0),i?.()},[d,i]),b=C.exports.useCallback(()=>{f?m():g()},[f,g,m]);function x(S={}){return{...S,"aria-expanded":f,"aria-controls":h,onClick(w){var _;(_=S.onClick)==null||_.call(S,w),b()}}}function k(S={}){return{...S,hidden:!f,id:h}}return{isOpen:f,onOpen:g,onClose:m,onToggle:b,isControlled:d,getButtonProps:x,getDisclosureProps:k}}function $P(e){const{wasSelected:t,enabled:n,isSelected:r,mode:o="unmount"}=e;return!!(!n||r||o==="keepMounted"&&t)}var[NJ,DJ]=At({strict:!1,name:"PortalManagerContext"});function VP(e){const{children:t,zIndex:n}=e;return v(NJ,{value:{zIndex:n},children:t})}VP.displayName="PortalManager";var[WP,zJ]=At({strict:!1,name:"PortalContext"}),hb="chakra-portal",FJ=".chakra-portal",BJ=e=>v("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),$J=e=>{const{appendToParentPortal:t,children:n}=e,[r,o]=C.exports.useState(null),i=C.exports.useRef(null),[,s]=C.exports.useState({});C.exports.useEffect(()=>s({}),[]);const u=zJ(),c=DJ();ai(()=>{if(!r)return;const d=r.ownerDocument,h=t?u??d.body:d.body;if(!h)return;i.current=d.createElement("div"),i.current.className=hb,h.appendChild(i.current),s({});const m=i.current;return()=>{h.contains(m)&&h.removeChild(m)}},[r]);const f=c?.zIndex?v(BJ,{zIndex:c?.zIndex,children:n}):n;return i.current?Tu.exports.createPortal(v(WP,{value:i.current,children:f}),i.current):v("span",{ref:d=>{d&&o(d)}})},VJ=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,o=n.current,i=o??(typeof window<"u"?document.body:void 0),s=C.exports.useMemo(()=>{const c=o?.ownerDocument.createElement("div");return c&&(c.className=hb),c},[o]),[,u]=C.exports.useState({});return ai(()=>u({}),[]),ai(()=>{if(!(!s||!i))return i.appendChild(s),()=>{i.removeChild(s)}},[s,i]),i&&s?Tu.exports.createPortal(v(WP,{value:r?s:null,children:t}),s):null};function Zs(e){const{containerRef:t,...n}=e;return t?v(VJ,{containerRef:t,...n}):v($J,{...n})}Zs.defaultProps={appendToParentPortal:!0};Zs.className=hb;Zs.selector=FJ;Zs.displayName="Portal";var WJ=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},_l=new WeakMap,gh=new WeakMap,vh={},h2=0,jJ=function(e,t,n,r){var o=Array.isArray(e)?e:[e];vh[n]||(vh[n]=new WeakMap);var i=vh[n],s=[],u=new Set,c=new Set(o),f=function(h){!h||u.has(h)||(u.add(h),f(h.parentNode))};o.forEach(f);var d=function(h){!h||c.has(h)||Array.prototype.forEach.call(h.children,function(m){if(u.has(m))d(m);else{var g=m.getAttribute(r),b=g!==null&&g!=="false",x=(_l.get(m)||0)+1,k=(i.get(m)||0)+1;_l.set(m,x),i.set(m,k),s.push(m),x===1&&b&&gh.set(m,!0),k===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return d(t),u.clear(),h2++,function(){s.forEach(function(h){var m=_l.get(h)-1,g=i.get(h)-1;_l.set(h,m),i.set(h,g),m||(gh.has(h)||h.removeAttribute(r),gh.delete(h)),g||h.removeAttribute(n)}),h2--,h2||(_l=new WeakMap,_l=new WeakMap,gh=new WeakMap,vh={})}},HJ=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=t||WJ(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live]"))),jJ(r,o,n,"aria-hidden")):function(){return null}};function UJ(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var wt={exports:{}},GJ="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",ZJ=GJ,KJ=ZJ;function jP(){}function HP(){}HP.resetWarningCache=jP;var qJ=function(){function e(r,o,i,s,u,c){if(c!==KJ){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:HP,resetWarningCache:jP};return n.PropTypes=n,n};wt.exports=qJ();var E4="data-focus-lock",UP="data-focus-lock-disabled",YJ="data-no-focus-lock",XJ="data-autofocus-inside",QJ="data-no-autofocus";function JJ(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function eee(e,t){var n=C.exports.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}function GP(e,t){return eee(t||null,function(n){return e.forEach(function(r){return JJ(r,n)})})}var m2={width:"1px",height:"0px",padding:0,overflow:"hidden",position:"fixed",top:"1px",left:"1px"};function ZP(e){return e}function KP(e,t){t===void 0&&(t=ZP);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(u){return u!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(u){return i(u)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var u=n;n=[],u.forEach(i),s=n}var c=function(){var d=s;s=[],d.forEach(i)},f=function(){return Promise.resolve().then(c)};f(),n={push:function(d){s.push(d),f()},filter:function(d){return s=s.filter(d),n}}}};return o}function mb(e,t){return t===void 0&&(t=ZP),KP(e,t)}function qP(e){e===void 0&&(e={});var t=KP(null);return t.options=ti({async:!0,ssr:!1},e),t}var YP=function(e){var t=e.sideCar,n=lm(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return v(r,{...ti({},n)})};YP.isSideCarExport=!0;function tee(e,t){return e.useMedium(t),YP}var XP=mb({},function(e){var t=e.target,n=e.currentTarget;return{target:t,currentTarget:n}}),QP=mb(),nee=mb(),ree=qP({async:!0}),oee=[],gb=C.exports.forwardRef(function(t,n){var r,o=C.exports.useState(),i=o[0],s=o[1],u=C.exports.useRef(),c=C.exports.useRef(!1),f=C.exports.useRef(null),d=t.children,h=t.disabled,m=t.noFocusGuards,g=t.persistentFocus,b=t.crossFrame,x=t.autoFocus;t.allowTextSelection;var k=t.group,S=t.className,w=t.whiteList,_=t.hasPositiveIndices,L=t.shards,T=L===void 0?oee:L,R=t.as,N=R===void 0?"div":R,z=t.lockProps,K=z===void 0?{}:z,W=t.sideCar,J=t.returnFocus,ve=t.focusOptions,xe=t.onActivation,he=t.onDeactivation,fe=C.exports.useState({}),me=fe[0],ne=C.exports.useCallback(function(){f.current=f.current||document&&document.activeElement,u.current&&xe&&xe(u.current),c.current=!0},[xe]),j=C.exports.useCallback(function(){c.current=!1,he&&he(u.current)},[he]);C.exports.useEffect(function(){h||(f.current=null)},[]);var Y=C.exports.useCallback(function(Pe){var de=f.current;if(de&&de.focus){var _e=typeof J=="function"?J(de):J;if(_e){var De=typeof _e=="object"?_e:void 0;f.current=null,Pe?Promise.resolve().then(function(){return de.focus(De)}):de.focus(De)}}},[J]),Z=C.exports.useCallback(function(Pe){c.current&&XP.useMedium(Pe)},[]),O=QP.useMedium,H=C.exports.useCallback(function(Pe){u.current!==Pe&&(u.current=Pe,s(Pe))},[]),se=Df((r={},r[UP]=h&&"disabled",r[E4]=k,r),K),ce=m!==!0,ye=ce&&m!=="tail",be=GP([n,H]);return q(yn,{children:[ce&&[v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:m2},"guard-first"),_?v("div",{"data-focus-guard":!0,tabIndex:h?-1:1,style:m2},"guard-nearest"):null],!h&&v(W,{id:me,sideCar:ree,observed:i,disabled:h,persistentFocus:g,crossFrame:b,autoFocus:x,whiteList:w,shards:T,onActivation:ne,onDeactivation:j,returnFocus:Y,focusOptions:ve}),v(N,{ref:be,...se,className:S,onBlur:O,onFocus:Z,children:d}),ye&&v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:m2})]})});gb.propTypes={};gb.defaultProps={children:void 0,disabled:!1,returnFocus:!1,focusOptions:void 0,noFocusGuards:!1,autoFocus:!0,persistentFocus:!1,crossFrame:!0,hasPositiveIndices:void 0,allowTextSelection:void 0,group:void 0,className:void 0,whiteList:void 0,shards:void 0,as:"div",lockProps:{},onActivation:void 0,onDeactivation:void 0};const JP=gb;function L4(e,t){return L4=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,o){return r.__proto__=o,r},L4(e,t)}function iee(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,L4(e,t)}function eA(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function aee(e,t){function n(r){return r.displayName||r.name||"Component"}return function(o){var i=[],s;function u(){s=e(i.map(function(f){return f.props})),t(s)}var c=function(f){iee(d,f);function d(){return f.apply(this,arguments)||this}d.peek=function(){return s};var h=d.prototype;return h.componentDidMount=function(){i.push(this),u()},h.componentDidUpdate=function(){u()},h.componentWillUnmount=function(){var g=i.indexOf(this);i.splice(g,1),u()},h.render=function(){return v(o,{...this.props})},d}(C.exports.PureComponent);return eA(c,"displayName","SideEffect("+n(o)+")"),c}}var yi=function(e){for(var t=Array(e.length),n=0;n=0}).sort(hee)},mee=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],yb=mee.join(","),gee="".concat(yb,", [data-focus-guard]"),uA=function(e,t){var n;return yi(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,o){return r.concat(o.matches(t?gee:yb)?[o]:[],uA(o))},[])},bb=function(e,t){return e.reduce(function(n,r){return n.concat(uA(r,t),r.parentNode?yi(r.parentNode.querySelectorAll(yb)).filter(function(o){return o===r}):[])},[])},vee=function(e){var t=e.querySelectorAll("[".concat(XJ,"]"));return yi(t).map(function(n){return bb([n])}).reduce(function(n,r){return n.concat(r)},[])},xb=function(e,t){return yi(e).filter(function(n){return rA(t,n)}).filter(function(n){return fee(n)})},k8=function(e,t){return t===void 0&&(t=new Map),yi(e).filter(function(n){return oA(t,n)})},A4=function(e,t,n){return lA(xb(bb(e,n),t),!0,n)},E8=function(e,t){return lA(xb(bb(e),t),!1)},yee=function(e,t){return xb(vee(e),t)},qf=function(e,t){return(e.shadowRoot?qf(e.shadowRoot,t):Object.getPrototypeOf(e).contains.call(e,t))||yi(e.children).some(function(n){return qf(n,t)})},bee=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(o),(i&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(s,u){return!t.has(u)})},cA=function(e){return e.parentNode?cA(e.parentNode):e},wb=function(e){var t=P4(e);return t.filter(Boolean).reduce(function(n,r){var o=r.getAttribute(E4);return n.push.apply(n,o?bee(yi(cA(r).querySelectorAll("[".concat(E4,'="').concat(o,'"]:not([').concat(UP,'="disabled"])')))):[r]),n},[])},fA=function(e){return e.activeElement?e.activeElement.shadowRoot?fA(e.activeElement.shadowRoot):e.activeElement:void 0},Sb=function(){return document.activeElement?document.activeElement.shadowRoot?fA(document.activeElement.shadowRoot):document.activeElement:void 0},xee=function(e){return e===document.activeElement},wee=function(e){return Boolean(yi(e.querySelectorAll("iframe")).some(function(t){return xee(t)}))},dA=function(e){var t=document&&Sb();return!t||t.dataset&&t.dataset.focusGuard?!1:wb(e).some(function(n){return qf(n,t)||wee(n)})},See=function(){var e=document&&Sb();return e?yi(document.querySelectorAll("[".concat(YJ,"]"))).some(function(t){return qf(t,e)}):!1},Cee=function(e,t){return t.filter(sA).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},Cb=function(e,t){return sA(e)&&e.name?Cee(e,t):e},_ee=function(e){var t=new Set;return e.forEach(function(n){return t.add(Cb(n,e))}),e.filter(function(n){return t.has(n)})},L8=function(e){return e[0]&&e.length>1?Cb(e[0],e):e[0]},P8=function(e,t){return e.length>1?e.indexOf(Cb(e[t],e)):t},pA="NEW_FOCUS",kee=function(e,t,n,r){var o=e.length,i=e[0],s=e[o-1],u=vb(n);if(!(n&&e.indexOf(n)>=0)){var c=n!==void 0?t.indexOf(n):-1,f=r?t.indexOf(r):c,d=r?e.indexOf(r):-1,h=c-f,m=t.indexOf(i),g=t.indexOf(s),b=_ee(t),x=n!==void 0?b.indexOf(n):-1,k=x-(r?b.indexOf(r):c),S=P8(e,0),w=P8(e,o-1);if(c===-1||d===-1)return pA;if(!h&&d>=0)return d;if(c<=m&&u&&Math.abs(h)>1)return w;if(c>=g&&u&&Math.abs(h)>1)return S;if(h&&Math.abs(k)>1)return d;if(c<=m)return w;if(c>g)return S;if(h)return Math.abs(h)>1?d:(o+d+h)%o}},T4=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&T4(e.parentNode.host||e.parentNode,t),t},g2=function(e,t){for(var n=T4(e),r=T4(t),o=0;o=0)return i}return!1},hA=function(e,t,n){var r=P4(e),o=P4(t),i=r[0],s=!1;return o.filter(Boolean).forEach(function(u){s=g2(s||u,u)||s,n.filter(Boolean).forEach(function(c){var f=g2(i,c);f&&(!s||qf(f,s)?s=f:s=g2(f,s))})}),s},Eee=function(e,t){return e.reduce(function(n,r){return n.concat(yee(r,t))},[])},Lee=function(e){return function(t){var n;return t.autofocus||!!(!((n=iA(t))===null||n===void 0)&&n.autofocus)||e.indexOf(t)>=0}},Pee=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(pee)},Aee=function(e,t){var n=document&&Sb(),r=wb(e).filter(a0),o=hA(n||e,e,r),i=new Map,s=E8(r,i),u=A4(r,i).filter(function(g){var b=g.node;return a0(b)});if(!(!u[0]&&(u=s,!u[0]))){var c=E8([o],i).map(function(g){var b=g.node;return b}),f=Pee(c,u),d=f.map(function(g){var b=g.node;return b}),h=kee(d,c,n,t);if(h===pA){var m=k8(s.map(function(g){var b=g.node;return b})).filter(Lee(Eee(r,i)));return{node:m&&m.length?L8(m):L8(k8(d))}}return h===void 0?h:f[h]}},Tee=function(e){var t=wb(e).filter(a0),n=hA(e,e,t),r=new Map,o=A4([n],r,!0),i=A4(t,r).filter(function(s){var u=s.node;return a0(u)}).map(function(s){var u=s.node;return u});return o.map(function(s){var u=s.node,c=s.index;return{node:u,index:c,lockItem:i.indexOf(u)>=0,guard:vb(u)}})},Iee=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},v2=0,y2=!1,Oee=function(e,t,n){n===void 0&&(n={});var r=Aee(e,t);if(!y2&&r){if(v2>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),y2=!0,setTimeout(function(){y2=!1},1);return}v2++,Iee(r.node,n.focusOptions),v2--}};const mA=Oee;function gA(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var Mee=function(){return document&&document.activeElement===document.body},Ree=function(){return Mee()||See()},au=null,Kl=null,su=null,Yf=!1,Nee=function(){return!0},Dee=function(t){return(au.whiteList||Nee)(t)},zee=function(t,n){su={observerNode:t,portaledElement:n}},Fee=function(t){return su&&su.portaledElement===t};function A8(e,t,n,r){var o=null,i=e;do{var s=r[i];if(s.guard)s.node.dataset.focusAutoGuard&&(o=s);else if(s.lockItem){if(i!==e)return;o=null}else break}while((i+=n)!==t);o&&(o.node.tabIndex=0)}var Bee=function(t){return t&&"current"in t?t.current:t},$ee=function(t){return t?Boolean(Yf):Yf==="meanwhile"},Vee=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},Wee=function(t,n){return n.some(function(r){return Vee(t,r,r)})},s0=function(){var t=!1;if(au){var n=au,r=n.observed,o=n.persistentFocus,i=n.autoFocus,s=n.shards,u=n.crossFrame,c=n.focusOptions,f=r||su&&su.portaledElement,d=document&&document.activeElement;if(f){var h=[f].concat(s.map(Bee).filter(Boolean));if((!d||Dee(d))&&(o||$ee(u)||!Ree()||!Kl&&i)&&(f&&!(dA(h)||d&&Wee(d,h)||Fee(d))&&(document&&!Kl&&d&&!i?(d.blur&&d.blur(),document.body.focus()):(t=mA(h,Kl,{focusOptions:c}),su={})),Yf=!1,Kl=document&&document.activeElement),document){var m=document&&document.activeElement,g=Tee(h),b=g.map(function(x){var k=x.node;return k}).indexOf(m);b>-1&&(g.filter(function(x){var k=x.guard,S=x.node;return k&&S.dataset.focusAutoGuard}).forEach(function(x){var k=x.node;return k.removeAttribute("tabIndex")}),A8(b,g.length,1,g),A8(b,-1,-1,g))}}}return t},vA=function(t){s0()&&t&&(t.stopPropagation(),t.preventDefault())},_b=function(){return gA(s0)},jee=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||zee(r,n)},Hee=function(){return null},yA=function(){Yf="just",setTimeout(function(){Yf="meanwhile"},0)},Uee=function(){document.addEventListener("focusin",vA),document.addEventListener("focusout",_b),window.addEventListener("blur",yA)},Gee=function(){document.removeEventListener("focusin",vA),document.removeEventListener("focusout",_b),window.removeEventListener("blur",yA)};function Zee(e){return e.filter(function(t){var n=t.disabled;return!n})}function Kee(e){var t=e.slice(-1)[0];t&&!au&&Uee();var n=au,r=n&&t&&t.id===n.id;au=t,n&&!r&&(n.onDeactivation(),e.filter(function(o){var i=o.id;return i===n.id}).length||n.returnFocus(!t)),t?(Kl=null,(!r||n.observed!==t.observed)&&t.onActivation(),s0(),gA(s0)):(Gee(),Kl=null)}XP.assignSyncMedium(jee);QP.assignMedium(_b);nee.assignMedium(function(e){return e({moveFocusInside:mA,focusInside:dA})});const qee=aee(Zee,Kee)(Hee);var bA=C.exports.forwardRef(function(t,n){return v(JP,{sideCar:qee,ref:n,...t})}),xA=JP.propTypes||{};xA.sideCar;UJ(xA,["sideCar"]);bA.propTypes={};const Yee=bA;var wA=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:o,children:i,isDisabled:s,autoFocus:u,persistentFocus:c,lockFocusAcrossFrames:f}=e,d=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&hQ(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),h=C.exports.useCallback(()=>{var g;(g=n?.current)==null||g.focus()},[n]);return v(Yee,{crossFrame:f,persistentFocus:c,autoFocus:u,disabled:s,onActivation:d,onDeactivation:h,returnFocus:o&&!n,children:i})};wA.displayName="FocusLock";var t1="right-scroll-bar-position",n1="width-before-scroll-bar",Xee="with-scroll-bars-hidden",Qee="--removed-body-scroll-bar-size",SA=qP(),b2=function(){},km=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:b2,onWheelCapture:b2,onTouchMoveCapture:b2}),o=r[0],i=r[1],s=e.forwardProps,u=e.children,c=e.className,f=e.removeScrollBar,d=e.enabled,h=e.shards,m=e.sideCar,g=e.noIsolation,b=e.inert,x=e.allowPinchZoom,k=e.as,S=k===void 0?"div":k,w=lm(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),_=m,L=GP([n,t]),T=ti(ti({},w),o);return q(yn,{children:[d&&v(_,{sideCar:SA,removeScrollBar:f,shards:h,noIsolation:g,inert:b,setCallbacks:i,allowPinchZoom:!!x,lockRef:n}),s?C.exports.cloneElement(C.exports.Children.only(u),ti(ti({},T),{ref:L})):v(S,{...ti({},T,{className:c,ref:L}),children:u})]})});km.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};km.classNames={fullWidth:n1,zeroRight:t1};var Jee=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function ete(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=Jee();return t&&e.setAttribute("nonce",t),e}function tte(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function nte(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var rte=function(){var e=0,t=null;return{add:function(n){e==0&&(t=ete())&&(tte(t,n),nte(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},ote=function(){var e=rte();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},CA=function(){var e=ote(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},ite={left:0,top:0,right:0,gap:0},x2=function(e){return parseInt(e||"",10)||0},ate=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],o=t[e==="padding"?"paddingRight":"marginRight"];return[x2(n),x2(r),x2(o)]},ste=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return ite;var t=ate(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},lte=CA(),ute=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,u=e.gap;return n===void 0&&(n="margin"),` - .`.concat(Xee,` { - overflow: hidden `).concat(r,`; - padding-right: `).concat(u,"px ").concat(r,`; - } - body { - overflow: hidden `).concat(r,`; - overscroll-behavior: contain; - `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` - padding-left: `.concat(o,`px; - padding-top: `).concat(i,`px; - padding-right: `).concat(s,`px; - margin-left:0; - margin-top:0; - margin-right: `).concat(u,"px ").concat(r,`; - `),n==="padding"&&"padding-right: ".concat(u,"px ").concat(r,";")].filter(Boolean).join(""),` - } - - .`).concat(t1,` { - right: `).concat(u,"px ").concat(r,`; - } - - .`).concat(n1,` { - margin-right: `).concat(u,"px ").concat(r,`; - } - - .`).concat(t1," .").concat(t1,` { - right: 0 `).concat(r,`; - } - - .`).concat(n1," .").concat(n1,` { - margin-right: 0 `).concat(r,`; - } - - body { - `).concat(Qee,": ").concat(u,`px; - } -`)},cte=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r,i=C.exports.useMemo(function(){return ste(o)},[o]);return v(lte,{styles:ute(i,!t,o,n?"":"!important")})},I4=!1;if(typeof window<"u")try{var yh=Object.defineProperty({},"passive",{get:function(){return I4=!0,!0}});window.addEventListener("test",yh,yh),window.removeEventListener("test",yh,yh)}catch{I4=!1}var kl=I4?{passive:!1}:!1,fte=function(e){return e.tagName==="TEXTAREA"},_A=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!fte(e)&&n[t]==="visible")},dte=function(e){return _A(e,"overflowY")},pte=function(e){return _A(e,"overflowX")},T8=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=kA(e,n);if(r){var o=EA(e,n),i=o[1],s=o[2];if(i>s)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},hte=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},mte=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},kA=function(e,t){return e==="v"?dte(t):pte(t)},EA=function(e,t){return e==="v"?hte(t):mte(t)},gte=function(e,t){return e==="h"&&t==="rtl"?-1:1},vte=function(e,t,n,r,o){var i=gte(e,window.getComputedStyle(t).direction),s=i*r,u=n.target,c=t.contains(u),f=!1,d=s>0,h=0,m=0;do{var g=EA(e,u),b=g[0],x=g[1],k=g[2],S=x-k-i*b;(b||S)&&kA(e,u)&&(h+=S,m+=b),u=u.parentNode}while(!c&&u!==document.body||c&&(t.contains(u)||t===u));return(d&&(o&&h===0||!o&&s>h)||!d&&(o&&m===0||!o&&-s>m))&&(f=!0),f},bh=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},I8=function(e){return[e.deltaX,e.deltaY]},O8=function(e){return e&&"current"in e?e.current:e},yte=function(e,t){return e[0]===t[0]&&e[1]===t[1]},bte=function(e){return` - .block-interactivity-`.concat(e,` {pointer-events: none;} - .allow-interactivity-`).concat(e,` {pointer-events: all;} -`)},xte=0,El=[];function wte(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),o=C.exports.useState(xte++)[0],i=C.exports.useState(function(){return CA()})[0],s=C.exports.useRef(e);C.exports.useEffect(function(){s.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var x=e4([e.lockRef.current],(e.shards||[]).map(O8),!0).filter(Boolean);return x.forEach(function(k){return k.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),x.forEach(function(k){return k.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var u=C.exports.useCallback(function(x,k){if("touches"in x&&x.touches.length===2)return!s.current.allowPinchZoom;var S=bh(x),w=n.current,_="deltaX"in x?x.deltaX:w[0]-S[0],L="deltaY"in x?x.deltaY:w[1]-S[1],T,R=x.target,N=Math.abs(_)>Math.abs(L)?"h":"v";if("touches"in x&&N==="h"&&R.type==="range")return!1;var z=T8(N,R);if(!z)return!0;if(z?T=N:(T=N==="v"?"h":"v",z=T8(N,R)),!z)return!1;if(!r.current&&"changedTouches"in x&&(_||L)&&(r.current=T),!T)return!0;var K=r.current||T;return vte(K,k,x,K==="h"?_:L,!0)},[]),c=C.exports.useCallback(function(x){var k=x;if(!(!El.length||El[El.length-1]!==i)){var S="deltaY"in k?I8(k):bh(k),w=t.current.filter(function(T){return T.name===k.type&&T.target===k.target&&yte(T.delta,S)})[0];if(w&&w.should){k.cancelable&&k.preventDefault();return}if(!w){var _=(s.current.shards||[]).map(O8).filter(Boolean).filter(function(T){return T.contains(k.target)}),L=_.length>0?u(k,_[0]):!s.current.noIsolation;L&&k.cancelable&&k.preventDefault()}}},[]),f=C.exports.useCallback(function(x,k,S,w){var _={name:x,delta:k,target:S,should:w};t.current.push(_),setTimeout(function(){t.current=t.current.filter(function(L){return L!==_})},1)},[]),d=C.exports.useCallback(function(x){n.current=bh(x),r.current=void 0},[]),h=C.exports.useCallback(function(x){f(x.type,I8(x),x.target,u(x,e.lockRef.current))},[]),m=C.exports.useCallback(function(x){f(x.type,bh(x),x.target,u(x,e.lockRef.current))},[]);C.exports.useEffect(function(){return El.push(i),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:m}),document.addEventListener("wheel",c,kl),document.addEventListener("touchmove",c,kl),document.addEventListener("touchstart",d,kl),function(){El=El.filter(function(x){return x!==i}),document.removeEventListener("wheel",c,kl),document.removeEventListener("touchmove",c,kl),document.removeEventListener("touchstart",d,kl)}},[]);var g=e.removeScrollBar,b=e.inert;return q(yn,{children:[b?v(i,{styles:bte(o)}):null,g?v(cte,{gapMode:"margin"}):null]})}const Ste=tee(SA,wte);var LA=C.exports.forwardRef(function(e,t){return v(km,{...ti({},e,{ref:t,sideCar:Ste})})});LA.classNames=km.classNames;const Cte=LA;var Ks=(...e)=>e.filter(Boolean).join(" ");function Vc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var _te=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},O4=new _te;function kte(e,t){C.exports.useEffect(()=>(t&&O4.add(e),()=>{O4.remove(e)}),[t,e])}function Ete(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:o=!0,closeOnEsc:i=!0,useInert:s=!0,onOverlayClick:u,onEsc:c}=e,f=C.exports.useRef(null),d=C.exports.useRef(null),[h,m,g]=Pte(r,"chakra-modal","chakra-modal--header","chakra-modal--body");Lte(f,t&&s),kte(f,t);const b=C.exports.useRef(null),x=C.exports.useCallback(z=>{b.current=z.target},[]),k=C.exports.useCallback(z=>{z.key==="Escape"&&(z.stopPropagation(),i&&n?.(),c?.())},[i,n,c]),[S,w]=C.exports.useState(!1),[_,L]=C.exports.useState(!1),T=C.exports.useCallback((z={},K=null)=>({role:"dialog",...z,ref:qt(K,f),id:h,tabIndex:-1,"aria-modal":!0,"aria-labelledby":S?m:void 0,"aria-describedby":_?g:void 0,onClick:Vc(z.onClick,W=>W.stopPropagation())}),[g,_,h,m,S]),R=C.exports.useCallback(z=>{z.stopPropagation(),b.current===z.target&&(!O4.isTopModal(f)||(o&&n?.(),u?.()))},[n,o,u]),N=C.exports.useCallback((z={},K=null)=>({...z,ref:qt(K,d),onClick:Vc(z.onClick,R),onKeyDown:Vc(z.onKeyDown,k),onMouseDown:Vc(z.onMouseDown,x)}),[k,x,R]);return{isOpen:t,onClose:n,headerId:m,bodyId:g,setBodyMounted:L,setHeaderMounted:w,dialogRef:f,overlayRef:d,getDialogProps:T,getDialogContainerProps:N}}function Lte(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return HJ(e.current)},[t,e,n])}function Pte(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(o=>`${o}-${r}`),[r,t])}var[Ate,qs]=At({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Tte,Ka]=At({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),ku=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:u,blockScrollOnMount:c,allowPinchZoom:f,preserveScrollBarGap:d,motionPreset:h,lockFocusAcrossFrames:m,onCloseComplete:g}=e,b=fr("Modal",e),k={...Ete(e),autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:u,blockScrollOnMount:c,allowPinchZoom:f,preserveScrollBarGap:d,motionPreset:h,lockFocusAcrossFrames:m};return v(Tte,{value:k,children:v(Ate,{value:b,children:v(na,{onExitComplete:g,children:k.isOpen&&v(Zs,{...t,children:n})})})})};ku.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};ku.displayName="Modal";var l0=ue((e,t)=>{const{className:n,...r}=e,{bodyId:o,setBodyMounted:i}=Ka();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=Ks("chakra-modal__body",n),u=qs();return X.createElement(oe.div,{ref:t,className:s,id:o,...r,__css:u.body})});l0.displayName="ModalBody";var kb=ue((e,t)=>{const{onClick:n,className:r,...o}=e,{onClose:i}=Ka(),s=Ks("chakra-modal__close-btn",r),u=qs();return v(Sm,{ref:t,__css:u.closeButton,className:s,onClick:Vc(n,c=>{c.stopPropagation(),i()}),...o})});kb.displayName="ModalCloseButton";function PA(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:o,blockScrollOnMount:i,allowPinchZoom:s,finalFocusRef:u,returnFocusOnClose:c,preserveScrollBarGap:f,lockFocusAcrossFrames:d}=Ka(),[h,m]=B3();return C.exports.useEffect(()=>{!h&&m&&setTimeout(m)},[h,m]),v(wA,{autoFocus:t,isDisabled:!n,initialFocusRef:o,finalFocusRef:u,restoreFocus:c,contentRef:r,lockFocusAcrossFrames:d,children:v(Cte,{removeScrollBar:!f,allowPinchZoom:s,enabled:i,forwardProps:!0,children:e.children})})}var Ite={slideInBottom:{...v4,custom:{offsetY:16,reverse:!0}},slideInRight:{...v4,custom:{offsetX:16,reverse:!0}},scale:{...HL,custom:{initialScale:.95,reverse:!0}},none:{}},Ote=oe(go.section),AA=C.exports.forwardRef((e,t)=>{const{preset:n,...r}=e,o=Ite[n];return v(Ote,{ref:t,...o,...r})});AA.displayName="ModalTransition";var Xf=ue((e,t)=>{const{className:n,children:r,containerProps:o,...i}=e,{getDialogProps:s,getDialogContainerProps:u}=Ka(),c=s(i,t),f=u(o),d=Ks("chakra-modal__content",n),h=qs(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh","@supports(height: -webkit-fill-available)":{height:"-webkit-fill-available"},position:"fixed",left:0,top:0,...h.dialogContainer},{motionPreset:b}=Ka();return X.createElement(PA,null,X.createElement(oe.div,{...f,className:"chakra-modal__content-container",tabIndex:-1,__css:g},v(AA,{preset:b,className:d,...c,__css:m,children:r})))});Xf.displayName="ModalContent";var Eb=ue((e,t)=>{const{className:n,...r}=e,o=Ks("chakra-modal__footer",n),i=qs(),s={display:"flex",alignItems:"center",justifyContent:"flex-end",...i.footer};return X.createElement(oe.footer,{ref:t,...r,__css:s,className:o})});Eb.displayName="ModalFooter";var Lb=ue((e,t)=>{const{className:n,...r}=e,{headerId:o,setHeaderMounted:i}=Ka();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=Ks("chakra-modal__header",n),u=qs(),c={flex:0,...u.header};return X.createElement(oe.header,{ref:t,className:s,id:o,...r,__css:c})});Lb.displayName="ModalHeader";var Mte=oe(go.div),Qf=ue((e,t)=>{const{className:n,transition:r,...o}=e,i=Ks("chakra-modal__overlay",n),s=qs(),u={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...s.overlay},{motionPreset:c}=Ka();return v(Mte,{...c==="none"?{}:jL,__css:u,ref:t,className:i,...o})});Qf.displayName="ModalOverlay";function Rte(e){const{leastDestructiveRef:t,...n}=e;return v(ku,{...n,initialFocusRef:t})}var Nte=ue((e,t)=>v(Xf,{ref:t,role:"alertdialog",...e})),[_0e,Dte]=At(),zte=oe(UL),Fte=ue((e,t)=>{const{className:n,children:r,...o}=e,{getDialogProps:i,getDialogContainerProps:s,isOpen:u}=Ka(),c=i(o,t),f=s(),d=Ks("chakra-modal__content",n),h=qs(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh",position:"fixed",left:0,top:0,...h.dialogContainer},{placement:b}=Dte();return X.createElement(oe.div,{...f,className:"chakra-modal__content-container",__css:g},v(PA,{children:v(zte,{direction:b,in:u,className:d,...c,__css:m,children:r})}))});Fte.displayName="DrawerContent";function Bte(e,t){const n=Gn(e);C.exports.useEffect(()=>{let r=null;const o=()=>n();return t!==null&&(r=window.setInterval(o,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var TA=(...e)=>e.filter(Boolean).join(" "),w2=e=>e?!0:void 0;function Go(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var $te=e=>v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),Vte=e=>v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function M8(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const o=e.current.ownerDocument.defaultView??window,i=Array.isArray(t)?t:[t],s=new o.MutationObserver(u=>{for(const c of u)c.type==="attributes"&&c.attributeName&&i.includes(c.attributeName)&&n(c)});return s.observe(e.current,{attributes:!0,attributeFilter:i}),()=>s.disconnect()})}var Wte=50,R8=300;function jte(e,t){const[n,r]=C.exports.useState(!1),[o,i]=C.exports.useState(null),[s,u]=C.exports.useState(!0),c=C.exports.useRef(null),f=()=>clearTimeout(c.current);Bte(()=>{o==="increment"&&e(),o==="decrement"&&t()},n?Wte:null);const d=C.exports.useCallback(()=>{s&&e(),c.current=setTimeout(()=>{u(!1),r(!0),i("increment")},R8)},[e,s]),h=C.exports.useCallback(()=>{s&&t(),c.current=setTimeout(()=>{u(!1),r(!0),i("decrement")},R8)},[t,s]),m=C.exports.useCallback(()=>{u(!0),r(!1),f()},[]);return C.exports.useEffect(()=>()=>f(),[]),{up:d,down:h,stop:m,isSpinning:n}}var Hte=/^[Ee0-9+\-.]$/;function Ute(e){return Hte.test(e)}function Gte(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function Zte(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:o=Number.MIN_SAFE_INTEGER,max:i=Number.MAX_SAFE_INTEGER,step:s=1,isReadOnly:u,isDisabled:c,isRequired:f,isInvalid:d,pattern:h="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:g,id:b,onChange:x,precision:k,name:S,"aria-describedby":w,"aria-label":_,"aria-labelledby":L,onFocus:T,onBlur:R,onInvalid:N,getAriaValueText:z,isValidCharacter:K,format:W,parse:J,...ve}=e,xe=Gn(T),he=Gn(R),fe=Gn(N),me=Gn(K??Ute),ne=Gn(z),j=uX(e),{update:Y,increment:Z,decrement:O}=j,[H,se]=C.exports.useState(!1),ce=!(u||c),ye=C.exports.useRef(null),be=C.exports.useRef(null),Pe=C.exports.useRef(null),de=C.exports.useRef(null),_e=C.exports.useCallback(ie=>ie.split("").filter(me).join(""),[me]),De=C.exports.useCallback(ie=>J?.(ie)??ie,[J]),st=C.exports.useCallback(ie=>(W?.(ie)??ie).toString(),[W]);r0(()=>{(j.valueAsNumber>i||j.valueAsNumber{if(!ye.current)return;if(ye.current.value!=j.value){const Ge=De(ye.current.value);j.setValue(_e(Ge))}},[De,_e]);const Tt=C.exports.useCallback((ie=s)=>{ce&&Z(ie)},[Z,ce,s]),bn=C.exports.useCallback((ie=s)=>{ce&&O(ie)},[O,ce,s]),we=jte(Tt,bn);M8(Pe,"disabled",we.stop,we.isSpinning),M8(de,"disabled",we.stop,we.isSpinning);const Ie=C.exports.useCallback(ie=>{if(ie.nativeEvent.isComposing)return;const Et=De(ie.currentTarget.value);Y(_e(Et)),be.current={start:ie.currentTarget.selectionStart,end:ie.currentTarget.selectionEnd}},[Y,_e,De]),tt=C.exports.useCallback(ie=>{var Ge;xe?.(ie),be.current&&(ie.target.selectionStart=be.current.start??((Ge=ie.currentTarget.value)==null?void 0:Ge.length),ie.currentTarget.selectionEnd=be.current.end??ie.currentTarget.selectionStart)},[xe]),ze=C.exports.useCallback(ie=>{if(ie.nativeEvent.isComposing)return;Gte(ie,me)||ie.preventDefault();const Ge=$t(ie)*s,Et=ie.key,Fn={ArrowUp:()=>Tt(Ge),ArrowDown:()=>bn(Ge),Home:()=>Y(o),End:()=>Y(i)}[Et];Fn&&(ie.preventDefault(),Fn(ie))},[me,s,Tt,bn,Y,o,i]),$t=ie=>{let Ge=1;return(ie.metaKey||ie.ctrlKey)&&(Ge=.1),ie.shiftKey&&(Ge=10),Ge},xn=C.exports.useMemo(()=>{const ie=ne?.(j.value);if(ie!=null)return ie;const Ge=j.value.toString();return Ge||void 0},[j.value,ne]),lt=C.exports.useCallback(()=>{let ie=j.value;ie!==""&&(j.valueAsNumberi&&(ie=i),j.cast(ie))},[j,i,o]),Ct=C.exports.useCallback(()=>{se(!1),n&<()},[n,se,lt]),Qt=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var ie;(ie=ye.current)==null||ie.focus()})},[t]),Gt=C.exports.useCallback(ie=>{ie.preventDefault(),we.up(),Qt()},[Qt,we]),pe=C.exports.useCallback(ie=>{ie.preventDefault(),we.down(),Qt()},[Qt,we]);w4(()=>ye.current,"wheel",ie=>{var Ge;const En=(((Ge=ye.current)==null?void 0:Ge.ownerDocument)??document).activeElement===ye.current;if(!g||!En)return;ie.preventDefault();const Fn=$t(ie)*s,Lr=Math.sign(ie.deltaY);Lr===-1?Tt(Fn):Lr===1&&bn(Fn)},{passive:!1});const Le=C.exports.useCallback((ie={},Ge=null)=>{const Et=c||r&&j.isAtMax;return{...ie,ref:qt(Ge,Pe),role:"button",tabIndex:-1,onPointerDown:Go(ie.onPointerDown,En=>{Et||Gt(En)}),onPointerLeave:Go(ie.onPointerLeave,we.stop),onPointerUp:Go(ie.onPointerUp,we.stop),disabled:Et,"aria-disabled":w2(Et)}},[j.isAtMax,r,Gt,we.stop,c]),dt=C.exports.useCallback((ie={},Ge=null)=>{const Et=c||r&&j.isAtMin;return{...ie,ref:qt(Ge,de),role:"button",tabIndex:-1,onPointerDown:Go(ie.onPointerDown,En=>{Et||pe(En)}),onPointerLeave:Go(ie.onPointerLeave,we.stop),onPointerUp:Go(ie.onPointerUp,we.stop),disabled:Et,"aria-disabled":w2(Et)}},[j.isAtMin,r,pe,we.stop,c]),ut=C.exports.useCallback((ie={},Ge=null)=>({name:S,inputMode:m,type:"text",pattern:h,"aria-labelledby":L,"aria-label":_,"aria-describedby":w,id:b,disabled:c,...ie,readOnly:ie.readOnly??u,"aria-readonly":ie.readOnly??u,"aria-required":ie.required??f,required:ie.required??f,ref:qt(ye,Ge),value:st(j.value),role:"spinbutton","aria-valuemin":o,"aria-valuemax":i,"aria-valuenow":Number.isNaN(j.valueAsNumber)?void 0:j.valueAsNumber,"aria-invalid":w2(d??j.isOutOfRange),"aria-valuetext":xn,autoComplete:"off",autoCorrect:"off",onChange:Go(ie.onChange,Ie),onKeyDown:Go(ie.onKeyDown,ze),onFocus:Go(ie.onFocus,tt,()=>se(!0)),onBlur:Go(ie.onBlur,he,Ct)}),[S,m,h,L,_,st,w,b,c,f,u,d,j.value,j.valueAsNumber,j.isOutOfRange,o,i,xn,Ie,ze,tt,he,Ct]);return{value:st(j.value),valueAsNumber:j.valueAsNumber,isFocused:H,isDisabled:c,isReadOnly:u,getIncrementButtonProps:Le,getDecrementButtonProps:dt,getInputProps:ut,htmlProps:ve}}var[Kte,Em]=At({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[qte,Pb]=At({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),IA=ue(function(t,n){const r=fr("NumberInput",t),o=vt(t),i=X3(o),{htmlProps:s,...u}=Zte(i),c=C.exports.useMemo(()=>u,[u]);return X.createElement(qte,{value:c},X.createElement(Kte,{value:r},X.createElement(oe.div,{...s,ref:n,className:TA("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});IA.displayName="NumberInput";var Yte=ue(function(t,n){const r=Em();return X.createElement(oe.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});Yte.displayName="NumberInputStepper";var OA=ue(function(t,n){const{getInputProps:r}=Pb(),o=r(t,n),i=Em();return X.createElement(oe.input,{...o,className:TA("chakra-numberinput__field",t.className),__css:{width:"100%",...i.field}})});OA.displayName="NumberInputField";var MA=oe("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),RA=ue(function(t,n){const r=Em(),{getDecrementButtonProps:o}=Pb(),i=o(t,n);return v(MA,{...i,__css:r.stepper,children:t.children??v($te,{})})});RA.displayName="NumberDecrementStepper";var NA=ue(function(t,n){const{getIncrementButtonProps:r}=Pb(),o=r(t,n),i=Em();return v(MA,{...o,__css:i.stepper,children:t.children??v(Vte,{})})});NA.displayName="NumberIncrementStepper";var kd=(...e)=>e.filter(Boolean).join(" ");function Xte(e,...t){return Qte(e)?e(...t):e}var Qte=e=>typeof e=="function";function Zo(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Jte(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[ene,Ys]=At({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[tne,Ed]=At({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Ll={click:"click",hover:"hover"};function nne(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:o,returnFocusOnClose:i=!0,autoFocus:s=!0,arrowSize:u,arrowShadowColor:c,trigger:f=Ll.click,openDelay:d=200,closeDelay:h=200,isLazy:m,lazyBehavior:g="unmount",computePositionOnMount:b,...x}=e,{isOpen:k,onClose:S,onOpen:w,onToggle:_}=BP(e),L=C.exports.useRef(null),T=C.exports.useRef(null),R=C.exports.useRef(null),N=C.exports.useRef(!1),z=C.exports.useRef(!1);k&&(z.current=!0);const[K,W]=C.exports.useState(!1),[J,ve]=C.exports.useState(!1),xe=C.exports.useId(),he=o??xe,[fe,me,ne,j]=["popover-trigger","popover-content","popover-header","popover-body"].map(Ie=>`${Ie}-${he}`),{referenceRef:Y,getArrowProps:Z,getPopperProps:O,getArrowInnerProps:H,forceUpdate:se}=FP({...x,enabled:k||!!b}),ce=pX({isOpen:k,ref:R});bX({enabled:k,ref:T}),vX(R,{focusRef:T,visible:k,shouldFocus:i&&f===Ll.click}),wX(R,{focusRef:r,visible:k,shouldFocus:s&&f===Ll.click});const ye=$P({wasSelected:z.current,enabled:m,mode:g,isSelected:ce.present}),be=C.exports.useCallback((Ie={},tt=null)=>{const ze={...Ie,style:{...Ie.style,transformOrigin:cn.transformOrigin.varRef,[cn.arrowSize.var]:u?`${u}px`:void 0,[cn.arrowShadowColor.var]:c},ref:qt(R,tt),children:ye?Ie.children:null,id:me,tabIndex:-1,role:"dialog",onKeyDown:Zo(Ie.onKeyDown,$t=>{n&&$t.key==="Escape"&&S()}),onBlur:Zo(Ie.onBlur,$t=>{const xn=N8($t),lt=S2(R.current,xn),Ct=S2(T.current,xn);k&&t&&(!lt&&!Ct)&&S()}),"aria-labelledby":K?ne:void 0,"aria-describedby":J?j:void 0};return f===Ll.hover&&(ze.role="tooltip",ze.onMouseEnter=Zo(Ie.onMouseEnter,()=>{N.current=!0}),ze.onMouseLeave=Zo(Ie.onMouseLeave,$t=>{$t.nativeEvent.relatedTarget!==null&&(N.current=!1,setTimeout(S,h))})),ze},[ye,me,K,ne,J,j,f,n,S,k,t,h,c,u]),Pe=C.exports.useCallback((Ie={},tt=null)=>O({...Ie,style:{visibility:k?"visible":"hidden",...Ie.style}},tt),[k,O]),de=C.exports.useCallback((Ie,tt=null)=>({...Ie,ref:qt(tt,L,Y)}),[L,Y]),_e=C.exports.useRef(),De=C.exports.useRef(),st=C.exports.useCallback(Ie=>{L.current==null&&Y(Ie)},[Y]),Tt=C.exports.useCallback((Ie={},tt=null)=>{const ze={...Ie,ref:qt(T,tt,st),id:fe,"aria-haspopup":"dialog","aria-expanded":k,"aria-controls":me};return f===Ll.click&&(ze.onClick=Zo(Ie.onClick,_)),f===Ll.hover&&(ze.onFocus=Zo(Ie.onFocus,()=>{_e.current===void 0&&w()}),ze.onBlur=Zo(Ie.onBlur,$t=>{const xn=N8($t),lt=!S2(R.current,xn);k&&t&<&&S()}),ze.onKeyDown=Zo(Ie.onKeyDown,$t=>{$t.key==="Escape"&&S()}),ze.onMouseEnter=Zo(Ie.onMouseEnter,()=>{N.current=!0,_e.current=window.setTimeout(w,d)}),ze.onMouseLeave=Zo(Ie.onMouseLeave,()=>{N.current=!1,_e.current&&(clearTimeout(_e.current),_e.current=void 0),De.current=window.setTimeout(()=>{N.current===!1&&S()},h)})),ze},[fe,k,me,f,st,_,w,t,S,d,h]);C.exports.useEffect(()=>()=>{_e.current&&clearTimeout(_e.current),De.current&&clearTimeout(De.current)},[]);const bn=C.exports.useCallback((Ie={},tt=null)=>({...Ie,id:ne,ref:qt(tt,ze=>{W(!!ze)})}),[ne]),we=C.exports.useCallback((Ie={},tt=null)=>({...Ie,id:j,ref:qt(tt,ze=>{ve(!!ze)})}),[j]);return{forceUpdate:se,isOpen:k,onAnimationComplete:ce.onComplete,onClose:S,getAnchorProps:de,getArrowProps:Z,getArrowInnerProps:H,getPopoverPositionerProps:Pe,getPopoverProps:be,getTriggerProps:Tt,getHeaderProps:bn,getBodyProps:we}}function S2(e,t){return e===t||e?.contains(t)}function N8(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function Ab(e){const t=fr("Popover",e),{children:n,...r}=vt(e),o=nm(),i=nne({...r,direction:o.direction});return v(ene,{value:i,children:v(tne,{value:t,children:Xte(n,{isOpen:i.isOpen,onClose:i.onClose,forceUpdate:i.forceUpdate})})})}Ab.displayName="Popover";function Tb(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:o,getArrowInnerProps:i}=Ys(),s=Ed(),u=t??n??r;return X.createElement(oe.div,{...o(),className:"chakra-popover__arrow-positioner"},X.createElement(oe.div,{className:kd("chakra-popover__arrow",e.className),...i(e),__css:{...s.arrow,"--popper-arrow-bg":u?`colors.${u}, ${u}`:void 0}}))}Tb.displayName="PopoverArrow";var rne=ue(function(t,n){const{getBodyProps:r}=Ys(),o=Ed();return X.createElement(oe.div,{...r(t,n),className:kd("chakra-popover__body",t.className),__css:o.body})});rne.displayName="PopoverBody";var one=ue(function(t,n){const{onClose:r}=Ys(),o=Ed();return v(Sm,{size:"sm",onClick:r,className:kd("chakra-popover__close-btn",t.className),__css:o.closeButton,ref:n,...t})});one.displayName="PopoverCloseButton";function ine(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var ane={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},sne=go(oe.section),Ib=ue(function(t,n){const{isOpen:r}=Ys();return X.createElement(sne,{ref:n,variants:ine(t.variants),...t,initial:!1,animate:r?"enter":"exit"})});Ib.defaultProps={variants:ane};Ib.displayName="PopoverTransition";var Ob=ue(function(t,n){const{rootProps:r,...o}=t,{getPopoverProps:i,getPopoverPositionerProps:s,onAnimationComplete:u}=Ys(),c=Ed(),f={position:"relative",display:"flex",flexDirection:"column",...c.content};return X.createElement(oe.div,{...s(r),__css:c.popper,className:"chakra-popover__popper"},v(Ib,{...i(o,n),onAnimationComplete:Jte(u,o.onAnimationComplete),className:kd("chakra-popover__content",t.className),__css:f}))});Ob.displayName="PopoverContent";var DA=ue(function(t,n){const{getHeaderProps:r}=Ys(),o=Ed();return X.createElement(oe.header,{...r(t,n),className:kd("chakra-popover__header",t.className),__css:o.header})});DA.displayName="PopoverHeader";function Mb(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=Ys();return C.exports.cloneElement(t,n(t.props,t.ref))}Mb.displayName="PopoverTrigger";function lne(e,t,n){return(e-t)*100/(n-t)}pd({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}});pd({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}});var une=pd({"0%":{left:"-40%"},"100%":{left:"100%"}}),cne=pd({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function fne(e){const{value:t=0,min:n,max:r,valueText:o,getValueText:i,isIndeterminate:s}=e,u=lne(t,n,r);return{bind:{"data-indeterminate":s?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":s?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof i=="function"?i(t,u):o})(),role:"progressbar"},percent:u,value:t}}var[dne,pne]=At({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),hne=e=>{const{min:t,max:n,value:r,isIndeterminate:o,...i}=e,s=fne({value:r,min:t,max:n,isIndeterminate:o}),u=pne(),c={height:"100%",...u.filledTrack};return X.createElement(oe.div,{style:{width:`${s.percent}%`,...i.style},...s.bind,...i,__css:c})},zA=e=>{var t;const{value:n,min:r=0,max:o=100,hasStripe:i,isAnimated:s,children:u,borderRadius:c,isIndeterminate:f,"aria-label":d,"aria-labelledby":h,...m}=vt(e),g=fr("Progress",e),b=c??((t=g.track)==null?void 0:t.borderRadius),x={animation:`${cne} 1s linear infinite`},w={...!f&&i&&s&&x,...f&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${une} 1s ease infinite normal none running`}},_={overflow:"hidden",position:"relative",...g.track};return X.createElement(oe.div,{borderRadius:b,__css:_,...m},q(dne,{value:g,children:[v(hne,{"aria-label":d,"aria-labelledby":h,min:r,max:o,value:n,isIndeterminate:f,css:w,borderRadius:b}),u]}))};zA.displayName="Progress";var mne=oe("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});mne.displayName="CircularProgressLabel";var gne=(...e)=>e.filter(Boolean).join(" "),vne=e=>e?"":void 0;function yne(e,t){const n={},r={};for(const[o,i]of Object.entries(e))t.includes(o)?n[o]=i:r[o]=i;return[n,r]}var FA=ue(function(t,n){const{children:r,placeholder:o,className:i,...s}=t;return X.createElement(oe.select,{...s,ref:n,className:gne("chakra-select",i)},o&&v("option",{value:"",children:o}),r)});FA.displayName="SelectField";var BA=ue((e,t)=>{var n;const r=fr("Select",e),{rootProps:o,placeholder:i,icon:s,color:u,height:c,h:f,minH:d,minHeight:h,iconColor:m,iconSize:g,...b}=vt(e),[x,k]=yne(b,EW),S=Y3(k),w={width:"100%",height:"fit-content",position:"relative",color:u},_={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return X.createElement(oe.div,{className:"chakra-select__wrapper",__css:w,...x,...o},v(FA,{ref:t,height:f??c,minH:d??h,placeholder:i,...S,__css:_,children:e.children}),v($A,{"data-disabled":vne(S.disabled),...(m||u)&&{color:m||u},__css:r.icon,...g&&{fontSize:g},children:s}))});BA.displayName="Select";var bne=e=>v("svg",{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),xne=oe("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),$A=e=>{const{children:t=v(bne,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return v(xne,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};$A.displayName="SelectIcon";var wne=(...e)=>e.filter(Boolean).join(" "),D8=e=>e?"":void 0,Lm=ue(function(t,n){const r=fr("Switch",t),{spacing:o="0.5rem",children:i,...s}=vt(t),{state:u,getInputProps:c,getCheckboxProps:f,getRootProps:d,getLabelProps:h}=lP(s),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),g=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:o,...r.label}),[o,r.label]);return X.createElement(oe.label,{...d(),className:wne("chakra-switch",t.className),__css:m},v("input",{className:"chakra-switch__input",...c({},n)}),X.createElement(oe.span,{...f(),className:"chakra-switch__track",__css:g},X.createElement(oe.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":D8(u.isChecked),"data-hover":D8(u.isHovered)})),i&&X.createElement(oe.span,{className:"chakra-switch__label",...h(),__css:b},i))});Lm.displayName="Switch";var $u=(...e)=>e.filter(Boolean).join(" ");function M4(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Sne,VA,Cne,_ne]=pE();function kne(e){const{defaultIndex:t,onChange:n,index:r,isManual:o,isLazy:i,lazyBehavior:s="unmount",orientation:u="horizontal",direction:c="ltr",...f}=e,[d,h]=C.exports.useState(t??0),[m,g]=hE({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&h(r)},[r]);const b=Cne(),x=C.exports.useId();return{id:`tabs-${e.id??x}`,selectedIndex:m,focusedIndex:d,setSelectedIndex:g,setFocusedIndex:h,isManual:o,isLazy:i,lazyBehavior:s,orientation:u,descendants:b,direction:c,htmlProps:f}}var[Ene,Ld]=At({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function Lne(e){const{focusedIndex:t,orientation:n,direction:r}=Ld(),o=VA(),i=C.exports.useCallback(s=>{const u=()=>{var w;const _=o.nextEnabled(t);_&&((w=_.node)==null||w.focus())},c=()=>{var w;const _=o.prevEnabled(t);_&&((w=_.node)==null||w.focus())},f=()=>{var w;const _=o.firstEnabled();_&&((w=_.node)==null||w.focus())},d=()=>{var w;const _=o.lastEnabled();_&&((w=_.node)==null||w.focus())},h=n==="horizontal",m=n==="vertical",g=s.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",x=r==="ltr"?"ArrowRight":"ArrowLeft",S={[b]:()=>h&&c(),[x]:()=>h&&u(),ArrowDown:()=>m&&u(),ArrowUp:()=>m&&c(),Home:f,End:d}[g];S&&(s.preventDefault(),S(s))},[o,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:M4(e.onKeyDown,i)}}function Pne(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:o,isManual:i,id:s,setFocusedIndex:u,selectedIndex:c}=Ld(),{index:f,register:d}=_ne({disabled:t&&!n}),h=f===c,m=()=>{o(f)},g=()=>{u(f),!i&&!(t&&n)&&o(f)},b=oQ({...r,ref:qt(d,e.ref),isDisabled:t,isFocusable:n,onClick:M4(e.onClick,m)}),x="button";return{...b,id:WA(s,f),role:"tab",tabIndex:h?0:-1,type:x,"aria-selected":h,"aria-controls":jA(s,f),onFocus:t?void 0:M4(e.onFocus,g)}}var[Ane,Tne]=At({});function Ine(e){const t=Ld(),{id:n,selectedIndex:r}=t,i=bm(e.children).map((s,u)=>C.exports.createElement(Ane,{key:u,value:{isSelected:u===r,id:jA(n,u),tabId:WA(n,u),selectedIndex:r}},s));return{...e,children:i}}function One(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:o}=Ld(),{isSelected:i,id:s,tabId:u}=Tne(),c=C.exports.useRef(!1);i&&(c.current=!0);const f=$P({wasSelected:c.current,isSelected:i,enabled:r,mode:o});return{tabIndex:0,...n,children:f?t:null,role:"tabpanel","aria-labelledby":u,hidden:!i,id:s}}function Mne(){const e=Ld(),t=VA(),{selectedIndex:n,orientation:r}=e,o=r==="horizontal",i=r==="vertical",[s,u]=C.exports.useState(()=>{if(o)return{left:0,width:0};if(i)return{top:0,height:0}}),[c,f]=C.exports.useState(!1);return ai(()=>{if(n==null)return;const d=t.item(n);if(d==null)return;o&&u({left:d.node.offsetLeft,width:d.node.offsetWidth}),i&&u({top:d.node.offsetTop,height:d.node.offsetHeight});const h=requestAnimationFrame(()=>{f(!0)});return()=>{h&&cancelAnimationFrame(h)}},[n,o,i,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:c?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...s}}function WA(e,t){return`${e}--tab-${t}`}function jA(e,t){return`${e}--tabpanel-${t}`}var[Rne,Pd]=At({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),HA=ue(function(t,n){const r=fr("Tabs",t),{children:o,className:i,...s}=vt(t),{htmlProps:u,descendants:c,...f}=kne(s),d=C.exports.useMemo(()=>f,[f]),{isFitted:h,...m}=u;return X.createElement(Sne,{value:c},X.createElement(Ene,{value:d},X.createElement(Rne,{value:r},X.createElement(oe.div,{className:$u("chakra-tabs",i),ref:n,...m,__css:r.root},o))))});HA.displayName="Tabs";var Nne=ue(function(t,n){const r=Mne(),o={...t.style,...r},i=Pd();return X.createElement(oe.div,{ref:n,...t,className:$u("chakra-tabs__tab-indicator",t.className),style:o,__css:i.indicator})});Nne.displayName="TabIndicator";var Dne=ue(function(t,n){const r=Lne({...t,ref:n}),o=Pd(),i={display:"flex",...o.tablist};return X.createElement(oe.div,{...r,className:$u("chakra-tabs__tablist",t.className),__css:i})});Dne.displayName="TabList";var UA=ue(function(t,n){const r=One({...t,ref:n}),o=Pd();return X.createElement(oe.div,{outline:"0",...r,className:$u("chakra-tabs__tab-panel",t.className),__css:o.tabpanel})});UA.displayName="TabPanel";var GA=ue(function(t,n){const r=Ine(t),o=Pd();return X.createElement(oe.div,{...r,width:"100%",ref:n,className:$u("chakra-tabs__tab-panels",t.className),__css:o.tabpanels})});GA.displayName="TabPanels";var ZA=ue(function(t,n){const r=Pd(),o=Pne({...t,ref:n}),i={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return X.createElement(oe.button,{...o,className:$u("chakra-tabs__tab",t.className),__css:i})});ZA.displayName="Tab";var zne=(...e)=>e.filter(Boolean).join(" ");function Fne(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var Bne=["h","minH","height","minHeight"],KA=ue((e,t)=>{const n=cr("Textarea",e),{className:r,rows:o,...i}=vt(e),s=Y3(i),u=o?Fne(n,Bne):n;return X.createElement(oe.textarea,{ref:t,rows:o,...s,className:zne("chakra-textarea",r),__css:u})});KA.displayName="Textarea";function gt(e,t={}){let n=!1;function r(){if(!n){n=!0;return}throw new Error("[anatomy] .part(...) should only be called once. Did you mean to use .extend(...) ?")}function o(...d){r();for(const h of d)t[h]=c(h);return gt(e,t)}function i(...d){for(const h of d)h in t||(t[h]=c(h));return gt(e,t)}function s(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.selector]))}function u(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.className]))}function c(d){const g=`chakra-${(["container","root"].includes(d??"")?[e]:[e,d]).filter(Boolean).join("__")}`;return{className:g,selector:`.${g}`,toString:()=>d}}return{parts:o,toPart:c,extend:i,selectors:s,classnames:u,get keys(){return Object.keys(t)},__type:{}}}var $ne=gt("accordion").parts("root","container","button","panel").extend("icon"),Vne=gt("alert").parts("title","description","container").extend("icon","spinner"),Wne=gt("avatar").parts("label","badge","container").extend("excessLabel","group"),jne=gt("breadcrumb").parts("link","item","container").extend("separator");gt("button").parts();var Hne=gt("checkbox").parts("control","icon","container").extend("label");gt("progress").parts("track","filledTrack").extend("label");var Une=gt("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Gne=gt("editable").parts("preview","input","textarea"),Zne=gt("form").parts("container","requiredIndicator","helperText"),Kne=gt("formError").parts("text","icon"),qne=gt("input").parts("addon","field","element"),Yne=gt("list").parts("container","item","icon"),Xne=gt("menu").parts("button","list","item").extend("groupTitle","command","divider"),Qne=gt("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Jne=gt("numberinput").parts("root","field","stepperGroup","stepper");gt("pininput").parts("field");var ere=gt("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),tre=gt("progress").parts("label","filledTrack","track"),nre=gt("radio").parts("container","control","label"),rre=gt("select").parts("field","icon"),ore=gt("slider").parts("container","track","thumb","filledTrack","mark"),ire=gt("stat").parts("container","label","helpText","number","icon"),are=gt("switch").parts("container","track","thumb"),sre=gt("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),lre=gt("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),ure=gt("tag").parts("container","label","closeButton");function Dn(e,t){cre(e)&&(e="100%");var n=fre(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function xh(e){return Math.min(1,Math.max(0,e))}function cre(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function fre(e){return typeof e=="string"&&e.indexOf("%")!==-1}function qA(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function wh(e){return e<=1?"".concat(Number(e)*100,"%"):e}function Ps(e){return e.length===1?"0"+e:String(e)}function dre(e,t,n){return{r:Dn(e,255)*255,g:Dn(t,255)*255,b:Dn(n,255)*255}}function z8(e,t,n){e=Dn(e,255),t=Dn(t,255),n=Dn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=0,u=(r+o)/2;if(r===o)s=0,i=0;else{var c=r-o;switch(s=u>.5?c/(2-r-o):c/(r+o),r){case e:i=(t-n)/c+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function pre(e,t,n){var r,o,i;if(e=Dn(e,360),t=Dn(t,100),n=Dn(n,100),t===0)o=n,i=n,r=n;else{var s=n<.5?n*(1+t):n+t-n*t,u=2*n-s;r=C2(u,s,e+1/3),o=C2(u,s,e),i=C2(u,s,e-1/3)}return{r:r*255,g:o*255,b:i*255}}function F8(e,t,n){e=Dn(e,255),t=Dn(t,255),n=Dn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=r,u=r-o,c=r===0?0:u/r;if(r===o)i=0;else{switch(r){case e:i=(t-n)/u+(t>16,g:(e&65280)>>8,b:e&255}}var R4={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function yre(e){var t={r:0,g:0,b:0},n=1,r=null,o=null,i=null,s=!1,u=!1;return typeof e=="string"&&(e=wre(e)),typeof e=="object"&&(Di(e.r)&&Di(e.g)&&Di(e.b)?(t=dre(e.r,e.g,e.b),s=!0,u=String(e.r).substr(-1)==="%"?"prgb":"rgb"):Di(e.h)&&Di(e.s)&&Di(e.v)?(r=wh(e.s),o=wh(e.v),t=hre(e.h,r,o),s=!0,u="hsv"):Di(e.h)&&Di(e.s)&&Di(e.l)&&(r=wh(e.s),i=wh(e.l),t=pre(e.h,r,i),s=!0,u="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=qA(n),{ok:s,format:e.format||u,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var bre="[-\\+]?\\d+%?",xre="[-\\+]?\\d*\\.\\d+%?",Ma="(?:".concat(xre,")|(?:").concat(bre,")"),_2="[\\s|\\(]+(".concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")\\s*\\)?"),k2="[\\s|\\(]+(".concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")\\s*\\)?"),Ao={CSS_UNIT:new RegExp(Ma),rgb:new RegExp("rgb"+_2),rgba:new RegExp("rgba"+k2),hsl:new RegExp("hsl"+_2),hsla:new RegExp("hsla"+k2),hsv:new RegExp("hsv"+_2),hsva:new RegExp("hsva"+k2),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function wre(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(R4[e])e=R4[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=Ao.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=Ao.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=Ao.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=Ao.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=Ao.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=Ao.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=Ao.hex8.exec(e),n?{r:Nr(n[1]),g:Nr(n[2]),b:Nr(n[3]),a:$8(n[4]),format:t?"name":"hex8"}:(n=Ao.hex6.exec(e),n?{r:Nr(n[1]),g:Nr(n[2]),b:Nr(n[3]),format:t?"name":"hex"}:(n=Ao.hex4.exec(e),n?{r:Nr(n[1]+n[1]),g:Nr(n[2]+n[2]),b:Nr(n[3]+n[3]),a:$8(n[4]+n[4]),format:t?"name":"hex8"}:(n=Ao.hex3.exec(e),n?{r:Nr(n[1]+n[1]),g:Nr(n[2]+n[2]),b:Nr(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function Di(e){return Boolean(Ao.CSS_UNIT.exec(String(e)))}var Ad=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=vre(t)),this.originalInput=t;var o=yre(t);this.originalInput=t,this.r=o.r,this.g=o.g,this.b=o.b,this.a=o.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:o.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=o.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,o,i=t.r/255,s=t.g/255,u=t.b/255;return i<=.03928?n=i/12.92:n=Math.pow((i+.055)/1.055,2.4),s<=.03928?r=s/12.92:r=Math.pow((s+.055)/1.055,2.4),u<=.03928?o=u/12.92:o=Math.pow((u+.055)/1.055,2.4),.2126*n+.7152*r+.0722*o},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=qA(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=F8(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=F8(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=z8(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=z8(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),B8(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),mre(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(Dn(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(Dn(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+B8(this.r,this.g,this.b,!1),n=0,r=Object.entries(R4);n=0,i=!n&&o&&(t.startsWith("hex")||t==="name");return i?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=xh(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=xh(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=xh(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=xh(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),i=n/100,s={r:(o.r-r.r)*i+r.r,g:(o.g-r.g)*i+r.g,b:(o.b-r.b)*i+r.b,a:(o.a-r.a)*i+r.a};return new e(s)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),o=360/n,i=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,i.push(new e(r));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,i=n.v,s=[],u=1/t;t--;)s.push(new e({h:r,s:o,v:i})),i=(i+u)%1;return s},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],i=360/t,s=1;sn.length;)e.count=null,e.seed&&(e.seed+=1),n.push(YA(e));return e.count=t,n}var r=Sre(e.hue,e.seed),o=Cre(r,e),i=_re(r,o,e),s={h:r,s:o,v:i};return e.alpha!==void 0&&(s.a=e.alpha),new Ad(s)}function Sre(e,t){var n=Ere(e),r=u0(n,t);return r<0&&(r=360+r),r}function Cre(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return u0([0,100],t.seed);var n=XA(e).saturationRange,r=n[0],o=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=o-10;break;case"light":o=55;break}return u0([r,o],t.seed)}function _re(e,t,n){var r=kre(e,t),o=100;switch(n.luminosity){case"dark":o=r+20;break;case"light":r=(o+r)/2;break;case"random":r=0,o=100;break}return u0([r,o],n.seed)}function kre(e,t){for(var n=XA(e).lowerBounds,r=0;r=o&&t<=s){var c=(u-i)/(s-o),f=i-c*o;return c*t+f}}return 0}function Ere(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=JA.find(function(s){return s.name===e});if(n){var r=QA(n);if(r.hueRange)return r.hueRange}var o=new Ad(e);if(o.isValid){var i=o.toHsv().h;return[i,i]}}return[0,360]}function XA(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=JA;t=o.hueRange[0]&&e<=o.hueRange[1])return o}throw Error("Color not found")}function u0(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var o=t/233280;return Math.floor(r+o*(n-r))}function QA(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],o=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,o]}}var JA=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function Lre(e,t,n,r,o){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,vn=(e,t,n)=>{const r=Lre(e,`colors.${t}`,t),{isValid:o}=new Ad(r);return o?r:n},Are=e=>t=>{const n=vn(t,e);return new Ad(n).isDark()?"dark":"light"},Tre=e=>t=>Are(e)(t)==="dark",Eu=(e,t)=>n=>{const r=vn(n,e);return new Ad(r).setAlpha(t).toRgbString()};function V8(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( - 45deg, - ${t} 25%, - transparent 25%, - transparent 50%, - ${t} 50%, - ${t} 75%, - transparent 75%, - transparent - )`,backgroundSize:`${e} ${e}`}}function Ire(e){const t=YA().toHexString();return!e||Pre(e)?t:e.string&&e.colors?Mre(e.string,e.colors):e.string&&!e.colors?Ore(e.string):e.colors&&!e.string?Rre(e.colors):t}function Ore(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255).toString(16)}`.substr(-2);return n}function Mre(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function Rb(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function Nre(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function eT(e){return Nre(e)&&e.reference?e.reference:String(e)}var Pm=(e,...t)=>t.map(eT).join(` ${e} `).replace(/calc/g,""),W8=(...e)=>`calc(${Pm("+",...e)})`,j8=(...e)=>`calc(${Pm("-",...e)})`,N4=(...e)=>`calc(${Pm("*",...e)})`,H8=(...e)=>`calc(${Pm("/",...e)})`,U8=e=>{const t=eT(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:N4(t,-1)},Wi=Object.assign(e=>({add:(...t)=>Wi(W8(e,...t)),subtract:(...t)=>Wi(j8(e,...t)),multiply:(...t)=>Wi(N4(e,...t)),divide:(...t)=>Wi(H8(e,...t)),negate:()=>Wi(U8(e)),toString:()=>e.toString()}),{add:W8,subtract:j8,multiply:N4,divide:H8,negate:U8});function Dre(e){return!Number.isInteger(parseFloat(e.toString()))}function zre(e,t="-"){return e.replace(/\s+/g,t)}function tT(e){const t=zre(e.toString());return t.includes("\\.")?e:Dre(e)?t.replace(".","\\."):e}function Fre(e,t=""){return[t,tT(e)].filter(Boolean).join("-")}function Bre(e,t){return`var(${tT(e)}${t?`, ${t}`:""})`}function $re(e,t=""){return`--${Fre(e,t)}`}function Er(e,t){const n=$re(e,t?.prefix);return{variable:n,reference:Bre(n,Vre(t?.fallback))}}function Vre(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:Wre,defineMultiStyleConfig:jre}=Bt($ne.keys),Hre={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},Ure={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},Gre={pt:"2",px:"4",pb:"5"},Zre={fontSize:"1.25em"},Kre=Wre({container:Hre,button:Ure,panel:Gre,icon:Zre}),qre=jre({baseStyle:Kre}),{definePartsStyle:Td,defineMultiStyleConfig:Yre}=Bt(Vne.keys),Ji=ts("alert-fg"),Id=ts("alert-bg"),Xre=Td({container:{bg:Id.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:Ji.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:Ji.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function Nb(e){const{theme:t,colorScheme:n}=e,r=vn(t,`${n}.100`,n),o=Eu(`${n}.200`,.16)(t);return re(r,o)(e)}var Qre=Td(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[Id.variable]:Nb(e),[Ji.variable]:`colors.${n}`}}}),Jre=Td(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[Id.variable]:Nb(e),[Ji.variable]:`colors.${n}`,paddingStart:"3",borderStartWidth:"4px",borderStartColor:Ji.reference}}}),eoe=Td(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[Id.variable]:Nb(e),[Ji.variable]:`colors.${n}`,pt:"2",borderTopWidth:"4px",borderTopColor:Ji.reference}}}),toe=Td(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e),r=re("white","gray.900")(e);return{container:{[Id.variable]:`colors.${n}`,[Ji.variable]:`colors.${r}`,color:Ji.reference}}}),noe={subtle:Qre,"left-accent":Jre,"top-accent":eoe,solid:toe},roe=Yre({baseStyle:Xre,variants:noe,defaultProps:{variant:"subtle",colorScheme:"blue"}}),nT={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},ooe={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},ioe={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},aoe={...nT,...ooe,container:ioe},rT=aoe,soe=e=>typeof e=="function";function on(e,...t){return soe(e)?e(...t):e}var{definePartsStyle:oT,defineMultiStyleConfig:loe}=Bt(Wne.keys),uoe=e=>({borderRadius:"full",border:"0.2em solid",borderColor:re("white","gray.800")(e)}),coe=e=>({bg:re("gray.200","whiteAlpha.400")(e)}),foe=e=>{const{name:t,theme:n}=e,r=t?Ire({string:t}):"gray.400",o=Tre(r)(n);let i="white";o||(i="gray.800");const s=re("white","gray.800")(e);return{bg:r,color:i,borderColor:s,verticalAlign:"top"}},doe=oT(e=>({badge:on(uoe,e),excessLabel:on(coe,e),container:on(foe,e)}));function va(e){const t=e!=="100%"?rT[e]:void 0;return oT({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var poe={"2xs":va(4),xs:va(6),sm:va(8),md:va(12),lg:va(16),xl:va(24),"2xl":va(32),full:va("100%")},hoe=loe({baseStyle:doe,sizes:poe,defaultProps:{size:"md"}}),moe={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},goe=e=>{const{colorScheme:t,theme:n}=e,r=Eu(`${t}.500`,.6)(n);return{bg:re(`${t}.500`,r)(e),color:re("white","whiteAlpha.800")(e)}},voe=e=>{const{colorScheme:t,theme:n}=e,r=Eu(`${t}.200`,.16)(n);return{bg:re(`${t}.100`,r)(e),color:re(`${t}.800`,`${t}.200`)(e)}},yoe=e=>{const{colorScheme:t,theme:n}=e,r=Eu(`${t}.200`,.8)(n),o=vn(n,`${t}.500`),i=re(o,r)(e);return{color:i,boxShadow:`inset 0 0 0px 1px ${i}`}},boe={solid:goe,subtle:voe,outline:yoe},df={baseStyle:moe,variants:boe,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:xoe,definePartsStyle:woe}=Bt(jne.keys),Soe={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},Coe=woe({link:Soe}),_oe=xoe({baseStyle:Coe}),koe={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},iT=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:re("inherit","whiteAlpha.900")(e),_hover:{bg:re("gray.100","whiteAlpha.200")(e)},_active:{bg:re("gray.200","whiteAlpha.300")(e)}};const r=Eu(`${t}.200`,.12)(n),o=Eu(`${t}.200`,.24)(n);return{color:re(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:re(`${t}.50`,r)(e)},_active:{bg:re(`${t}.100`,o)(e)}}},Eoe=e=>{const{colorScheme:t}=e,n=re("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...on(iT,e)}},Loe={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},Poe=e=>{const{colorScheme:t}=e;if(t==="gray"){const u=re("gray.100","whiteAlpha.200")(e);return{bg:u,_hover:{bg:re("gray.200","whiteAlpha.300")(e),_disabled:{bg:u}},_active:{bg:re("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:o=`${t}.600`,activeBg:i=`${t}.700`}=Loe[t]??{},s=re(n,`${t}.200`)(e);return{bg:s,color:re(r,"gray.800")(e),_hover:{bg:re(o,`${t}.300`)(e),_disabled:{bg:s}},_active:{bg:re(i,`${t}.400`)(e)}}},Aoe=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:re(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:re(`${t}.700`,`${t}.500`)(e)}}},Toe={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},Ioe={ghost:iT,outline:Eoe,solid:Poe,link:Aoe,unstyled:Toe},Ooe={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},Moe={baseStyle:koe,variants:Ioe,sizes:Ooe,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:r1,defineMultiStyleConfig:Roe}=Bt(Hne.keys),pf=ts("checkbox-size"),Noe=e=>{const{colorScheme:t}=e;return{w:pf.reference,h:pf.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:re(`${t}.500`,`${t}.200`)(e),borderColor:re(`${t}.500`,`${t}.200`)(e),color:re("white","gray.900")(e),_hover:{bg:re(`${t}.600`,`${t}.300`)(e),borderColor:re(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:re("gray.200","transparent")(e),bg:re("gray.200","whiteAlpha.300")(e),color:re("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:re(`${t}.500`,`${t}.200`)(e),borderColor:re(`${t}.500`,`${t}.200`)(e),color:re("white","gray.900")(e)},_disabled:{bg:re("gray.100","whiteAlpha.100")(e),borderColor:re("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:re("red.500","red.300")(e)}}},Doe={_disabled:{cursor:"not-allowed"}},zoe={userSelect:"none",_disabled:{opacity:.4}},Foe={transitionProperty:"transform",transitionDuration:"normal"},Boe=r1(e=>({icon:Foe,container:Doe,control:on(Noe,e),label:zoe})),$oe={sm:r1({control:{[pf.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:r1({control:{[pf.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:r1({control:{[pf.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},c0=Roe({baseStyle:Boe,sizes:$oe,defaultProps:{size:"md",colorScheme:"blue"}}),hf=Er("close-button-size"),Voe=e=>{const t=re("blackAlpha.100","whiteAlpha.100")(e),n=re("blackAlpha.200","whiteAlpha.200")(e);return{w:[hf.reference],h:[hf.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},Woe={lg:{[hf.variable]:"sizes.10",fontSize:"md"},md:{[hf.variable]:"sizes.8",fontSize:"xs"},sm:{[hf.variable]:"sizes.6",fontSize:"2xs"}},joe={baseStyle:Voe,sizes:Woe,defaultProps:{size:"md"}},{variants:Hoe,defaultProps:Uoe}=df,Goe={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},Zoe={baseStyle:Goe,variants:Hoe,defaultProps:Uoe},Koe={w:"100%",mx:"auto",maxW:"prose",px:"4"},qoe={baseStyle:Koe},Yoe={opacity:.6,borderColor:"inherit"},Xoe={borderStyle:"solid"},Qoe={borderStyle:"dashed"},Joe={solid:Xoe,dashed:Qoe},eie={baseStyle:Yoe,variants:Joe,defaultProps:{variant:"solid"}},{definePartsStyle:D4,defineMultiStyleConfig:tie}=Bt(Une.keys);function Pl(e){return D4(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var nie={bg:"blackAlpha.600",zIndex:"overlay"},rie={display:"flex",zIndex:"modal",justifyContent:"center"},oie=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:re("white","gray.700")(e),color:"inherit",boxShadow:re("lg","dark-lg")(e)}},iie={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},aie={position:"absolute",top:"2",insetEnd:"3"},sie={px:"6",py:"2",flex:"1",overflow:"auto"},lie={px:"6",py:"4"},uie=D4(e=>({overlay:nie,dialogContainer:rie,dialog:on(oie,e),header:iie,closeButton:aie,body:sie,footer:lie})),cie={xs:Pl("xs"),sm:Pl("md"),md:Pl("lg"),lg:Pl("2xl"),xl:Pl("4xl"),full:Pl("full")},fie=tie({baseStyle:uie,sizes:cie,defaultProps:{size:"xs"}}),{definePartsStyle:die,defineMultiStyleConfig:pie}=Bt(Gne.keys),hie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},mie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},gie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},vie=die({preview:hie,input:mie,textarea:gie}),yie=pie({baseStyle:vie}),{definePartsStyle:bie,defineMultiStyleConfig:xie}=Bt(Zne.keys),wie=e=>({marginStart:"1",color:re("red.500","red.300")(e)}),Sie=e=>({mt:"2",color:re("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),Cie=bie(e=>({container:{width:"100%",position:"relative"},requiredIndicator:on(wie,e),helperText:on(Sie,e)})),_ie=xie({baseStyle:Cie}),{definePartsStyle:kie,defineMultiStyleConfig:Eie}=Bt(Kne.keys),Lie=e=>({color:re("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),Pie=e=>({marginEnd:"0.5em",color:re("red.500","red.300")(e)}),Aie=kie(e=>({text:on(Lie,e),icon:on(Pie,e)})),Tie=Eie({baseStyle:Aie}),Iie={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},Oie={baseStyle:Iie},Mie={fontFamily:"heading",fontWeight:"bold"},Rie={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},Nie={baseStyle:Mie,sizes:Rie,defaultProps:{size:"xl"}},{definePartsStyle:Ui,defineMultiStyleConfig:Die}=Bt(qne.keys),zie=Ui({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),ya={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},Fie={lg:Ui({field:ya.lg,addon:ya.lg}),md:Ui({field:ya.md,addon:ya.md}),sm:Ui({field:ya.sm,addon:ya.sm}),xs:Ui({field:ya.xs,addon:ya.xs})};function Db(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||re("blue.500","blue.300")(e),errorBorderColor:n||re("red.500","red.300")(e)}}var Bie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Db(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:re("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r),boxShadow:`0 0 0 1px ${vn(t,r)}`},_focusVisible:{zIndex:1,borderColor:vn(t,n),boxShadow:`0 0 0 1px ${vn(t,n)}`}},addon:{border:"1px solid",borderColor:re("inherit","whiteAlpha.50")(e),bg:re("gray.100","whiteAlpha.300")(e)}}}),$ie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Db(e);return{field:{border:"2px solid",borderColor:"transparent",bg:re("gray.100","whiteAlpha.50")(e),_hover:{bg:re("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r)},_focusVisible:{bg:"transparent",borderColor:vn(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:re("gray.100","whiteAlpha.50")(e)}}}),Vie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Db(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r),boxShadow:`0px 1px 0px 0px ${vn(t,r)}`},_focusVisible:{borderColor:vn(t,n),boxShadow:`0px 1px 0px 0px ${vn(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),Wie=Ui({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),jie={outline:Bie,filled:$ie,flushed:Vie,unstyled:Wie},at=Die({baseStyle:zie,sizes:Fie,variants:jie,defaultProps:{size:"md",variant:"outline"}}),Hie=e=>({bg:re("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),Uie={baseStyle:Hie},Gie={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},Zie={baseStyle:Gie},{defineMultiStyleConfig:Kie,definePartsStyle:qie}=Bt(Yne.keys),Yie={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},Xie=qie({icon:Yie}),Qie=Kie({baseStyle:Xie}),{defineMultiStyleConfig:Jie,definePartsStyle:eae}=Bt(Xne.keys),tae=e=>({bg:re("#fff","gray.700")(e),boxShadow:re("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),nae=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:re("gray.100","whiteAlpha.100")(e)},_active:{bg:re("gray.200","whiteAlpha.200")(e)},_expanded:{bg:re("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),rae={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},oae={opacity:.6},iae={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},aae={transitionProperty:"common",transitionDuration:"normal"},sae=eae(e=>({button:aae,list:on(tae,e),item:on(nae,e),groupTitle:rae,command:oae,divider:iae})),lae=Jie({baseStyle:sae}),{defineMultiStyleConfig:uae,definePartsStyle:z4}=Bt(Qne.keys),cae={bg:"blackAlpha.600",zIndex:"modal"},fae=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},dae=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:re("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:re("lg","dark-lg")(e)}},pae={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},hae={position:"absolute",top:"2",insetEnd:"3"},mae=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},gae={px:"6",py:"4"},vae=z4(e=>({overlay:cae,dialogContainer:on(fae,e),dialog:on(dae,e),header:pae,closeButton:hae,body:on(mae,e),footer:gae}));function Po(e){return z4(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var yae={xs:Po("xs"),sm:Po("sm"),md:Po("md"),lg:Po("lg"),xl:Po("xl"),"2xl":Po("2xl"),"3xl":Po("3xl"),"4xl":Po("4xl"),"5xl":Po("5xl"),"6xl":Po("6xl"),full:Po("full")},bae=uae({baseStyle:vae,sizes:yae,defaultProps:{size:"md"}}),xae={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},aT=xae,{defineMultiStyleConfig:wae,definePartsStyle:sT}=Bt(Jne.keys),zb=Er("number-input-stepper-width"),lT=Er("number-input-input-padding"),Sae=Wi(zb).add("0.5rem").toString(),Cae={[zb.variable]:"sizes.6",[lT.variable]:Sae},_ae=e=>{var t;return((t=on(at.baseStyle,e))==null?void 0:t.field)??{}},kae={width:[zb.reference]},Eae=e=>({borderStart:"1px solid",borderStartColor:re("inherit","whiteAlpha.300")(e),color:re("inherit","whiteAlpha.800")(e),_active:{bg:re("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),Lae=sT(e=>({root:Cae,field:_ae,stepperGroup:kae,stepper:on(Eae,e)??{}}));function Sh(e){var t,n;const r=(t=at.sizes)==null?void 0:t[e],o={lg:"md",md:"md",sm:"sm",xs:"sm"},i=((n=r.field)==null?void 0:n.fontSize)??"md",s=aT.fontSizes[i];return sT({field:{...r.field,paddingInlineEnd:lT.reference,verticalAlign:"top"},stepper:{fontSize:Wi(s).multiply(.75).toString(),_first:{borderTopEndRadius:o[e]},_last:{borderBottomEndRadius:o[e],mt:"-1px",borderTopWidth:1}}})}var Pae={xs:Sh("xs"),sm:Sh("sm"),md:Sh("md"),lg:Sh("lg")},Aae=wae({baseStyle:Lae,sizes:Pae,variants:at.variants,defaultProps:at.defaultProps}),G8,Tae={...(G8=at.baseStyle)==null?void 0:G8.field,textAlign:"center"},Iae={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},Z8,Oae={outline:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((Z8=at.variants)==null?void 0:Z8.unstyled.field)??{}},Mae={baseStyle:Tae,sizes:Iae,variants:Oae,defaultProps:at.defaultProps},{defineMultiStyleConfig:Rae,definePartsStyle:Nae}=Bt(ere.keys),E2=Er("popper-bg"),Dae=Er("popper-arrow-bg"),zae=Er("popper-arrow-shadow-color"),Fae={zIndex:10},Bae=e=>{const t=re("white","gray.700")(e),n=re("gray.200","whiteAlpha.300")(e);return{[E2.variable]:`colors.${t}`,bg:E2.reference,[Dae.variable]:E2.reference,[zae.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},$ae={px:3,py:2,borderBottomWidth:"1px"},Vae={px:3,py:2},Wae={px:3,py:2,borderTopWidth:"1px"},jae={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},Hae=Nae(e=>({popper:Fae,content:Bae(e),header:$ae,body:Vae,footer:Wae,closeButton:jae})),Uae=Rae({baseStyle:Hae}),{defineMultiStyleConfig:Gae,definePartsStyle:Wc}=Bt(tre.keys),Zae=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:o}=e,i=re(V8(),V8("1rem","rgba(0,0,0,0.1)"))(e),s=re(`${t}.500`,`${t}.200`)(e),u=`linear-gradient( - to right, - transparent 0%, - ${vn(n,s)} 50%, - transparent 100% - )`;return{...!r&&o&&i,...r?{bgImage:u}:{bgColor:s}}},Kae={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},qae=e=>({bg:re("gray.100","whiteAlpha.300")(e)}),Yae=e=>({transitionProperty:"common",transitionDuration:"slow",...Zae(e)}),Xae=Wc(e=>({label:Kae,filledTrack:Yae(e),track:qae(e)})),Qae={xs:Wc({track:{h:"1"}}),sm:Wc({track:{h:"2"}}),md:Wc({track:{h:"3"}}),lg:Wc({track:{h:"4"}})},Jae=Gae({sizes:Qae,baseStyle:Xae,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:ese,definePartsStyle:o1}=Bt(nre.keys),tse=e=>{var t;const n=(t=on(c0.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},nse=o1(e=>{var t,n,r,o;return{label:(n=(t=c0).baseStyle)==null?void 0:n.call(t,e).label,container:(o=(r=c0).baseStyle)==null?void 0:o.call(r,e).container,control:tse(e)}}),rse={md:o1({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:o1({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:o1({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},ose=ese({baseStyle:nse,sizes:rse,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:ise,definePartsStyle:ase}=Bt(rre.keys),sse=e=>{var t;return{...(t=at.baseStyle)==null?void 0:t.field,bg:re("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:re("white","gray.700")(e)}}},lse={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},use=ase(e=>({field:sse(e),icon:lse})),Ch={paddingInlineEnd:"8"},K8,q8,Y8,X8,Q8,J8,e7,t7,cse={lg:{...(K8=at.sizes)==null?void 0:K8.lg,field:{...(q8=at.sizes)==null?void 0:q8.lg.field,...Ch}},md:{...(Y8=at.sizes)==null?void 0:Y8.md,field:{...(X8=at.sizes)==null?void 0:X8.md.field,...Ch}},sm:{...(Q8=at.sizes)==null?void 0:Q8.sm,field:{...(J8=at.sizes)==null?void 0:J8.sm.field,...Ch}},xs:{...(e7=at.sizes)==null?void 0:e7.xs,field:{...(t7=at.sizes)==null?void 0:t7.sm.field,...Ch},icon:{insetEnd:"1"}}},fse=ise({baseStyle:use,sizes:cse,variants:at.variants,defaultProps:at.defaultProps}),dse=ts("skeleton-start-color"),pse=ts("skeleton-end-color"),hse=e=>{const t=re("gray.100","gray.800")(e),n=re("gray.400","gray.600")(e),{startColor:r=t,endColor:o=n,theme:i}=e,s=vn(i,r),u=vn(i,o);return{[dse.variable]:s,[pse.variable]:u,opacity:.7,borderRadius:"2px",borderColor:s,background:u}},mse={baseStyle:hse},gse=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:re("white","gray.700")(e)}}),vse={baseStyle:gse},{defineMultiStyleConfig:yse,definePartsStyle:Am}=Bt(ore.keys),Jf=ts("slider-thumb-size"),ed=ts("slider-track-size"),bse=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...Rb({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},xse=e=>({...Rb({orientation:e.orientation,horizontal:{h:ed.reference},vertical:{w:ed.reference}}),overflow:"hidden",borderRadius:"sm",bg:re("gray.200","whiteAlpha.200")(e),_disabled:{bg:re("gray.300","whiteAlpha.300")(e)}}),wse=e=>{const{orientation:t}=e;return{...Rb({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:Jf.reference,h:Jf.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},Sse=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:re(`${t}.500`,`${t}.200`)(e)}},Cse=Am(e=>({container:bse(e),track:xse(e),thumb:wse(e),filledTrack:Sse(e)})),_se=Am({container:{[Jf.variable]:"sizes.4",[ed.variable]:"sizes.1"}}),kse=Am({container:{[Jf.variable]:"sizes.3.5",[ed.variable]:"sizes.1"}}),Ese=Am({container:{[Jf.variable]:"sizes.2.5",[ed.variable]:"sizes.0.5"}}),Lse={lg:_se,md:kse,sm:Ese},Pse=yse({baseStyle:Cse,sizes:Lse,defaultProps:{size:"md",colorScheme:"blue"}}),xs=Er("spinner-size"),Ase={width:[xs.reference],height:[xs.reference]},Tse={xs:{[xs.variable]:"sizes.3"},sm:{[xs.variable]:"sizes.4"},md:{[xs.variable]:"sizes.6"},lg:{[xs.variable]:"sizes.8"},xl:{[xs.variable]:"sizes.12"}},Ise={baseStyle:Ase,sizes:Tse,defaultProps:{size:"md"}},{defineMultiStyleConfig:Ose,definePartsStyle:uT}=Bt(ire.keys),Mse={fontWeight:"medium"},Rse={opacity:.8,marginBottom:"2"},Nse={verticalAlign:"baseline",fontWeight:"semibold"},Dse={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},zse=uT({container:{},label:Mse,helpText:Rse,number:Nse,icon:Dse}),Fse={md:uT({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},Bse=Ose({baseStyle:zse,sizes:Fse,defaultProps:{size:"md"}}),{defineMultiStyleConfig:$se,definePartsStyle:i1}=Bt(are.keys),mf=Er("switch-track-width"),Ms=Er("switch-track-height"),L2=Er("switch-track-diff"),Vse=Wi.subtract(mf,Ms),F4=Er("switch-thumb-x"),Wse=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[mf.reference],height:[Ms.reference],transitionProperty:"common",transitionDuration:"fast",bg:re("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:re(`${t}.500`,`${t}.200`)(e)}}},jse={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[Ms.reference],height:[Ms.reference],_checked:{transform:`translateX(${F4.reference})`}},Hse=i1(e=>({container:{[L2.variable]:Vse,[F4.variable]:L2.reference,_rtl:{[F4.variable]:Wi(L2).negate().toString()}},track:Wse(e),thumb:jse})),Use={sm:i1({container:{[mf.variable]:"1.375rem",[Ms.variable]:"sizes.3"}}),md:i1({container:{[mf.variable]:"1.875rem",[Ms.variable]:"sizes.4"}}),lg:i1({container:{[mf.variable]:"2.875rem",[Ms.variable]:"sizes.6"}})},Gse=$se({baseStyle:Hse,sizes:Use,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Zse,definePartsStyle:lu}=Bt(sre.keys),Kse=lu({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),f0={"&[data-is-numeric=true]":{textAlign:"end"}},qse=lu(e=>{const{colorScheme:t}=e;return{th:{color:re("gray.600","gray.400")(e),borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...f0},td:{borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...f0},caption:{color:re("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Yse=lu(e=>{const{colorScheme:t}=e;return{th:{color:re("gray.600","gray.400")(e),borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...f0},td:{borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...f0},caption:{color:re("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e)},td:{background:re(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Xse={simple:qse,striped:Yse,unstyled:{}},Qse={sm:lu({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:lu({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:lu({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},Jse=Zse({baseStyle:Kse,variants:Xse,sizes:Qse,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:ele,definePartsStyle:fi}=Bt(lre.keys),tle=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},nle=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},rle=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},ole={p:4},ile=fi(e=>({root:tle(e),tab:nle(e),tablist:rle(e),tabpanel:ole})),ale={sm:fi({tab:{py:1,px:4,fontSize:"sm"}}),md:fi({tab:{fontSize:"md",py:2,px:4}}),lg:fi({tab:{fontSize:"lg",py:3,px:4}})},sle=fi(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",o=n==="vertical"?"borderStart":"borderBottom",i=r?"marginStart":"marginBottom";return{tablist:{[o]:"2px solid",borderColor:"inherit"},tab:{[o]:"2px solid",borderColor:"transparent",[i]:"-2px",_selected:{color:re(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:re("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),lle=fi(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:re(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:re("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),ule=fi(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:re("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:re("#fff","gray.800")(e),color:re(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),cle=fi(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:vn(n,`${t}.700`),bg:vn(n,`${t}.100`)}}}}),fle=fi(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:re("gray.600","inherit")(e),_selected:{color:re("#fff","gray.800")(e),bg:re(`${t}.600`,`${t}.300`)(e)}}}}),dle=fi({}),ple={line:sle,enclosed:lle,"enclosed-colored":ule,"soft-rounded":cle,"solid-rounded":fle,unstyled:dle},hle=ele({baseStyle:ile,sizes:ale,variants:ple,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:mle,definePartsStyle:Rs}=Bt(ure.keys),gle={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},vle={lineHeight:1.2,overflow:"visible"},yle={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},ble=Rs({container:gle,label:vle,closeButton:yle}),xle={sm:Rs({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:Rs({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:Rs({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},wle={subtle:Rs(e=>{var t;return{container:(t=df.variants)==null?void 0:t.subtle(e)}}),solid:Rs(e=>{var t;return{container:(t=df.variants)==null?void 0:t.solid(e)}}),outline:Rs(e=>{var t;return{container:(t=df.variants)==null?void 0:t.outline(e)}})},Sle=mle({variants:wle,baseStyle:ble,sizes:xle,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),n7,Cle={...(n7=at.baseStyle)==null?void 0:n7.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},r7,_le={outline:e=>{var t;return((t=at.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=at.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=at.variants)==null?void 0:t.filled(e).field)??{}},unstyled:((r7=at.variants)==null?void 0:r7.unstyled.field)??{}},o7,i7,a7,s7,kle={xs:((o7=at.sizes)==null?void 0:o7.xs.field)??{},sm:((i7=at.sizes)==null?void 0:i7.sm.field)??{},md:((a7=at.sizes)==null?void 0:a7.md.field)??{},lg:((s7=at.sizes)==null?void 0:s7.lg.field)??{}},Ele={baseStyle:Cle,sizes:kle,variants:_le,defaultProps:{size:"md",variant:"outline"}},P2=Er("tooltip-bg"),l7=Er("tooltip-fg"),Lle=Er("popper-arrow-bg"),Ple=e=>{const t=re("gray.700","gray.300")(e),n=re("whiteAlpha.900","gray.900")(e);return{bg:P2.reference,color:l7.reference,[P2.variable]:`colors.${t}`,[l7.variable]:`colors.${n}`,[Lle.variable]:P2.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},Ale={baseStyle:Ple},Tle={Accordion:qre,Alert:roe,Avatar:hoe,Badge:df,Breadcrumb:_oe,Button:Moe,Checkbox:c0,CloseButton:joe,Code:Zoe,Container:qoe,Divider:eie,Drawer:fie,Editable:yie,Form:_ie,FormError:Tie,FormLabel:Oie,Heading:Nie,Input:at,Kbd:Uie,Link:Zie,List:Qie,Menu:lae,Modal:bae,NumberInput:Aae,PinInput:Mae,Popover:Uae,Progress:Jae,Radio:ose,Select:fse,Skeleton:mse,SkipLink:vse,Slider:Pse,Spinner:Ise,Stat:Bse,Switch:Gse,Table:Jse,Tabs:hle,Tag:Sle,Textarea:Ele,Tooltip:Ale},Ile={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},Ole=Ile,Mle={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},Rle=Mle,Nle={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},Dle=Nle,zle={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},Fle=zle,Ble={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},$le=Ble,Vle={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Wle={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},jle={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},Hle={property:Vle,easing:Wle,duration:jle},Ule=Hle,Gle={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},Zle=Gle,Kle={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},qle=Kle,Yle={breakpoints:Rle,zIndices:Zle,radii:Fle,blur:qle,colors:Dle,...aT,sizes:rT,shadows:$le,space:nT,borders:Ole,transition:Ule},Xle={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},Qle={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function Jle(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var eue=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function tue(e){return Jle(e)?eue.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var nue="ltr",rue={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},cT={semanticTokens:Xle,direction:nue,...Yle,components:Tle,styles:Qle,config:rue};function oue(e,t){const n=Gn(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function B4(e,...t){return iue(e)?e(...t):e}var iue=e=>typeof e=="function";function aue(e,t){const n=e??"bottom",o={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return o?.[t]??n}var sue=(e,t)=>e.find(n=>n.id===t);function u7(e,t){const n=fT(e,t),r=n?e[n].findIndex(o=>o.id===t):-1;return{position:n,index:r}}function fT(e,t){for(const[n,r]of Object.entries(e))if(sue(r,t))return n}function lue(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function uue(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,o=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,i=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",s=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:o,right:i,left:s}}var cue={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},ni=fue(cue);function fue(e){let t=e;const n=new Set,r=o=>{t=o(t),n.forEach(i=>i())};return{getState:()=>t,subscribe:o=>(n.add(o),()=>{r(()=>e),n.delete(o)}),removeToast:(o,i)=>{r(s=>({...s,[i]:s[i].filter(u=>u.id!=o)}))},notify:(o,i)=>{const s=due(o,i),{position:u,id:c}=s;return r(f=>{const h=u.includes("top")?[s,...f[u]??[]]:[...f[u]??[],s];return{...f,[u]:h}}),c},update:(o,i)=>{!o||r(s=>{const u={...s},{position:c,index:f}=u7(u,o);return c&&f!==-1&&(u[c][f]={...u[c][f],...i,message:dT(i)}),u})},closeAll:({positions:o}={})=>{r(i=>(o??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((c,f)=>(c[f]=i[f].map(d=>({...d,requestClose:!0})),c),{...i}))},close:o=>{r(i=>{const s=fT(i,o);return s?{...i,[s]:i[s].map(u=>u.id==o?{...u,requestClose:!0}:u)}:i})},isActive:o=>Boolean(u7(ni.getState(),o).position)}}var c7=0;function due(e,t={}){c7+=1;const n=t.id??c7,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>ni.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var pue=e=>{const{status:t,variant:n="solid",id:r,title:o,isClosable:i,onClose:s,description:u,icon:c}=e,f=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return X.createElement(QL,{addRole:!1,status:t,variant:n,id:f?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},v(eP,{children:c}),X.createElement(oe.div,{flex:"1",maxWidth:"100%"},o&&v(tP,{id:f?.title,children:o}),u&&v(JL,{id:f?.description,display:"block",children:u})),i&&v(Sm,{size:"sm",onClick:s,position:"absolute",insetEnd:1,top:1}))};function dT(e={}){const{render:t,toastComponent:n=pue}=e;return o=>typeof t=="function"?t(o):v(n,{...o,...e})}function hue(e,t){const n=o=>({...t,...o,position:aue(o?.position??t?.position,e)}),r=o=>{const i=n(o),s=dT(i);return ni.notify(s,i)};return r.update=(o,i)=>{ni.update(o,n(i))},r.promise=(o,i)=>{const s=r({...i.loading,status:"loading",duration:null});o.then(u=>r.update(s,{status:"success",duration:5e3,...B4(i.success,u)})).catch(u=>r.update(s,{status:"error",duration:5e3,...B4(i.error,u)}))},r.closeAll=ni.closeAll,r.close=ni.close,r.isActive=ni.isActive,r}function pT(e){const{theme:t}=cE();return C.exports.useMemo(()=>hue(t.direction,e),[e,t.direction])}var mue={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},hT=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:o,requestClose:i=!1,position:s="bottom",duration:u=5e3,containerStyle:c,motionVariants:f=mue,toastSpacing:d="0.5rem"}=e,[h,m]=C.exports.useState(u),g=wZ();r0(()=>{g||r?.()},[g]),r0(()=>{m(u)},[u]);const b=()=>m(null),x=()=>m(u),k=()=>{g&&o()};C.exports.useEffect(()=>{g&&i&&o()},[g,i,o]),oue(k,h);const S=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:d,...c}),[c,d]),w=C.exports.useMemo(()=>lue(s),[s]);return X.createElement(go.li,{layout:!0,className:"chakra-toast",variants:f,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:x,custom:{position:s},style:w},X.createElement(oe.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:S},B4(n,{id:t,onClose:k})))});hT.displayName="ToastComponent";var gue=e=>{const t=C.exports.useSyncExternalStore(ni.subscribe,ni.getState,ni.getState),{children:n,motionVariants:r,component:o=hT,portalProps:i}=e,u=Object.keys(t).map(c=>{const f=t[c];return v("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${c}`,style:uue(c),children:v(na,{initial:!1,children:f.map(d=>v(o,{motionVariants:r,...d},d.id))})},c)});return q(yn,{children:[n,v(Zs,{...i,children:u})]})};function vue(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function yue(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var bue={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function Oc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var $4=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},V4=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function xue(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:o,closeOnEsc:i=!0,onOpen:s,onClose:u,placement:c,id:f,isOpen:d,defaultIsOpen:h,arrowSize:m=10,arrowShadowColor:g,arrowPadding:b,modifiers:x,isDisabled:k,gutter:S,offset:w,direction:_,...L}=e,{isOpen:T,onOpen:R,onClose:N}=BP({isOpen:d,defaultIsOpen:h,onOpen:s,onClose:u}),{referenceRef:z,getPopperProps:K,getArrowInnerProps:W,getArrowProps:J}=FP({enabled:T,placement:c,arrowPadding:b,modifiers:x,gutter:S,offset:w,direction:_}),ve=C.exports.useId(),he=`tooltip-${f??ve}`,fe=C.exports.useRef(null),me=C.exports.useRef(),ne=C.exports.useRef(),j=C.exports.useCallback(()=>{ne.current&&(clearTimeout(ne.current),ne.current=void 0),N()},[N]),Y=wue(fe,j),Z=C.exports.useCallback(()=>{if(!k&&!me.current){Y();const de=V4(fe);me.current=de.setTimeout(R,t)}},[Y,k,R,t]),O=C.exports.useCallback(()=>{me.current&&(clearTimeout(me.current),me.current=void 0);const de=V4(fe);ne.current=de.setTimeout(j,n)},[n,j]),H=C.exports.useCallback(()=>{T&&r&&O()},[r,O,T]),se=C.exports.useCallback(()=>{T&&o&&O()},[o,O,T]),ce=C.exports.useCallback(de=>{T&&de.key==="Escape"&&O()},[T,O]);w4(()=>$4(fe),"keydown",i?ce:void 0),C.exports.useEffect(()=>()=>{clearTimeout(me.current),clearTimeout(ne.current)},[]),w4(()=>fe.current,"mouseleave",O);const ye=C.exports.useCallback((de={},_e=null)=>({...de,ref:qt(fe,_e,z),onMouseEnter:Oc(de.onMouseEnter,Z),onClick:Oc(de.onClick,H),onMouseDown:Oc(de.onMouseDown,se),onFocus:Oc(de.onFocus,Z),onBlur:Oc(de.onBlur,O),"aria-describedby":T?he:void 0}),[Z,O,se,T,he,H,z]),be=C.exports.useCallback((de={},_e=null)=>K({...de,style:{...de.style,[cn.arrowSize.var]:m?`${m}px`:void 0,[cn.arrowShadowColor.var]:g}},_e),[K,m,g]),Pe=C.exports.useCallback((de={},_e=null)=>{const De={...de.style,position:"relative",transformOrigin:cn.transformOrigin.varRef};return{ref:_e,...L,...de,id:he,role:"tooltip",style:De}},[L,he]);return{isOpen:T,show:Z,hide:O,getTriggerProps:ye,getTooltipProps:Pe,getTooltipPositionerProps:be,getArrowProps:J,getArrowInnerProps:W}}var A2="chakra-ui:close-tooltip";function wue(e,t){return C.exports.useEffect(()=>{const n=$4(e);return n.addEventListener(A2,t),()=>n.removeEventListener(A2,t)},[t,e]),()=>{const n=$4(e),r=V4(e);n.dispatchEvent(new r.CustomEvent(A2))}}var Sue=oe(go.div),Rn=ue((e,t)=>{const n=cr("Tooltip",e),r=vt(e),o=nm(),{children:i,label:s,shouldWrapChildren:u,"aria-label":c,hasArrow:f,bg:d,portalProps:h,background:m,backgroundColor:g,bgColor:b,...x}=r,k=m??g??d??b;if(k){n.bg=k;const z=FW(o,"colors",k);n[cn.arrowBg.var]=z}const S=xue({...x,direction:o.direction}),w=typeof i=="string"||u;let _;if(w)_=X.createElement(oe.span,{tabIndex:0,...S.getTriggerProps()},i);else{const z=C.exports.Children.only(i);_=C.exports.cloneElement(z,S.getTriggerProps(z.props,z.ref))}const L=!!c,T=S.getTooltipProps({},t),R=L?vue(T,["role","id"]):T,N=yue(T,["role","id"]);return s?q(yn,{children:[_,v(na,{children:S.isOpen&&X.createElement(Zs,{...h},X.createElement(oe.div,{...S.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},q(Sue,{variants:bue,...R,initial:"exit",animate:"enter",exit:"exit",__css:n,children:[s,L&&X.createElement(oe.span,{srOnly:!0,...N},c),f&&X.createElement(oe.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},X.createElement(oe.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):v(yn,{children:i})});Rn.displayName="Tooltip";var Cue=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:o=!0,theme:i={},environment:s,cssVarsRoot:u}=e,c=v(LP,{environment:s,children:t});return v(RH,{theme:i,cssVarsRoot:u,children:q(Pk,{colorModeManager:n,options:i.config,children:[o?v(fX,{}):v(cX,{}),v(DH,{}),r?v(VP,{zIndex:r,children:c}):c]})})};function _ue({children:e,theme:t=cT,toastOptions:n,...r}){return q(Cue,{theme:t,...r,children:[e,v(gue,{...n})]})}function kue(...e){let t=[...e],n=e[e.length-1];return tue(n)&&t.length>1?t=t.slice(0,t.length-1):n=cT,Jj(...t.map(r=>o=>Ul(r)?r(o):Eue(o,r)))(n)}function Eue(...e){return Ga({},...e,mT)}function mT(e,t,n,r){if((Ul(e)||Ul(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...o)=>{const i=Ul(e)?e(...o):e,s=Ul(t)?t(...o):t;return Ga({},i,s,mT)}}function Ro(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:Fb(e)?2:Bb(e)?3:0}function uu(e,t){return Vu(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Lue(e,t){return Vu(e)===2?e.get(t):e[t]}function gT(e,t,n){var r=Vu(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function vT(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function Fb(e){return Mue&&e instanceof Map}function Bb(e){return Rue&&e instanceof Set}function ys(e){return e.o||e.t}function $b(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=bT(e);delete t[Dt];for(var n=cu(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=Pue),Object.freeze(e),t&&Vs(e,function(n,r){return Vb(r,!0)},!0)),e}function Pue(){Ro(2)}function Wb(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function di(e){var t=U4[e];return t||Ro(18,e),t}function Aue(e,t){U4[e]||(U4[e]=t)}function W4(){return td}function T2(e,t){t&&(di("Patches"),e.u=[],e.s=[],e.v=t)}function d0(e){j4(e),e.p.forEach(Tue),e.p=null}function j4(e){e===td&&(td=e.l)}function f7(e){return td={p:[],l:td,h:e,m:!0,_:0}}function Tue(e){var t=e[Dt];t.i===0||t.i===1?t.j():t.O=!0}function I2(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||di("ES5").S(t,e,r),r?(n[Dt].P&&(d0(t),Ro(4)),ea(e)&&(e=p0(t,e),t.l||h0(t,e)),t.u&&di("Patches").M(n[Dt].t,e,t.u,t.s)):e=p0(t,n,[]),d0(t),t.u&&t.v(t.u,t.s),e!==yT?e:void 0}function p0(e,t,n){if(Wb(t))return t;var r=t[Dt];if(!r)return Vs(t,function(i,s){return d7(e,r,t,i,s,n)},!0),t;if(r.A!==e)return t;if(!r.P)return h0(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var o=r.i===4||r.i===5?r.o=$b(r.k):r.o;Vs(r.i===3?new Set(o):o,function(i,s){return d7(e,r,o,i,s,n)}),h0(e,o,!1),n&&e.u&&di("Patches").R(r,n,e.u,e.s)}return r.o}function d7(e,t,n,r,o,i){if(qa(o)){var s=p0(e,o,i&&t&&t.i!==3&&!uu(t.D,r)?i.concat(r):void 0);if(gT(n,r,s),!qa(s))return;e.m=!1}if(ea(o)&&!Wb(o)){if(!e.h.F&&e._<1)return;p0(e,o),t&&t.A.l||h0(e,o)}}function h0(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&Vb(t,n)}function O2(e,t){var n=e[Dt];return(n?ys(n):e)[t]}function p7(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function La(e){e.P||(e.P=!0,e.l&&La(e.l))}function M2(e){e.o||(e.o=$b(e.t))}function H4(e,t,n){var r=Fb(t)?di("MapSet").N(t,n):Bb(t)?di("MapSet").T(t,n):e.g?function(o,i){var s=Array.isArray(o),u={i:s?1:0,A:i?i.A:W4(),P:!1,I:!1,D:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=u,f=nd;s&&(c=[u],f=jc);var d=Proxy.revocable(c,f),h=d.revoke,m=d.proxy;return u.k=m,u.j=h,m}(t,n):di("ES5").J(t,n);return(n?n.A:W4()).p.push(r),r}function Iue(e){return qa(e)||Ro(22,e),function t(n){if(!ea(n))return n;var r,o=n[Dt],i=Vu(n);if(o){if(!o.P&&(o.i<4||!di("ES5").K(o)))return o.t;o.I=!0,r=h7(n,i),o.I=!1}else r=h7(n,i);return Vs(r,function(s,u){o&&Lue(o.t,s)===u||gT(r,s,t(u))}),i===3?new Set(r):r}(e)}function h7(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return $b(e)}function Oue(){function e(i,s){var u=o[i];return u?u.enumerable=s:o[i]=u={configurable:!0,enumerable:s,get:function(){var c=this[Dt];return nd.get(c,i)},set:function(c){var f=this[Dt];nd.set(f,i,c)}},u}function t(i){for(var s=i.length-1;s>=0;s--){var u=i[s][Dt];if(!u.P)switch(u.i){case 5:r(u)&&La(u);break;case 4:n(u)&&La(u)}}}function n(i){for(var s=i.t,u=i.k,c=cu(u),f=c.length-1;f>=0;f--){var d=c[f];if(d!==Dt){var h=s[d];if(h===void 0&&!uu(s,d))return!0;var m=u[d],g=m&&m[Dt];if(g?g.t!==h:!vT(m,h))return!0}}var b=!!s[Dt];return c.length!==cu(s).length+(b?0:1)}function r(i){var s=i.k;if(s.length!==i.t.length)return!0;var u=Object.getOwnPropertyDescriptor(s,s.length-1);if(u&&!u.get)return!0;for(var c=0;c1?S-1:0),_=1;_1?d-1:0),m=1;m=0;o--){var i=r[o];if(i.path.length===0&&i.op==="replace"){n=i.value;break}}o>-1&&(r=r.slice(o+1));var s=di("Patches").$;return qa(n)?s(n,r):this.produce(n,function(u){return s(u,r)})},e}(),Hr=new Due,xT=Hr.produce;Hr.produceWithPatches.bind(Hr);Hr.setAutoFreeze.bind(Hr);Hr.setUseProxies.bind(Hr);Hr.applyPatches.bind(Hr);Hr.createDraft.bind(Hr);Hr.finishDraft.bind(Hr);function y7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function b7(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(Hn(1));return n(Hb)(e,t)}if(typeof e!="function")throw new Error(Hn(2));var o=e,i=t,s=[],u=s,c=!1;function f(){u===s&&(u=s.slice())}function d(){if(c)throw new Error(Hn(3));return i}function h(x){if(typeof x!="function")throw new Error(Hn(4));if(c)throw new Error(Hn(5));var k=!0;return f(),u.push(x),function(){if(!!k){if(c)throw new Error(Hn(6));k=!1,f();var w=u.indexOf(x);u.splice(w,1),s=null}}}function m(x){if(!zue(x))throw new Error(Hn(7));if(typeof x.type>"u")throw new Error(Hn(8));if(c)throw new Error(Hn(9));try{c=!0,i=o(i,x)}finally{c=!1}for(var k=s=u,S=0;S"u")throw new Error(Hn(12));if(typeof n(void 0,{type:m0.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Hn(13))})}function wT(e){for(var t=Object.keys(e),n={},r=0;r"u")throw f&&f.type,new Error(Hn(14));h[g]=k,d=d||k!==x}return d=d||i.length!==Object.keys(c).length,d?h:c}}function g0(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var f=n[c];return c>0&&(n.splice(c,1),n.unshift(f)),f.value}return v0}function o(u,c){r(u)===v0&&(n.unshift({key:u,value:c}),n.length>e&&n.pop())}function i(){return n}function s(){n=[]}return{get:r,put:o,getEntries:i,clear:s}}var Wue=function(t,n){return t===n};function jue(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var o=n.length,i=0;i1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?mce:hce;ET.useSyncExternalStore=Lu.useSyncExternalStore!==void 0?Lu.useSyncExternalStore:gce;(function(e){e.exports=ET})(kT);var LT={exports:{}},PT={};/** - * @license React - * use-sync-external-store-shim/with-selector.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var Tm=C.exports,vce=kT.exports;function yce(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var bce=typeof Object.is=="function"?Object.is:yce,xce=vce.useSyncExternalStore,wce=Tm.useRef,Sce=Tm.useEffect,Cce=Tm.useMemo,_ce=Tm.useDebugValue;PT.useSyncExternalStoreWithSelector=function(e,t,n,r,o){var i=wce(null);if(i.current===null){var s={hasValue:!1,value:null};i.current=s}else s=i.current;i=Cce(function(){function c(g){if(!f){if(f=!0,d=g,g=r(g),o!==void 0&&s.hasValue){var b=s.value;if(o(b,g))return h=b}return h=g}if(b=h,bce(d,g))return b;var x=r(g);return o!==void 0&&o(b,x)?b:(d=g,h=x)}var f=!1,d,h,m=n===void 0?null:n;return[function(){return c(t())},m===null?void 0:function(){return c(m())}]},[t,n,r,o]);var u=xce(e,i[0],i[1]);return Sce(function(){s.hasValue=!0,s.value=u},[u]),_ce(u),u};(function(e){e.exports=PT})(LT);function kce(e){e()}let AT=kce;const Ece=e=>AT=e,Lce=()=>AT,Ya=X.createContext(null);function TT(){return C.exports.useContext(Ya)}const Pce=()=>{throw new Error("uSES not initialized!")};let IT=Pce;const Ace=e=>{IT=e},Tce=(e,t)=>e===t;function Ice(e=Ya){const t=e===Ya?TT:()=>C.exports.useContext(e);return function(r,o=Tce){const{store:i,subscription:s,getServerState:u}=t(),c=IT(s.addNestedSub,i.getState,u||i.getState,r,o);return C.exports.useDebugValue(c),c}}const Oce=Ice();var Mce={exports:{}},bt={};/** - * @license React - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var Zb=Symbol.for("react.element"),Kb=Symbol.for("react.portal"),Im=Symbol.for("react.fragment"),Om=Symbol.for("react.strict_mode"),Mm=Symbol.for("react.profiler"),Rm=Symbol.for("react.provider"),Nm=Symbol.for("react.context"),Rce=Symbol.for("react.server_context"),Dm=Symbol.for("react.forward_ref"),zm=Symbol.for("react.suspense"),Fm=Symbol.for("react.suspense_list"),Bm=Symbol.for("react.memo"),$m=Symbol.for("react.lazy"),Nce=Symbol.for("react.offscreen"),OT;OT=Symbol.for("react.module.reference");function yo(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case Zb:switch(e=e.type,e){case Im:case Mm:case Om:case zm:case Fm:return e;default:switch(e=e&&e.$$typeof,e){case Rce:case Nm:case Dm:case $m:case Bm:case Rm:return e;default:return t}}case Kb:return t}}}bt.ContextConsumer=Nm;bt.ContextProvider=Rm;bt.Element=Zb;bt.ForwardRef=Dm;bt.Fragment=Im;bt.Lazy=$m;bt.Memo=Bm;bt.Portal=Kb;bt.Profiler=Mm;bt.StrictMode=Om;bt.Suspense=zm;bt.SuspenseList=Fm;bt.isAsyncMode=function(){return!1};bt.isConcurrentMode=function(){return!1};bt.isContextConsumer=function(e){return yo(e)===Nm};bt.isContextProvider=function(e){return yo(e)===Rm};bt.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===Zb};bt.isForwardRef=function(e){return yo(e)===Dm};bt.isFragment=function(e){return yo(e)===Im};bt.isLazy=function(e){return yo(e)===$m};bt.isMemo=function(e){return yo(e)===Bm};bt.isPortal=function(e){return yo(e)===Kb};bt.isProfiler=function(e){return yo(e)===Mm};bt.isStrictMode=function(e){return yo(e)===Om};bt.isSuspense=function(e){return yo(e)===zm};bt.isSuspenseList=function(e){return yo(e)===Fm};bt.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===Im||e===Mm||e===Om||e===zm||e===Fm||e===Nce||typeof e=="object"&&e!==null&&(e.$$typeof===$m||e.$$typeof===Bm||e.$$typeof===Rm||e.$$typeof===Nm||e.$$typeof===Dm||e.$$typeof===OT||e.getModuleId!==void 0)};bt.typeOf=yo;(function(e){e.exports=bt})(Mce);function Dce(){const e=Lce();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],o=t;for(;o;)r.push(o),o=o.next;return r},subscribe(r){let o=!0,i=n={callback:r,next:null,prev:n};return i.prev?i.prev.next=i:t=i,function(){!o||t===null||(o=!1,i.next?i.next.prev=i.prev:n=i.prev,i.prev?i.prev.next=i.next:t=i.next)}}}}const _7={notify(){},get:()=>[]};function zce(e,t){let n,r=_7;function o(h){return c(),r.subscribe(h)}function i(){r.notify()}function s(){d.onStateChange&&d.onStateChange()}function u(){return Boolean(n)}function c(){n||(n=t?t.addNestedSub(s):e.subscribe(s),r=Dce())}function f(){n&&(n(),n=void 0,r.clear(),r=_7)}const d={addNestedSub:o,notifyNestedSubs:i,handleChangeWrapper:s,isSubscribed:u,trySubscribe:c,tryUnsubscribe:f,getListeners:()=>r};return d}const Fce=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",Bce=Fce?C.exports.useLayoutEffect:C.exports.useEffect;function $ce({store:e,context:t,children:n,serverState:r}){const o=C.exports.useMemo(()=>{const u=zce(e);return{store:e,subscription:u,getServerState:r?()=>r:void 0}},[e,r]),i=C.exports.useMemo(()=>e.getState(),[e]);return Bce(()=>{const{subscription:u}=o;return u.onStateChange=u.notifyNestedSubs,u.trySubscribe(),i!==e.getState()&&u.notifyNestedSubs(),()=>{u.tryUnsubscribe(),u.onStateChange=void 0}},[o,i]),v((t||Ya).Provider,{value:o,children:n})}function MT(e=Ya){const t=e===Ya?TT:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const Vce=MT();function Wce(e=Ya){const t=e===Ya?Vce:MT(e);return function(){return t().dispatch}}const jce=Wce();Ace(LT.exports.useSyncExternalStoreWithSelector);Ece(Tu.exports.unstable_batchedUpdates);var qb="persist:",RT="persist/FLUSH",Yb="persist/REHYDRATE",NT="persist/PAUSE",DT="persist/PERSIST",zT="persist/PURGE",FT="persist/REGISTER",Hce=-1;function a1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?a1=function(n){return typeof n}:a1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},a1(e)}function k7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Uce(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function nfe(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var rfe=5e3;function BT(e,t){var n=e.version!==void 0?e.version:Hce;e.debug;var r=e.stateReconciler===void 0?Zce:e.stateReconciler,o=e.getStoredState||Yce,i=e.timeout!==void 0?e.timeout:rfe,s=null,u=!1,c=!0,f=function(h){return h._persist.rehydrated&&s&&!c&&s.update(h),h};return function(d,h){var m=d||{},g=m._persist,b=tfe(m,["_persist"]),x=b;if(h.type===DT){var k=!1,S=function(z,K){k||(h.rehydrate(e.key,z,K),k=!0)};if(i&&setTimeout(function(){!k&&S(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},i),c=!1,s||(s=Kce(e)),g)return zi({},t(x,h),{_persist:g});if(typeof h.rehydrate!="function"||typeof h.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return h.register(e.key),o(e).then(function(N){var z=e.migrate||function(K,W){return Promise.resolve(K)};z(N,n).then(function(K){S(K)},function(K){S(void 0,K)})},function(N){S(void 0,N)}),zi({},t(x,h),{_persist:{version:n,rehydrated:!1}})}else{if(h.type===zT)return u=!0,h.result(Qce(e)),zi({},t(x,h),{_persist:g});if(h.type===RT)return h.result(s&&s.flush()),zi({},t(x,h),{_persist:g});if(h.type===NT)c=!0;else if(h.type===Yb){if(u)return zi({},x,{_persist:zi({},g,{rehydrated:!0})});if(h.key===e.key){var w=t(x,h),_=h.payload,L=r!==!1&&_!==void 0?r(_,d,w,e):w,T=zi({},L,{_persist:zi({},g,{rehydrated:!0})});return f(T)}}}if(!g)return t(d,h);var R=t(x,h);return R===x?d:f(zi({},R,{_persist:g}))}}function L7(e){return afe(e)||ife(e)||ofe()}function ofe(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function ife(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function afe(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&arguments[0]!==void 0?arguments[0]:$T,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case FT:return Z4({},t,{registry:[].concat(L7(t.registry),[n.key])});case Yb:var r=t.registry.indexOf(n.key),o=L7(t.registry);return o.splice(r,1),Z4({},t,{registry:o,bootstrapped:o.length===0});default:return t}};function ufe(e,t,n){var r=n||!1,o=Hb(lfe,$T,t&&t.enhancer?t.enhancer:void 0),i=function(f){o.dispatch({type:FT,key:f})},s=function(f,d,h){var m={type:Yb,payload:d,err:h,key:f};e.dispatch(m),o.dispatch(m),r&&u.getState().bootstrapped&&(r(),r=!1)},u=Z4({},o,{purge:function(){var f=[];return e.dispatch({type:zT,result:function(h){f.push(h)}}),Promise.all(f)},flush:function(){var f=[];return e.dispatch({type:RT,result:function(h){f.push(h)}}),Promise.all(f)},pause:function(){e.dispatch({type:NT})},persist:function(){e.dispatch({type:DT,register:i,rehydrate:s})}});return t&&t.manualPersist||u.persist(),u}var Xb={},Qb={};Qb.__esModule=!0;Qb.default=dfe;function s1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?s1=function(n){return typeof n}:s1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},s1(e)}function D2(){}var cfe={getItem:D2,setItem:D2,removeItem:D2};function ffe(e){if((typeof self>"u"?"undefined":s1(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function dfe(e){var t="".concat(e,"Storage");return ffe(t)?self[t]:cfe}Xb.__esModule=!0;Xb.default=mfe;var pfe=hfe(Qb);function hfe(e){return e&&e.__esModule?e:{default:e}}function mfe(e){var t=(0,pfe.default)(e);return{getItem:function(r){return new Promise(function(o,i){o(t.getItem(r))})},setItem:function(r,o){return new Promise(function(i,s){i(t.setItem(r,o))})},removeItem:function(r){return new Promise(function(o,i){o(t.removeItem(r))})}}}var Jb=void 0,gfe=vfe(Xb);function vfe(e){return e&&e.__esModule?e:{default:e}}var yfe=(0,gfe.default)("local");Jb=yfe;const K4=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),bfe=e=>{const r=e.split(",").map(o=>o.split(":")).map(o=>({seed:Number(o[0]),weight:Number(o[1])}));return e6(r)?r:!1},e6=e=>Boolean(typeof e=="string"?bfe(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,o=!isNaN(parseInt(n.toString(),10)),i=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(o&&i)})),q4=e=>e.reduce((t,n,r,o)=>{const{seed:i,weight:s}=n;return t+=`${i}:${s}`,r!==o.length-1&&(t+=","),t},""),xfe=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]),VT={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,shouldUseInitImage:!1,img2imgStrength:.75,initialImagePath:null,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunGFPGAN:!1,gfpganStrength:.8,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,shouldShowGallery:!1},wfe=VT,WT=Ub({name:"options",initialState:wfe,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=K4(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setGfpganStrength:(e,t)=>{e.gfpganStrength=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setShouldUseInitImage:(e,t)=>{e.shouldUseInitImage=t.payload},setInitialImagePath:(e,t)=>{const n=t.payload;e.shouldUseInitImage=!!n,e.initialImagePath=n},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,o={...e,[n]:r};return n==="seed"&&(o.shouldRandomizeSeed=!1),n==="initialImagePath"&&r===""&&(o.shouldUseInitImage=!1),o},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:o,seed:i,variations:s,steps:u,cfg_scale:c,threshold:f,perlin:d,seamless:h,width:m,height:g,strength:b,fit:x,init_image_path:k,mask_image_path:S}=t.payload.image;n==="img2img"?(k&&(e.initialImagePath=k),S&&(e.maskPath=S),b&&(e.img2imgStrength=b),typeof x=="boolean"&&(e.shouldFitToWidthHeight=x),e.shouldUseInitImage=!0):e.shouldUseInitImage=!1,s&&s.length>0?(e.seedWeights=q4(s),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),o&&(e.prompt=K4(o)),r&&(e.sampler=r),u&&(e.steps=u),c&&(e.cfgScale=c),f&&(e.threshold=f),typeof f>"u"&&(e.threshold=0),d&&(e.perlin=d),typeof d>"u"&&(e.perlin=0),typeof h=="boolean"&&(e.seamless=h),m&&(e.width=m),g&&(e.height=g)},resetOptionsState:e=>({...e,...VT}),setShouldRunGFPGAN:(e,t)=>{e.shouldRunGFPGAN=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{e.activeTab=t.payload},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload}}}),{setPrompt:jT,setIterations:Sfe,setSteps:HT,setCfgScale:UT,setThreshold:Cfe,setPerlin:_fe,setHeight:GT,setWidth:Y4,setSampler:ZT,setSeed:Od,setSeamless:kfe,setImg2imgStrength:KT,setGfpganStrength:X4,setUpscalingLevel:Q4,setUpscalingStrength:J4,setShouldUseInitImage:k0e,setInitialImagePath:Pu,setMaskPath:e5,resetSeed:E0e,resetOptionsState:L0e,setShouldFitToWidthHeight:qT,setParameter:P0e,setShouldGenerateVariations:Efe,setSeedWeights:YT,setVariationAmount:Lfe,setAllParameters:XT,setShouldRunGFPGAN:Pfe,setShouldRunESRGAN:Afe,setShouldRandomizeSeed:Tfe,setShowAdvancedOptions:Ife,setActiveTab:Bi,setShouldShowImageDetails:Ofe,setShouldShowGallery:A7}=WT.actions,Mfe=WT.reducer;var Kn={exports:{}};/** - * @license - * Lodash - * Copyright OpenJS Foundation and other contributors - * Released under MIT license - * Based on Underscore.js 1.8.3 - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */(function(e,t){(function(){var n,r="4.17.21",o=200,i="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",s="Expected a function",u="Invalid `variable` option passed into `_.template`",c="__lodash_hash_undefined__",f=500,d="__lodash_placeholder__",h=1,m=2,g=4,b=1,x=2,k=1,S=2,w=4,_=8,L=16,T=32,R=64,N=128,z=256,K=512,W=30,J="...",ve=800,xe=16,he=1,fe=2,me=3,ne=1/0,j=9007199254740991,Y=17976931348623157e292,Z=0/0,O=4294967295,H=O-1,se=O>>>1,ce=[["ary",N],["bind",k],["bindKey",S],["curry",_],["curryRight",L],["flip",K],["partial",T],["partialRight",R],["rearg",z]],ye="[object Arguments]",be="[object Array]",Pe="[object AsyncFunction]",de="[object Boolean]",_e="[object Date]",De="[object DOMException]",st="[object Error]",Tt="[object Function]",bn="[object GeneratorFunction]",we="[object Map]",Ie="[object Number]",tt="[object Null]",ze="[object Object]",$t="[object Promise]",xn="[object Proxy]",lt="[object RegExp]",Ct="[object Set]",Qt="[object String]",Gt="[object Symbol]",pe="[object Undefined]",Le="[object WeakMap]",dt="[object WeakSet]",ut="[object ArrayBuffer]",ie="[object DataView]",Ge="[object Float32Array]",Et="[object Float64Array]",En="[object Int8Array]",Fn="[object Int16Array]",Lr="[object Int32Array]",$o="[object Uint8Array]",xi="[object Uint8ClampedArray]",Yn="[object Uint16Array]",qr="[object Uint32Array]",os=/\b__p \+= '';/g,Xs=/\b(__p \+=) '' \+/g,Hm=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Uu=/&(?:amp|lt|gt|quot|#39);/g,ra=/[&<>"']/g,Um=RegExp(Uu.source),wi=RegExp(ra.source),Gm=/<%-([\s\S]+?)%>/g,Zm=/<%([\s\S]+?)%>/g,Rd=/<%=([\s\S]+?)%>/g,Km=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,qm=/^\w*$/,bo=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Gu=/[\\^$.*+?()[\]{}|]/g,Ym=RegExp(Gu.source),Zu=/^\s+/,Xm=/\s/,Qm=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,oa=/\{\n\/\* \[wrapped with (.+)\] \*/,Jm=/,? & /,eg=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,tg=/[()=,{}\[\]\/\s]/,ng=/\\(\\)?/g,rg=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Si=/\w*$/,og=/^[-+]0x[0-9a-f]+$/i,ig=/^0b[01]+$/i,ag=/^\[object .+?Constructor\]$/,sg=/^0o[0-7]+$/i,lg=/^(?:0|[1-9]\d*)$/,ug=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ia=/($^)/,cg=/['\n\r\u2028\u2029\\]/g,Ci="\\ud800-\\udfff",Ku="\\u0300-\\u036f",fg="\\ufe20-\\ufe2f",Qs="\\u20d0-\\u20ff",qu=Ku+fg+Qs,Nd="\\u2700-\\u27bf",Dd="a-z\\xdf-\\xf6\\xf8-\\xff",dg="\\xac\\xb1\\xd7\\xf7",zd="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",pg="\\u2000-\\u206f",hg=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Fd="A-Z\\xc0-\\xd6\\xd8-\\xde",Bd="\\ufe0e\\ufe0f",$d=dg+zd+pg+hg,Yu="['\u2019]",mg="["+Ci+"]",Vd="["+$d+"]",Js="["+qu+"]",Wd="\\d+",el="["+Nd+"]",tl="["+Dd+"]",jd="[^"+Ci+$d+Wd+Nd+Dd+Fd+"]",Xu="\\ud83c[\\udffb-\\udfff]",Hd="(?:"+Js+"|"+Xu+")",Ud="[^"+Ci+"]",Qu="(?:\\ud83c[\\udde6-\\uddff]){2}",Ju="[\\ud800-\\udbff][\\udc00-\\udfff]",_i="["+Fd+"]",Gd="\\u200d",Zd="(?:"+tl+"|"+jd+")",gg="(?:"+_i+"|"+jd+")",nl="(?:"+Yu+"(?:d|ll|m|re|s|t|ve))?",Kd="(?:"+Yu+"(?:D|LL|M|RE|S|T|VE))?",qd=Hd+"?",Yd="["+Bd+"]?",rl="(?:"+Gd+"(?:"+[Ud,Qu,Ju].join("|")+")"+Yd+qd+")*",ec="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",tc="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",ol=Yd+qd+rl,vg="(?:"+[el,Qu,Ju].join("|")+")"+ol,Xd="(?:"+[Ud+Js+"?",Js,Qu,Ju,mg].join("|")+")",nc=RegExp(Yu,"g"),Qd=RegExp(Js,"g"),xo=RegExp(Xu+"(?="+Xu+")|"+Xd+ol,"g"),is=RegExp([_i+"?"+tl+"+"+nl+"(?="+[Vd,_i,"$"].join("|")+")",gg+"+"+Kd+"(?="+[Vd,_i+Zd,"$"].join("|")+")",_i+"?"+Zd+"+"+nl,_i+"+"+Kd,tc,ec,Wd,vg].join("|"),"g"),yg=RegExp("["+Gd+Ci+qu+Bd+"]"),Jd=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,bg=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],ep=-1,_t={};_t[Ge]=_t[Et]=_t[En]=_t[Fn]=_t[Lr]=_t[$o]=_t[xi]=_t[Yn]=_t[qr]=!0,_t[ye]=_t[be]=_t[ut]=_t[de]=_t[ie]=_t[_e]=_t[st]=_t[Tt]=_t[we]=_t[Ie]=_t[ze]=_t[lt]=_t[Ct]=_t[Qt]=_t[Le]=!1;var xt={};xt[ye]=xt[be]=xt[ut]=xt[ie]=xt[de]=xt[_e]=xt[Ge]=xt[Et]=xt[En]=xt[Fn]=xt[Lr]=xt[we]=xt[Ie]=xt[ze]=xt[lt]=xt[Ct]=xt[Qt]=xt[Gt]=xt[$o]=xt[xi]=xt[Yn]=xt[qr]=!0,xt[st]=xt[Tt]=xt[Le]=!1;var tp={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},xg={"&":"&","<":"<",">":">",'"':""","'":"'"},I={"&":"&","<":"<",">":">",""":'"',"'":"'"},F={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},U=parseFloat,Se=parseInt,Ze=typeof Vi=="object"&&Vi&&Vi.Object===Object&&Vi,pt=typeof self=="object"&&self&&self.Object===Object&&self,$e=Ze||pt||Function("return this")(),je=t&&!t.nodeType&&t,nt=je&&!0&&e&&!e.nodeType&&e,Xn=nt&&nt.exports===je,Ln=Xn&&Ze.process,wn=function(){try{var $=nt&&nt.require&&nt.require("util").types;return $||Ln&&Ln.binding&&Ln.binding("util")}catch{}}(),il=wn&&wn.isArrayBuffer,al=wn&&wn.isDate,rc=wn&&wn.isMap,f6=wn&&wn.isRegExp,d6=wn&&wn.isSet,p6=wn&&wn.isTypedArray;function Pr($,Q,G){switch(G.length){case 0:return $.call(Q);case 1:return $.call(Q,G[0]);case 2:return $.call(Q,G[0],G[1]);case 3:return $.call(Q,G[0],G[1],G[2])}return $.apply(Q,G)}function pO($,Q,G,Ce){for(var Fe=-1,rt=$==null?0:$.length;++Fe-1}function wg($,Q,G){for(var Ce=-1,Fe=$==null?0:$.length;++Ce-1;);return G}function w6($,Q){for(var G=$.length;G--&&sl(Q,$[G],0)>-1;);return G}function SO($,Q){for(var G=$.length,Ce=0;G--;)$[G]===Q&&++Ce;return Ce}var CO=kg(tp),_O=kg(xg);function kO($){return"\\"+F[$]}function EO($,Q){return $==null?n:$[Q]}function ll($){return yg.test($)}function LO($){return Jd.test($)}function PO($){for(var Q,G=[];!(Q=$.next()).done;)G.push(Q.value);return G}function Ag($){var Q=-1,G=Array($.size);return $.forEach(function(Ce,Fe){G[++Q]=[Fe,Ce]}),G}function S6($,Q){return function(G){return $(Q(G))}}function la($,Q){for(var G=-1,Ce=$.length,Fe=0,rt=[];++G-1}function mM(a,l){var p=this.__data__,y=bp(p,a);return y<0?(++this.size,p.push([a,l])):p[y][1]=l,this}ki.prototype.clear=fM,ki.prototype.delete=dM,ki.prototype.get=pM,ki.prototype.has=hM,ki.prototype.set=mM;function Ei(a){var l=-1,p=a==null?0:a.length;for(this.clear();++l=l?a:l)),a}function Jr(a,l,p,y,E,A){var M,D=l&h,V=l&m,ee=l&g;if(p&&(M=E?p(a,y,E,A):p(a)),M!==n)return M;if(!Vt(a))return a;var te=Be(a);if(te){if(M=bR(a),!D)return dr(a,M)}else{var ae=$n(a),ge=ae==Tt||ae==bn;if(ha(a))return o9(a,D);if(ae==ze||ae==ye||ge&&!E){if(M=V||ge?{}:C9(a),!D)return V?lR(a,IM(M,a)):sR(a,R6(M,a))}else{if(!xt[ae])return E?a:{};M=xR(a,ae,D)}}A||(A=new So);var Ae=A.get(a);if(Ae)return Ae;A.set(a,M),Q9(a)?a.forEach(function(Re){M.add(Jr(Re,l,p,Re,a,A))}):Y9(a)&&a.forEach(function(Re,Ke){M.set(Ke,Jr(Re,l,p,Ke,a,A))});var Me=ee?V?tv:ev:V?hr:Sn,We=te?n:Me(a);return Yr(We||a,function(Re,Ke){We&&(Ke=Re,Re=a[Ke]),cc(M,Ke,Jr(Re,l,p,Ke,a,A))}),M}function OM(a){var l=Sn(a);return function(p){return N6(p,a,l)}}function N6(a,l,p){var y=p.length;if(a==null)return!y;for(a=kt(a);y--;){var E=p[y],A=l[E],M=a[E];if(M===n&&!(E in a)||!A(M))return!1}return!0}function D6(a,l,p){if(typeof a!="function")throw new Xr(s);return vc(function(){a.apply(n,p)},l)}function fc(a,l,p,y){var E=-1,A=np,M=!0,D=a.length,V=[],ee=l.length;if(!D)return V;p&&(l=Rt(l,Ar(p))),y?(A=wg,M=!1):l.length>=o&&(A=oc,M=!1,l=new ls(l));e:for(;++EE?0:E+p),y=y===n||y>E?E:Ve(y),y<0&&(y+=E),y=p>y?0:ex(y);p0&&p(D)?l>1?Pn(D,l-1,p,y,E):sa(E,D):y||(E[E.length]=D)}return E}var Dg=c9(),B6=c9(!0);function Vo(a,l){return a&&Dg(a,l,Sn)}function zg(a,l){return a&&B6(a,l,Sn)}function wp(a,l){return aa(l,function(p){return Ii(a[p])})}function cs(a,l){l=da(l,a);for(var p=0,y=l.length;a!=null&&pl}function NM(a,l){return a!=null&&ht.call(a,l)}function DM(a,l){return a!=null&&l in kt(a)}function zM(a,l,p){return a>=Bn(l,p)&&a=120&&te.length>=120)?new ls(M&&te):n}te=a[0];var ae=-1,ge=D[0];e:for(;++ae-1;)D!==a&&dp.call(D,V,1),dp.call(a,V,1);return a}function Y6(a,l){for(var p=a?l.length:0,y=p-1;p--;){var E=l[p];if(p==y||E!==A){var A=E;Ti(E)?dp.call(a,E,1):Zg(a,E)}}return a}function Hg(a,l){return a+mp(T6()*(l-a+1))}function YM(a,l,p,y){for(var E=-1,A=hn(hp((l-a)/(p||1)),0),M=G(A);A--;)M[y?A:++E]=a,a+=p;return M}function Ug(a,l){var p="";if(!a||l<1||l>j)return p;do l%2&&(p+=a),l=mp(l/2),l&&(a+=a);while(l);return p}function He(a,l){return lv(E9(a,l,mr),a+"")}function XM(a){return M6(bl(a))}function QM(a,l){var p=bl(a);return Op(p,us(l,0,p.length))}function hc(a,l,p,y){if(!Vt(a))return a;l=da(l,a);for(var E=-1,A=l.length,M=A-1,D=a;D!=null&&++EE?0:E+l),p=p>E?E:p,p<0&&(p+=E),E=l>p?0:p-l>>>0,l>>>=0;for(var A=G(E);++y>>1,M=a[A];M!==null&&!Ir(M)&&(p?M<=l:M=o){var ee=l?null:dR(a);if(ee)return op(ee);M=!1,E=oc,V=new ls}else V=l?[]:D;e:for(;++y=y?a:eo(a,l,p)}var r9=jO||function(a){return $e.clearTimeout(a)};function o9(a,l){if(l)return a.slice();var p=a.length,y=k6?k6(p):new a.constructor(p);return a.copy(y),y}function Xg(a){var l=new a.constructor(a.byteLength);return new cp(l).set(new cp(a)),l}function rR(a,l){var p=l?Xg(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.byteLength)}function oR(a){var l=new a.constructor(a.source,Si.exec(a));return l.lastIndex=a.lastIndex,l}function iR(a){return uc?kt(uc.call(a)):{}}function i9(a,l){var p=l?Xg(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.length)}function a9(a,l){if(a!==l){var p=a!==n,y=a===null,E=a===a,A=Ir(a),M=l!==n,D=l===null,V=l===l,ee=Ir(l);if(!D&&!ee&&!A&&a>l||A&&M&&V&&!D&&!ee||y&&M&&V||!p&&V||!E)return 1;if(!y&&!A&&!ee&&a=D)return V;var ee=p[y];return V*(ee=="desc"?-1:1)}}return a.index-l.index}function s9(a,l,p,y){for(var E=-1,A=a.length,M=p.length,D=-1,V=l.length,ee=hn(A-M,0),te=G(V+ee),ae=!y;++D1?p[E-1]:n,M=E>2?p[2]:n;for(A=a.length>3&&typeof A=="function"?(E--,A):n,M&&Jn(p[0],p[1],M)&&(A=E<3?n:A,E=1),l=kt(l);++y-1?E[A?l[M]:M]:n}}function p9(a){return Ai(function(l){var p=l.length,y=p,E=Qr.prototype.thru;for(a&&l.reverse();y--;){var A=l[y];if(typeof A!="function")throw new Xr(s);if(E&&!M&&Tp(A)=="wrapper")var M=new Qr([],!0)}for(y=M?y:p;++y1&&Xe.reverse(),te&&VD))return!1;var ee=A.get(a),te=A.get(l);if(ee&&te)return ee==l&&te==a;var ae=-1,ge=!0,Ae=p&x?new ls:n;for(A.set(a,l),A.set(l,a);++ae1?"& ":"")+l[y],l=l.join(p>2?", ":" "),a.replace(Qm,`{ -/* [wrapped with `+l+`] */ -`)}function SR(a){return Be(a)||ps(a)||!!(P6&&a&&a[P6])}function Ti(a,l){var p=typeof a;return l=l??j,!!l&&(p=="number"||p!="symbol"&&lg.test(a))&&a>-1&&a%1==0&&a0){if(++l>=ve)return arguments[0]}else l=0;return a.apply(n,arguments)}}function Op(a,l){var p=-1,y=a.length,E=y-1;for(l=l===n?y:l;++p1?a[l-1]:n;return p=typeof p=="function"?(a.pop(),p):n,F9(a,p)});function B9(a){var l=P(a);return l.__chain__=!0,l}function MN(a,l){return l(a),a}function Mp(a,l){return l(a)}var RN=Ai(function(a){var l=a.length,p=l?a[0]:0,y=this.__wrapped__,E=function(A){return Ng(A,a)};return l>1||this.__actions__.length||!(y instanceof qe)||!Ti(p)?this.thru(E):(y=y.slice(p,+p+(l?1:0)),y.__actions__.push({func:Mp,args:[E],thisArg:n}),new Qr(y,this.__chain__).thru(function(A){return l&&!A.length&&A.push(n),A}))});function NN(){return B9(this)}function DN(){return new Qr(this.value(),this.__chain__)}function zN(){this.__values__===n&&(this.__values__=J9(this.value()));var a=this.__index__>=this.__values__.length,l=a?n:this.__values__[this.__index__++];return{done:a,value:l}}function FN(){return this}function BN(a){for(var l,p=this;p instanceof yp;){var y=O9(p);y.__index__=0,y.__values__=n,l?E.__wrapped__=y:l=y;var E=y;p=p.__wrapped__}return E.__wrapped__=a,l}function $N(){var a=this.__wrapped__;if(a instanceof qe){var l=a;return this.__actions__.length&&(l=new qe(this)),l=l.reverse(),l.__actions__.push({func:Mp,args:[uv],thisArg:n}),new Qr(l,this.__chain__)}return this.thru(uv)}function VN(){return t9(this.__wrapped__,this.__actions__)}var WN=kp(function(a,l,p){ht.call(a,p)?++a[p]:Li(a,p,1)});function jN(a,l,p){var y=Be(a)?h6:MM;return p&&Jn(a,l,p)&&(l=n),y(a,Oe(l,3))}function HN(a,l){var p=Be(a)?aa:F6;return p(a,Oe(l,3))}var UN=d9(M9),GN=d9(R9);function ZN(a,l){return Pn(Rp(a,l),1)}function KN(a,l){return Pn(Rp(a,l),ne)}function qN(a,l,p){return p=p===n?1:Ve(p),Pn(Rp(a,l),p)}function $9(a,l){var p=Be(a)?Yr:ca;return p(a,Oe(l,3))}function V9(a,l){var p=Be(a)?hO:z6;return p(a,Oe(l,3))}var YN=kp(function(a,l,p){ht.call(a,p)?a[p].push(l):Li(a,p,[l])});function XN(a,l,p,y){a=pr(a)?a:bl(a),p=p&&!y?Ve(p):0;var E=a.length;return p<0&&(p=hn(E+p,0)),Bp(a)?p<=E&&a.indexOf(l,p)>-1:!!E&&sl(a,l,p)>-1}var QN=He(function(a,l,p){var y=-1,E=typeof l=="function",A=pr(a)?G(a.length):[];return ca(a,function(M){A[++y]=E?Pr(l,M,p):dc(M,l,p)}),A}),JN=kp(function(a,l,p){Li(a,p,l)});function Rp(a,l){var p=Be(a)?Rt:H6;return p(a,Oe(l,3))}function eD(a,l,p,y){return a==null?[]:(Be(l)||(l=l==null?[]:[l]),p=y?n:p,Be(p)||(p=p==null?[]:[p]),K6(a,l,p))}var tD=kp(function(a,l,p){a[p?0:1].push(l)},function(){return[[],[]]});function nD(a,l,p){var y=Be(a)?Sg:y6,E=arguments.length<3;return y(a,Oe(l,4),p,E,ca)}function rD(a,l,p){var y=Be(a)?mO:y6,E=arguments.length<3;return y(a,Oe(l,4),p,E,z6)}function oD(a,l){var p=Be(a)?aa:F6;return p(a,zp(Oe(l,3)))}function iD(a){var l=Be(a)?M6:XM;return l(a)}function aD(a,l,p){(p?Jn(a,l,p):l===n)?l=1:l=Ve(l);var y=Be(a)?PM:QM;return y(a,l)}function sD(a){var l=Be(a)?AM:eR;return l(a)}function lD(a){if(a==null)return 0;if(pr(a))return Bp(a)?ul(a):a.length;var l=$n(a);return l==we||l==Ct?a.size:Vg(a).length}function uD(a,l,p){var y=Be(a)?Cg:tR;return p&&Jn(a,l,p)&&(l=n),y(a,Oe(l,3))}var cD=He(function(a,l){if(a==null)return[];var p=l.length;return p>1&&Jn(a,l[0],l[1])?l=[]:p>2&&Jn(l[0],l[1],l[2])&&(l=[l[0]]),K6(a,Pn(l,1),[])}),Np=HO||function(){return $e.Date.now()};function fD(a,l){if(typeof l!="function")throw new Xr(s);return a=Ve(a),function(){if(--a<1)return l.apply(this,arguments)}}function W9(a,l,p){return l=p?n:l,l=a&&l==null?a.length:l,Pi(a,N,n,n,n,n,l)}function j9(a,l){var p;if(typeof l!="function")throw new Xr(s);return a=Ve(a),function(){return--a>0&&(p=l.apply(this,arguments)),a<=1&&(l=n),p}}var fv=He(function(a,l,p){var y=k;if(p.length){var E=la(p,vl(fv));y|=T}return Pi(a,y,l,p,E)}),H9=He(function(a,l,p){var y=k|S;if(p.length){var E=la(p,vl(H9));y|=T}return Pi(l,y,a,p,E)});function U9(a,l,p){l=p?n:l;var y=Pi(a,_,n,n,n,n,n,l);return y.placeholder=U9.placeholder,y}function G9(a,l,p){l=p?n:l;var y=Pi(a,L,n,n,n,n,n,l);return y.placeholder=G9.placeholder,y}function Z9(a,l,p){var y,E,A,M,D,V,ee=0,te=!1,ae=!1,ge=!0;if(typeof a!="function")throw new Xr(s);l=no(l)||0,Vt(p)&&(te=!!p.leading,ae="maxWait"in p,A=ae?hn(no(p.maxWait)||0,l):A,ge="trailing"in p?!!p.trailing:ge);function Ae(en){var _o=y,Mi=E;return y=E=n,ee=en,M=a.apply(Mi,_o),M}function Me(en){return ee=en,D=vc(Ke,l),te?Ae(en):M}function We(en){var _o=en-V,Mi=en-ee,dx=l-_o;return ae?Bn(dx,A-Mi):dx}function Re(en){var _o=en-V,Mi=en-ee;return V===n||_o>=l||_o<0||ae&&Mi>=A}function Ke(){var en=Np();if(Re(en))return Xe(en);D=vc(Ke,We(en))}function Xe(en){return D=n,ge&&y?Ae(en):(y=E=n,M)}function Or(){D!==n&&r9(D),ee=0,y=V=E=D=n}function er(){return D===n?M:Xe(Np())}function Mr(){var en=Np(),_o=Re(en);if(y=arguments,E=this,V=en,_o){if(D===n)return Me(V);if(ae)return r9(D),D=vc(Ke,l),Ae(V)}return D===n&&(D=vc(Ke,l)),M}return Mr.cancel=Or,Mr.flush=er,Mr}var dD=He(function(a,l){return D6(a,1,l)}),pD=He(function(a,l,p){return D6(a,no(l)||0,p)});function hD(a){return Pi(a,K)}function Dp(a,l){if(typeof a!="function"||l!=null&&typeof l!="function")throw new Xr(s);var p=function(){var y=arguments,E=l?l.apply(this,y):y[0],A=p.cache;if(A.has(E))return A.get(E);var M=a.apply(this,y);return p.cache=A.set(E,M)||A,M};return p.cache=new(Dp.Cache||Ei),p}Dp.Cache=Ei;function zp(a){if(typeof a!="function")throw new Xr(s);return function(){var l=arguments;switch(l.length){case 0:return!a.call(this);case 1:return!a.call(this,l[0]);case 2:return!a.call(this,l[0],l[1]);case 3:return!a.call(this,l[0],l[1],l[2])}return!a.apply(this,l)}}function mD(a){return j9(2,a)}var gD=nR(function(a,l){l=l.length==1&&Be(l[0])?Rt(l[0],Ar(Oe())):Rt(Pn(l,1),Ar(Oe()));var p=l.length;return He(function(y){for(var E=-1,A=Bn(y.length,p);++E=l}),ps=V6(function(){return arguments}())?V6:function(a){return Zt(a)&&ht.call(a,"callee")&&!L6.call(a,"callee")},Be=G.isArray,ID=il?Ar(il):BM;function pr(a){return a!=null&&Fp(a.length)&&!Ii(a)}function Jt(a){return Zt(a)&&pr(a)}function OD(a){return a===!0||a===!1||Zt(a)&&Qn(a)==de}var ha=GO||Cv,MD=al?Ar(al):$M;function RD(a){return Zt(a)&&a.nodeType===1&&!yc(a)}function ND(a){if(a==null)return!0;if(pr(a)&&(Be(a)||typeof a=="string"||typeof a.splice=="function"||ha(a)||yl(a)||ps(a)))return!a.length;var l=$n(a);if(l==we||l==Ct)return!a.size;if(gc(a))return!Vg(a).length;for(var p in a)if(ht.call(a,p))return!1;return!0}function DD(a,l){return pc(a,l)}function zD(a,l,p){p=typeof p=="function"?p:n;var y=p?p(a,l):n;return y===n?pc(a,l,n,p):!!y}function pv(a){if(!Zt(a))return!1;var l=Qn(a);return l==st||l==De||typeof a.message=="string"&&typeof a.name=="string"&&!yc(a)}function FD(a){return typeof a=="number"&&A6(a)}function Ii(a){if(!Vt(a))return!1;var l=Qn(a);return l==Tt||l==bn||l==Pe||l==xn}function q9(a){return typeof a=="number"&&a==Ve(a)}function Fp(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=j}function Vt(a){var l=typeof a;return a!=null&&(l=="object"||l=="function")}function Zt(a){return a!=null&&typeof a=="object"}var Y9=rc?Ar(rc):WM;function BD(a,l){return a===l||$g(a,l,rv(l))}function $D(a,l,p){return p=typeof p=="function"?p:n,$g(a,l,rv(l),p)}function VD(a){return X9(a)&&a!=+a}function WD(a){if(kR(a))throw new Fe(i);return W6(a)}function jD(a){return a===null}function HD(a){return a==null}function X9(a){return typeof a=="number"||Zt(a)&&Qn(a)==Ie}function yc(a){if(!Zt(a)||Qn(a)!=ze)return!1;var l=fp(a);if(l===null)return!0;var p=ht.call(l,"constructor")&&l.constructor;return typeof p=="function"&&p instanceof p&&sp.call(p)==$O}var hv=f6?Ar(f6):jM;function UD(a){return q9(a)&&a>=-j&&a<=j}var Q9=d6?Ar(d6):HM;function Bp(a){return typeof a=="string"||!Be(a)&&Zt(a)&&Qn(a)==Qt}function Ir(a){return typeof a=="symbol"||Zt(a)&&Qn(a)==Gt}var yl=p6?Ar(p6):UM;function GD(a){return a===n}function ZD(a){return Zt(a)&&$n(a)==Le}function KD(a){return Zt(a)&&Qn(a)==dt}var qD=Ap(Wg),YD=Ap(function(a,l){return a<=l});function J9(a){if(!a)return[];if(pr(a))return Bp(a)?wo(a):dr(a);if(ic&&a[ic])return PO(a[ic]());var l=$n(a),p=l==we?Ag:l==Ct?op:bl;return p(a)}function Oi(a){if(!a)return a===0?a:0;if(a=no(a),a===ne||a===-ne){var l=a<0?-1:1;return l*Y}return a===a?a:0}function Ve(a){var l=Oi(a),p=l%1;return l===l?p?l-p:l:0}function ex(a){return a?us(Ve(a),0,O):0}function no(a){if(typeof a=="number")return a;if(Ir(a))return Z;if(Vt(a)){var l=typeof a.valueOf=="function"?a.valueOf():a;a=Vt(l)?l+"":l}if(typeof a!="string")return a===0?a:+a;a=b6(a);var p=ig.test(a);return p||sg.test(a)?Se(a.slice(2),p?2:8):og.test(a)?Z:+a}function tx(a){return Wo(a,hr(a))}function XD(a){return a?us(Ve(a),-j,j):a===0?a:0}function ct(a){return a==null?"":Tr(a)}var QD=ml(function(a,l){if(gc(l)||pr(l)){Wo(l,Sn(l),a);return}for(var p in l)ht.call(l,p)&&cc(a,p,l[p])}),nx=ml(function(a,l){Wo(l,hr(l),a)}),$p=ml(function(a,l,p,y){Wo(l,hr(l),a,y)}),JD=ml(function(a,l,p,y){Wo(l,Sn(l),a,y)}),ez=Ai(Ng);function tz(a,l){var p=hl(a);return l==null?p:R6(p,l)}var nz=He(function(a,l){a=kt(a);var p=-1,y=l.length,E=y>2?l[2]:n;for(E&&Jn(l[0],l[1],E)&&(y=1);++p1),A}),Wo(a,tv(a),p),y&&(p=Jr(p,h|m|g,pR));for(var E=l.length;E--;)Zg(p,l[E]);return p});function xz(a,l){return ox(a,zp(Oe(l)))}var wz=Ai(function(a,l){return a==null?{}:KM(a,l)});function ox(a,l){if(a==null)return{};var p=Rt(tv(a),function(y){return[y]});return l=Oe(l),q6(a,p,function(y,E){return l(y,E[0])})}function Sz(a,l,p){l=da(l,a);var y=-1,E=l.length;for(E||(E=1,a=n);++yl){var y=a;a=l,l=y}if(p||a%1||l%1){var E=T6();return Bn(a+E*(l-a+U("1e-"+((E+"").length-1))),l)}return Hg(a,l)}var Mz=gl(function(a,l,p){return l=l.toLowerCase(),a+(p?sx(l):l)});function sx(a){return vv(ct(a).toLowerCase())}function lx(a){return a=ct(a),a&&a.replace(ug,CO).replace(Qd,"")}function Rz(a,l,p){a=ct(a),l=Tr(l);var y=a.length;p=p===n?y:us(Ve(p),0,y);var E=p;return p-=l.length,p>=0&&a.slice(p,E)==l}function Nz(a){return a=ct(a),a&&wi.test(a)?a.replace(ra,_O):a}function Dz(a){return a=ct(a),a&&Ym.test(a)?a.replace(Gu,"\\$&"):a}var zz=gl(function(a,l,p){return a+(p?"-":"")+l.toLowerCase()}),Fz=gl(function(a,l,p){return a+(p?" ":"")+l.toLowerCase()}),Bz=f9("toLowerCase");function $z(a,l,p){a=ct(a),l=Ve(l);var y=l?ul(a):0;if(!l||y>=l)return a;var E=(l-y)/2;return Pp(mp(E),p)+a+Pp(hp(E),p)}function Vz(a,l,p){a=ct(a),l=Ve(l);var y=l?ul(a):0;return l&&y>>0,p?(a=ct(a),a&&(typeof l=="string"||l!=null&&!hv(l))&&(l=Tr(l),!l&&ll(a))?pa(wo(a),0,p):a.split(l,p)):[]}var Kz=gl(function(a,l,p){return a+(p?" ":"")+vv(l)});function qz(a,l,p){return a=ct(a),p=p==null?0:us(Ve(p),0,a.length),l=Tr(l),a.slice(p,p+l.length)==l}function Yz(a,l,p){var y=P.templateSettings;p&&Jn(a,l,p)&&(l=n),a=ct(a),l=$p({},l,y,y9);var E=$p({},l.imports,y.imports,y9),A=Sn(E),M=Pg(E,A),D,V,ee=0,te=l.interpolate||ia,ae="__p += '",ge=Tg((l.escape||ia).source+"|"+te.source+"|"+(te===Rd?rg:ia).source+"|"+(l.evaluate||ia).source+"|$","g"),Ae="//# sourceURL="+(ht.call(l,"sourceURL")?(l.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++ep+"]")+` -`;a.replace(ge,function(Re,Ke,Xe,Or,er,Mr){return Xe||(Xe=Or),ae+=a.slice(ee,Mr).replace(cg,kO),Ke&&(D=!0,ae+=`' + -__e(`+Ke+`) + -'`),er&&(V=!0,ae+=`'; -`+er+`; -__p += '`),Xe&&(ae+=`' + -((__t = (`+Xe+`)) == null ? '' : __t) + -'`),ee=Mr+Re.length,Re}),ae+=`'; -`;var Me=ht.call(l,"variable")&&l.variable;if(!Me)ae=`with (obj) { -`+ae+` -} -`;else if(tg.test(Me))throw new Fe(u);ae=(V?ae.replace(os,""):ae).replace(Xs,"$1").replace(Hm,"$1;"),ae="function("+(Me||"obj")+`) { -`+(Me?"":`obj || (obj = {}); -`)+"var __t, __p = ''"+(D?", __e = _.escape":"")+(V?`, __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -`:`; -`)+ae+`return __p -}`;var We=cx(function(){return rt(A,Ae+"return "+ae).apply(n,M)});if(We.source=ae,pv(We))throw We;return We}function Xz(a){return ct(a).toLowerCase()}function Qz(a){return ct(a).toUpperCase()}function Jz(a,l,p){if(a=ct(a),a&&(p||l===n))return b6(a);if(!a||!(l=Tr(l)))return a;var y=wo(a),E=wo(l),A=x6(y,E),M=w6(y,E)+1;return pa(y,A,M).join("")}function eF(a,l,p){if(a=ct(a),a&&(p||l===n))return a.slice(0,C6(a)+1);if(!a||!(l=Tr(l)))return a;var y=wo(a),E=w6(y,wo(l))+1;return pa(y,0,E).join("")}function tF(a,l,p){if(a=ct(a),a&&(p||l===n))return a.replace(Zu,"");if(!a||!(l=Tr(l)))return a;var y=wo(a),E=x6(y,wo(l));return pa(y,E).join("")}function nF(a,l){var p=W,y=J;if(Vt(l)){var E="separator"in l?l.separator:E;p="length"in l?Ve(l.length):p,y="omission"in l?Tr(l.omission):y}a=ct(a);var A=a.length;if(ll(a)){var M=wo(a);A=M.length}if(p>=A)return a;var D=p-ul(y);if(D<1)return y;var V=M?pa(M,0,D).join(""):a.slice(0,D);if(E===n)return V+y;if(M&&(D+=V.length-D),hv(E)){if(a.slice(D).search(E)){var ee,te=V;for(E.global||(E=Tg(E.source,ct(Si.exec(E))+"g")),E.lastIndex=0;ee=E.exec(te);)var ae=ee.index;V=V.slice(0,ae===n?D:ae)}}else if(a.indexOf(Tr(E),D)!=D){var ge=V.lastIndexOf(E);ge>-1&&(V=V.slice(0,ge))}return V+y}function rF(a){return a=ct(a),a&&Um.test(a)?a.replace(Uu,OO):a}var oF=gl(function(a,l,p){return a+(p?" ":"")+l.toUpperCase()}),vv=f9("toUpperCase");function ux(a,l,p){return a=ct(a),l=p?n:l,l===n?LO(a)?NO(a):yO(a):a.match(l)||[]}var cx=He(function(a,l){try{return Pr(a,n,l)}catch(p){return pv(p)?p:new Fe(p)}}),iF=Ai(function(a,l){return Yr(l,function(p){p=jo(p),Li(a,p,fv(a[p],a))}),a});function aF(a){var l=a==null?0:a.length,p=Oe();return a=l?Rt(a,function(y){if(typeof y[1]!="function")throw new Xr(s);return[p(y[0]),y[1]]}):[],He(function(y){for(var E=-1;++Ej)return[];var p=O,y=Bn(a,O);l=Oe(l),a-=O;for(var E=Lg(y,l);++p0||l<0)?new qe(p):(a<0?p=p.takeRight(-a):a&&(p=p.drop(a)),l!==n&&(l=Ve(l),p=l<0?p.dropRight(-l):p.take(l-a)),p)},qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},qe.prototype.toArray=function(){return this.take(O)},Vo(qe.prototype,function(a,l){var p=/^(?:filter|find|map|reject)|While$/.test(l),y=/^(?:head|last)$/.test(l),E=P[y?"take"+(l=="last"?"Right":""):l],A=y||/^find/.test(l);!E||(P.prototype[l]=function(){var M=this.__wrapped__,D=y?[1]:arguments,V=M instanceof qe,ee=D[0],te=V||Be(M),ae=function(Ke){var Xe=E.apply(P,sa([Ke],D));return y&&ge?Xe[0]:Xe};te&&p&&typeof ee=="function"&&ee.length!=1&&(V=te=!1);var ge=this.__chain__,Ae=!!this.__actions__.length,Me=A&&!ge,We=V&&!Ae;if(!A&&te){M=We?M:new qe(this);var Re=a.apply(M,D);return Re.__actions__.push({func:Mp,args:[ae],thisArg:n}),new Qr(Re,ge)}return Me&&We?a.apply(this,D):(Re=this.thru(ae),Me?y?Re.value()[0]:Re.value():Re)})}),Yr(["pop","push","shift","sort","splice","unshift"],function(a){var l=ip[a],p=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",y=/^(?:pop|shift)$/.test(a);P.prototype[a]=function(){var E=arguments;if(y&&!this.__chain__){var A=this.value();return l.apply(Be(A)?A:[],E)}return this[p](function(M){return l.apply(Be(M)?M:[],E)})}}),Vo(qe.prototype,function(a,l){var p=P[l];if(p){var y=p.name+"";ht.call(pl,y)||(pl[y]=[]),pl[y].push({name:l,func:p})}}),pl[Ep(n,S).name]=[{name:"wrapper",func:n}],qe.prototype.clone=rM,qe.prototype.reverse=oM,qe.prototype.value=iM,P.prototype.at=RN,P.prototype.chain=NN,P.prototype.commit=DN,P.prototype.next=zN,P.prototype.plant=BN,P.prototype.reverse=$N,P.prototype.toJSON=P.prototype.valueOf=P.prototype.value=VN,P.prototype.first=P.prototype.head,ic&&(P.prototype[ic]=FN),P},cl=DO();nt?((nt.exports=cl)._=cl,je._=cl):$e._=cl}).call(Vi)})(Kn,Kn.exports);const od=Kn.exports,Rfe={currentImageUuid:"",images:[],areMoreImagesAvailable:!0},QT=Ub({name:"gallery",initialState:Rfe,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const n=t.payload,r=e.images.filter(o=>o.uuid!==n);if(n===e.currentImageUuid){const o=e.images.findIndex(s=>s.uuid===n),i=Kn.exports.clamp(o,0,r.length-1);e.currentImage=r.length?r[i]:void 0,e.currentImageUuid=r.length?r[i].uuid:""}e.images=r},addImage:(e,t)=>{const n=t.payload,{uuid:r,mtime:o}=n;e.images.unshift(n),e.currentImageUuid=r,e.intermediateImage=void 0,e.currentImage=n,e.latest_mtime=o},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(od.inRange(r,0,t.length)){const o=t[r+1];e.currentImage=o,e.currentImageUuid=o.uuid}}},selectPrevImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(od.inRange(r,1,t.length+1)){const o=t[r-1];e.currentImage=o,e.currentImageUuid=o.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r}=t.payload;if(n.length>0){if(e.images=e.images.concat(n).sort((o,i)=>i.mtime-o.mtime),!e.currentImage){const o=n[0];e.currentImage=o,e.currentImageUuid=o.uuid}e.latest_mtime=n[0].mtime,e.earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.areMoreImagesAvailable=r)}}}),{addImage:_h,clearIntermediateImage:T7,removeImage:Nfe,setCurrentImage:Dfe,addGalleryImages:zfe,setIntermediateImage:Ffe,selectNextImage:JT,selectPrevImage:eI}=QT.actions,Bfe=QT.reducer,$fe={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgress:!1,shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",hasError:!1,wasErrorSeen:!0},Vfe=$fe,tI=Ub({name:"system",initialState:Vfe,reducers:{setShouldDisplayInProgress:(e,t)=>{e.shouldDisplayInProgress=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Server error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:o}=t.payload,s={timestamp:n,message:r,level:o||"info"};e.log.push(s)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"}}}),{setShouldDisplayInProgress:Wfe,setIsProcessing:l1,addLogEntry:nr,setShouldShowLogViewer:I7,setIsConnected:O7,setSocketId:A0e,setShouldConfirmOnDelete:nI,setOpenAccordions:jfe,setSystemStatus:Hfe,setCurrentStatus:M7,setSystemConfig:Ufe,setShouldDisplayGuides:Gfe,processingCanceled:Zfe,errorOccurred:Kfe,errorSeen:rI}=tI.actions,qfe=tI.reducer,vi=Object.create(null);vi.open="0";vi.close="1";vi.ping="2";vi.pong="3";vi.message="4";vi.upgrade="5";vi.noop="6";const u1=Object.create(null);Object.keys(vi).forEach(e=>{u1[vi[e]]=e});const Yfe={type:"error",data:"parser error"},Xfe=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Qfe=typeof ArrayBuffer=="function",Jfe=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,oI=({type:e,data:t},n,r)=>Xfe&&t instanceof Blob?n?r(t):R7(t,r):Qfe&&(t instanceof ArrayBuffer||Jfe(t))?n?r(t):R7(new Blob([t]),r):r(vi[e]+(t||"")),R7=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},N7="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Hc=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,o=0,i,s,u,c;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const f=new ArrayBuffer(t),d=new Uint8Array(f);for(r=0;r>4,d[o++]=(s&15)<<4|u>>2,d[o++]=(u&3)<<6|c&63;return f},tde=typeof ArrayBuffer=="function",iI=(e,t)=>{if(typeof e!="string")return{type:"message",data:aI(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:nde(e.substring(1),t)}:u1[n]?e.length>1?{type:u1[n],data:e.substring(1)}:{type:u1[n]}:Yfe},nde=(e,t)=>{if(tde){const n=ede(e);return aI(n,t)}else return{base64:!0,data:e}},aI=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},sI=String.fromCharCode(30),rde=(e,t)=>{const n=e.length,r=new Array(n);let o=0;e.forEach((i,s)=>{oI(i,!1,u=>{r[s]=u,++o===n&&t(r.join(sI))})})},ode=(e,t)=>{const n=e.split(sI),r=[];for(let o=0;otypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function uI(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const ade=setTimeout,sde=clearTimeout;function Vm(e,t){t.useNativeTimers?(e.setTimeoutFn=ade.bind(Ra),e.clearTimeoutFn=sde.bind(Ra)):(e.setTimeoutFn=setTimeout.bind(Ra),e.clearTimeoutFn=clearTimeout.bind(Ra))}const lde=1.33;function ude(e){return typeof e=="string"?cde(e):Math.ceil((e.byteLength||e.size)*lde)}function cde(e){let t=0,n=0;for(let r=0,o=e.length;r=57344?n+=3:(r++,n+=4);return n}class fde extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class cI extends dn{constructor(t){super(),this.writable=!1,Vm(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new fde(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=iI(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const fI="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),t5=64,dde={};let D7=0,kh=0,z7;function F7(e){let t="";do t=fI[e%t5]+t,e=Math.floor(e/t5);while(e>0);return t}function dI(){const e=F7(+new Date);return e!==z7?(D7=0,z7=e):e+"."+F7(D7++)}for(;kh{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};ode(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,rde(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=dI()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const o=pI(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new pi(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(o,i)=>{this.onError("xhr post error",o,i)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class pi extends dn{constructor(t,n){super(),Vm(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=uI(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new mI(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=pi.requestsCount++,pi.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=mde,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete pi.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}pi.requestsCount=0;pi.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",B7);else if(typeof addEventListener=="function"){const e="onpagehide"in Ra?"pagehide":"unload";addEventListener(e,B7,!1)}}function B7(){for(let e in pi.requests)pi.requests.hasOwnProperty(e)&&pi.requests[e].abort()}const yde=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),Eh=Ra.WebSocket||Ra.MozWebSocket,$7=!0,bde="arraybuffer",V7=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class xde extends cI{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=V7?{}:uI(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=$7&&!V7?n?new Eh(t,n):new Eh(t):new Eh(t,n,r)}catch(o){return this.emitReserved("error",o)}this.ws.binaryType=this.socket.binaryType||bde,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const s={};try{$7&&this.ws.send(i)}catch{}o&&yde(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=dI()),this.supportsBinary||(t.b64=1);const o=pI(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}check(){return!!Eh}}const wde={websocket:xde,polling:vde},Sde=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,Cde=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function n5(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let o=Sde.exec(e||""),i={},s=14;for(;s--;)i[Cde[s]]=o[s]||"";return n!=-1&&r!=-1&&(i.source=t,i.host=i.host.substring(1,i.host.length-1).replace(/;/g,":"),i.authority=i.authority.replace("[","").replace("]","").replace(/;/g,":"),i.ipv6uri=!0),i.pathNames=_de(i,i.path),i.queryKey=kde(i,i.query),i}function _de(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.substr(0,1)=="/"||t.length===0)&&r.splice(0,1),t.substr(t.length-1,1)=="/"&&r.splice(r.length-1,1),r}function kde(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,o,i){o&&(n[o]=i)}),n}class Pa extends dn{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=n5(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=n5(n.host).host),Vm(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=pde(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&addEventListener("beforeunload",()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},!1),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=lI,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new wde[t](r)}open(){let t;if(this.opts.rememberUpgrade&&Pa.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;Pa.priorWebsocketSuccess=!1;const o=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",h=>{if(!r)if(h.type==="pong"&&h.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;Pa.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(d(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function i(){r||(r=!0,d(),n.close(),n=null)}const s=h=>{const m=new Error("probe error: "+h);m.transport=n.name,i(),this.emitReserved("upgradeError",m)};function u(){s("transport closed")}function c(){s("socket closed")}function f(h){n&&h.name!==n.name&&i()}const d=()=>{n.removeListener("open",o),n.removeListener("error",s),n.removeListener("close",u),this.off("close",c),this.off("upgrading",f)};n.once("open",o),n.once("error",s),n.once("close",u),this.once("close",c),this.once("upgrading",f),n.open()}onOpen(){if(this.readyState="open",Pa.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,o){if(typeof n=="function"&&(o=n,n=void 0),typeof r=="function"&&(o=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const i={type:t,data:n,options:r};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),o&&this.once("flush",o),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){Pa.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&removeEventListener("offline",this.offlineEventListener,!1),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const o=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,gI=Object.prototype.toString,Ade=typeof Blob=="function"||typeof Blob<"u"&&gI.call(Blob)==="[object BlobConstructor]",Tde=typeof File=="function"||typeof File<"u"&&gI.call(File)==="[object FileConstructor]";function t6(e){return Lde&&(e instanceof ArrayBuffer||Pde(e))||Ade&&e instanceof Blob||Tde&&e instanceof File}function c1(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case Qe.ACK:case Qe.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class Nde{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=Ode(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const Dde=Object.freeze(Object.defineProperty({__proto__:null,protocol:Mde,get PacketType(){return Qe},Encoder:Rde,Decoder:n6},Symbol.toStringTag,{value:"Module"}));function Oo(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const zde=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class vI extends dn{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[Oo(t,"open",this.onopen.bind(this)),Oo(t,"packet",this.onpacket.bind(this)),Oo(t,"error",this.onerror.bind(this)),Oo(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(zde.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:Qe.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const s=this.ids++,u=n.pop();this._registerAckCallback(s,u),r.id=s}const o=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!o||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const o=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let i=0;i{this.io.clearTimeoutFn(o),n.apply(this,[null,...i])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:Qe.CONNECT,data:t})}):this.packet({type:Qe.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Qe.CONNECT:if(t.data&&t.data.sid){const o=t.data.sid;this.onconnect(o)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Qe.EVENT:case Qe.BINARY_EVENT:this.onevent(t);break;case Qe.ACK:case Qe.BINARY_ACK:this.onack(t);break;case Qe.DISCONNECT:this.ondisconnect();break;case Qe.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...o){r||(r=!0,n.packet({type:Qe.ACK,id:t,data:o}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Qe.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}Wu.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};Wu.prototype.reset=function(){this.attempts=0};Wu.prototype.setMin=function(e){this.ms=e};Wu.prototype.setMax=function(e){this.max=e};Wu.prototype.setJitter=function(e){this.jitter=e};class i5 extends dn{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,Vm(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new Wu({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const o=n.parser||Dde;this.encoder=new o.Encoder,this.decoder=new o.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new Pa(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const o=Oo(n,"open",function(){r.onopen(),t&&t()}),i=Oo(n,"error",s=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",s),t?t(s):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const s=this._timeout;s===0&&o();const u=this.setTimeoutFn(()=>{o(),n.close(),n.emit("error",new Error("timeout"))},s);this.opts.autoUnref&&u.unref(),this.subs.push(function(){clearTimeout(u)})}return this.subs.push(o),this.subs.push(i),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(Oo(t,"ping",this.onping.bind(this)),Oo(t,"data",this.ondata.bind(this)),Oo(t,"error",this.onerror.bind(this)),Oo(t,"close",this.onclose.bind(this)),Oo(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch{this.onclose("parse error")}}ondecoded(t){this.emitReserved("packet",t)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new vI(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(o=>{o?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",o)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Mc={};function f1(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=Ede(e,t.path||"/socket.io"),r=n.source,o=n.id,i=n.path,s=Mc[o]&&i in Mc[o].nsps,u=t.forceNew||t["force new connection"]||t.multiplex===!1||s;let c;return u?c=new i5(r,t):(Mc[o]||(Mc[o]=new i5(r,t)),c=Mc[o]),n.query&&!t.query&&(t.query=n.queryKey),c.socket(n.path,t)}Object.assign(f1,{Manager:i5,Socket:vI,io:f1,connect:f1});let Lh;const Fde=new Uint8Array(16);function Bde(){if(!Lh&&(Lh=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Lh))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Lh(Fde)}const Tn=[];for(let e=0;e<256;++e)Tn.push((e+256).toString(16).slice(1));function $de(e,t=0){return(Tn[e[t+0]]+Tn[e[t+1]]+Tn[e[t+2]]+Tn[e[t+3]]+"-"+Tn[e[t+4]]+Tn[e[t+5]]+"-"+Tn[e[t+6]]+Tn[e[t+7]]+"-"+Tn[e[t+8]]+Tn[e[t+9]]+"-"+Tn[e[t+10]]+Tn[e[t+11]]+Tn[e[t+12]]+Tn[e[t+13]]+Tn[e[t+14]]+Tn[e[t+15]]).toLowerCase()}const Vde=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),W7={randomUUID:Vde};function Rc(e,t,n){if(W7.randomUUID&&!t&&!e)return W7.randomUUID();e=e||{};const r=e.random||(e.rng||Bde)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let o=0;o<16;++o)t[n+o]=r[o];return t}return $de(r)}var Wde=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,jde=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,Hde=/[^-+\dA-Z]/g;function rr(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(j7[t]||t||j7.default);var o=t.slice(0,4);(o==="UTC:"||o==="GMT:")&&(t=t.slice(4),n=!0,o==="GMT:"&&(r=!0));var i=function(){return n?"getUTC":"get"},s=function(){return e[i()+"Date"]()},u=function(){return e[i()+"Day"]()},c=function(){return e[i()+"Month"]()},f=function(){return e[i()+"FullYear"]()},d=function(){return e[i()+"Hours"]()},h=function(){return e[i()+"Minutes"]()},m=function(){return e[i()+"Seconds"]()},g=function(){return e[i()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},x=function(){return Ude(e)},k=function(){return Gde(e)},S={d:function(){return s()},dd:function(){return Rr(s())},ddd:function(){return gr.dayNames[u()]},DDD:function(){return H7({y:f(),m:c(),d:s(),_:i(),dayName:gr.dayNames[u()],short:!0})},dddd:function(){return gr.dayNames[u()+7]},DDDD:function(){return H7({y:f(),m:c(),d:s(),_:i(),dayName:gr.dayNames[u()+7]})},m:function(){return c()+1},mm:function(){return Rr(c()+1)},mmm:function(){return gr.monthNames[c()]},mmmm:function(){return gr.monthNames[c()+12]},yy:function(){return String(f()).slice(2)},yyyy:function(){return Rr(f(),4)},h:function(){return d()%12||12},hh:function(){return Rr(d()%12||12)},H:function(){return d()},HH:function(){return Rr(d())},M:function(){return h()},MM:function(){return Rr(h())},s:function(){return m()},ss:function(){return Rr(m())},l:function(){return Rr(g(),3)},L:function(){return Rr(Math.floor(g()/10))},t:function(){return d()<12?gr.timeNames[0]:gr.timeNames[1]},tt:function(){return d()<12?gr.timeNames[2]:gr.timeNames[3]},T:function(){return d()<12?gr.timeNames[4]:gr.timeNames[5]},TT:function(){return d()<12?gr.timeNames[6]:gr.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":Zde(e)},o:function(){return(b()>0?"-":"+")+Rr(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+Rr(Math.floor(Math.abs(b())/60),2)+":"+Rr(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][s()%10>3?0:(s()%100-s()%10!=10)*s()%10]},W:function(){return x()},WW:function(){return Rr(x())},N:function(){return k()}};return t.replace(Wde,function(w){return w in S?S[w]():w.slice(1,w.length-1)})}var j7={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},gr={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},Rr=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},H7=function(t){var n=t.y,r=t.m,o=t.d,i=t._,s=t.dayName,u=t.short,c=u===void 0?!1:u,f=new Date,d=new Date;d.setDate(d[i+"Date"]()-1);var h=new Date;h.setDate(h[i+"Date"]()+1);var m=function(){return f[i+"Date"]()},g=function(){return f[i+"Month"]()},b=function(){return f[i+"FullYear"]()},x=function(){return d[i+"Date"]()},k=function(){return d[i+"Month"]()},S=function(){return d[i+"FullYear"]()},w=function(){return h[i+"Date"]()},_=function(){return h[i+"Month"]()},L=function(){return h[i+"FullYear"]()};return b()===n&&g()===r&&m()===o?c?"Tdy":"Today":S()===n&&k()===r&&x()===o?c?"Ysd":"Yesterday":L()===n&&_()===r&&w()===o?c?"Tmw":"Tomorrow":s},Ude=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var o=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-o);var i=(n-r)/(864e5*7);return 1+Math.floor(i)},Gde=function(t){var n=t.getDay();return n===0&&(n=7),n},Zde=function(t){return(String(t).match(jde)||[""]).pop().replace(Hde,"").replace(/GMT\+0000/g,"UTC")};const a5=sr("socketio/generateImage"),Kde=sr("socketio/runESRGAN"),qde=sr("socketio/runGFPGAN"),Yde=sr("socketio/deleteImage"),yI=sr("socketio/requestImages"),Xde=sr("socketio/requestNewImages"),Qde=sr("socketio/cancelProcessing"),Jde=sr("socketio/uploadInitialImage");sr("socketio/uploadMaskImage");const epe=sr("socketio/requestSystemConfig"),tpe=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(O7(!0)),t(M7("Connected")),n().gallery.latest_mtime?t(Xde()):t(yI())}catch(r){console.error(r)}},onDisconnect:()=>{try{t(O7(!1)),t(M7("Disconnected")),t(nr({timestamp:rr(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{url:o,mtime:i,metadata:s}=r,u=Rc();t(_h({uuid:u,url:o,mtime:i,metadata:s})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image generated: ${o}`}))}catch(o){console.error(o)}},onIntermediateResult:r=>{try{const o=Rc(),{url:i,metadata:s,mtime:u}=r;t(Ffe({uuid:o,url:i,mtime:u,metadata:s})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Intermediate image generated: ${i}`}))}catch(o){console.error(o)}},onPostprocessingResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(_h({uuid:Rc(),url:o,mtime:s,metadata:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Postprocessed: ${o}`}))}catch(o){console.error(o)}},onGFPGANResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(_h({uuid:Rc(),url:o,mtime:s,metadata:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Fixed faces: ${o}`}))}catch(o){console.error(o)}},onProgressUpdate:r=>{try{t(l1(!0)),t(Hfe(r))}catch(o){console.error(o)}},onError:r=>{const{message:o,additionalData:i}=r;try{t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Server error: ${o}`,level:"error"})),t(Kfe()),t(T7())}catch(s){console.error(s)}},onGalleryImages:r=>{const{images:o,areMoreImagesAvailable:i}=r,s=o.map(u=>{const{url:c,metadata:f,mtime:d}=u;return{uuid:Rc(),url:c,mtime:d,metadata:f}});t(zfe({images:s,areMoreImagesAvailable:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Loaded ${o.length} images`}))},onProcessingCanceled:()=>{t(Zfe());const{intermediateImage:r}=n().gallery;r&&(t(_h(r)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`})),t(T7())),t(nr({timestamp:rr(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:o,uuid:i}=r;t(Nfe(i));const{initialImagePath:s,maskPath:u}=n().options;s===o&&t(Pu("")),u===o&&t(e5("")),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image deleted: ${o}`}))},onInitialImageUploaded:r=>{const{url:o}=r;t(Pu(o)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Initial image uploaded: ${o}`}))},onMaskImageUploaded:r=>{const{url:o}=r;t(e5(o)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Mask image uploaded: ${o}`}))},onSystemConfig:r=>{t(Ufe(r))}}},npe=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],rpe=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],ope=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],ipe=[{key:"2x",value:2},{key:"4x",value:4}],r6=0,o6=4294967295,bI=(e,t)=>Math.floor(Math.random()*(t-e+1)+e),ape=(e,t)=>{const{prompt:n,iterations:r,steps:o,cfgScale:i,threshold:s,perlin:u,height:c,width:f,sampler:d,seed:h,seamless:m,shouldUseInitImage:g,img2imgStrength:b,initialImagePath:x,maskPath:k,shouldFitToWidthHeight:S,shouldGenerateVariations:w,variationAmount:_,seedWeights:L,shouldRunESRGAN:T,upscalingLevel:R,upscalingStrength:N,shouldRunGFPGAN:z,gfpganStrength:K,shouldRandomizeSeed:W}=e,{shouldDisplayInProgress:J}=t,ve={prompt:n,iterations:r,steps:o,cfg_scale:i,threshold:s,perlin:u,height:c,width:f,sampler_name:d,seed:h,seamless:m,progress_images:J};ve.seed=W?bI(r6,o6):h,g&&(ve.init_img=x,ve.strength=b,ve.fit=S,k&&(ve.init_mask=k)),w?(ve.variation_amount=_,L&&(ve.with_variations=xfe(L))):ve.variation_amount=0;let xe=!1,he=!1;return T&&(xe={level:R,strength:N}),z&&(he={strength:K}),{generationParameters:ve,esrganParameters:xe,gfpganParameters:he}};var z2=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function F2(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function xI(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function spe(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,o=!0,i=0;i=0&&Nt.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&Nt.splice(0,Nt.length),(t===93||t===224)&&(t=91),t in Mn){Mn[t]=!1;for(var r in Xa)Xa[r]===t&&(Br[r]=!1)}}function ppe(e){if(typeof e>"u")Object.keys(sn).forEach(function(s){return delete sn[s]});else if(Array.isArray(e))e.forEach(function(s){s.key&&B2(s)});else if(typeof e=="object")e.key&&B2(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?xI(Xa,f):[];sn[m]=sn[m].filter(function(b){var x=o?b.method===o:!0;return!(x&&b.scope===r&&spe(b.mods,g))})}})};function G7(e,t,n,r){if(t.element===r){var o;if(t.scope===n||t.scope==="all"){o=t.mods.length>0;for(var i in Mn)Object.prototype.hasOwnProperty.call(Mn,i)&&(!Mn[i]&&t.mods.indexOf(+i)>-1||Mn[i]&&t.mods.indexOf(+i)===-1)&&(o=!1);(t.mods.length===0&&!Mn[16]&&!Mn[18]&&!Mn[17]&&!Mn[91]||o||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function Z7(e,t){var n=sn["*"],r=e.keyCode||e.which||e.charCode;if(!!Br.filter.call(this,e)){if((r===93||r===224)&&(r=91),Nt.indexOf(r)===-1&&r!==229&&Nt.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var x=s5[b];e[b]&&Nt.indexOf(x)===-1?Nt.push(x):!e[b]&&Nt.indexOf(x)>-1?Nt.splice(Nt.indexOf(x),1):b==="metaKey"&&e[b]&&Nt.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(Nt=Nt.slice(Nt.indexOf(x))))}),r in Mn){Mn[r]=!0;for(var o in Xa)Xa[o]===r&&(Br[o]=!0);if(!n)return}for(var i in Mn)Object.prototype.hasOwnProperty.call(Mn,i)&&(Mn[i]=e[s5[i]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(Nt.indexOf(17)===-1&&Nt.push(17),Nt.indexOf(18)===-1&&Nt.push(18),Mn[17]=!0,Mn[18]=!0);var s=id();if(n)for(var u=0;u-1}function Br(e,t,n){Nt=[];var r=wI(e),o=[],i="all",s=document,u=0,c=!1,f=!0,d="+",h=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(i=t.scope),t.element&&(s=t.element),t.keyup&&(c=t.keyup),t.keydown!==void 0&&(f=t.keydown),t.capture!==void 0&&(h=t.capture),typeof t.splitKey=="string"&&(d=t.splitKey)),typeof t=="string"&&(i=t);u1&&(o=xI(Xa,e)),e=e[e.length-1],e=e==="*"?"*":Wm(e),e in sn||(sn[e]=[]),sn[e].push({keyup:c,keydown:f,scope:i,mods:o,shortcut:r[u],method:n,key:r[u],splitKey:d,element:s});typeof s<"u"&&!hpe(s)&&window&&(CI.push(s),F2(s,"keydown",function(m){Z7(m,s)},h),U7||(U7=!0,F2(window,"focus",function(){Nt=[]},h)),F2(s,"keyup",function(m){Z7(m,s),dpe(m)},h))}function mpe(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(sn).forEach(function(n){var r=sn[n].find(function(o){return o.scope===t&&o.shortcut===e});r&&r.method&&r.method()})}var $2={setScope:_I,getScope:id,deleteScope:fpe,getPressedKeyCodes:lpe,isPressed:cpe,filter:upe,trigger:mpe,unbind:ppe,keyMap:i6,modifier:Xa,modifierMap:s5};for(var V2 in $2)Object.prototype.hasOwnProperty.call($2,V2)&&(Br[V2]=$2[V2]);if(typeof window<"u"){var gpe=window.hotkeys;Br.noConflict=function(e){return e&&window.hotkeys===Br&&(window.hotkeys=gpe),Br},window.hotkeys=Br}Br.filter=function(){return!0};var kI=function(t,n){var r=t.target,o=r&&r.tagName;return Boolean(o&&n&&n.includes(o))},vpe=function(t){return kI(t,["INPUT","TEXTAREA","SELECT"])};function rn(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var o=n||{},i=o.enableOnTags,s=o.filter,u=o.keyup,c=o.keydown,f=o.filterPreventDefault,d=f===void 0?!0:f,h=o.enabled,m=h===void 0?!0:h,g=o.enableOnContentEditable,b=g===void 0?!1:g,x=C.exports.useRef(null),k=C.exports.useCallback(function(S,w){var _,L;return s&&!s(S)?!d:vpe(S)&&!kI(S,i)||(_=S.target)!=null&&_.isContentEditable&&!b?!0:x.current===null||document.activeElement===x.current||(L=x.current)!=null&&L.contains(document.activeElement)?(t(S,w),!0):!1},r?[x,i,s].concat(r):[x,i,s]);return C.exports.useEffect(function(){if(!m){Br.unbind(e,k);return}return u&&c!==!0&&(n.keydown=!1),Br(e,n||{},k),function(){return Br.unbind(e,k)}},[k,e,m]),x}Br.isPressed;function ype(){return q("div",{className:"work-in-progress inpainting-work-in-progress",children:[v("h1",{children:"Inpainting"}),v("p",{children:"Inpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}function bpe(){return q("div",{className:"work-in-progress nodes-work-in-progress",children:[v("h1",{children:"Nodes"}),v("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function xpe(){return q("div",{className:"work-in-progress outpainting-work-in-progress",children:[v("h1",{children:"Outpainting"}),v("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const wpe=()=>q("div",{className:"work-in-progress post-processing-work-in-progress",children:[v("h1",{children:"Post Processing"}),v("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image tab. A dedicated UI will be released soon."}),v("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen, High Resolution Fixing and more."})]}),Spe=Ru({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),Cpe=Ru({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),_pe=Ru({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),kpe=Ru({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),Epe=Ru({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),Lpe=Ru({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:v("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var No=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(No||{});const Ppe={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. CLI Commands will not work in the prompt.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"Additional Options",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN or CodeFormer, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher values will apply a stronger corrective pressure on outputs.",href:"link/to/docs/feature2.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},ju=e=>{const{label:t,isDisabled:n=!1,fontSize:r="md",size:o="md",width:i="auto",...s}=e;return v(ns,{isDisabled:n,width:i,children:q(Ft,{justifyContent:"space-between",alignItems:"center",children:[t&&v(Gs,{fontSize:r,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",children:t}),v(Lm,{size:o,className:"switch-button",...s})]})})};function EI(){const e=Ee(o=>o.system.isGFPGANAvailable),t=Ee(o=>o.options.shouldRunGFPGAN),n=Ue();return q(Ft,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Restore Face"}),v(ju,{isDisabled:!e,isChecked:t,onChange:o=>n(Pfe(o.target.checked))})]})}const K7=/^-?(0\.)?\.?$/,bi=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:o=!0,fontSize:i="1rem",size:s="sm",width:u,textAlign:c,isInvalid:f,value:d,onChange:h,min:m,max:g,isInteger:b=!0,...x}=e,[k,S]=C.exports.useState(String(d));C.exports.useEffect(()=>{!k.match(K7)&&d!==Number(k)&&S(String(d))},[d,k]);const w=L=>{S(L),L.match(K7)||h(b?Math.floor(Number(L)):Number(L))},_=L=>{const T=od.clamp(b?Math.floor(Number(L.target.value)):Number(L.target.value),m,g);S(String(T)),h(T)};return q(ns,{isDisabled:r,isInvalid:f,className:`number-input ${n}`,children:[t&&v(Gs,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"number-input-label",children:t}),q(IA,{size:s,...x,className:"number-input-field",value:k,keepWithinRange:!0,clampValueOnBlur:!1,onChange:w,onBlur:_,children:[v(OA,{fontSize:i,className:"number-input-entry",width:u,textAlign:c}),q("div",{className:"number-input-stepper",style:o?{display:"block"}:{display:"none"},children:[v(NA,{className:"number-input-stepper-button"}),v(RA,{className:"number-input-stepper-button"})]})]})]})},Ape=qn(e=>e.options,e=>({gfpganStrength:e.gfpganStrength}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),Tpe=qn(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),a6=()=>{const e=Ue(),{gfpganStrength:t}=Ee(Ape),{isGFPGANAvailable:n}=Ee(Tpe);return v(Ft,{direction:"column",gap:2,children:v(bi,{isDisabled:!n,label:"Strength",step:.05,min:0,max:1,onChange:o=>e(X4(o)),value:t,width:"90px",isInteger:!1})})};function Ipe(){const e=Ue(),t=Ee(r=>r.options.shouldFitToWidthHeight);return v(ju,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(qT(r.target.checked))})}function Ope(e){const{label:t="Strength",styleClass:n}=e,r=Ee(s=>s.options.img2imgStrength),o=Ue();return v(bi,{label:t,step:.01,min:.01,max:.99,onChange:s=>o(KT(s)),value:r,width:"90px",isInteger:!1,styleClass:n})}function Mpe(){const e=Ue(),t=Ee(r=>r.options.shouldRandomizeSeed);return v(ju,{label:"Randomize Seed",isChecked:t,onChange:r=>e(Tfe(r.target.checked))})}function Rpe(){const e=Ee(i=>i.options.seed),t=Ee(i=>i.options.shouldRandomizeSeed),n=Ee(i=>i.options.shouldGenerateVariations),r=Ue(),o=i=>r(Od(i));return v(bi,{label:"Seed",step:1,precision:0,flexGrow:1,min:r6,max:o6,isDisabled:t,isInvalid:e<0&&n,onChange:o,value:e,width:"10rem"})}function Npe(){const e=Ue(),t=Ee(r=>r.options.shouldRandomizeSeed);return v(mi,{size:"sm",isDisabled:t,onClick:()=>e(Od(bI(r6,o6))),children:v("p",{children:"Shuffle"})})}function Dpe(){const e=Ue(),t=Ee(r=>r.options.threshold);return v(bi,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e(Cfe(r)),value:t,isInteger:!1})}function zpe(){const e=Ue(),t=Ee(r=>r.options.perlin);return v(bi,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(_fe(r)),value:t,isInteger:!1})}const LI=()=>q(Ft,{gap:2,direction:"column",children:[v(Mpe,{}),q(Ft,{gap:2,children:[v(Rpe,{}),v(Npe,{})]}),v(Ft,{gap:2,children:v(Dpe,{})}),v(Ft,{gap:2,children:v(zpe,{})})]});function PI(){const e=Ee(o=>o.system.isESRGANAvailable),t=Ee(o=>o.options.shouldRunESRGAN),n=Ue();return q(Ft,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Upscale"}),v(ju,{isDisabled:!e,isChecked:t,onChange:o=>n(Afe(o.target.checked))})]})}const jm=e=>{const{label:t,isDisabled:n,validValues:r,size:o="sm",fontSize:i="md",styleClass:s,...u}=e;return q(ns,{isDisabled:n,className:`iai-select ${s}`,children:[v(Gs,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"iai-select-label",children:t}),v(BA,{fontSize:i,size:o,...u,className:"iai-select-picker",children:r.map(c=>typeof c=="string"||typeof c=="number"?v("option",{value:c,className:"iai-select-option",children:c},c):v("option",{value:c.value,children:c.key},c.value))})]})},Fpe=qn(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),Bpe=qn(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),s6=()=>{const e=Ue(),{upscalingLevel:t,upscalingStrength:n}=Ee(Fpe),{isESRGANAvailable:r}=Ee(Bpe);return q("div",{className:"upscale-options",children:[v(jm,{isDisabled:!r,label:"Scale",value:t,onChange:s=>e(Q4(Number(s.target.value))),validValues:ipe}),v(bi,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:s=>e(J4(s)),value:n,isInteger:!1})]})};function $pe(){const e=Ee(r=>r.options.shouldGenerateVariations),t=Ue();return v(ju,{isChecked:e,width:"auto",onChange:r=>t(Efe(r.target.checked))})}function AI(){return q(Ft,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Variations"}),v($pe,{})]})}function Vpe(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:o="1rem",width:i,isInvalid:s,...u}=e;return q(ns,{className:`input ${n}`,isInvalid:s,isDisabled:r,flexGrow:1,children:[v(Gs,{fontSize:o,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),v(nb,{...u,className:"input-entry",size:"sm",width:i})]})}function Wpe(){const e=Ee(o=>o.options.seedWeights),t=Ee(o=>o.options.shouldGenerateVariations),n=Ue(),r=o=>n(YT(o.target.value));return v(Vpe,{label:"Seed Weights",value:e,isInvalid:t&&!(e6(e)||e===""),isDisabled:!t,onChange:r})}function jpe(){const e=Ee(o=>o.options.variationAmount),t=Ee(o=>o.options.shouldGenerateVariations),n=Ue();return v(bi,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:o=>n(Lfe(o)),isInteger:!1})}const TI=()=>q(Ft,{gap:2,direction:"column",children:[v(jpe,{}),v(Wpe,{})]});function II(){const e=Ee(r=>r.options.showAdvancedOptions),t=Ue();return q("div",{className:"advanced_options_checker",children:[v("input",{type:"checkbox",name:"advanced_options",id:"",onChange:r=>t(Ife(r.target.checked)),checked:e}),v("label",{htmlFor:"advanced_options",children:"Advanced Options"})]})}function Hpe(){const e=Ue(),t=Ee(r=>r.options.cfgScale);return v(bi,{label:"CFG Scale",step:.5,min:1,max:30,onChange:r=>e(UT(r)),value:t,width:l6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}function Upe(){const e=Ee(r=>r.options.height),t=Ue();return v(jm,{label:"Height",value:e,flexGrow:1,onChange:r=>t(GT(Number(r.target.value))),validValues:ope,fontSize:Hu,styleClass:"main-option-block"})}function Gpe(){const e=Ue(),t=Ee(r=>r.options.iterations);return v(bi,{label:"Images",step:1,min:1,max:9999,onChange:r=>e(Sfe(r)),value:t,width:l6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center"})}function Zpe(){const e=Ee(r=>r.options.sampler),t=Ue();return v(jm,{label:"Sampler",value:e,onChange:r=>t(ZT(r.target.value)),validValues:npe,fontSize:Hu,styleClass:"main-option-block"})}function Kpe(){const e=Ue(),t=Ee(r=>r.options.steps);return v(bi,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(HT(r)),value:t,width:l6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center"})}function qpe(){const e=Ee(r=>r.options.width),t=Ue();return v(jm,{label:"Width",value:e,flexGrow:1,onChange:r=>t(Y4(Number(r.target.value))),validValues:rpe,fontSize:Hu,styleClass:"main-option-block"})}const Hu="0.9rem",l6="auto";function OI(){return v("div",{className:"main-options",children:q("div",{className:"main-options-list",children:[q("div",{className:"main-options-row",children:[v(Gpe,{}),v(Kpe,{}),v(Hpe,{})]}),q("div",{className:"main-options-row",children:[v(qpe,{}),v(Upe,{}),v(Zpe,{})]})]})})}var MI={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},q7=X.createContext&&X.createContext(MI),ja=globalThis&&globalThis.__assign||function(){return ja=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),lhe=({children:e,feature:t})=>{const n=Ee(she),{text:r}=Ppe[t];return n?q(Ab,{trigger:"hover",children:[v(Mb,{children:v(po,{children:e})}),q(Ob,{className:"guide-popover-content",maxWidth:"400px",onClick:o=>o.preventDefault(),cursor:"initial",children:[v(Tb,{className:"guide-popover-arrow"}),v("div",{className:"guide-popover-guide-content",children:r})]})]}):v(yn,{})},uhe=ue(({feature:e,icon:t=NI},n)=>v(lhe,{feature:e,children:v(po,{ref:n,children:v(Kr,{as:t})})}));function che(e){const{header:t,feature:n,options:r}=e;return q(KL,{className:"advanced-settings-item",children:[v("h2",{children:q(GL,{className:"advanced-settings-header",children:[t,v(uhe,{feature:n}),v(ZL,{})]})}),v(qL,{className:"advanced-settings-panel",children:r})]})}const zI=e=>{const{accordionInfo:t}=e,n=Ee(s=>s.system.openAccordions),r=Ue();return v(YL,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:s=>r(jfe(s)),className:"advanced-settings",children:(()=>{const s=[];return t&&Object.keys(t).forEach(u=>{s.push(v(che,{header:t[u].header,feature:t[u].feature,options:t[u].options},u))}),s})()})},FI=()=>{const e=Ue(),t=Ee(r=>r.options.seamless);return v(Ft,{gap:2,direction:"column",children:v(ju,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(kfe(r.target.checked))})})},Uc=e=>{const{label:t,tooltip:n="",size:r="sm",...o}=e;return v(Rn,{label:n,children:v(mi,{size:r,...o,children:t})})},X7=qn(e=>e.options,e=>({prompt:e.prompt,shouldGenerateVariations:e.shouldGenerateVariations,seedWeights:e.seedWeights,maskPath:e.maskPath,initialImagePath:e.initialImagePath,seed:e.seed,activeTab:e.activeTab}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),u6=qn(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),BI=()=>{const{prompt:e}=Ee(X7),{shouldGenerateVariations:t,seedWeights:n,maskPath:r,initialImagePath:o,seed:i,activeTab:s}=Ee(X7),{isProcessing:u,isConnected:c}=Ee(u6);return C.exports.useMemo(()=>!(!e||Boolean(e.match(/^[\s\r\n]+$/))||e&&!o&&s===1||r&&!o||u||!c||t&&(!(e6(n)||n==="")||i===-1)),[e,r,o,u,c,t,n,i,s])};function fhe(){const e=Ue(),t=BI();return v(Uc,{label:"Invoke","aria-label":"Invoke",type:"submit",isDisabled:!t,onClick:()=>{e(a5())},className:"invoke-btn"})}const ws=e=>{const{tooltip:t="",tooltipPlacement:n="bottom",onClick:r,...o}=e;return v(Rn,{label:t,hasArrow:!0,placement:n,children:v(un,{...o,cursor:r?"pointer":"unset",onClick:r})})};function dhe(){const e=Ue(),{isProcessing:t,isConnected:n}=Ee(u6),r=()=>e(Qde());return rn("shift+x",()=>{(n||t)&&r()},[n,t]),v(ws,{icon:v(ahe,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!n||!t,onClick:r,className:"cancel-btn"})}const $I=()=>q("div",{className:"process-buttons",children:[v(fhe,{}),v(dhe,{})]}),phe=qn(e=>e.options,e=>({prompt:e.prompt}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),VI=()=>{const e=C.exports.useRef(null),{prompt:t}=Ee(phe),{isProcessing:n}=Ee(u6),r=Ue(),o=BI(),i=u=>{r(jT(u.target.value))};rn("ctrl+enter",()=>{o&&r(a5())},[o]),rn("alt+a",()=>{e.current?.focus()},[]);const s=u=>{u.key==="Enter"&&u.shiftKey===!1&&o&&(u.preventDefault(),r(a5()))};return v("div",{className:"prompt-bar",children:v(ns,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),isDisabled:n,children:v(KA,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:i,onKeyDown:s,resize:"vertical",height:30,ref:e})})})};function hhe(){const e=Ee(n=>n.options.showAdvancedOptions),t={seed:{header:v(po,{flex:"1",textAlign:"left",children:"Seed"}),feature:No.SEED,options:v(LI,{})},variations:{header:v(AI,{}),feature:No.VARIATIONS,options:v(TI,{})},face_restore:{header:v(EI,{}),feature:No.FACE_CORRECTION,options:v(a6,{})},upscale:{header:v(PI,{}),feature:No.UPSCALE,options:v(s6,{})},other:{header:v(po,{flex:"1",textAlign:"left",children:"Other"}),feature:No.OTHER,options:v(FI,{})}};return q("div",{className:"image-to-image-panel",children:[v(VI,{}),v($I,{}),v(OI,{}),v(Ope,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),v(Ipe,{}),v(II,{}),e?v(zI,{accordionInfo:t}):null]})}function mhe(e){return St({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function ghe(e){return St({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function vhe(e){return St({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function yhe(e){return St({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function bhe(e){return St({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function xhe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function whe(e){return St({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function She(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function Che(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function _he(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function khe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function Ehe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function Lhe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function Phe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function Ahe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}var The=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Md(e,t){var n=Ihe(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function Ihe(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),o=The.get(r);o&&Object.defineProperty(e,"type",{value:o,writable:!1,configurable:!1,enumerable:!0})}return e}var Ohe=[".DS_Store","Thumbs.db"];function Mhe(e){return Du(this,void 0,void 0,function(){return zu(this,function(t){return b0(e)&&Rhe(e.dataTransfer)?[2,Fhe(e.dataTransfer,e.type)]:Nhe(e)?[2,Dhe(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,zhe(e)]:[2,[]]})})}function Rhe(e){return b0(e)}function Nhe(e){return b0(e)&&b0(e.target)}function b0(e){return typeof e=="object"&&e!==null}function Dhe(e){return l5(e.target.files).map(function(t){return Md(t)})}function zhe(e){return Du(this,void 0,void 0,function(){var t;return zu(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Md(r)})]}})})}function Fhe(e,t){return Du(this,void 0,void 0,function(){var n,r;return zu(this,function(o){switch(o.label){case 0:return e.items?(n=l5(e.items).filter(function(i){return i.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(Bhe))]):[3,2];case 1:return r=o.sent(),[2,Q7(WI(r))];case 2:return[2,Q7(l5(e.files).map(function(i){return Md(i)}))]}})})}function Q7(e){return e.filter(function(t){return Ohe.indexOf(t.name)===-1})}function l5(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,rC(n)];if(e.sizen)return[!1,rC(n)]}return[!0,null]}function Ss(e){return e!=null}function t1e(e){var t=e.files,n=e.accept,r=e.minSize,o=e.maxSize,i=e.multiple,s=e.maxFiles,u=e.validator;return!i&&t.length>1||i&&s>=1&&t.length>s?!1:t.every(function(c){var f=GI(c,n),d=ad(f,1),h=d[0],m=ZI(c,r,o),g=ad(m,1),b=g[0],x=u?u(c):null;return h&&b&&!x})}function x0(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Ah(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function iC(e){e.preventDefault()}function n1e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function r1e(e){return e.indexOf("Edge/")!==-1}function o1e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return n1e(e)||r1e(e)}function Ko(){for(var e=arguments.length,t=new Array(e),n=0;n1?o-1:0),s=1;se.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function w1e(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var c6=C.exports.forwardRef(function(e,t){var n=e.children,r=w0(e,c1e),o=QI(r),i=o.open,s=w0(o,f1e);return C.exports.useImperativeHandle(t,function(){return{open:i}},[i]),v(C.exports.Fragment,{children:n(Wt(Wt({},s),{},{open:i}))})});c6.displayName="Dropzone";var XI={disabled:!1,getFilesFromEvent:Mhe,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};c6.defaultProps=XI;c6.propTypes={children:wt.exports.func,accept:wt.exports.objectOf(wt.exports.arrayOf(wt.exports.string)),multiple:wt.exports.bool,preventDropOnDocument:wt.exports.bool,noClick:wt.exports.bool,noKeyboard:wt.exports.bool,noDrag:wt.exports.bool,noDragEventsBubbling:wt.exports.bool,minSize:wt.exports.number,maxSize:wt.exports.number,maxFiles:wt.exports.number,disabled:wt.exports.bool,getFilesFromEvent:wt.exports.func,onFileDialogCancel:wt.exports.func,onFileDialogOpen:wt.exports.func,useFsAccessApi:wt.exports.bool,autoFocus:wt.exports.bool,onDragEnter:wt.exports.func,onDragLeave:wt.exports.func,onDragOver:wt.exports.func,onDrop:wt.exports.func,onDropAccepted:wt.exports.func,onDropRejected:wt.exports.func,onError:wt.exports.func,validator:wt.exports.func};var d5={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function QI(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=Wt(Wt({},XI),e),n=t.accept,r=t.disabled,o=t.getFilesFromEvent,i=t.maxSize,s=t.minSize,u=t.multiple,c=t.maxFiles,f=t.onDragEnter,d=t.onDragLeave,h=t.onDragOver,m=t.onDrop,g=t.onDropAccepted,b=t.onDropRejected,x=t.onFileDialogCancel,k=t.onFileDialogOpen,S=t.useFsAccessApi,w=t.autoFocus,_=t.preventDropOnDocument,L=t.noClick,T=t.noKeyboard,R=t.noDrag,N=t.noDragEventsBubbling,z=t.onError,K=t.validator,W=C.exports.useMemo(function(){return s1e(n)},[n]),J=C.exports.useMemo(function(){return a1e(n)},[n]),ve=C.exports.useMemo(function(){return typeof k=="function"?k:sC},[k]),xe=C.exports.useMemo(function(){return typeof x=="function"?x:sC},[x]),he=C.exports.useRef(null),fe=C.exports.useRef(null),me=C.exports.useReducer(S1e,d5),ne=W2(me,2),j=ne[0],Y=ne[1],Z=j.isFocused,O=j.isFileDialogActive,H=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&S&&i1e()),se=function(){!H.current&&O&&setTimeout(function(){if(fe.current){var Le=fe.current.files;Le.length||(Y({type:"closeDialog"}),xe())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",se,!1),function(){window.removeEventListener("focus",se,!1)}},[fe,O,xe,H]);var ce=C.exports.useRef([]),ye=function(Le){he.current&&he.current.contains(Le.target)||(Le.preventDefault(),ce.current=[])};C.exports.useEffect(function(){return _&&(document.addEventListener("dragover",iC,!1),document.addEventListener("drop",ye,!1)),function(){_&&(document.removeEventListener("dragover",iC),document.removeEventListener("drop",ye))}},[he,_]),C.exports.useEffect(function(){return!r&&w&&he.current&&he.current.focus(),function(){}},[he,w,r]);var be=C.exports.useCallback(function(pe){z?z(pe):console.error(pe)},[z]),Pe=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe),ce.current=[].concat(h1e(ce.current),[pe.target]),Ah(pe)&&Promise.resolve(o(pe)).then(function(Le){if(!(x0(pe)&&!N)){var dt=Le.length,ut=dt>0&&t1e({files:Le,accept:W,minSize:s,maxSize:i,multiple:u,maxFiles:c,validator:K}),ie=dt>0&&!ut;Y({isDragAccept:ut,isDragReject:ie,isDragActive:!0,type:"setDraggedFiles"}),f&&f(pe)}}).catch(function(Le){return be(Le)})},[o,f,be,N,W,s,i,u,c,K]),de=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe);var Le=Ah(pe);if(Le&&pe.dataTransfer)try{pe.dataTransfer.dropEffect="copy"}catch{}return Le&&h&&h(pe),!1},[h,N]),_e=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe);var Le=ce.current.filter(function(ut){return he.current&&he.current.contains(ut)}),dt=Le.indexOf(pe.target);dt!==-1&&Le.splice(dt,1),ce.current=Le,!(Le.length>0)&&(Y({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Ah(pe)&&d&&d(pe))},[he,d,N]),De=C.exports.useCallback(function(pe,Le){var dt=[],ut=[];pe.forEach(function(ie){var Ge=GI(ie,W),Et=W2(Ge,2),En=Et[0],Fn=Et[1],Lr=ZI(ie,s,i),$o=W2(Lr,2),xi=$o[0],Yn=$o[1],qr=K?K(ie):null;if(En&&xi&&!qr)dt.push(ie);else{var os=[Fn,Yn];qr&&(os=os.concat(qr)),ut.push({file:ie,errors:os.filter(function(Xs){return Xs})})}}),(!u&&dt.length>1||u&&c>=1&&dt.length>c)&&(dt.forEach(function(ie){ut.push({file:ie,errors:[e1e]})}),dt.splice(0)),Y({acceptedFiles:dt,fileRejections:ut,type:"setFiles"}),m&&m(dt,ut,Le),ut.length>0&&b&&b(ut,Le),dt.length>0&&g&&g(dt,Le)},[Y,u,W,s,i,c,m,g,b,K]),st=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe),ce.current=[],Ah(pe)&&Promise.resolve(o(pe)).then(function(Le){x0(pe)&&!N||De(Le,pe)}).catch(function(Le){return be(Le)}),Y({type:"reset"})},[o,De,be,N]),Tt=C.exports.useCallback(function(){if(H.current){Y({type:"openDialog"}),ve();var pe={multiple:u,types:J};window.showOpenFilePicker(pe).then(function(Le){return o(Le)}).then(function(Le){De(Le,null),Y({type:"closeDialog"})}).catch(function(Le){l1e(Le)?(xe(Le),Y({type:"closeDialog"})):u1e(Le)?(H.current=!1,fe.current?(fe.current.value=null,fe.current.click()):be(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):be(Le)});return}fe.current&&(Y({type:"openDialog"}),ve(),fe.current.value=null,fe.current.click())},[Y,ve,xe,S,De,be,J,u]),bn=C.exports.useCallback(function(pe){!he.current||!he.current.isEqualNode(pe.target)||(pe.key===" "||pe.key==="Enter"||pe.keyCode===32||pe.keyCode===13)&&(pe.preventDefault(),Tt())},[he,Tt]),we=C.exports.useCallback(function(){Y({type:"focus"})},[]),Ie=C.exports.useCallback(function(){Y({type:"blur"})},[]),tt=C.exports.useCallback(function(){L||(o1e()?setTimeout(Tt,0):Tt())},[L,Tt]),ze=function(Le){return r?null:Le},$t=function(Le){return T?null:ze(Le)},xn=function(Le){return R?null:ze(Le)},lt=function(Le){N&&Le.stopPropagation()},Ct=C.exports.useMemo(function(){return function(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Le=pe.refKey,dt=Le===void 0?"ref":Le,ut=pe.role,ie=pe.onKeyDown,Ge=pe.onFocus,Et=pe.onBlur,En=pe.onClick,Fn=pe.onDragEnter,Lr=pe.onDragOver,$o=pe.onDragLeave,xi=pe.onDrop,Yn=w0(pe,d1e);return Wt(Wt(f5({onKeyDown:$t(Ko(ie,bn)),onFocus:$t(Ko(Ge,we)),onBlur:$t(Ko(Et,Ie)),onClick:ze(Ko(En,tt)),onDragEnter:xn(Ko(Fn,Pe)),onDragOver:xn(Ko(Lr,de)),onDragLeave:xn(Ko($o,_e)),onDrop:xn(Ko(xi,st)),role:typeof ut=="string"&&ut!==""?ut:"presentation"},dt,he),!r&&!T?{tabIndex:0}:{}),Yn)}},[he,bn,we,Ie,tt,Pe,de,_e,st,T,R,r]),Qt=C.exports.useCallback(function(pe){pe.stopPropagation()},[]),Gt=C.exports.useMemo(function(){return function(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Le=pe.refKey,dt=Le===void 0?"ref":Le,ut=pe.onChange,ie=pe.onClick,Ge=w0(pe,p1e),Et=f5({accept:W,multiple:u,type:"file",style:{display:"none"},onChange:ze(Ko(ut,st)),onClick:ze(Ko(ie,Qt)),tabIndex:-1},dt,fe);return Wt(Wt({},Et),Ge)}},[fe,n,u,st,r]);return Wt(Wt({},j),{},{isFocused:Z&&!r,getRootProps:Ct,getInputProps:Gt,rootRef:he,inputRef:fe,open:ze(Tt)})}function S1e(e,t){switch(t.type){case"focus":return Wt(Wt({},e),{},{isFocused:!0});case"blur":return Wt(Wt({},e),{},{isFocused:!1});case"openDialog":return Wt(Wt({},d5),{},{isFileDialogActive:!0});case"closeDialog":return Wt(Wt({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return Wt(Wt({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return Wt(Wt({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return Wt({},d5);default:return e}}function sC(){}const C1e=({children:e,fileAcceptedCallback:t,fileRejectionCallback:n,styleClass:r})=>{const o=C.exports.useCallback((f,d)=>{d.forEach(h=>{n(h)}),f.forEach(h=>{t(h)})},[t,n]),{getRootProps:i,getInputProps:s,open:u}=QI({onDrop:o,accept:{"image/jpeg":[".jpg",".jpeg",".png"]}}),c=f=>{f.stopPropagation(),u()};return q(po,{...i(),flexGrow:3,className:`${r}`,children:[v("input",{...s({multiple:!1})}),C.exports.cloneElement(e,{onClick:c})]})};function _1e(e){const{label:t,icon:n,dispatcher:r,styleClass:o,onMouseOver:i,OnMouseout:s}=e,u=pT(),c=Ue(),f=C.exports.useCallback(h=>c(r(h)),[c,r]),d=C.exports.useCallback(h=>{const m=h.errors.reduce((g,b)=>g+` -`+b.message,"");u({title:"Upload failed",description:m,status:"error",isClosable:!0})},[u]);return v(C1e,{fileAcceptedCallback:f,fileRejectionCallback:d,styleClass:o,children:v(mi,{size:"sm",fontSize:"md",fontWeight:"normal",onMouseOver:i,onMouseOut:s,leftIcon:n,width:"100%",children:t||null})})}const k1e=qn(e=>e.system,e=>e.shouldConfirmOnDelete),JI=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:o,onClose:i}=o0(),s=Ue(),u=Ee(k1e),c=C.exports.useRef(null),f=m=>{m.stopPropagation(),u?o():d()},d=()=>{s(Yde(e)),i()};rn("del",()=>{u?o():d()},[e,u]);const h=m=>s(nI(!m.target.checked));return q(yn,{children:[C.exports.cloneElement(t,{onClick:f,ref:n}),v(Rte,{isOpen:r,leastDestructiveRef:c,onClose:i,children:v(Qf,{children:q(Nte,{children:[v(Lb,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),v(l0,{children:q(Ft,{direction:"column",gap:5,children:[v(zr,{children:"Are you sure? You can't undo this action afterwards."}),v(ns,{children:q(Ft,{alignItems:"center",children:[v(Gs,{mb:0,children:"Don't ask me again"}),v(Lm,{checked:!u,onChange:h})]})})]})}),q(Eb,{children:[v(mi,{ref:c,onClick:i,children:"Cancel"}),v(mi,{colorScheme:"red",onClick:d,ml:3,children:"Delete"})]})]})})})]})}),lC=({title:e="Popup",styleClass:t,delay:n=50,popoverOptions:r,actionButton:o,children:i})=>q(Ab,{trigger:"hover",closeDelay:n,children:[v(Mb,{children:v(po,{children:i})}),q(Ob,{className:`popover-content ${t}`,children:[v(Tb,{className:"popover-arrow"}),v(DA,{className:"popover-header",children:e}),q("div",{className:"popover-options",children:[r||null,o]})]})]}),E1e=qn(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isGFPGANAvailable:e.isGFPGANAvailable,isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),eO=({image:e})=>{const t=Ue(),n=Ee(S=>S.options.shouldShowImageDetails),r=pT(),o=Ee(S=>S.gallery.intermediateImage),i=Ee(S=>S.options.upscalingLevel),s=Ee(S=>S.options.gfpganStrength),{isProcessing:u,isConnected:c,isGFPGANAvailable:f,isESRGANAvailable:d}=Ee(E1e),h=()=>{t(Pu(e.url)),t(Bi(1))};rn("shift+i",()=>{e?(h(),r({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):r({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[e]);const m=()=>t(XT(e.metadata));rn("a",()=>{["txt2img","img2img"].includes(e?.metadata?.image?.type)?(m(),r({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):r({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const g=()=>t(Od(e.metadata.image.seed));rn("s",()=>{e?.metadata?.image?.seed?(g(),r({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):r({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const b=()=>t(Kde(e));rn("u",()=>{d&&Boolean(!o)&&c&&!u&&i?b():r({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[e,d,o,c,u,i]);const x=()=>t(qde(e));rn("r",()=>{f&&Boolean(!o)&&c&&!u&&s?x():r({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[e,f,o,c,u,s]);const k=()=>t(Ofe(!n));return rn("i",()=>{e?k():r({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[e,n]),q("div",{className:"current-image-options",children:[v(ws,{icon:v(ohe,{}),tooltip:"Send To Image To Image","aria-label":"Send To Image To Image",onClick:h}),v(Uc,{label:"Use All",isDisabled:!["txt2img","img2img"].includes(e?.metadata?.image?.type),onClick:m}),v(Uc,{label:"Use Seed",isDisabled:!e?.metadata?.image?.seed,onClick:g}),v(lC,{title:"Restore Faces",popoverOptions:v(a6,{}),actionButton:v(Uc,{label:"Restore Faces",isDisabled:!f||Boolean(o)||!(c&&!u)||!s,onClick:x}),children:v(ws,{icon:v(Jpe,{}),"aria-label":"Restore Faces"})}),v(lC,{title:"Upscale",styleClass:"upscale-popover",popoverOptions:v(s6,{}),actionButton:v(Uc,{label:"Upscale Image",isDisabled:!d||Boolean(o)||!(c&&!u)||!i,onClick:b}),children:v(ws,{icon:v(nhe,{}),"aria-label":"Upscale"})}),v(ws,{icon:v(ehe,{}),tooltip:"Details","aria-label":"Details",onClick:k}),v(JI,{image:e,children:v(ws,{icon:v(Qpe,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:Boolean(o)})})]})},L1e=qn(e=>e.gallery,e=>{const t=e.images.findIndex(r=>r.uuid===e?.currentImage?.uuid),n=e.images.length;return{isOnFirstImage:t===0,isOnLastImage:!isNaN(t)&&t===n-1}},{memoizeOptions:{resultEqualityCheck:od.isEqual}});function tO(e){const{imageToDisplay:t}=e,n=Ue(),{isOnFirstImage:r,isOnLastImage:o}=Ee(L1e),i=Ee(m=>m.options.shouldShowImageDetails),[s,u]=C.exports.useState(!1),c=()=>{u(!0)},f=()=>{u(!1)},d=()=>{n(eI())},h=()=>{n(JT())};return q("div",{className:"current-image-preview",children:[v(ym,{src:t.url,fit:"contain",maxWidth:"100%",maxHeight:"100%"}),!i&&q("div",{className:"current-image-next-prev-buttons",children:[v("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:c,onMouseOut:f,children:s&&!r&&v(un,{"aria-label":"Previous image",icon:v(yhe,{className:"next-prev-button"}),variant:"unstyled",onClick:d})}),v("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:c,onMouseOut:f,children:s&&!o&&v(un,{"aria-label":"Next image",icon:v(bhe,{className:"next-prev-button"}),variant:"unstyled",onClick:h})})]})]})}var uC={path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},nO=ue((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:u,__css:c,...f}=e,d=Xt("chakra-icon",u),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:d,__css:h},g=r??uC.viewBox;if(n&&typeof n!="string")return X.createElement(oe.svg,{as:n,...m,...f});const b=s??uC.path;return X.createElement(oe.svg,{verticalAlign:"middle",viewBox:g,...m,...f},b)});nO.displayName="Icon";function Te(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=ue((u,c)=>v(nO,{ref:c,viewBox:t,...o,...u,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}Te({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});Te({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});Te({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});Te({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});Te({displayName:"SunIcon",path:q("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[v("circle",{cx:"12",cy:"12",r:"5"}),v("path",{d:"M12 1v2"}),v("path",{d:"M12 21v2"}),v("path",{d:"M4.22 4.22l1.42 1.42"}),v("path",{d:"M18.36 18.36l1.42 1.42"}),v("path",{d:"M1 12h2"}),v("path",{d:"M21 12h2"}),v("path",{d:"M4.22 19.78l1.42-1.42"}),v("path",{d:"M18.36 5.64l1.42-1.42"})]})});Te({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});Te({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:v("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});Te({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});Te({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});Te({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});Te({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});Te({displayName:"ViewIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),v("circle",{cx:"12",cy:"12",r:"2"})]})});Te({displayName:"ViewOffIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),v("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});Te({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});Te({displayName:"DeleteIcon",path:v("g",{fill:"currentColor",children:v("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});Te({displayName:"RepeatIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),v("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});Te({displayName:"RepeatClockIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),v("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});Te({displayName:"EditIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),v("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});Te({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});Te({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});Te({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});Te({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});Te({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});Te({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});Te({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});Te({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});Te({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var rO=Te({displayName:"ExternalLinkIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),v("path",{d:"M15 3h6v6"}),v("path",{d:"M10 14L21 3"})]})});Te({displayName:"LinkIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),v("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});Te({displayName:"PlusSquareIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),v("path",{d:"M12 8v8"}),v("path",{d:"M8 12h8"})]})});Te({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});Te({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});Te({displayName:"TimeIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),v("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});Te({displayName:"ArrowRightIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),v("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});Te({displayName:"ArrowLeftIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),v("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});Te({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});Te({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});Te({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});Te({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});Te({displayName:"EmailIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),v("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});Te({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});Te({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});Te({displayName:"SpinnerIcon",path:q(yn,{children:[v("defs",{children:q("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[v("stop",{stopColor:"currentColor",offset:"0%"}),v("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),q("g",{transform:"translate(2)",fill:"none",children:[v("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),v("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),v("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});Te({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});Te({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:v("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});Te({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});Te({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});Te({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});Te({displayName:"InfoOutlineIcon",path:q("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[v("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),v("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),v("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});Te({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});Te({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});Te({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});Te({displayName:"QuestionOutlineIcon",path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});Te({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});Te({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});Te({viewBox:"0 0 14 14",path:v("g",{fill:"currentColor",children:v("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});Te({displayName:"MinusIcon",path:v("g",{fill:"currentColor",children:v("rect",{height:"4",width:"20",x:"2",y:"10"})})});Te({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function oO(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const tn=({label:e,value:t,onClick:n,isLink:r,labelPosition:o})=>q(Ft,{gap:2,children:[n&&v(Rn,{label:`Recall ${e}`,children:v(un,{"aria-label":"Use this parameter",icon:v(oO,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),q(Ft,{direction:o?"column":"row",children:[q(zr,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?q(iu,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",v(rO,{mx:"2px"})]}):v(zr,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),P1e=(e,t)=>e.image.uuid===t.image.uuid,iO=C.exports.memo(({image:e,styleClass:t})=>{const n=Ue(),r=e?.metadata?.image||{},{type:o,postprocessing:i,sampler:s,prompt:u,seed:c,variations:f,steps:d,cfg_scale:h,seamless:m,width:g,height:b,strength:x,fit:k,init_image_path:S,mask_image_path:w,orig_path:_,scale:L}=r,T=JSON.stringify(r,null,2);return v("div",{className:`image-metadata-viewer ${t}`,children:q(Ft,{gap:1,direction:"column",width:"100%",children:[q(Ft,{gap:2,children:[v(zr,{fontWeight:"semibold",children:"File:"}),q(iu,{href:e.url,isExternal:!0,children:[e.url,v(rO,{mx:"2px"})]})]}),Object.keys(r).length>0?q(yn,{children:[o&&v(tn,{label:"Generation type",value:o}),["esrgan","gfpgan"].includes(o)&&v(tn,{label:"Original image",value:_}),o==="gfpgan"&&x!==void 0&&v(tn,{label:"Fix faces strength",value:x,onClick:()=>n(X4(x))}),o==="esrgan"&&L!==void 0&&v(tn,{label:"Upscaling scale",value:L,onClick:()=>n(Q4(L))}),o==="esrgan"&&x!==void 0&&v(tn,{label:"Upscaling strength",value:x,onClick:()=>n(J4(x))}),u&&v(tn,{label:"Prompt",labelPosition:"top",value:K4(u),onClick:()=>n(jT(u))}),c!==void 0&&v(tn,{label:"Seed",value:c,onClick:()=>n(Od(c))}),s&&v(tn,{label:"Sampler",value:s,onClick:()=>n(ZT(s))}),d&&v(tn,{label:"Steps",value:d,onClick:()=>n(HT(d))}),h!==void 0&&v(tn,{label:"CFG scale",value:h,onClick:()=>n(UT(h))}),f&&f.length>0&&v(tn,{label:"Seed-weight pairs",value:q4(f),onClick:()=>n(YT(q4(f)))}),m&&v(tn,{label:"Seamless",value:m,onClick:()=>n(Y4(m))}),g&&v(tn,{label:"Width",value:g,onClick:()=>n(Y4(g))}),b&&v(tn,{label:"Height",value:b,onClick:()=>n(GT(b))}),S&&v(tn,{label:"Initial image",value:S,isLink:!0,onClick:()=>n(Pu(S))}),w&&v(tn,{label:"Mask image",value:w,isLink:!0,onClick:()=>n(e5(w))}),o==="img2img"&&x&&v(tn,{label:"Image to image strength",value:x,onClick:()=>n(KT(x))}),k&&v(tn,{label:"Image to image fit",value:k,onClick:()=>n(qT(k))}),i&&i.length>0&&q(yn,{children:[v(ob,{size:"sm",children:"Postprocessing"}),i.map((R,N)=>{if(R.type==="esrgan"){const{scale:z,strength:K}=R;return q(Ft,{pl:"2rem",gap:1,direction:"column",children:[v(zr,{size:"md",children:`${N+1}: Upscale (ESRGAN)`}),v(tn,{label:"Scale",value:z,onClick:()=>n(Q4(z))}),v(tn,{label:"Strength",value:K,onClick:()=>n(J4(K))})]},N)}else if(R.type==="gfpgan"){const{strength:z}=R;return q(Ft,{pl:"2rem",gap:1,direction:"column",children:[v(zr,{size:"md",children:`${N+1}: Face restoration (GFPGAN)`}),v(tn,{label:"Strength",value:z,onClick:()=>n(X4(z))})]},N)}})]}),q(Ft,{gap:2,direction:"column",children:[q(Ft,{gap:2,children:[v(Rn,{label:"Copy metadata JSON",children:v(un,{"aria-label":"Copy metadata JSON",icon:v(She,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(T)})}),v(zr,{fontWeight:"semibold",children:"Metadata JSON:"})]}),v("div",{className:"image-json-viewer",children:v("pre",{children:T})})]})]}):v(bP,{width:"100%",pt:10,children:v(zr,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},P1e);function cC(){const e=Ee(r=>r.options.initialImagePath),t=Ue();return q("div",{className:"init-image-preview",children:[q("div",{className:"init-image-preview-header",children:[v("h1",{children:"Initial Image"}),v(un,{isDisabled:!e,size:"sm","aria-label":"Reset Initial Image",onClick:r=>{r.stopPropagation(),t(Pu(null))},icon:v(DI,{})})]}),e&&v("div",{className:"init-image-image",children:v(ym,{fit:"contain",src:e,rounded:"md"})})]})}function A1e(){const e=Ee(i=>i.options.initialImagePath),{currentImage:t,intermediateImage:n}=Ee(i=>i.gallery),r=Ee(i=>i.options.shouldShowImageDetails),o=n||t;return v("div",{className:"image-to-image-display",style:o?{gridAutoRows:"max-content auto"}:{gridAutoRows:"auto"},children:e?v(yn,{children:o?q(yn,{children:[v(eO,{image:o}),q("div",{className:"image-to-image-dual-preview-container",children:[q("div",{className:"image-to-image-dual-preview",children:[v(cC,{}),v("div",{className:"image-to-image-current-image-display",children:v(tO,{imageToDisplay:o})})]}),r&&v(iO,{image:o,styleClass:"img2img-metadata"})]})]}):v("div",{className:"image-to-image-single-preview",children:v(cC,{})})}):v("div",{className:"upload-image",children:v(_1e,{label:"Upload or Drop Image Here",icon:v(Ahe,{}),styleClass:"image-to-image-upload-btn",dispatcher:Jde})})})}var T1e=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,o){r.__proto__=o}||function(r,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(r[i]=o[i])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),an=globalThis&&globalThis.__assign||function(){return an=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof o>"u"?void 0:Number(o),minWidth:typeof i>"u"?void 0:Number(i),minHeight:typeof s>"u"?void 0:Number(s)}},z1e=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],mC="__resizable_base__",aO=function(e){M1e(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var o=r.parentNode;if(!o)return null;var i=r.window.document.createElement("div");return i.style.width="100%",i.style.height="100%",i.style.position="absolute",i.style.transform="scale(0, 0)",i.style.left="0",i.style.flex="0 0 100%",i.classList?i.classList.add(mC):i.className+=mC,o.appendChild(i),i},r.removeBase=function(o){var i=r.parentNode;!i||i.removeChild(o)},r.ref=function(o){o&&(r.resizable=o)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||R1e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var o=this.resizable.offsetWidth,i=this.resizable.offsetHeight,s=this.resizable.style.position;s!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:o,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:i,this.resizable.style.position=s}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,o=function(u){if(typeof n.state[u]>"u"||n.state[u]==="auto")return"auto";if(n.propsSize&&n.propsSize[u]&&n.propsSize[u].toString().endsWith("%")){if(n.state[u].toString().endsWith("%"))return n.state[u].toString();var c=n.getParentSize(),f=Number(n.state[u].toString().replace("px","")),d=f/c[u]*100;return d+"%"}return j2(n.state[u])},i=r&&typeof r.width<"u"&&!this.state.isResizing?j2(r.width):o("width"),s=r&&typeof r.height<"u"&&!this.state.isResizing?j2(r.height):o("height");return{width:i,height:s}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,o=this.parentNode.style.flexWrap;o!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var i={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=o),this.removeBase(n),i},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var o=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof o>"u"||o==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var o=this.props.boundsByDirection,i=this.state.direction,s=o&&Al("left",i),u=o&&Al("top",i),c,f;if(this.props.bounds==="parent"){var d=this.parentNode;d&&(c=s?this.resizableRight-this.parentLeft:d.offsetWidth+(this.parentLeft-this.resizableLeft),f=u?this.resizableBottom-this.parentTop:d.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(c=s?this.resizableRight:this.window.innerWidth-this.resizableLeft,f=u?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(c=s?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),f=u?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return c&&Number.isFinite(c)&&(n=n&&n"u"?10:i.width,h=typeof o.width>"u"||o.width<0?n:o.width,m=typeof i.height>"u"?10:i.height,g=typeof o.height>"u"||o.height<0?r:o.height,b=c||0,x=f||0;if(u){var k=(m-b)*this.ratio+x,S=(g-b)*this.ratio+x,w=(d-x)/this.ratio+b,_=(h-x)/this.ratio+b,L=Math.max(d,k),T=Math.min(h,S),R=Math.max(m,w),N=Math.min(g,_);n=Ih(n,L,T),r=Ih(r,R,N)}else n=Ih(n,d,h),r=Ih(r,m,g);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var o=this.props.bounds.getBoundingClientRect();this.targetLeft=o.left,this.targetTop=o.top}if(this.resizable){var i=this.resizable.getBoundingClientRect(),s=i.left,u=i.top,c=i.right,f=i.bottom;this.resizableLeft=s,this.resizableRight=c,this.resizableTop=u,this.resizableBottom=f}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var o=0,i=0;if(n.nativeEvent&&N1e(n.nativeEvent)?(o=n.nativeEvent.clientX,i=n.nativeEvent.clientY):n.nativeEvent&&Oh(n.nativeEvent)&&(o=n.nativeEvent.touches[0].clientX,i=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var s=this.props.onResizeStart(n,r,this.resizable);if(s===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var u,c=this.window.getComputedStyle(this.resizable);if(c.flexBasis!=="auto"){var f=this.parentNode;if(f){var d=this.window.getComputedStyle(f).flexDirection;this.flexDir=d.startsWith("row")?"row":"column",u=c.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var h={original:{x:o,y:i,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:Xo(Xo({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:u};this.setState(h)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&Oh(n))try{n.preventDefault(),n.stopPropagation()}catch{}var o=this.props,i=o.maxWidth,s=o.maxHeight,u=o.minWidth,c=o.minHeight,f=Oh(n)?n.touches[0].clientX:n.clientX,d=Oh(n)?n.touches[0].clientY:n.clientY,h=this.state,m=h.direction,g=h.original,b=h.width,x=h.height,k=this.getParentSize(),S=D1e(k,this.window.innerWidth,this.window.innerHeight,i,s,u,c);i=S.maxWidth,s=S.maxHeight,u=S.minWidth,c=S.minHeight;var w=this.calculateNewSizeFromDirection(f,d),_=w.newHeight,L=w.newWidth,T=this.calculateNewMaxFromBoundary(i,s);this.props.snap&&this.props.snap.x&&(L=hC(L,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(_=hC(_,this.props.snap.y,this.props.snapGap));var R=this.calculateNewSizeFromAspectRatio(L,_,{width:T.maxWidth,height:T.maxHeight},{width:u,height:c});if(L=R.newWidth,_=R.newHeight,this.props.grid){var N=pC(L,this.props.grid[0]),z=pC(_,this.props.grid[1]),K=this.props.snapGap||0;L=K===0||Math.abs(N-L)<=K?N:L,_=K===0||Math.abs(z-_)<=K?z:_}var W={width:L-g.width,height:_-g.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var J=L/k.width*100;L=J+"%"}else if(b.endsWith("vw")){var ve=L/this.window.innerWidth*100;L=ve+"vw"}else if(b.endsWith("vh")){var xe=L/this.window.innerHeight*100;L=xe+"vh"}}if(x&&typeof x=="string"){if(x.endsWith("%")){var J=_/k.height*100;_=J+"%"}else if(x.endsWith("vw")){var ve=_/this.window.innerWidth*100;_=ve+"vw"}else if(x.endsWith("vh")){var xe=_/this.window.innerHeight*100;_=xe+"vh"}}var he={width:this.createSizeForCssProperty(L,"width"),height:this.createSizeForCssProperty(_,"height")};this.flexDir==="row"?he.flexBasis=he.width:this.flexDir==="column"&&(he.flexBasis=he.height),Tu.exports.flushSync(function(){r.setState(he)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,W)}},t.prototype.onMouseUp=function(n){var r=this.state,o=r.isResizing,i=r.direction,s=r.original;if(!(!o||!this.resizable)){var u={width:this.size.width-s.width,height:this.size.height-s.height};this.props.onResizeStop&&this.props.onResizeStop(n,i,this.resizable,u),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:Xo(Xo({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,o=r.enable,i=r.handleStyles,s=r.handleClasses,u=r.handleWrapperStyle,c=r.handleWrapperClass,f=r.handleComponent;if(!o)return null;var d=Object.keys(o).map(function(h){return o[h]!==!1?v(O1e,{direction:h,onResizeStart:n.onResizeStart,replaceStyles:i&&i[h],className:s&&s[h],children:f&&f[h]?f[h]:null},h):null});return v("div",{className:c,style:u,children:d})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(s,u){return z1e.indexOf(u)!==-1||(s[u]=n.props[u]),s},{}),o=Xo(Xo(Xo({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(o.flexBasis=this.state.flexBasis);var i=this.props.as||"div";return q(i,{...Xo({ref:this.ref,style:o,className:this.props.className},r),children:[this.state.isResizing&&v("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function F1e(e,t){if(e==null)return{};var n=B1e(e,t),r,o;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function B1e(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}function gC(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Nc(e){for(var t=1;t{this.reCalculateColumnCount()})}reCalculateColumnCount(){const t=window&&window.innerWidth||1/0;let n=this.props.breakpointCols;typeof n!="object"&&(n={default:parseInt(n)||H2});let r=1/0,o=n.default||H2;for(let i in n){const s=parseInt(i);s>0&&t<=s&&s"u"&&(s="my-masonry-grid_column"));const u=Nc(Nc(Nc({},t),n),{},{style:Nc(Nc({},n.style),{},{width:i}),className:s});return o.map((c,f)=>C.exports.createElement("div",{...u,key:f},c))}logDeprecated(t){console.error("[Masonry]",t)}render(){const t=this.props,{children:n,breakpointCols:r,columnClassName:o,columnAttrs:i,column:s,className:u}=t,c=F1e(t,["children","breakpointCols","columnClassName","columnAttrs","column","className"]);let f=u;return typeof u!="string"&&(this.logDeprecated('The property "className" requires a string'),typeof u>"u"&&(f="my-masonry-grid")),v("div",{...c,className:f,children:this.renderColumns()})}}sO.defaultProps=V1e;const W1e=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,j1e=C.exports.memo(e=>{const[t,n]=C.exports.useState(!1),r=Ue(),o=Ee(k=>k.options.activeTab),{image:i,isSelected:s}=e,{url:u,uuid:c,metadata:f}=i,d=()=>n(!0),h=()=>n(!1),m=k=>{k.stopPropagation(),r(XT(f))},g=k=>{k.stopPropagation(),r(Od(i.metadata.image.seed))},b=k=>{k.stopPropagation(),r(Pu(i.url)),o!==1&&r(Bi(1))};return q(po,{position:"relative",className:"hoverable-image",onMouseOver:d,onMouseOut:h,children:[v(ym,{objectFit:"cover",rounded:"md",src:u,loading:"lazy",className:"hoverable-image-image"}),v("div",{className:"hoverable-image-content",onClick:()=>r(Dfe(i)),children:s&&v(Kr,{width:"50%",height:"50%",as:xhe,className:"hoverable-image-check"})}),t&&q("div",{className:"hoverable-image-icons",children:[v(Rn,{label:"Delete image",hasArrow:!0,children:v(JI,{image:i,children:v(un,{colorScheme:"red","aria-label":"Delete image",icon:v(Phe,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14})})}),["txt2img","img2img"].includes(i?.metadata?.image?.type)&&v(Rn,{label:"Use All Parameters",hasArrow:!0,children:v(un,{"aria-label":"Use All Parameters",icon:v(oO,{}),size:"xs",fontSize:18,variant:"imageHoverIconButton",onClickCapture:m})}),i?.metadata?.image?.seed!==void 0&&v(Rn,{label:"Use Seed",hasArrow:!0,children:v(un,{"aria-label":"Use Seed",icon:v(Ehe,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:g})}),v(Rn,{label:"Send To Image To Image",hasArrow:!0,children:v(un,{"aria-label":"Send To Image To Image",icon:v(Che,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:b})})]})]},c)},W1e);function lO(){const{images:e,currentImageUuid:t,areMoreImagesAvailable:n}=Ee(m=>m.gallery),r=Ee(m=>m.options.shouldShowGallery),o=Ee(m=>m.options.activeTab),i=Ue(),[s,u]=C.exports.useState(),c=m=>{u(Math.floor((window.innerWidth-m.x)/120))},f=()=>{i(A7(!r))},d=()=>{i(A7(!1))},h=()=>{i(yI())};return rn("g",()=>{f()},[r]),rn("left",()=>{i(eI())},[]),rn("right",()=>{i(JT())},[]),q("div",{className:"image-gallery-area",children:[!r&&v(ws,{tooltip:"Show Gallery",tooltipPlacement:"top","aria-label":"Show Gallery",onClick:f,className:"image-gallery-popup-btn",children:v(Y7,{})}),r&&q(aO,{defaultSize:{width:"300",height:"100%"},minWidth:"300",maxWidth:o==1?"300":"600",className:"image-gallery-popup",onResize:c,children:[q("div",{className:"image-gallery-header",children:[v("h1",{children:"Your Invocations"}),v(un,{size:"sm","aria-label":"Close Gallery",onClick:d,className:"image-gallery-close-btn",icon:v(DI,{})})]}),q("div",{className:"image-gallery-container",children:[e.length?v(sO,{className:"masonry-grid",columnClassName:"masonry-grid_column",breakpointCols:s,children:e.map(m=>{const{uuid:g}=m;return v(j1e,{image:m,isSelected:t===g},g)})}):q("div",{className:"image-gallery-container-placeholder",children:[v(Y7,{}),v("p",{children:"No Images In Gallery"})]}),v(mi,{onClick:h,isDisabled:!n,className:"image-gallery-load-more-btn",children:n?"Load More":"All Images Loaded"})]})]})]})}function H1e(){const e=Ee(t=>t.options.shouldShowGallery);return q("div",{className:"image-to-image-workarea",children:[v(hhe,{}),q("div",{className:"image-to-image-display-area",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(A1e,{}),v(lO,{})]})]})}function U1e(){const e=Ee(n=>n.options.showAdvancedOptions),t={seed:{header:v(po,{flex:"1",textAlign:"left",children:"Seed"}),feature:No.SEED,options:v(LI,{})},variations:{header:v(AI,{}),feature:No.VARIATIONS,options:v(TI,{})},face_restore:{header:v(EI,{}),feature:No.FACE_CORRECTION,options:v(a6,{})},upscale:{header:v(PI,{}),feature:No.UPSCALE,options:v(s6,{})},other:{header:v(po,{flex:"1",textAlign:"left",children:"Other"}),feature:No.OTHER,options:v(FI,{})}};return q("div",{className:"text-to-image-panel",children:[v(VI,{}),v($I,{}),v(OI,{}),v(II,{}),e?v(zI,{accordionInfo:t}):null]})}const G1e=()=>{const{currentImage:e,intermediateImage:t}=Ee(o=>o.gallery),n=Ee(o=>o.options.shouldShowImageDetails),r=t||e;return r?q("div",{className:"current-image-display",children:[v("div",{className:"current-image-tools",children:v(eO,{image:r})}),v(tO,{imageToDisplay:r}),n&&v(iO,{image:r,styleClass:"current-image-metadata"})]}):v("div",{className:"current-image-display-placeholder",children:v(ihe,{})})};function Z1e(){const e=Ee(t=>t.options.shouldShowGallery);return q("div",{className:"text-to-image-workarea",children:[v(U1e,{}),q("div",{className:"text-to-image-display",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(G1e,{}),v(lO,{})]})]})}const Il={txt2img:{title:v(Lpe,{fill:"black",boxSize:"2.5rem"}),panel:v(Z1e,{}),tooltip:"Text To Image"},img2img:{title:v(Spe,{fill:"black",boxSize:"2.5rem"}),panel:v(H1e,{}),tooltip:"Image To Image"},inpainting:{title:v(Cpe,{fill:"black",boxSize:"2.5rem"}),panel:v(ype,{}),tooltip:"Inpainting"},outpainting:{title:v(kpe,{fill:"black",boxSize:"2.5rem"}),panel:v(xpe,{}),tooltip:"Outpainting"},nodes:{title:v(_pe,{fill:"black",boxSize:"2.5rem"}),panel:v(bpe,{}),tooltip:"Nodes"},postprocess:{title:v(Epe,{fill:"black",boxSize:"2.5rem"}),panel:v(wpe,{}),tooltip:"Post Processing"}},K1e=od.map(Il,(e,t)=>t);function q1e(){const e=Ee(o=>o.options.activeTab),t=Ue();rn("1",()=>{t(Bi(0))}),rn("2",()=>{t(Bi(1))}),rn("3",()=>{t(Bi(2))}),rn("4",()=>{t(Bi(3))}),rn("5",()=>{t(Bi(4))}),rn("6",()=>{t(Bi(5))});const n=()=>{const o=[];return Object.keys(Il).forEach(i=>{o.push(v(Rn,{hasArrow:!0,label:Il[i].tooltip,placement:"right",children:v(ZA,{children:Il[i].title})},i))}),o},r=()=>{const o=[];return Object.keys(Il).forEach(i=>{o.push(v(UA,{className:"app-tabs-panel",children:Il[i].panel},i))}),o};return q(HA,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:o=>{t(Bi(o))},children:[v("div",{className:"app-tabs-list",children:n()}),v(GA,{className:"app-tabs-panels",children:r()})]})}const Y1e=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:()=>{n(l1(!0));const o={...r().options};K1e[o.activeTab]==="txt2img"&&(o.shouldUseInitImage=!1);const{generationParameters:i,esrganParameters:s,gfpganParameters:u}=ape(o,r().system);t.emit("generateImage",i,s,u),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...i,...s,...u})}`}))},emitRunESRGAN:o=>{n(l1(!0));const{upscalingLevel:i,upscalingStrength:s}=r().options,u={upscale:[i,s]};t.emit("runPostprocessing",o,{type:"esrgan",...u}),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:o.url,...u})}`}))},emitRunGFPGAN:o=>{n(l1(!0));const{gfpganStrength:i}=r().options,s={gfpgan_strength:i};t.emit("runPostprocessing",o,{type:"gfpgan",...s}),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`GFPGAN fix faces requested: ${JSON.stringify({file:o.url,...s})}`}))},emitDeleteImage:o=>{const{url:i,uuid:s}=o;t.emit("deleteImage",i,s)},emitRequestImages:()=>{const{earliest_mtime:o}=r().gallery;t.emit("requestImages",o)},emitRequestNewImages:()=>{const{latest_mtime:o}=r().gallery;t.emit("requestLatestImages",o)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadInitialImage:o=>{t.emit("uploadInitialImage",o,o.name)},emitUploadMaskImage:o=>{t.emit("uploadMaskImage",o,o.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")}}},X1e=()=>{const{hostname:e,port:t}=new URL(window.location.href),n=f1(`http://${e}:${t}`,{timeout:6e4});let r=!1;return i=>s=>u=>{const{onConnect:c,onDisconnect:f,onError:d,onPostprocessingResult:h,onGenerationResult:m,onIntermediateResult:g,onProgressUpdate:b,onGalleryImages:x,onProcessingCanceled:k,onImageDeleted:S,onInitialImageUploaded:w,onMaskImageUploaded:_,onSystemConfig:L}=tpe(i),{emitGenerateImage:T,emitRunESRGAN:R,emitRunGFPGAN:N,emitDeleteImage:z,emitRequestImages:K,emitRequestNewImages:W,emitCancelProcessing:J,emitUploadInitialImage:ve,emitUploadMaskImage:xe,emitRequestSystemConfig:he}=Y1e(i,n);switch(r||(n.on("connect",()=>c()),n.on("disconnect",()=>f()),n.on("error",fe=>d(fe)),n.on("generationResult",fe=>m(fe)),n.on("postprocessingResult",fe=>h(fe)),n.on("intermediateResult",fe=>g(fe)),n.on("progressUpdate",fe=>b(fe)),n.on("galleryImages",fe=>x(fe)),n.on("processingCanceled",()=>{k()}),n.on("imageDeleted",fe=>{S(fe)}),n.on("initialImageUploaded",fe=>{w(fe)}),n.on("maskImageUploaded",fe=>{_(fe)}),n.on("systemConfig",fe=>{L(fe)}),r=!0),u.type){case"socketio/generateImage":{T();break}case"socketio/runESRGAN":{R(u.payload);break}case"socketio/runGFPGAN":{N(u.payload);break}case"socketio/deleteImage":{z(u.payload);break}case"socketio/requestImages":{K();break}case"socketio/requestNewImages":{W();break}case"socketio/cancelProcessing":{J();break}case"socketio/uploadInitialImage":{ve(u.payload);break}case"socketio/uploadMaskImage":{xe(u.payload);break}case"socketio/requestSystemConfig":{he();break}}s(u)}},Q1e={key:"root",storage:Jb,blacklist:["gallery","system"]},J1e={key:"system",storage:Jb,blacklist:["isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},e0e=wT({options:Mfe,gallery:Bfe,system:BT(J1e,qfe)}),t0e=BT(Q1e,e0e),uO=oce({reducer:t0e,middleware:e=>e({serializableCheck:!1}).concat(X1e())}),Ue=jce,Ee=Oce;function d1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?d1=function(n){return typeof n}:d1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},d1(e)}function n0e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function vC(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),fO=()=>v(Ft,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:v(gm,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),a0e=qn(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),s0e=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=Ee(a0e),o=t?Math.round(t*100/n):0;return v(zA,{height:"4px",value:o,isIndeterminate:e&&!r,className:"progress-bar"})},l0e="/assets/logo.13003d72.png";function u0e(e){const{title:t,hotkey:n,description:r}=e;return q("div",{className:"hotkey-modal-item",children:[q("div",{className:"hotkey-info",children:[v("p",{className:"hotkey-title",children:t}),r&&v("p",{className:"hotkey-description",children:r})]}),v("div",{className:"hotkey-key",children:n})]})}function c0e({children:e}){const{isOpen:t,onOpen:n,onClose:r}=o0(),o=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send the current image to Image to Image module",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Previous Image",desc:"Display the previous image in the gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in the gallery",hotkey:"Arrow right"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],i=()=>{const s=[];return o.forEach((u,c)=>{s.push(v(u0e,{title:u.title,description:u.desc,hotkey:u.hotkey},c))}),s};return q(yn,{children:[C.exports.cloneElement(e,{onClick:n}),q(ku,{isOpen:t,onClose:r,children:[v(Qf,{}),q(Xf,{className:"hotkeys-modal",children:[v(kb,{}),v("h1",{children:"Keyboard Shorcuts"}),v("div",{className:"hotkeys-modal-items",children:i()})]})]})]})}function U2({settingTitle:e,isChecked:t,dispatcher:n}){const r=Ue();return q(ns,{className:"settings-modal-item",children:[v(Gs,{marginBottom:1,children:e}),v(Lm,{isChecked:t,onChange:o=>r(n(o.target.checked))})]})}const f0e=qn(e=>e.system,e=>{const{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}=e;return{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}},{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),d0e=({children:e})=>{const{isOpen:t,onOpen:n,onClose:r}=o0(),{isOpen:o,onOpen:i,onClose:s}=o0(),{shouldDisplayInProgress:u,shouldConfirmOnDelete:c,shouldDisplayGuides:f}=Ee(f0e),d=()=>{dO.purge().then(()=>{r(),i()})};return q(yn,{children:[C.exports.cloneElement(e,{onClick:n}),q(ku,{isOpen:t,onClose:r,children:[v(Qf,{}),q(Xf,{className:"settings-modal",children:[v(Lb,{className:"settings-modal-header",children:"Settings"}),v(kb,{}),q(l0,{className:"settings-modal-content",children:[q("div",{className:"settings-modal-items",children:[v(U2,{settingTitle:"Display In-Progress Images (slower)",isChecked:u,dispatcher:Wfe}),v(U2,{settingTitle:"Confirm on Delete",isChecked:c,dispatcher:nI}),v(U2,{settingTitle:"Display Help Icons",isChecked:f,dispatcher:Gfe})]}),q("div",{className:"settings-modal-reset",children:[v(ob,{size:"md",children:"Reset Web UI"}),v(zr,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),v(zr,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."}),v(mi,{colorScheme:"red",onClick:d,children:"Reset Web UI"})]})]}),v(Eb,{children:v(mi,{onClick:r,children:"Close"})})]})]}),q(ku,{closeOnOverlayClick:!1,isOpen:o,onClose:s,isCentered:!0,children:[v(Qf,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),v(Xf,{children:v(l0,{pb:6,pt:6,children:v(Ft,{justifyContent:"center",children:v(zr,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},p0e=qn(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),h0e=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:o,hasError:i,wasErrorSeen:s}=Ee(p0e),u=Ue();let c;e&&!i?c="status-good":c="status-bad";let f=o;return["generating","preparing","saving image","restoring faces","upscaling"].includes(f.toLowerCase())&&(c="status-working"),f&&t&&r>1&&(f+=` (${n}/${r})`),v(Rn,{label:i&&!s?"Click to clear, check logs for details":void 0,children:v(zr,{cursor:i&&!s?"pointer":"initial",onClick:()=>{(i||!s)&&u(rI())},className:`status ${c}`,children:f})})},m0e=()=>{const{colorMode:e,toggleColorMode:t}=c3();rn("shift+d",()=>{t()},[e,t]);const n=e=="light"?v(khe,{}):v(Lhe,{}),r=e=="light"?18:20;return q("div",{className:"site-header",children:[q("div",{className:"site-header-left-side",children:[v("img",{src:l0e,alt:"invoke-ai-logo"}),q("h1",{children:["invoke ",v("strong",{children:"ai"})]})]}),q("div",{className:"site-header-right-side",children:[v(h0e,{}),v(d0e,{children:v(un,{"aria-label":"Settings",variant:"link",fontSize:24,size:"sm",icon:v(the,{})})}),v(c0e,{children:v(un,{"aria-label":"Hotkeys",variant:"link",fontSize:24,size:"sm",icon:v(rhe,{})})}),v(Rn,{hasArrow:!0,label:"Report Bug",placement:"bottom",children:v(un,{"aria-label":"Link to Github Issues",variant:"link",fontSize:23,size:"sm",icon:v(iu,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:v(NI,{})})})}),v(Rn,{hasArrow:!0,label:"Github",placement:"bottom",children:v(un,{"aria-label":"Link to Github Repo",variant:"link",fontSize:20,size:"sm",icon:v(iu,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:v(ghe,{})})})}),v(Rn,{hasArrow:!0,label:"Discord",placement:"bottom",children:v(un,{"aria-label":"Link to Discord Server",variant:"link",fontSize:20,size:"sm",icon:v(iu,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:v(mhe,{})})})}),v(Rn,{hasArrow:!0,label:"Theme",placement:"bottom",children:v(un,{"aria-label":"Toggle Dark Mode",onClick:t,variant:"link",size:"sm",fontSize:r,icon:n})})]})]})},g0e=qn(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),v0e=qn(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),y0e=()=>{const e=Ue(),t=Ee(g0e),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:o}=Ee(v0e),[i,s]=C.exports.useState(!0),u=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{u.current!==null&&i&&(u.current.scrollTop=u.current.scrollHeight)},[i,t,n]);const c=()=>{e(rI()),e(I7(!n))};return rn("`",()=>{e(I7(!n))},[n]),q(yn,{children:[n&&v(aO,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0},maxHeight:"90vh",children:v("div",{className:"console",ref:u,children:t.map((f,d)=>{const{timestamp:h,message:m,level:g}=f;return q("div",{className:`console-entry console-${g}-color`,children:[q("p",{className:"console-timestamp",children:[h,":"]}),v("p",{className:"console-message",children:m})]},d)})})}),n&&v(Rn,{hasArrow:!0,label:i?"Autoscroll On":"Autoscroll Off",children:v(un,{className:`console-autoscroll-icon-button ${i&&"autoscroll-enabled"}`,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:v(vhe,{}),onClick:()=>s(!i)})}),v(Rn,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:v(un,{className:`console-toggle-icon-button ${(r||!o)&&"error-seen"}`,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?v(_he,{}):v(whe,{}),onClick:c})})]})};function b0e(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(o=>o)};(!{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}b0e();const x0e=()=>{const e=Ue(),[t,n]=C.exports.useState(!1);return C.exports.useEffect(()=>{e(epe()),n(!0)},[e]),t?q("div",{className:"App",children:[v(s0e,{}),q("div",{className:"app-content",children:[v(m0e,{}),v(q1e,{})]}),v("div",{className:"app-console",children:v(y0e,{})})]}):v(fO,{})};const dO=ufe(uO);G2.createRoot(document.getElementById("root")).render(v(X.StrictMode,{children:v($ce,{store:uO,children:v(cO,{loading:v(fO,{}),persistor:dO,children:q(_ue,{theme:yC,children:[v(SV,{initialColorMode:yC.config.initialColorMode}),v(x0e,{})]})})})})); diff --git a/frontend/dist/index.html b/frontend/dist/index.html index 4289c45f8f..a3e9419025 100644 --- a/frontend/dist/index.html +++ b/frontend/dist/index.html @@ -6,7 +6,7 @@ InvokeAI - A Stable Diffusion Toolkit - + diff --git a/frontend/src/app/constants.ts b/frontend/src/app/constants.ts index 4ed38e52ee..3f3471c13c 100644 --- a/frontend/src/app/constants.ts +++ b/frontend/src/app/constants.ts @@ -50,6 +50,7 @@ export const PARAMETERS: { [key: string]: string } = { maskPath: 'Initial Image Mask', shouldFitToWidthHeight: 'Fit Initial Image', seamless: 'Seamless Tiling', + hiresFix: 'High Resolution Optimizations', }; export const NUMPY_RAND_MIN = 0; diff --git a/frontend/src/app/features.ts b/frontend/src/app/features.ts index b8b6b4cf0d..11d0e5e6dd 100644 --- a/frontend/src/app/features.ts +++ b/frontend/src/app/features.ts @@ -14,10 +14,13 @@ export enum Feature { FACE_CORRECTION, IMAGE_TO_IMAGE, } - +/** For each tooltip in the UI, the below feature definitions & props will pull relevant information into the tooltip. + * + * To-do: href & GuideImages are placeholders, and are not currently utilized, but will be updated (along with the tooltip UI) as feature and UI development and we get a better idea on where things "forever homes" will be . + */ export const FEATURES: Record = { [Feature.PROMPT]: { - text: 'This field will take all prompt text, including both content and stylistic terms. CLI Commands will not work in the prompt.', + text: 'This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.', href: 'link/to/docs/feature3.html', guideImage: 'asset/path.gif', }, @@ -27,17 +30,16 @@ export const FEATURES: Record = { guideImage: 'asset/path.gif', }, [Feature.OTHER]: { - text: 'Additional Options', - href: 'link/to/docs/feature3.html', + text: 'These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ', href: 'link/to/docs/feature3.html', guideImage: 'asset/path.gif', }, [Feature.SEED]: { - text: 'Seed values provide an initial set of noise which guide the denoising process.', + text: 'Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ', href: 'link/to/docs/feature3.html', guideImage: 'asset/path.gif', }, [Feature.VARIATIONS]: { - text: 'Try a variation with an amount of between 0 and 1 to change the output image for the set seed.', + text: 'Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.', href: 'link/to/docs/feature3.html', guideImage: 'asset/path.gif', }, @@ -47,8 +49,8 @@ export const FEATURES: Record = { guideImage: 'asset/path.gif', }, [Feature.FACE_CORRECTION]: { - text: 'Using GFPGAN or CodeFormer, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher values will apply a stronger corrective pressure on outputs.', - href: 'link/to/docs/feature2.html', + text: 'Using GFPGAN, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher values will apply a stronger corrective pressure on outputs, resulting in more appealing faces (with less respect for accuracy of the original subject).', + href: 'link/to/docs/feature3.html', guideImage: 'asset/path.gif', }, [Feature.IMAGE_TO_IMAGE]: { diff --git a/frontend/src/app/invokeai.d.ts b/frontend/src/app/invokeai.d.ts index 90a5f35915..207b2423de 100644 --- a/frontend/src/app/invokeai.d.ts +++ b/frontend/src/app/invokeai.d.ts @@ -55,6 +55,7 @@ export declare type CommonGeneratedImageMetadata = { width: number; height: number; seamless: boolean; + hires_fix: boolean; extra: null | Record; // Pending development of RFC #266 }; diff --git a/frontend/src/common/util/parameterTranslation.ts b/frontend/src/common/util/parameterTranslation.ts index 0b306808db..08f24b6394 100644 --- a/frontend/src/common/util/parameterTranslation.ts +++ b/frontend/src/common/util/parameterTranslation.ts @@ -29,6 +29,7 @@ export const frontendToBackendParameters = ( sampler, seed, seamless, + hiresFix, shouldUseInitImage, img2imgStrength, initialImagePath, @@ -59,6 +60,7 @@ export const frontendToBackendParameters = ( sampler_name: sampler, seed, seamless, + hires_fix: hiresFix, progress_images: shouldDisplayInProgress, }; @@ -123,6 +125,7 @@ export const backendToFrontendParameters = (parameters: { sampler_name, seed, seamless, + hires_fix, progress_images, variation_amount, with_variations, @@ -185,6 +188,7 @@ export const backendToFrontendParameters = (parameters: { options.sampler = sampler_name; options.seed = seed; options.seamless = seamless; + options.hiresFix = hires_fix; } return options; diff --git a/frontend/src/features/gallery/ImageMetaDataViewer/ImageMetadataViewer.tsx b/frontend/src/features/gallery/ImageMetaDataViewer/ImageMetadataViewer.tsx index 1e8f5011c9..7951201d46 100644 --- a/frontend/src/features/gallery/ImageMetaDataViewer/ImageMetadataViewer.tsx +++ b/frontend/src/features/gallery/ImageMetaDataViewer/ImageMetadataViewer.tsx @@ -16,11 +16,13 @@ import { setCfgScale, setGfpganStrength, setHeight, + setHiresFix, setImg2imgStrength, setInitialImagePath, setMaskPath, setPrompt, setSampler, + setSeamless, setSeed, setSeedWeights, setShouldFitToWidthHeight, @@ -116,6 +118,7 @@ const ImageMetadataViewer = memo( steps, cfg_scale, seamless, + hires_fix, width, height, strength, @@ -214,7 +217,14 @@ const ImageMetadataViewer = memo( dispatch(setWidth(seamless))} + onClick={() => dispatch(setSeamless(seamless))} + /> + )} + {hires_fix && ( + dispatch(setHiresFix(hires_fix))} /> )} {width && ( diff --git a/frontend/src/features/options/HiresOptions.tsx b/frontend/src/features/options/HiresOptions.tsx new file mode 100644 index 0000000000..09a886b815 --- /dev/null +++ b/frontend/src/features/options/HiresOptions.tsx @@ -0,0 +1,32 @@ +import { Flex } from '@chakra-ui/react'; +import { RootState } from '../../app/store'; +import { useAppDispatch, useAppSelector } from '../../app/store'; +import { setHiresFix } from './optionsSlice'; +import { ChangeEvent } from 'react'; +import IAISwitch from '../../common/components/IAISwitch'; + +/** + * Image output options. Includes width, height, seamless tiling. + */ +const HiresOptions = () => { + const dispatch = useAppDispatch(); + + const hiresFix = useAppSelector((state: RootState) => state.options.hiresFix); + + const handleChangeHiresFix = (e: ChangeEvent) => + dispatch(setHiresFix(e.target.checked)); + + + return ( + + + + ); +}; + +export default HiresOptions; diff --git a/frontend/src/features/options/OutputOptions.tsx b/frontend/src/features/options/OutputOptions.tsx index d978b6ea6d..0b4ecc3ba9 100644 --- a/frontend/src/features/options/OutputOptions.tsx +++ b/frontend/src/features/options/OutputOptions.tsx @@ -1,29 +1,14 @@ import { Flex } from '@chakra-ui/react'; -import { RootState } from '../../app/store'; -import { useAppDispatch, useAppSelector } from '../../app/store'; -import { setSeamless } from './optionsSlice'; -import { ChangeEvent } from 'react'; -import IAISwitch from '../../common/components/IAISwitch'; -/** - * Image output options. Includes width, height, seamless tiling. - */ +import HiresOptions from './HiresOptions'; +import SeamlessOptions from './SeamlessOptions'; + const OutputOptions = () => { - const dispatch = useAppDispatch(); - - const seamless = useAppSelector((state: RootState) => state.options.seamless); - - const handleChangeSeamless = (e: ChangeEvent) => - dispatch(setSeamless(e.target.checked)); return ( - + + ); }; diff --git a/frontend/src/features/options/SeamlessOptions.tsx b/frontend/src/features/options/SeamlessOptions.tsx new file mode 100644 index 0000000000..f97b444343 --- /dev/null +++ b/frontend/src/features/options/SeamlessOptions.tsx @@ -0,0 +1,28 @@ +import { Flex } from '@chakra-ui/react'; +import { RootState } from '../../app/store'; +import { useAppDispatch, useAppSelector } from '../../app/store'; +import { setSeamless } from './optionsSlice'; +import { ChangeEvent } from 'react'; +import IAISwitch from '../../common/components/IAISwitch'; + +const SeamlessOptions = () => { + const dispatch = useAppDispatch(); + + const seamless = useAppSelector((state: RootState) => state.options.seamless); + + const handleChangeSeamless = (e: ChangeEvent) => + dispatch(setSeamless(e.target.checked)); + + return ( + + + + ); +}; + +export default SeamlessOptions; \ No newline at end of file diff --git a/frontend/src/features/options/optionsSlice.ts b/frontend/src/features/options/optionsSlice.ts index 336a8bbd24..a932ff4a34 100644 --- a/frontend/src/features/options/optionsSlice.ts +++ b/frontend/src/features/options/optionsSlice.ts @@ -25,6 +25,7 @@ export interface OptionsState { initialImagePath: string | null; maskPath: string; seamless: boolean; + hiresFix: boolean; shouldFitToWidthHeight: boolean; shouldGenerateVariations: boolean; variationAmount: number; @@ -50,6 +51,7 @@ const initialOptionsState: OptionsState = { perlin: 0, seed: 0, seamless: false, + hiresFix: false, shouldUseInitImage: false, img2imgStrength: 0.75, initialImagePath: null, @@ -138,6 +140,9 @@ export const optionsSlice = createSlice({ setSeamless: (state, action: PayloadAction) => { state.seamless = action.payload; }, + setHiresFix: (state, action: PayloadAction) => { + state.hiresFix = action.payload; + }, setShouldFitToWidthHeight: (state, action: PayloadAction) => { state.shouldFitToWidthHeight = action.payload; }, @@ -180,6 +185,7 @@ export const optionsSlice = createSlice({ threshold, perlin, seamless, + hires_fix, width, height, strength, @@ -256,6 +262,7 @@ export const optionsSlice = createSlice({ if (perlin) state.perlin = perlin; if (typeof perlin === 'undefined') state.perlin = 0; if (typeof seamless === 'boolean') state.seamless = seamless; + if (typeof hires_fix === 'boolean') state.hiresFix = hires_fix; if (width) state.width = width; if (height) state.height = height; }, @@ -301,6 +308,7 @@ export const { setSampler, setSeed, setSeamless, + setHiresFix, setImg2imgStrength, setGfpganStrength, setUpscalingLevel, diff --git a/ldm/generate.py b/ldm/generate.py index d7b40f965f..1b3ff6b9ba 100644 --- a/ldm/generate.py +++ b/ldm/generate.py @@ -155,6 +155,7 @@ class Generate: self.precision = precision self.strength = 0.75 self.seamless = False + self.hires_fix = False self.embedding_path = embedding_path self.model = None # empty for now self.sampler = None @@ -270,6 +271,7 @@ class Generate: height // height of image, in multiples of 64 (512) cfg_scale // how strongly the prompt influences the image (7.5) (must be >1) seamless // whether the generated image should tile + hires_fix // whether the Hires Fix should be applied during generation init_img // path to an initial image strength // strength for noising/unnoising init_img. 0.0 preserves image exactly, 1.0 replaces it completely gfpgan_strength // strength for GFPGAN. 0.0 preserves image exactly, 1.0 replaces it completely @@ -303,6 +305,7 @@ class Generate: width = width or self.width height = height or self.height seamless = seamless or self.seamless + hires_fix = hires_fix or self.hires_fix cfg_scale = cfg_scale or self.cfg_scale ddim_eta = ddim_eta or self.ddim_eta iterations = iterations or self.iterations diff --git a/ldm/invoke/server.py b/ldm/invoke/server.py index 4eef1ddd56..269f24650b 100644 --- a/ldm/invoke/server.py +++ b/ldm/invoke/server.py @@ -37,6 +37,7 @@ def build_opt(post_data, seed, gfpgan_model_exists): setattr(opt, 'seed', None if int(post_data['seed']) == -1 else int(post_data['seed'])) setattr(opt, 'threshold', float(post_data['threshold'])) setattr(opt, 'perlin', float(post_data['perlin'])) + setattr(opt, 'hires_fix', 'hires_fix' in post_data) setattr(opt, 'variation_amount', float(post_data['variation_amount']) if int(post_data['seed']) != -1 else 0) setattr(opt, 'with_variations', []) setattr(opt, 'embiggen', None) diff --git a/server/models.py b/server/models.py index 1a574aa137..f4bc6fe57d 100644 --- a/server/models.py +++ b/server/models.py @@ -35,6 +35,7 @@ class DreamBase(): perlin: float = 0.0 sampler_name: string = 'klms' seamless: bool = False + hires_fix: bool = False model: str = None # The model to use (currently unused) embeddings = None # The embeddings to use (currently unused) progress_images: bool = False @@ -91,6 +92,7 @@ class DreamBase(): # model: str = None # The model to use (currently unused) # embeddings = None # The embeddings to use (currently unused) self.seamless = 'seamless' in j + self.hires_fix = 'hires_fix' in j self.progress_images = 'progress_images' in j # GFPGAN diff --git a/server/services.py b/server/services.py index 19b2360a37..ae492860e9 100644 --- a/server/services.py +++ b/server/services.py @@ -375,6 +375,7 @@ class GeneratorService: upscale = upscale, sampler_name = jobRequest.sampler_name, seamless = jobRequest.seamless, + hires_fix = jobRequest.hires_fix, embiggen = jobRequest.embiggen, embiggen_tiles = jobRequest.embiggen_tiles, step_callback = lambda sample, step: self.__on_progress(jobRequest, sample, step), From cac3f5fc61e6e380b090ac9a3fcda733a22f65a7 Mon Sep 17 00:00:00 2001 From: Jan Skurovec Date: Thu, 13 Oct 2022 10:43:18 +0200 Subject: [PATCH 06/11] fix for "1 leaked semaphore objects to clean up at shutdown" on M1 Implements fix by @Any-Winter-4079 referenced in https://github.com/invoke-ai/InvokeAI/issues/1016#issuecomment-1276825640 --- ldm/modules/diffusionmodules/model.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ldm/modules/diffusionmodules/model.py b/ldm/modules/diffusionmodules/model.py index 78876a0919..d10676c841 100644 --- a/ldm/modules/diffusionmodules/model.py +++ b/ldm/modules/diffusionmodules/model.py @@ -49,9 +49,15 @@ class Upsample(nn.Module): padding=1) def forward(self, x): + cpu_m1_cond = True if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available() and \ + x.size()[0] * x.size()[1] * x.size()[2] * x.size()[3] % 2**27 == 0 else False + if cpu_m1_cond: + x = x.to('cpu') # send to cpu x = torch.nn.functional.interpolate(x, scale_factor=2.0, mode="nearest") if self.with_conv: x = self.conv(x) + if cpu_m1_cond: + x = x.to('mps') # return to mps return x @@ -117,6 +123,14 @@ class ResnetBlock(nn.Module): padding=0) def forward(self, x, temb): + if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available(): + x_size = x.size() + if (x_size[0] * x_size[1] * x_size[2] * x_size[3]) % 2**29 == 0: + self.to('cpu') + x = x.to('cpu') + else: + self.to('mps') + x = x.to('mps') h = self.norm1(x) h = silu(h) h = self.conv1(h) From 203a6d8a0044ec805be5bf261647705c3f6404a1 Mon Sep 17 00:00:00 2001 From: db3000 Date: Thu, 13 Oct 2022 01:06:10 -0400 Subject: [PATCH 07/11] Forward dream.py to invoke.py using the same interpreter, add deprecation warning --- scripts/dream.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/scripts/dream.py b/scripts/dream.py index 05cd9c9aeb..6a3483757c 100644 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -1,12 +1,10 @@ #!/usr/bin/env python3 # Copyright (c) 2022 Lincoln D. Stein (https://github.com/lstein) -import sys -import os.path - -script_path = sys.argv[0] -script_args = sys.argv[1:] -script_dir,script_name = os.path.split(script_path) -script_dest = os.path.join(script_dir,'invoke.py') -os.execlp('python3','python3',script_dest,*script_args) +import warnings +import invoke +if __name__ == '__main__': + warnings.warn("dream.py is deprecated, please run invoke.py instead", + DeprecationWarning) + invoke.main() From 7f491fd2d27f9743b489c29353e11143814c0487 Mon Sep 17 00:00:00 2001 From: db3000 Date: Thu, 13 Oct 2022 08:28:08 -0400 Subject: [PATCH 08/11] Reword deprecation warning for dream.py --- scripts/dream.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dream.py b/scripts/dream.py index 6a3483757c..fd86e8edc1 100644 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -5,6 +5,7 @@ import warnings import invoke if __name__ == '__main__': - warnings.warn("dream.py is deprecated, please run invoke.py instead", + warnings.warn("dream.py is being deprecated, please run invoke.py for the " + "new UI/API or legacy_api.py for the old API", DeprecationWarning) invoke.main() From e98fe9c22dd269ae0b1dceaed731914523fa437c Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Thu, 13 Oct 2022 12:06:12 -0400 Subject: [PATCH 09/11] fix noisy images at high step counts At step counts greater than ~75, the ksamplers start producing noisy images when using the Karras noise schedule. This PR reverts to using the model's own noise schedule, which eliminates the problem at the cost of slowing convergence at lower step counts. This PR also introduces a new CLI `--save_intermediates ' argument, which will save every nth intermediate image into a subdirectory named `intermediates/'. Addresses issue #1083. --- ldm/invoke/args.py | 7 +++++++ ldm/invoke/readline.py | 1 + ldm/models/diffusion/ksampler.py | 3 ++- ldm/models/diffusion/sampler.py | 2 +- scripts/invoke.py | 13 +++++++++++++ 5 files changed, 24 insertions(+), 2 deletions(-) diff --git a/ldm/invoke/args.py b/ldm/invoke/args.py index 09073679c0..5dbe885d2d 100644 --- a/ldm/invoke/args.py +++ b/ldm/invoke/args.py @@ -636,6 +636,13 @@ class Args(object): dest='hires_fix', help='Create hires image using img2img to prevent duplicated objects' ) + render_group.add_argument( + '--save_intermediates', + type=int, + default=0, + dest='save_intermediates', + help='Save every nth intermediate image into an "intermediates" directory within the output directory' + ) img2img_group.add_argument( '-I', '--init_img', diff --git a/ldm/invoke/readline.py b/ldm/invoke/readline.py index 73664ef82c..7975ec5643 100644 --- a/ldm/invoke/readline.py +++ b/ldm/invoke/readline.py @@ -31,6 +31,7 @@ COMMANDS = ( '--perlin', '--grid','-g', '--individual','-i', + '--save_intermediates', '--init_img','-I', '--init_mask','-M', '--init_color', diff --git a/ldm/models/diffusion/ksampler.py b/ldm/models/diffusion/ksampler.py index 0bc6ccd296..ac0615b30c 100644 --- a/ldm/models/diffusion/ksampler.py +++ b/ldm/models/diffusion/ksampler.py @@ -98,7 +98,8 @@ class KSampler(Sampler): rho=7., device=self.device, ) - self.sigmas = self.karras_sigmas + self.sigmas = self.model_sigmas + #self.sigmas = self.karras_sigmas # ALERT: We are completely overriding the sample() method in the base class, which # means that inpainting will not work. To get this to work we need to be able to diff --git a/ldm/models/diffusion/sampler.py b/ldm/models/diffusion/sampler.py index 88cdc01974..ff705513f8 100644 --- a/ldm/models/diffusion/sampler.py +++ b/ldm/models/diffusion/sampler.py @@ -140,7 +140,7 @@ class Sampler(object): conditioning=None, callback=None, normals_sequence=None, - img_callback=None, + img_callback=None, # TODO: this is very confusing because it is called "step_callback" elsewhere. Change. quantize_x0=False, eta=0.0, mask=None, diff --git a/scripts/invoke.py b/scripts/invoke.py index 100ab2413b..3752680d4b 100644 --- a/scripts/invoke.py +++ b/scripts/invoke.py @@ -289,6 +289,7 @@ def main_loop(gen, opt, infile): grid_images = dict() # seed -> Image, only used if `opt.grid` prior_variations = opt.with_variations or [] prefix = file_writer.unique_prefix() + step_callback = make_step_callback(gen, opt, prefix) if opt.save_intermediates > 0 else None def image_writer(image, seed, upscaled=False, first_seed=None, use_prefix=None): # note the seed is the seed of the current image @@ -350,6 +351,7 @@ def main_loop(gen, opt, infile): opt.last_operation='generate' gen.prompt2image( image_callback=image_writer, + step_callback=step_callback, catch_interrupts=catch_ctrl_c, **vars(opt) ) @@ -547,6 +549,17 @@ def split_variations(variations_string) -> list: else: return parts +def make_step_callback(gen, opt, prefix): + destination = os.path.join(opt.outdir,'intermediates',prefix) + os.makedirs(destination,exist_ok=True) + print(f'>> Intermediate images will be written into {destination}') + def callback(img, step): + if step % opt.save_intermediates == 0 or step == opt.steps-1: + filename = os.path.join(destination,f'{step:04}.png') + image = gen.sample_to_image(img) + image.save(filename,'PNG') + return callback + def retrieve_dream_command(opt,file_path,completer): ''' Given a full or partial path to a previously-generated image file, From ce5e57d8285aa21221c707ad5a2e92c4040a0d6a Mon Sep 17 00:00:00 2001 From: db3000 Date: Thu, 13 Oct 2022 09:14:21 -0400 Subject: [PATCH 10/11] Generalize facetool strength argument --- backend/invoke_ai_web_server.py | 10 +- backend/modules/parameters.py | 8 +- backend/server.py | 10 +- docs/features/CLI.md | 4 +- docs/features/POSTPROCESS.md | 2 +- frontend/dist/assets/index.560edd47.js | 483 ------------------ frontend/dist/assets/index.ea68b5f5.js | 483 ++++++++++++++++++ frontend/dist/index.html | 2 +- frontend/src/app/socketio/emitters.ts | 2 +- .../src/common/util/parameterTranslation.ts | 6 +- ldm/generate.py | 14 +- ldm/invoke/args.py | 11 +- ldm/invoke/readline.py | 4 +- ldm/invoke/server.py | 4 +- scripts/invoke.py | 4 +- server/models.py | 4 +- server/services.py | 8 +- static/dream_web/index.html | 4 +- static/legacy_web/index.html | 4 +- 19 files changed, 542 insertions(+), 525 deletions(-) delete mode 100644 frontend/dist/assets/index.560edd47.js create mode 100644 frontend/dist/assets/index.ea68b5f5.js diff --git a/backend/invoke_ai_web_server.py b/backend/invoke_ai_web_server.py index 685039afd2..85bab7a8eb 100644 --- a/backend/invoke_ai_web_server.py +++ b/backend/invoke_ai_web_server.py @@ -319,7 +319,7 @@ class InvokeAIWebServer: elif postprocessing_parameters['type'] == 'gfpgan': image = self.gfpgan.process( image=image, - strength=postprocessing_parameters['gfpgan_strength'], + strength=postprocessing_parameters['facetool_strength'], seed=seed, ) else: @@ -625,7 +625,7 @@ class InvokeAIWebServer: seed=seed, ) postprocessing = True - all_parameters['gfpgan_strength'] = gfpgan_parameters[ + all_parameters['facetool_strength'] = gfpgan_parameters[ 'strength' ] @@ -736,12 +736,12 @@ class InvokeAIWebServer: postprocessing = [] # 'postprocessing' is either null or an - if 'gfpgan_strength' in parameters: + if 'facetool_strength' in parameters: postprocessing.append( { 'type': 'gfpgan', - 'strength': float(parameters['gfpgan_strength']), + 'strength': float(parameters['facetool_strength']), } ) @@ -838,7 +838,7 @@ class InvokeAIWebServer: elif parameters['type'] == 'gfpgan': postprocessing_metadata['type'] = 'gfpgan' postprocessing_metadata['strength'] = parameters[ - 'gfpgan_strength' + 'facetool_strength' ] else: raise TypeError(f"Invalid type: {parameters['type']}") diff --git a/backend/modules/parameters.py b/backend/modules/parameters.py index aa4a4255e2..f3079e0497 100644 --- a/backend/modules/parameters.py +++ b/backend/modules/parameters.py @@ -48,8 +48,14 @@ def parameters_to_command(params): switches.append(f'-f {params["strength"]}') if "fit" in params and params["fit"] == True: switches.append(f"--fit") - if "gfpgan_strength" in params and params["gfpgan_strength"]: + if "facetool" in params: + switches.append(f'-ft {params["facetool"]}') + if "facetool_strength" in params and params["facetool_strength"]: + switches.append(f'-G {params["facetool_strength"]}') + elif "gfpgan_strength" in params and params["gfpgan_strength"]: switches.append(f'-G {params["gfpgan_strength"]}') + if "codeformer_fidelity" in params: + switches.append(f'-cf {params["codeformer_fidelity"]}') if "upscale" in params and params["upscale"]: switches.append(f'-U {params["upscale"][0]} {params["upscale"][1]}') if "variation_amount" in params and params["variation_amount"] > 0: diff --git a/backend/server.py b/backend/server.py index c95b6cf1ec..7b8a8a5a69 100644 --- a/backend/server.py +++ b/backend/server.py @@ -349,7 +349,7 @@ def handle_run_gfpgan_event(original_image, gfpgan_parameters): eventlet.sleep(0) image = gfpgan.process( - image=image, strength=gfpgan_parameters["gfpgan_strength"], seed=seed + image=image, strength=gfpgan_parameters["facetool_strength"], seed=seed ) progress["currentStatus"] = "Saving image" @@ -464,7 +464,7 @@ def parameters_to_post_processed_image_metadata(parameters, original_image_path, image["strength"] = parameters["upscale"][1] elif type == "gfpgan": image["type"] = "gfpgan" - image["strength"] = parameters["gfpgan_strength"] + image["strength"] = parameters["facetool_strength"] else: raise TypeError(f"Invalid type: {type}") @@ -506,10 +506,10 @@ def parameters_to_generated_image_metadata(parameters): postprocessing = [] # 'postprocessing' is either null or an - if "gfpgan_strength" in parameters: + if "facetool_strength" in parameters: postprocessing.append( - {"type": "gfpgan", "strength": float(parameters["gfpgan_strength"])} + {"type": "gfpgan", "strength": float(parameters["facetool_strength"])} ) if "upscale" in parameters: @@ -752,7 +752,7 @@ def generate_images(generation_parameters, esrgan_parameters, gfpgan_parameters) image=image, strength=gfpgan_parameters["strength"], seed=seed ) postprocessing = True - all_parameters["gfpgan_strength"] = gfpgan_parameters["strength"] + all_parameters["facetool_strength"] = gfpgan_parameters["strength"] progress["currentStatus"] = "Saving image" socketio.emit("progressUpdate", progress) diff --git a/docs/features/CLI.md b/docs/features/CLI.md index cf86b0cd64..491548ab20 100644 --- a/docs/features/CLI.md +++ b/docs/features/CLI.md @@ -154,7 +154,9 @@ Here are the invoke> command that apply to txt2img: | --log_tokenization | -t | False | Display a color-coded list of the parsed tokens derived from the prompt | | --skip_normalization| -x | False | Weighted subprompts will not be normalized. See [Weighted Prompts](./OTHER.md#weighted-prompts) | | --upscale | -U | -U 1 0.75| Upscale image by magnification factor (2, 4), and set strength of upscaling (0.0-1.0). If strength not set, will default to 0.75. | -| --gfpgan_strength | -G | -G0 | Fix faces using the GFPGAN algorithm; argument indicates how hard the algorithm should try (0.0-1.0) | +| --facetool_strength | -G | -G0 | Fix faces (defaults to using the GFPGAN algorithm); argument indicates how hard the algorithm should try (0.0-1.0) | +| --facetool | -ft | -ft gfpgan | Select face restoration algorithm to use: gfpgan, codeformer | +| --codeformer_fidelity | -cf | 0.75 | Used along with CodeFormer. Takes values between 0 and 1. 0 produces high quality but low accuracy. 1 produces high accuracy but low quality | | --save_original | -save_orig| False | When upscaling or fixing faces, this will cause the original image to be saved rather than replaced. | | --variation |-v| 0.0 | Add a bit of noise (0.0=none, 1.0=high) to the image in order to generate a series of variations. Usually used in combination with -S and -n to generate a series a riffs on a starting image. See [Variations](./VARIATIONS.md). | | --with_variations | -V| None | Combine two or more variations. See [Variations](./VARIATIONS.md) for now to use this. | diff --git a/docs/features/POSTPROCESS.md b/docs/features/POSTPROCESS.md index b5156f54f0..148f52fb1e 100644 --- a/docs/features/POSTPROCESS.md +++ b/docs/features/POSTPROCESS.md @@ -69,7 +69,7 @@ If you do not explicitly specify an upscaling_strength, it will default to 0.75. ### Face Restoration -`-G : ` +`-G : ` This prompt argument controls the strength of the face restoration that is being applied. Similar to upscaling, values between `0.5 to 0.8` are recommended. diff --git a/frontend/dist/assets/index.560edd47.js b/frontend/dist/assets/index.560edd47.js deleted file mode 100644 index ffdf7061f1..0000000000 --- a/frontend/dist/assets/index.560edd47.js +++ /dev/null @@ -1,483 +0,0 @@ -function GF(e,t){for(var n=0;nr[o]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const s of i.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&r(s)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerpolicy&&(i.referrerPolicy=o.referrerpolicy),o.crossorigin==="use-credentials"?i.credentials="include":o.crossorigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();var Vi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function ZF(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Ye={};/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var sf=Symbol.for("react.element"),KF=Symbol.for("react.portal"),qF=Symbol.for("react.fragment"),YF=Symbol.for("react.strict_mode"),XF=Symbol.for("react.profiler"),QF=Symbol.for("react.provider"),JF=Symbol.for("react.context"),eB=Symbol.for("react.forward_ref"),tB=Symbol.for("react.suspense"),nB=Symbol.for("react.memo"),rB=Symbol.for("react.lazy"),fx=Symbol.iterator;function oB(e){return e===null||typeof e!="object"?null:(e=fx&&e[fx]||e["@@iterator"],typeof e=="function"?e:null)}var yC={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},bC=Object.assign,xC={};function Tu(e,t,n){this.props=e,this.context=t,this.refs=xC,this.updater=n||yC}Tu.prototype.isReactComponent={};Tu.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};Tu.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function wC(){}wC.prototype=Tu.prototype;function h5(e,t,n){this.props=e,this.context=t,this.refs=xC,this.updater=n||yC}var m5=h5.prototype=new wC;m5.constructor=h5;bC(m5,Tu.prototype);m5.isPureReactComponent=!0;var px=Array.isArray,SC=Object.prototype.hasOwnProperty,g5={current:null},CC={key:!0,ref:!0,__self:!0,__source:!0};function _C(e,t,n){var r,o={},i=null,s=null;if(t!=null)for(r in t.ref!==void 0&&(s=t.ref),t.key!==void 0&&(i=""+t.key),t)SC.call(t,r)&&!CC.hasOwnProperty(r)&&(o[r]=t[r]);var u=arguments.length-2;if(u===1)o.children=n;else if(1>>1,H=j[O];if(0>>1;Oo(ye,K))beo(Pe,ye)?(j[O]=Pe,j[be]=K,O=be):(j[O]=ye,j[de]=K,O=de);else if(beo(Pe,K))j[O]=Pe,j[be]=K,O=be;else break e}}return Y}function o(j,Y){var K=j.sortIndex-Y.sortIndex;return K!==0?K:j.id-Y.id}if(typeof performance=="object"&&typeof performance.now=="function"){var i=performance;e.unstable_now=function(){return i.now()}}else{var s=Date,u=s.now();e.unstable_now=function(){return s.now()-u}}var c=[],d=[],f=1,h=null,m=3,g=!1,b=!1,w=!1,k=typeof setTimeout=="function"?setTimeout:null,S=typeof clearTimeout=="function"?clearTimeout:null,x=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function _(j){for(var Y=n(d);Y!==null;){if(Y.callback===null)r(d);else if(Y.startTime<=j)r(d),Y.sortIndex=Y.expirationTime,t(c,Y);else break;Y=n(d)}}function L(j){if(w=!1,_(j),!b)if(n(c)!==null)b=!0,ge(T);else{var Y=n(d);Y!==null&&ne(L,Y.startTime-j)}}function T(j,Y){b=!1,w&&(w=!1,S(F),F=-1),g=!0;var K=m;try{for(_(Y),h=n(c);h!==null&&(!(h.expirationTime>Y)||j&&!J());){var O=h.callback;if(typeof O=="function"){h.callback=null,m=h.priorityLevel;var H=O(h.expirationTime<=Y);Y=e.unstable_now(),typeof H=="function"?h.callback=H:h===n(c)&&r(c),_(Y)}else r(c);h=n(c)}if(h!==null)var se=!0;else{var de=n(d);de!==null&&ne(L,de.startTime-Y),se=!1}return se}finally{h=null,m=K,g=!1}}var R=!1,N=null,F=-1,G=5,W=-1;function J(){return!(e.unstable_now()-Wj||125O?(j.sortIndex=K,t(d,j),n(c)===null&&j===n(d)&&(w?(S(F),F=-1):w=!0,ne(L,K-O))):(j.sortIndex=H,t(c,j),b||g||(b=!0,ge(T))),j},e.unstable_shouldYield=J,e.unstable_wrapCallback=function(j){var Y=m;return function(){var K=m;m=Y;try{return j.apply(this,arguments)}finally{m=K}}}})(EC);(function(e){e.exports=EC})(kC);/** - * @license React - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var LC=C.exports,Wr=kC.exports;function le(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Z2=Object.prototype.hasOwnProperty,uB=/^[: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]*$/,gx={},vx={};function cB(e){return Z2.call(vx,e)?!0:Z2.call(gx,e)?!1:uB.test(e)?vx[e]=!0:(gx[e]=!0,!1)}function dB(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function fB(e,t,n,r){if(t===null||typeof t>"u"||dB(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function ur(e,t,n,r,o,i,s){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=s}var zn={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){zn[e]=new ur(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];zn[t]=new ur(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){zn[e]=new ur(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){zn[e]=new ur(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){zn[e]=new ur(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){zn[e]=new ur(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){zn[e]=new ur(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){zn[e]=new ur(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){zn[e]=new ur(e,5,!1,e.toLowerCase(),null,!1,!1)});var y5=/[\-:]([a-z])/g;function b5(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(y5,b5);zn[t]=new ur(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(y5,b5);zn[t]=new ur(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(y5,b5);zn[t]=new ur(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){zn[e]=new ur(e,1,!1,e.toLowerCase(),null,!1,!1)});zn.xlinkHref=new ur("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){zn[e]=new ur(e,1,!1,e.toLowerCase(),null,!0,!0)});function x5(e,t,n,r){var o=zn.hasOwnProperty(t)?zn[t]:null;(o!==null?o.type!==0:r||!(2u||o[s]!==i[u]){var c=` -`+o[s].replace(" at new "," at ");return e.displayName&&c.includes("")&&(c=c.replace("",e.displayName)),c}while(1<=s&&0<=u);break}}}finally{Ev=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Dc(e):""}function pB(e){switch(e.tag){case 5:return Dc(e.type);case 16:return Dc("Lazy");case 13:return Dc("Suspense");case 19:return Dc("SuspenseList");case 0:case 2:case 15:return e=Lv(e.type,!1),e;case 11:return e=Lv(e.type.render,!1),e;case 1:return e=Lv(e.type,!0),e;default:return""}}function X2(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Rl:return"Fragment";case Ml:return"Portal";case K2:return"Profiler";case w5:return"StrictMode";case q2:return"Suspense";case Y2:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case TC:return(e.displayName||"Context")+".Consumer";case AC:return(e._context.displayName||"Context")+".Provider";case S5:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case C5:return t=e.displayName||null,t!==null?t:X2(e.type)||"Memo";case Sa:t=e._payload,e=e._init;try{return X2(e(t))}catch{}}return null}function hB(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return X2(t);case 8:return t===w5?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function Ha(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function OC(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function mB(e){var t=OC(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=""+s,i.call(this,s)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(s){r=""+s},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function jp(e){e._valueTracker||(e._valueTracker=mB(e))}function MC(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=OC(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function m1(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Q2(e,t){var n=t.checked;return Ut({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function bx(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=Ha(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function RC(e,t){t=t.checked,t!=null&&x5(e,"checked",t,!1)}function J2(e,t){RC(e,t);var n=Ha(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?ey(e,t.type,n):t.hasOwnProperty("defaultValue")&&ey(e,t.type,Ha(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function xx(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function ey(e,t,n){(t!=="number"||m1(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var zc=Array.isArray;function Yl(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o"+t.valueOf().toString()+"",t=Hp.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function gd(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Gc={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},gB=["Webkit","ms","Moz","O"];Object.keys(Gc).forEach(function(e){gB.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Gc[t]=Gc[e]})});function FC(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Gc.hasOwnProperty(e)&&Gc[e]?(""+t).trim():t+"px"}function BC(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,o=FC(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}var vB=Ut({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ry(e,t){if(t){if(vB[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(le(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(le(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(le(61))}if(t.style!=null&&typeof t.style!="object")throw Error(le(62))}}function oy(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){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 iy=null;function _5(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var ay=null,Xl=null,Ql=null;function Cx(e){if(e=cf(e)){if(typeof ay!="function")throw Error(le(280));var t=e.stateNode;t&&(t=E0(t),ay(e.stateNode,e.type,t))}}function $C(e){Xl?Ql?Ql.push(e):Ql=[e]:Xl=e}function VC(){if(Xl){var e=Xl,t=Ql;if(Ql=Xl=null,Cx(e),t)for(e=0;e>>=0,e===0?32:31-(PB(e)/AB|0)|0}var Up=64,Gp=4194304;function Fc(e){switch(e&-e){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: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 e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function b1(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,o=e.suspendedLanes,i=e.pingedLanes,s=n&268435455;if(s!==0){var u=s&~o;u!==0?r=Fc(u):(i&=s,i!==0&&(r=Fc(i)))}else s=n&~o,s!==0?r=Fc(s):i!==0&&(r=Fc(i));if(r===0)return 0;if(t!==0&&t!==r&&(t&o)===0&&(o=r&-r,i=t&-t,o>=i||o===16&&(i&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function lf(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Do(t),e[t]=n}function MB(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=Kc),Ox=String.fromCharCode(32),Mx=!1;function s_(e,t){switch(e){case"keyup":return s$.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function l_(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Nl=!1;function u$(e,t){switch(e){case"compositionend":return l_(t);case"keypress":return t.which!==32?null:(Mx=!0,Ox);case"textInput":return e=t.data,e===Ox&&Mx?null:e;default:return null}}function c$(e,t){if(Nl)return e==="compositionend"||!O5&&s_(e,t)?(e=i_(),zh=A5=Aa=null,Nl=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=zx(n)}}function f_(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?f_(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function p_(){for(var e=window,t=m1();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=m1(e.document)}return t}function M5(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function b$(e){var t=p_(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&f_(n.ownerDocument.documentElement,n)){if(r!==null&&M5(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var o=n.textContent.length,i=Math.min(r.start,o);r=r.end===void 0?i:Math.min(r.end,o),!e.extend&&i>r&&(o=r,r=i,i=o),o=Fx(n,i);var s=Fx(n,r);o&&s&&(e.rangeCount!==1||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&(t=t.createRange(),t.setStart(o.node,o.offset),e.removeAllRanges(),i>r?(e.addRange(t),e.extend(s.node,s.offset)):(t.setEnd(s.node,s.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Dl=null,fy=null,Yc=null,py=!1;function Bx(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;py||Dl==null||Dl!==m1(r)||(r=Dl,"selectionStart"in r&&M5(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Yc&&Sd(Yc,r)||(Yc=r,r=S1(fy,"onSelect"),0Bl||(e.current=by[Bl],by[Bl]=null,Bl--)}function At(e,t){Bl++,by[Bl]=e.current,e.current=t}var Ua={},Zn=Ja(Ua),xr=Ja(!1),Ns=Ua;function pu(e,t){var n=e.type.contextTypes;if(!n)return Ua;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o={},i;for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function wr(e){return e=e.childContextTypes,e!=null}function _1(){Rt(xr),Rt(Zn)}function Gx(e,t,n){if(Zn.current!==Ua)throw Error(le(168));At(Zn,t),At(xr,n)}function S_(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var o in r)if(!(o in t))throw Error(le(108,hB(e)||"Unknown",o));return Ut({},n,r)}function k1(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Ua,Ns=Zn.current,At(Zn,e),At(xr,xr.current),!0}function Zx(e,t,n){var r=e.stateNode;if(!r)throw Error(le(169));n?(e=S_(e,t,Ns),r.__reactInternalMemoizedMergedChildContext=e,Rt(xr),Rt(Zn),At(Zn,e)):Rt(xr),At(xr,n)}var $i=null,L0=!1,Vv=!1;function C_(e){$i===null?$i=[e]:$i.push(e)}function I$(e){L0=!0,C_(e)}function es(){if(!Vv&&$i!==null){Vv=!0;var e=0,t=mt;try{var n=$i;for(mt=1;e>=s,o-=s,ji=1<<32-Do(t)+o|n<F?(G=N,N=null):G=N.sibling;var W=m(S,N,_[F],L);if(W===null){N===null&&(N=G);break}e&&N&&W.alternate===null&&t(S,N),x=i(W,x,F),R===null?T=W:R.sibling=W,R=W,N=G}if(F===_.length)return n(S,N),Ft&&gs(S,F),T;if(N===null){for(;F<_.length;F++)N=h(S,_[F],L),N!==null&&(x=i(N,x,F),R===null?T=N:R.sibling=N,R=N);return Ft&&gs(S,F),T}for(N=r(S,N);F<_.length;F++)G=g(N,S,F,_[F],L),G!==null&&(e&&G.alternate!==null&&N.delete(G.key===null?F:G.key),x=i(G,x,F),R===null?T=G:R.sibling=G,R=G);return e&&N.forEach(function(J){return t(S,J)}),Ft&&gs(S,F),T}function w(S,x,_,L){var T=bc(_);if(typeof T!="function")throw Error(le(150));if(_=T.call(_),_==null)throw Error(le(151));for(var R=T=null,N=x,F=x=0,G=null,W=_.next();N!==null&&!W.done;F++,W=_.next()){N.index>F?(G=N,N=null):G=N.sibling;var J=m(S,N,W.value,L);if(J===null){N===null&&(N=G);break}e&&N&&J.alternate===null&&t(S,N),x=i(J,x,F),R===null?T=J:R.sibling=J,R=J,N=G}if(W.done)return n(S,N),Ft&&gs(S,F),T;if(N===null){for(;!W.done;F++,W=_.next())W=h(S,W.value,L),W!==null&&(x=i(W,x,F),R===null?T=W:R.sibling=W,R=W);return Ft&&gs(S,F),T}for(N=r(S,N);!W.done;F++,W=_.next())W=g(N,S,F,W.value,L),W!==null&&(e&&W.alternate!==null&&N.delete(W.key===null?F:W.key),x=i(W,x,F),R===null?T=W:R.sibling=W,R=W);return e&&N.forEach(function(Ee){return t(S,Ee)}),Ft&&gs(S,F),T}function k(S,x,_,L){if(typeof _=="object"&&_!==null&&_.type===Rl&&_.key===null&&(_=_.props.children),typeof _=="object"&&_!==null){switch(_.$$typeof){case Wp:e:{for(var T=_.key,R=x;R!==null;){if(R.key===T){if(T=_.type,T===Rl){if(R.tag===7){n(S,R.sibling),x=o(R,_.props.children),x.return=S,S=x;break e}}else if(R.elementType===T||typeof T=="object"&&T!==null&&T.$$typeof===Sa&&ew(T)===R.type){n(S,R.sibling),x=o(R,_.props),x.ref=_c(S,R,_),x.return=S,S=x;break e}n(S,R);break}else t(S,R);R=R.sibling}_.type===Rl?(x=Ts(_.props.children,S.mode,L,_.key),x.return=S,S=x):(L=Uh(_.type,_.key,_.props,null,S.mode,L),L.ref=_c(S,x,_),L.return=S,S=L)}return s(S);case Ml:e:{for(R=_.key;x!==null;){if(x.key===R)if(x.tag===4&&x.stateNode.containerInfo===_.containerInfo&&x.stateNode.implementation===_.implementation){n(S,x.sibling),x=o(x,_.children||[]),x.return=S,S=x;break e}else{n(S,x);break}else t(S,x);x=x.sibling}x=qv(_,S.mode,L),x.return=S,S=x}return s(S);case Sa:return R=_._init,k(S,x,R(_._payload),L)}if(zc(_))return b(S,x,_,L);if(bc(_))return w(S,x,_,L);Jp(S,_)}return typeof _=="string"&&_!==""||typeof _=="number"?(_=""+_,x!==null&&x.tag===6?(n(S,x.sibling),x=o(x,_),x.return=S,S=x):(n(S,x),x=Kv(_,S.mode,L),x.return=S,S=x),s(S)):n(S,x)}return k}var mu=I_(!0),O_=I_(!1),df={},ii=Ja(df),Ed=Ja(df),Ld=Ja(df);function ks(e){if(e===df)throw Error(le(174));return e}function W5(e,t){switch(At(Ld,t),At(Ed,e),At(ii,df),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:ny(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=ny(t,e)}Rt(ii),At(ii,t)}function gu(){Rt(ii),Rt(Ed),Rt(Ld)}function M_(e){ks(Ld.current);var t=ks(ii.current),n=ny(t,e.type);t!==n&&(At(Ed,e),At(ii,n))}function j5(e){Ed.current===e&&(Rt(ii),Rt(Ed))}var jt=Ja(0);function I1(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Wv=[];function H5(){for(var e=0;en?n:4,e(!0);var r=jv.transition;jv.transition={};try{e(!1),t()}finally{mt=n,jv.transition=r}}function q_(){return fo().memoizedState}function N$(e,t,n){var r=Va(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Y_(e))X_(t,n);else if(n=L_(e,t,n,r),n!==null){var o=ar();zo(n,e,r,o),Q_(n,t,r)}}function D$(e,t,n){var r=Va(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Y_(e))X_(t,o);else{var i=e.alternate;if(e.lanes===0&&(i===null||i.lanes===0)&&(i=t.lastRenderedReducer,i!==null))try{var s=t.lastRenderedState,u=i(s,n);if(o.hasEagerState=!0,o.eagerState=u,Bo(u,s)){var c=t.interleaved;c===null?(o.next=o,$5(t)):(o.next=c.next,c.next=o),t.interleaved=o;return}}catch{}finally{}n=L_(e,t,o,r),n!==null&&(o=ar(),zo(n,e,r,o),Q_(n,t,r))}}function Y_(e){var t=e.alternate;return e===Ht||t!==null&&t===Ht}function X_(e,t){Xc=O1=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Q_(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,E5(e,n)}}var M1={readContext:co,useCallback:Vn,useContext:Vn,useEffect:Vn,useImperativeHandle:Vn,useInsertionEffect:Vn,useLayoutEffect:Vn,useMemo:Vn,useReducer:Vn,useRef:Vn,useState:Vn,useDebugValue:Vn,useDeferredValue:Vn,useTransition:Vn,useMutableSource:Vn,useSyncExternalStore:Vn,useId:Vn,unstable_isNewReconciler:!1},z$={readContext:co,useCallback:function(e,t){return qo().memoizedState=[e,t===void 0?null:t],e},useContext:co,useEffect:nw,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Vh(4194308,4,H_.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Vh(4194308,4,e,t)},useInsertionEffect:function(e,t){return Vh(4,2,e,t)},useMemo:function(e,t){var n=qo();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=qo();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=N$.bind(null,Ht,e),[r.memoizedState,e]},useRef:function(e){var t=qo();return e={current:e},t.memoizedState=e},useState:tw,useDebugValue:q5,useDeferredValue:function(e){return qo().memoizedState=e},useTransition:function(){var e=tw(!1),t=e[0];return e=R$.bind(null,e[1]),qo().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=Ht,o=qo();if(Ft){if(n===void 0)throw Error(le(407));n=n()}else{if(n=t(),_n===null)throw Error(le(349));(zs&30)!==0||D_(r,t,n)}o.memoizedState=n;var i={value:n,getSnapshot:t};return o.queue=i,nw(F_.bind(null,r,i,e),[e]),r.flags|=2048,Td(9,z_.bind(null,r,i,n,t),void 0,null),n},useId:function(){var e=qo(),t=_n.identifierPrefix;if(Ft){var n=Hi,r=ji;n=(r&~(1<<32-Do(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Pd++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),n==="select"&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[ei]=t,e[kd]=r,sk(e,t,!1,!1),t.stateNode=e;e:{switch(s=oy(n,r),n){case"dialog":Ot("cancel",e),Ot("close",e),o=r;break;case"iframe":case"object":case"embed":Ot("load",e),o=r;break;case"video":case"audio":for(o=0;oyu&&(t.flags|=128,r=!0,kc(i,!1),t.lanes=4194304)}else{if(!r)if(e=I1(s),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),kc(i,!0),i.tail===null&&i.tailMode==="hidden"&&!s.alternate&&!Ft)return Wn(t),null}else 2*nn()-i.renderingStartTime>yu&&n!==1073741824&&(t.flags|=128,r=!0,kc(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(n=i.last,n!==null?n.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(t=i.tail,i.rendering=t,i.tail=t.sibling,i.renderingStartTime=nn(),t.sibling=null,n=jt.current,At(jt,r?n&1|2:n&1),t):(Wn(t),null);case 22:case 23:return t3(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(Dr&1073741824)!==0&&(Wn(t),t.subtreeFlags&6&&(t.flags|=8192)):Wn(t),null;case 24:return null;case 25:return null}throw Error(le(156,t.tag))}function U$(e,t){switch(N5(t),t.tag){case 1:return wr(t.type)&&_1(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return gu(),Rt(xr),Rt(Zn),H5(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return j5(t),null;case 13:if(Rt(jt),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(le(340));hu()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Rt(jt),null;case 4:return gu(),null;case 10:return B5(t.type._context),null;case 22:case 23:return t3(),null;case 24:return null;default:return null}}var th=!1,Un=!1,G$=typeof WeakSet=="function"?WeakSet:Set,ke=null;function jl(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){qt(e,t,r)}else n.current=null}function Iy(e,t,n){try{n()}catch(r){qt(e,t,r)}}var dw=!1;function Z$(e,t){if(hy=x1,e=p_(),M5(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var o=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{n.nodeType,i.nodeType}catch{n=null;break e}var s=0,u=-1,c=-1,d=0,f=0,h=e,m=null;t:for(;;){for(var g;h!==n||o!==0&&h.nodeType!==3||(u=s+o),h!==i||r!==0&&h.nodeType!==3||(c=s+r),h.nodeType===3&&(s+=h.nodeValue.length),(g=h.firstChild)!==null;)m=h,h=g;for(;;){if(h===e)break t;if(m===n&&++d===o&&(u=s),m===i&&++f===r&&(c=s),(g=h.nextSibling)!==null)break;h=m,m=h.parentNode}h=g}n=u===-1||c===-1?null:{start:u,end:c}}else n=null}n=n||{start:0,end:0}}else n=null;for(my={focusedElem:e,selectionRange:n},x1=!1,ke=t;ke!==null;)if(t=ke,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,ke=e;else for(;ke!==null;){t=ke;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var w=b.memoizedProps,k=b.memoizedState,S=t.stateNode,x=S.getSnapshotBeforeUpdate(t.elementType===t.type?w:To(t.type,w),k);S.__reactInternalSnapshotBeforeUpdate=x}break;case 3:var _=t.stateNode.containerInfo;_.nodeType===1?_.textContent="":_.nodeType===9&&_.documentElement&&_.removeChild(_.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(le(163))}}catch(L){qt(t,t.return,L)}if(e=t.sibling,e!==null){e.return=t.return,ke=e;break}ke=t.return}return b=dw,dw=!1,b}function Qc(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var o=r=r.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,i!==void 0&&Iy(t,n,i)}o=o.next}while(o!==r)}}function T0(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Oy(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function ck(e){var t=e.alternate;t!==null&&(e.alternate=null,ck(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[ei],delete t[kd],delete t[yy],delete t[A$],delete t[T$])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function dk(e){return e.tag===5||e.tag===3||e.tag===4}function fw(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||dk(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function My(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=C1));else if(r!==4&&(e=e.child,e!==null))for(My(e,t,n),e=e.sibling;e!==null;)My(e,t,n),e=e.sibling}function Ry(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Ry(e,t,n),e=e.sibling;e!==null;)Ry(e,t,n),e=e.sibling}var On=null,Io=!1;function ma(e,t,n){for(n=n.child;n!==null;)fk(e,t,n),n=n.sibling}function fk(e,t,n){if(oi&&typeof oi.onCommitFiberUnmount=="function")try{oi.onCommitFiberUnmount(S0,n)}catch{}switch(n.tag){case 5:Un||jl(n,t);case 6:var r=On,o=Io;On=null,ma(e,t,n),On=r,Io=o,On!==null&&(Io?(e=On,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):On.removeChild(n.stateNode));break;case 18:On!==null&&(Io?(e=On,n=n.stateNode,e.nodeType===8?$v(e.parentNode,n):e.nodeType===1&&$v(e,n),xd(e)):$v(On,n.stateNode));break;case 4:r=On,o=Io,On=n.stateNode.containerInfo,Io=!0,ma(e,t,n),On=r,Io=o;break;case 0:case 11:case 14:case 15:if(!Un&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){o=r=r.next;do{var i=o,s=i.destroy;i=i.tag,s!==void 0&&((i&2)!==0||(i&4)!==0)&&Iy(n,t,s),o=o.next}while(o!==r)}ma(e,t,n);break;case 1:if(!Un&&(jl(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(u){qt(n,t,u)}ma(e,t,n);break;case 21:ma(e,t,n);break;case 22:n.mode&1?(Un=(r=Un)||n.memoizedState!==null,ma(e,t,n),Un=r):ma(e,t,n);break;default:ma(e,t,n)}}function pw(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new G$),t.forEach(function(r){var o=nV.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))})}}function ko(e,t){var n=t.deletions;if(n!==null)for(var r=0;ro&&(o=s),r&=~i}if(r=o,r=nn()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*q$(r/1960))-r,10e?16:e,Ta===null)var r=!1;else{if(e=Ta,Ta=null,D1=0,(et&6)!==0)throw Error(le(331));var o=et;for(et|=4,ke=e.current;ke!==null;){var i=ke,s=i.child;if((ke.flags&16)!==0){var u=i.deletions;if(u!==null){for(var c=0;cnn()-J5?As(e,0):Q5|=n),Sr(e,t)}function xk(e,t){t===0&&((e.mode&1)===0?t=1:(t=Gp,Gp<<=1,(Gp&130023424)===0&&(Gp=4194304)));var n=ar();e=qi(e,t),e!==null&&(lf(e,t,n),Sr(e,n))}function tV(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),xk(e,n)}function nV(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;o!==null&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(le(314))}r!==null&&r.delete(t),xk(e,n)}var wk;wk=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||xr.current)br=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return br=!1,j$(e,t,n);br=(e.flags&131072)!==0}else br=!1,Ft&&(t.flags&1048576)!==0&&__(t,L1,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Wh(e,t),e=t.pendingProps;var o=pu(t,Zn.current);eu(t,n),o=G5(null,t,r,e,o,n);var i=Z5();return t.flags|=1,typeof o=="object"&&o!==null&&typeof o.render=="function"&&o.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,wr(r)?(i=!0,k1(t)):i=!1,t.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,V5(t),o.updater=P0,t.stateNode=o,o._reactInternals=t,_y(t,r,e,n),t=Ly(null,t,r,!0,i,n)):(t.tag=0,Ft&&i&&R5(t),ir(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Wh(e,t),e=t.pendingProps,o=r._init,r=o(r._payload),t.type=r,o=t.tag=oV(r),e=To(r,e),o){case 0:t=Ey(null,t,r,e,n);break e;case 1:t=lw(null,t,r,e,n);break e;case 11:t=aw(null,t,r,e,n);break e;case 14:t=sw(null,t,r,To(r.type,e),n);break e}throw Error(le(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),Ey(e,t,r,o,n);case 1:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),lw(e,t,r,o,n);case 3:e:{if(ok(t),e===null)throw Error(le(387));r=t.pendingProps,i=t.memoizedState,o=i.element,P_(e,t),T1(t,r,null,n);var s=t.memoizedState;if(r=s.element,i.isDehydrated)if(i={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=i,t.memoizedState=i,t.flags&256){o=vu(Error(le(423)),t),t=uw(e,t,r,n,o);break e}else if(r!==o){o=vu(Error(le(424)),t),t=uw(e,t,r,n,o);break e}else for(Fr=Fa(t.stateNode.containerInfo.firstChild),$r=t,Ft=!0,Mo=null,n=O_(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(hu(),r===o){t=Yi(e,t,n);break e}ir(e,t,r,n)}t=t.child}return t;case 5:return M_(t),e===null&&wy(t),r=t.type,o=t.pendingProps,i=e!==null?e.memoizedProps:null,s=o.children,gy(r,o)?s=null:i!==null&&gy(r,i)&&(t.flags|=32),rk(e,t),ir(e,t,s,n),t.child;case 6:return e===null&&wy(t),null;case 13:return ik(e,t,n);case 4:return W5(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=mu(t,null,r,n):ir(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),aw(e,t,r,o,n);case 7:return ir(e,t,t.pendingProps,n),t.child;case 8:return ir(e,t,t.pendingProps.children,n),t.child;case 12:return ir(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,i=t.memoizedProps,s=o.value,At(P1,r._currentValue),r._currentValue=s,i!==null)if(Bo(i.value,s)){if(i.children===o.children&&!xr.current){t=Yi(e,t,n);break e}}else for(i=t.child,i!==null&&(i.return=t);i!==null;){var u=i.dependencies;if(u!==null){s=i.child;for(var c=u.firstContext;c!==null;){if(c.context===r){if(i.tag===1){c=Gi(-1,n&-n),c.tag=2;var d=i.updateQueue;if(d!==null){d=d.shared;var f=d.pending;f===null?c.next=c:(c.next=f.next,f.next=c),d.pending=c}}i.lanes|=n,c=i.alternate,c!==null&&(c.lanes|=n),Sy(i.return,n,t),u.lanes|=n;break}c=c.next}}else if(i.tag===10)s=i.type===t.type?null:i.child;else if(i.tag===18){if(s=i.return,s===null)throw Error(le(341));s.lanes|=n,u=s.alternate,u!==null&&(u.lanes|=n),Sy(s,n,t),s=i.sibling}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===t){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}ir(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,eu(t,n),o=co(o),r=r(o),t.flags|=1,ir(e,t,r,n),t.child;case 14:return r=t.type,o=To(r,t.pendingProps),o=To(r.type,o),sw(e,t,r,o,n);case 15:return tk(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:To(r,o),Wh(e,t),t.tag=1,wr(r)?(e=!0,k1(t)):e=!1,eu(t,n),T_(t,r,o),_y(t,r,o,n),Ly(null,t,r,!0,e,n);case 19:return ak(e,t,n);case 22:return nk(e,t,n)}throw Error(le(156,t.tag))};function Sk(e,t){return KC(e,t)}function rV(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function so(e,t,n,r){return new rV(e,t,n,r)}function r3(e){return e=e.prototype,!(!e||!e.isReactComponent)}function oV(e){if(typeof e=="function")return r3(e)?1:0;if(e!=null){if(e=e.$$typeof,e===S5)return 11;if(e===C5)return 14}return 2}function Wa(e,t){var n=e.alternate;return n===null?(n=so(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Uh(e,t,n,r,o,i){var s=2;if(r=e,typeof e=="function")r3(e)&&(s=1);else if(typeof e=="string")s=5;else e:switch(e){case Rl:return Ts(n.children,o,i,t);case w5:s=8,o|=8;break;case K2:return e=so(12,n,t,o|2),e.elementType=K2,e.lanes=i,e;case q2:return e=so(13,n,t,o),e.elementType=q2,e.lanes=i,e;case Y2:return e=so(19,n,t,o),e.elementType=Y2,e.lanes=i,e;case IC:return O0(n,o,i,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case AC:s=10;break e;case TC:s=9;break e;case S5:s=11;break e;case C5:s=14;break e;case Sa:s=16,r=null;break e}throw Error(le(130,e==null?e:typeof e,""))}return t=so(s,n,t,o),t.elementType=e,t.type=r,t.lanes=i,t}function Ts(e,t,n,r){return e=so(7,e,r,t),e.lanes=n,e}function O0(e,t,n,r){return e=so(22,e,r,t),e.elementType=IC,e.lanes=n,e.stateNode={isHidden:!1},e}function Kv(e,t,n){return e=so(6,e,null,t),e.lanes=n,e}function qv(e,t,n){return t=so(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function iV(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Av(0),this.expirationTimes=Av(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Av(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function o3(e,t,n,r,o,i,s,u,c){return e=new iV(e,t,n,u,c),t===1?(t=1,i===!0&&(t|=8)):t=0,i=so(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},V5(i),e}function aV(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=Ur})(Iu);var ww=Iu.exports;G2.createRoot=ww.createRoot,G2.hydrateRoot=ww.hydrateRoot;var ai=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,z0={exports:{}},F0={};/** - * @license React - * react-jsx-runtime.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var dV=C.exports,fV=Symbol.for("react.element"),pV=Symbol.for("react.fragment"),hV=Object.prototype.hasOwnProperty,mV=dV.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,gV={key:!0,ref:!0,__self:!0,__source:!0};function Ek(e,t,n){var r,o={},i=null,s=null;n!==void 0&&(i=""+n),t.key!==void 0&&(i=""+t.key),t.ref!==void 0&&(s=t.ref);for(r in t)hV.call(t,r)&&!gV.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)o[r]===void 0&&(o[r]=t[r]);return{$$typeof:fV,type:e,key:i,ref:s,props:o,_owner:mV.current}}F0.Fragment=pV;F0.jsx=Ek;F0.jsxs=Ek;(function(e){e.exports=F0})(z0);const yn=z0.exports.Fragment,v=z0.exports.jsx,q=z0.exports.jsxs;var l3=C.exports.createContext({});l3.displayName="ColorModeContext";function u3(){const e=C.exports.useContext(l3);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var oh={light:"chakra-ui-light",dark:"chakra-ui-dark"};function vV(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const o=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,o?.()},setClassName(r){document.body.classList.add(r?oh.dark:oh.light),document.body.classList.remove(r?oh.light:oh.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const o=n.query(),i=s=>{r(s.matches?"dark":"light")};return typeof o.addListener=="function"?o.addListener(i):o.addEventListener("change",i),()=>{typeof o.removeListener=="function"?o.removeListener(i):o.removeEventListener("change",i)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var yV="chakra-ui-color-mode";function bV(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var xV=bV(yV),Sw=()=>{};function Cw(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function Lk(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:o,disableTransitionOnChange:i}={},colorModeManager:s=xV}=e,u=o==="dark"?"dark":"light",[c,d]=C.exports.useState(()=>Cw(s,u)),[f,h]=C.exports.useState(()=>Cw(s)),{getSystemTheme:m,setClassName:g,setDataset:b,addListener:w}=C.exports.useMemo(()=>vV({preventTransition:i}),[i]),k=o==="system"&&!c?f:c,S=C.exports.useCallback(L=>{const T=L==="system"?m():L;d(T),g(T==="dark"),b(T),s.set(T)},[s,m,g,b]);ai(()=>{o==="system"&&h(m())},[]),C.exports.useEffect(()=>{const L=s.get();if(L){S(L);return}if(o==="system"){S("system");return}S(u)},[s,u,o,S]);const x=C.exports.useCallback(()=>{S(k==="dark"?"light":"dark")},[k,S]);C.exports.useEffect(()=>{if(!!r)return w(S)},[r,w,S]);const _=C.exports.useMemo(()=>({colorMode:t??k,toggleColorMode:t?Sw:x,setColorMode:t?Sw:S}),[k,x,S,t]);return v(l3.Provider,{value:_,children:n})}Lk.displayName="ColorModeProvider";var wV=new Set(["dark","light","system"]);function SV(e){let t=e;return wV.has(t)||(t="light"),t}function CV(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,o=SV(t),i=n==="cookie",s=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${o}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); - `,u=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${o}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); - `;return`!${i?s:u}`.trim()}function _V(e={}){return v("script",{id:"chakra-script",dangerouslySetInnerHTML:{__html:CV(e)}})}var By={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",o=800,i=16,s=9007199254740991,u="[object Arguments]",c="[object Array]",d="[object AsyncFunction]",f="[object Boolean]",h="[object Date]",m="[object Error]",g="[object Function]",b="[object GeneratorFunction]",w="[object Map]",k="[object Number]",S="[object Null]",x="[object Object]",_="[object Proxy]",L="[object RegExp]",T="[object Set]",R="[object String]",N="[object Undefined]",F="[object WeakMap]",G="[object ArrayBuffer]",W="[object DataView]",J="[object Float32Array]",Ee="[object Float64Array]",he="[object Int8Array]",me="[object Int16Array]",ce="[object Int32Array]",ge="[object Uint8Array]",ne="[object Uint8ClampedArray]",j="[object Uint16Array]",Y="[object Uint32Array]",K=/[\\^$.*+?()[\]{}|]/g,O=/^\[object .+?Constructor\]$/,H=/^(?:0|[1-9]\d*)$/,se={};se[J]=se[Ee]=se[he]=se[me]=se[ce]=se[ge]=se[ne]=se[j]=se[Y]=!0,se[u]=se[c]=se[G]=se[f]=se[W]=se[h]=se[m]=se[g]=se[w]=se[k]=se[x]=se[L]=se[T]=se[R]=se[F]=!1;var de=typeof Vi=="object"&&Vi&&Vi.Object===Object&&Vi,ye=typeof self=="object"&&self&&self.Object===Object&&self,be=de||ye||Function("return this")(),Pe=t&&!t.nodeType&&t,fe=Pe&&!0&&e&&!e.nodeType&&e,_e=fe&&fe.exports===Pe,De=_e&&de.process,st=function(){try{var I=fe&&fe.require&&fe.require("util").types;return I||De&&De.binding&&De.binding("util")}catch{}}(),It=st&&st.isTypedArray;function bn(I,z,U){switch(U.length){case 0:return I.call(z);case 1:return I.call(z,U[0]);case 2:return I.call(z,U[0],U[1]);case 3:return I.call(z,U[0],U[1],U[2])}return I.apply(z,U)}function xe(I,z){for(var U=-1,we=Array(I);++U-1}function Qm(I,z){var U=this.__data__,we=Ci(U,I);return we<0?(++this.size,U.push([I,z])):U[we][1]=z,this}bo.prototype.clear=Gu,bo.prototype.delete=Ym,bo.prototype.get=Zu,bo.prototype.has=Xm,bo.prototype.set=Qm;function oa(I){var z=-1,U=I==null?0:I.length;for(this.clear();++z1?U[Ze-1]:void 0,$e=Ze>2?U[2]:void 0;for(pt=I.length>3&&typeof pt=="function"?(Ze--,pt):void 0,$e&&Uf(U[0],U[1],$e)&&(pt=Ze<3?void 0:pt,Ze=1),z=Object(z);++we-1&&I%1==0&&I0){if(++z>=o)return arguments[0]}else z=0;return I.apply(void 0,arguments)}}function Yf(I){if(I!=null){try{return Jt.call(I)}catch{}try{return I+""}catch{}}return""}function ol(I,z){return I===z||I!==I&&z!==z}var ec=qu(function(){return arguments}())?qu:function(I){return is(I)&&Gt.call(I,"callee")&&!$o.call(I,"callee")},tc=Array.isArray;function il(I){return I!=null&&Qf(I.length)&&!nc(I)}function vg(I){return is(I)&&il(I)}var Xf=os||xg;function nc(I){if(!xo(I))return!1;var z=Js(I);return z==g||z==b||z==d||z==_}function Qf(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=s}function xo(I){var z=typeof I;return I!=null&&(z=="object"||z=="function")}function is(I){return I!=null&&typeof I=="object"}function yg(I){if(!is(I)||Js(I)!=x)return!1;var z=Fn(I);if(z===null)return!0;var U=Gt.call(z,"constructor")&&z.constructor;return typeof U=="function"&&U instanceof U&&Jt.call(U)==ft}var Jf=It?Ie(It):Df;function bg(I){return Vf(I,ep(I))}function ep(I){return il(I)?ug(I,!0):fg(I)}var _t=el(function(I,z,U,we){zf(I,z,U,we)});function xt(I){return function(){return I}}function tp(I){return I}function xg(){return!1}e.exports=_t})(By,By.exports);const Ga=By.exports;function ri(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function Ul(e,...t){return kV(e)?e(...t):e}var kV=e=>typeof e=="function",EV=e=>/!(important)?$/.test(e),_w=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,$y=(e,t)=>n=>{const r=String(t),o=EV(r),i=_w(r),s=e?`${e}.${i}`:i;let u=ri(n.__cssMap)&&s in n.__cssMap?n.__cssMap[s].varRef:t;return u=_w(u),o?`${u} !important`:u};function Od(e){const{scale:t,transform:n,compose:r}=e;return(i,s)=>{const u=$y(t,i)(s);let c=n?.(u,s)??u;return r&&(c=r(c,s)),c}}var ih=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Eo(e,t){return n=>{const r={property:n,scale:e};return r.transform=Od({scale:e,transform:t}),r}}var LV=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function PV(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:LV(t),transform:n?Od({scale:n,compose:r}):r}}var Pk=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function AV(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...Pk].join(" ")}function TV(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...Pk].join(" ")}var IV={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},OV={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function MV(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var RV={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},Ak="& > :not(style) ~ :not(style)",NV={[Ak]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},DV={[Ak]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},Vy={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},zV=new Set(Object.values(Vy)),Tk=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),FV=e=>e.trim();function BV(e,t){var n;if(e==null||Tk.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:o,values:i}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!o||!i)return e;const s=o.includes("-gradient")?o:`${o}-gradient`,[u,...c]=i.split(",").map(FV).filter(Boolean);if(c?.length===0)return e;const d=u in Vy?Vy[u]:u;c.unshift(d);const f=c.map(h=>{if(zV.has(h))return h;const m=h.indexOf(" "),[g,b]=m!==-1?[h.substr(0,m),h.substr(m+1)]:[h],w=Ik(b)?b:b&&b.split(" "),k=`colors.${g}`,S=k in t.__cssMap?t.__cssMap[k].varRef:g;return w?[S,...Array.isArray(w)?w:[w]].join(" "):S});return`${s}(${f.join(", ")})`}var Ik=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),$V=(e,t)=>BV(e,t??{});function VV(e){return/^var\(--.+\)$/.test(e)}var WV=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},Uo=e=>t=>`${e}(${t})`,Je={filter(e){return e!=="auto"?e:IV},backdropFilter(e){return e!=="auto"?e:OV},ring(e){return MV(Je.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?AV():e==="auto-gpu"?TV():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=WV(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(VV(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:$V,blur:Uo("blur"),opacity:Uo("opacity"),brightness:Uo("brightness"),contrast:Uo("contrast"),dropShadow:Uo("drop-shadow"),grayscale:Uo("grayscale"),hueRotate:Uo("hue-rotate"),invert:Uo("invert"),saturate:Uo("saturate"),sepia:Uo("sepia"),bgImage(e){return e==null||Ik(e)||Tk.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=RV[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},B={borderWidths:Eo("borderWidths"),borderStyles:Eo("borderStyles"),colors:Eo("colors"),borders:Eo("borders"),radii:Eo("radii",Je.px),space:Eo("space",ih(Je.vh,Je.px)),spaceT:Eo("space",ih(Je.vh,Je.px)),degreeT(e){return{property:e,transform:Je.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:Od({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Eo("sizes",ih(Je.vh,Je.px)),sizesT:Eo("sizes",ih(Je.vh,Je.fraction)),shadows:Eo("shadows"),logical:PV,blur:Eo("blur",Je.blur)},Gh={background:B.colors("background"),backgroundColor:B.colors("backgroundColor"),backgroundImage:B.propT("backgroundImage",Je.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:Je.bgClip},bgSize:B.prop("backgroundSize"),bgPosition:B.prop("backgroundPosition"),bg:B.colors("background"),bgColor:B.colors("backgroundColor"),bgPos:B.prop("backgroundPosition"),bgRepeat:B.prop("backgroundRepeat"),bgAttachment:B.prop("backgroundAttachment"),bgGradient:B.propT("backgroundImage",Je.gradient),bgClip:{transform:Je.bgClip}};Object.assign(Gh,{bgImage:Gh.backgroundImage,bgImg:Gh.backgroundImage});var ot={border:B.borders("border"),borderWidth:B.borderWidths("borderWidth"),borderStyle:B.borderStyles("borderStyle"),borderColor:B.colors("borderColor"),borderRadius:B.radii("borderRadius"),borderTop:B.borders("borderTop"),borderBlockStart:B.borders("borderBlockStart"),borderTopLeftRadius:B.radii("borderTopLeftRadius"),borderStartStartRadius:B.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:B.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:B.radii("borderTopRightRadius"),borderStartEndRadius:B.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:B.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:B.borders("borderRight"),borderInlineEnd:B.borders("borderInlineEnd"),borderBottom:B.borders("borderBottom"),borderBlockEnd:B.borders("borderBlockEnd"),borderBottomLeftRadius:B.radii("borderBottomLeftRadius"),borderBottomRightRadius:B.radii("borderBottomRightRadius"),borderLeft:B.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:B.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:B.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:B.borders(["borderLeft","borderRight"]),borderInline:B.borders("borderInline"),borderY:B.borders(["borderTop","borderBottom"]),borderBlock:B.borders("borderBlock"),borderTopWidth:B.borderWidths("borderTopWidth"),borderBlockStartWidth:B.borderWidths("borderBlockStartWidth"),borderTopColor:B.colors("borderTopColor"),borderBlockStartColor:B.colors("borderBlockStartColor"),borderTopStyle:B.borderStyles("borderTopStyle"),borderBlockStartStyle:B.borderStyles("borderBlockStartStyle"),borderBottomWidth:B.borderWidths("borderBottomWidth"),borderBlockEndWidth:B.borderWidths("borderBlockEndWidth"),borderBottomColor:B.colors("borderBottomColor"),borderBlockEndColor:B.colors("borderBlockEndColor"),borderBottomStyle:B.borderStyles("borderBottomStyle"),borderBlockEndStyle:B.borderStyles("borderBlockEndStyle"),borderLeftWidth:B.borderWidths("borderLeftWidth"),borderInlineStartWidth:B.borderWidths("borderInlineStartWidth"),borderLeftColor:B.colors("borderLeftColor"),borderInlineStartColor:B.colors("borderInlineStartColor"),borderLeftStyle:B.borderStyles("borderLeftStyle"),borderInlineStartStyle:B.borderStyles("borderInlineStartStyle"),borderRightWidth:B.borderWidths("borderRightWidth"),borderInlineEndWidth:B.borderWidths("borderInlineEndWidth"),borderRightColor:B.colors("borderRightColor"),borderInlineEndColor:B.colors("borderInlineEndColor"),borderRightStyle:B.borderStyles("borderRightStyle"),borderInlineEndStyle:B.borderStyles("borderInlineEndStyle"),borderTopRadius:B.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:B.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:B.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:B.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(ot,{rounded:ot.borderRadius,roundedTop:ot.borderTopRadius,roundedTopLeft:ot.borderTopLeftRadius,roundedTopRight:ot.borderTopRightRadius,roundedTopStart:ot.borderStartStartRadius,roundedTopEnd:ot.borderStartEndRadius,roundedBottom:ot.borderBottomRadius,roundedBottomLeft:ot.borderBottomLeftRadius,roundedBottomRight:ot.borderBottomRightRadius,roundedBottomStart:ot.borderEndStartRadius,roundedBottomEnd:ot.borderEndEndRadius,roundedLeft:ot.borderLeftRadius,roundedRight:ot.borderRightRadius,roundedStart:ot.borderInlineStartRadius,roundedEnd:ot.borderInlineEndRadius,borderStart:ot.borderInlineStart,borderEnd:ot.borderInlineEnd,borderTopStartRadius:ot.borderStartStartRadius,borderTopEndRadius:ot.borderStartEndRadius,borderBottomStartRadius:ot.borderEndStartRadius,borderBottomEndRadius:ot.borderEndEndRadius,borderStartRadius:ot.borderInlineStartRadius,borderEndRadius:ot.borderInlineEndRadius,borderStartWidth:ot.borderInlineStartWidth,borderEndWidth:ot.borderInlineEndWidth,borderStartColor:ot.borderInlineStartColor,borderEndColor:ot.borderInlineEndColor,borderStartStyle:ot.borderInlineStartStyle,borderEndStyle:ot.borderInlineEndStyle});var jV={color:B.colors("color"),textColor:B.colors("color"),fill:B.colors("fill"),stroke:B.colors("stroke")},Wy={boxShadow:B.shadows("boxShadow"),mixBlendMode:!0,blendMode:B.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:B.prop("backgroundBlendMode"),opacity:!0};Object.assign(Wy,{shadow:Wy.boxShadow});var HV={filter:{transform:Je.filter},blur:B.blur("--chakra-blur"),brightness:B.propT("--chakra-brightness",Je.brightness),contrast:B.propT("--chakra-contrast",Je.contrast),hueRotate:B.degreeT("--chakra-hue-rotate"),invert:B.propT("--chakra-invert",Je.invert),saturate:B.propT("--chakra-saturate",Je.saturate),dropShadow:B.propT("--chakra-drop-shadow",Je.dropShadow),backdropFilter:{transform:Je.backdropFilter},backdropBlur:B.blur("--chakra-backdrop-blur"),backdropBrightness:B.propT("--chakra-backdrop-brightness",Je.brightness),backdropContrast:B.propT("--chakra-backdrop-contrast",Je.contrast),backdropHueRotate:B.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:B.propT("--chakra-backdrop-invert",Je.invert),backdropSaturate:B.propT("--chakra-backdrop-saturate",Je.saturate)},B1={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:Je.flexDirection},experimental_spaceX:{static:NV,transform:Od({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:DV,transform:Od({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:B.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:B.space("gap"),rowGap:B.space("rowGap"),columnGap:B.space("columnGap")};Object.assign(B1,{flexDir:B1.flexDirection});var Ok={gridGap:B.space("gridGap"),gridColumnGap:B.space("gridColumnGap"),gridRowGap:B.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},UV={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:Je.outline},outlineOffset:!0,outlineColor:B.colors("outlineColor")},oo={width:B.sizesT("width"),inlineSize:B.sizesT("inlineSize"),height:B.sizes("height"),blockSize:B.sizes("blockSize"),boxSize:B.sizes(["width","height"]),minWidth:B.sizes("minWidth"),minInlineSize:B.sizes("minInlineSize"),minHeight:B.sizes("minHeight"),minBlockSize:B.sizes("minBlockSize"),maxWidth:B.sizes("maxWidth"),maxInlineSize:B.sizes("maxInlineSize"),maxHeight:B.sizes("maxHeight"),maxBlockSize:B.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:B.propT("float",Je.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(oo,{w:oo.width,h:oo.height,minW:oo.minWidth,maxW:oo.maxWidth,minH:oo.minHeight,maxH:oo.maxHeight,overscroll:oo.overscrollBehavior,overscrollX:oo.overscrollBehaviorX,overscrollY:oo.overscrollBehaviorY});var GV={listStyleType:!0,listStylePosition:!0,listStylePos:B.prop("listStylePosition"),listStyleImage:!0,listStyleImg:B.prop("listStyleImage")};function ZV(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const u=t.get(r);if(u.has(o))return u.get(o);const c=e(r,o,i,s);return u.set(o,c),c}},qV=KV(ZV),YV={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},XV={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},Yv=(e,t,n)=>{const r={},o=qV(e,t,{});for(const i in o)i in n&&n[i]!=null||(r[i]=o[i]);return r},QV={srOnly:{transform(e){return e===!0?YV:e==="focusable"?XV:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>Yv(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>Yv(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>Yv(t,e,n)}},td={position:!0,pos:B.prop("position"),zIndex:B.prop("zIndex","zIndices"),inset:B.spaceT("inset"),insetX:B.spaceT(["left","right"]),insetInline:B.spaceT("insetInline"),insetY:B.spaceT(["top","bottom"]),insetBlock:B.spaceT("insetBlock"),top:B.spaceT("top"),insetBlockStart:B.spaceT("insetBlockStart"),bottom:B.spaceT("bottom"),insetBlockEnd:B.spaceT("insetBlockEnd"),left:B.spaceT("left"),insetInlineStart:B.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:B.spaceT("right"),insetInlineEnd:B.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(td,{insetStart:td.insetInlineStart,insetEnd:td.insetInlineEnd});var JV={ring:{transform:Je.ring},ringColor:B.colors("--chakra-ring-color"),ringOffset:B.prop("--chakra-ring-offset-width"),ringOffsetColor:B.colors("--chakra-ring-offset-color"),ringInset:B.prop("--chakra-ring-inset")},Mt={margin:B.spaceT("margin"),marginTop:B.spaceT("marginTop"),marginBlockStart:B.spaceT("marginBlockStart"),marginRight:B.spaceT("marginRight"),marginInlineEnd:B.spaceT("marginInlineEnd"),marginBottom:B.spaceT("marginBottom"),marginBlockEnd:B.spaceT("marginBlockEnd"),marginLeft:B.spaceT("marginLeft"),marginInlineStart:B.spaceT("marginInlineStart"),marginX:B.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:B.spaceT("marginInline"),marginY:B.spaceT(["marginTop","marginBottom"]),marginBlock:B.spaceT("marginBlock"),padding:B.space("padding"),paddingTop:B.space("paddingTop"),paddingBlockStart:B.space("paddingBlockStart"),paddingRight:B.space("paddingRight"),paddingBottom:B.space("paddingBottom"),paddingBlockEnd:B.space("paddingBlockEnd"),paddingLeft:B.space("paddingLeft"),paddingInlineStart:B.space("paddingInlineStart"),paddingInlineEnd:B.space("paddingInlineEnd"),paddingX:B.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:B.space("paddingInline"),paddingY:B.space(["paddingTop","paddingBottom"]),paddingBlock:B.space("paddingBlock")};Object.assign(Mt,{m:Mt.margin,mt:Mt.marginTop,mr:Mt.marginRight,me:Mt.marginInlineEnd,marginEnd:Mt.marginInlineEnd,mb:Mt.marginBottom,ml:Mt.marginLeft,ms:Mt.marginInlineStart,marginStart:Mt.marginInlineStart,mx:Mt.marginX,my:Mt.marginY,p:Mt.padding,pt:Mt.paddingTop,py:Mt.paddingY,px:Mt.paddingX,pb:Mt.paddingBottom,pl:Mt.paddingLeft,ps:Mt.paddingInlineStart,paddingStart:Mt.paddingInlineStart,pr:Mt.paddingRight,pe:Mt.paddingInlineEnd,paddingEnd:Mt.paddingInlineEnd});var eW={textDecorationColor:B.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:B.shadows("textShadow")},tW={clipPath:!0,transform:B.propT("transform",Je.transform),transformOrigin:!0,translateX:B.spaceT("--chakra-translate-x"),translateY:B.spaceT("--chakra-translate-y"),skewX:B.degreeT("--chakra-skew-x"),skewY:B.degreeT("--chakra-skew-y"),scaleX:B.prop("--chakra-scale-x"),scaleY:B.prop("--chakra-scale-y"),scale:B.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:B.degreeT("--chakra-rotate")},nW={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:B.prop("transitionDuration","transition.duration"),transitionProperty:B.prop("transitionProperty","transition.property"),transitionTimingFunction:B.prop("transitionTimingFunction","transition.easing")},rW={fontFamily:B.prop("fontFamily","fonts"),fontSize:B.prop("fontSize","fontSizes",Je.px),fontWeight:B.prop("fontWeight","fontWeights"),lineHeight:B.prop("lineHeight","lineHeights"),letterSpacing:B.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},oW={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:B.spaceT("scrollMargin"),scrollMarginTop:B.spaceT("scrollMarginTop"),scrollMarginBottom:B.spaceT("scrollMarginBottom"),scrollMarginLeft:B.spaceT("scrollMarginLeft"),scrollMarginRight:B.spaceT("scrollMarginRight"),scrollMarginX:B.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:B.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:B.spaceT("scrollPadding"),scrollPaddingTop:B.spaceT("scrollPaddingTop"),scrollPaddingBottom:B.spaceT("scrollPaddingBottom"),scrollPaddingLeft:B.spaceT("scrollPaddingLeft"),scrollPaddingRight:B.spaceT("scrollPaddingRight"),scrollPaddingX:B.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:B.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function Mk(e){return ri(e)&&e.reference?e.reference:String(e)}var B0=(e,...t)=>t.map(Mk).join(` ${e} `).replace(/calc/g,""),kw=(...e)=>`calc(${B0("+",...e)})`,Ew=(...e)=>`calc(${B0("-",...e)})`,jy=(...e)=>`calc(${B0("*",...e)})`,Lw=(...e)=>`calc(${B0("/",...e)})`,Pw=e=>{const t=Mk(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:jy(t,-1)},bs=Object.assign(e=>({add:(...t)=>bs(kw(e,...t)),subtract:(...t)=>bs(Ew(e,...t)),multiply:(...t)=>bs(jy(e,...t)),divide:(...t)=>bs(Lw(e,...t)),negate:()=>bs(Pw(e)),toString:()=>e.toString()}),{add:kw,subtract:Ew,multiply:jy,divide:Lw,negate:Pw});function iW(e,t="-"){return e.replace(/\s+/g,t)}function aW(e){const t=iW(e.toString());return lW(sW(t))}function sW(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function lW(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function uW(e,t=""){return[t,e].filter(Boolean).join("-")}function cW(e,t){return`var(${e}${t?`, ${t}`:""})`}function dW(e,t=""){return aW(`--${uW(e,t)}`)}function ts(e,t,n){const r=dW(e,n);return{variable:r,reference:cW(r,t)}}function fW(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function pW(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function hW(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function Hy(e){if(e==null)return e;const{unitless:t}=hW(e);return t||typeof e=="number"?`${e}px`:e}var Rk=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,c3=e=>Object.fromEntries(Object.entries(e).sort(Rk));function Aw(e){const t=c3(e);return Object.assign(Object.values(t),t)}function mW(e){const t=Object.keys(c3(e));return new Set(t)}function Tw(e){if(!e)return e;e=Hy(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function $c(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${Hy(e)})`),t&&n.push("and",`(max-width: ${Hy(t)})`),n.join(" ")}function gW(e){if(!e)return null;e.base=e.base??"0px";const t=Aw(e),n=Object.entries(e).sort(Rk).map(([i,s],u,c)=>{let[,d]=c[u+1]??[];return d=parseFloat(d)>0?Tw(d):void 0,{_minW:Tw(s),breakpoint:i,minW:s,maxW:d,maxWQuery:$c(null,d),minWQuery:$c(s),minMaxQuery:$c(s,d)}}),r=mW(e),o=Array.from(r.values());return{keys:r,normalized:t,isResponsive(i){const s=Object.keys(i);return s.length>0&&s.every(u=>r.has(u))},asObject:c3(e),asArray:Aw(e),details:n,media:[null,...t.map(i=>$c(i)).slice(1)],toArrayValue(i){if(!fW(i))throw new Error("toArrayValue: value must be an object");const s=o.map(u=>i[u]??null);for(;pW(s)===null;)s.pop();return s},toObjectValue(i){if(!Array.isArray(i))throw new Error("toObjectValue: value must be an array");return i.reduce((s,u,c)=>{const d=o[c];return d!=null&&u!=null&&(s[d]=u),s},{})}}}var An={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},ga=e=>Nk(t=>e(t,"&"),"[role=group]","[data-group]",".group"),Ri=e=>Nk(t=>e(t,"~ &"),"[data-peer]",".peer"),Nk=(e,...t)=>t.map(e).join(", "),$0={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:ga(An.hover),_peerHover:Ri(An.hover),_groupFocus:ga(An.focus),_peerFocus:Ri(An.focus),_groupFocusVisible:ga(An.focusVisible),_peerFocusVisible:Ri(An.focusVisible),_groupActive:ga(An.active),_peerActive:Ri(An.active),_groupDisabled:ga(An.disabled),_peerDisabled:Ri(An.disabled),_groupInvalid:ga(An.invalid),_peerInvalid:Ri(An.invalid),_groupChecked:ga(An.checked),_peerChecked:Ri(An.checked),_groupFocusWithin:ga(An.focusWithin),_peerFocusWithin:Ri(An.focusWithin),_peerPlaceholderShown:Ri(An.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},vW=Object.keys($0);function Iw(e,t){return ts(String(e).replace(/\./g,"-"),void 0,t)}function yW(e,t){let n={};const r={};for(const[o,i]of Object.entries(e)){const{isSemantic:s,value:u}=i,{variable:c,reference:d}=Iw(o,t?.cssVarPrefix);if(!s){if(o.startsWith("space")){const m=o.split("."),[g,...b]=m,w=`${g}.-${b.join(".")}`,k=bs.negate(u),S=bs.negate(d);r[w]={value:k,var:c,varRef:S}}n[c]=u,r[o]={value:u,var:c,varRef:d};continue}const f=m=>{const b=[String(o).split(".")[0],m].join(".");if(!e[b])return m;const{reference:k}=Iw(b,t?.cssVarPrefix);return k},h=ri(u)?u:{default:u};n=Ga(n,Object.entries(h).reduce((m,[g,b])=>{var w;const k=f(b);if(g==="default")return m[c]=k,m;const S=((w=$0)==null?void 0:w[g])??g;return m[S]={[c]:k},m},{})),r[o]={value:d,var:c,varRef:d}}return{cssVars:n,cssMap:r}}function bW(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xW(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var wW=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function SW(e){return xW(e,wW)}function CW(e){return e.semanticTokens}function _W(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...o}=e;return o}function kW({tokens:e,semanticTokens:t}){const n=Object.entries(Uy(e)??{}).map(([o,i])=>[o,{isSemantic:!1,value:i}]),r=Object.entries(Uy(t,1)??{}).map(([o,i])=>[o,{isSemantic:!0,value:i}]);return Object.fromEntries([...n,...r])}function Uy(e,t=1/0){return!ri(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,o])=>(ri(o)||Array.isArray(o)?Object.entries(Uy(o,t-1)).forEach(([i,s])=>{n[`${r}.${i}`]=s}):n[r]=o,n),{})}function EW(e){var t;const n=_W(e),r=SW(n),o=CW(n),i=kW({tokens:r,semanticTokens:o}),s=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:u,cssVars:c}=yW(i,{cssVarPrefix:s});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...c},__cssMap:u,__breakpoints:gW(n.breakpoints)}),n}var d3=Ga({},Gh,ot,jV,B1,oo,HV,JV,UV,Ok,QV,td,Wy,Mt,oW,rW,eW,tW,GV,nW),LW=Object.assign({},Mt,oo,B1,Ok,td),PW=Object.keys(LW),AW=[...Object.keys(d3),...vW],TW={...d3,...$0},IW=e=>e in TW;function OW(e){return/^var\(--.+\)$/.test(e)}var MW=(e,t)=>e.startsWith("--")&&typeof t=="string"&&!OW(t),RW=(e,t)=>{if(t==null)return t;const n=u=>{var c,d;return(d=(c=e.__cssMap)==null?void 0:c[u])==null?void 0:d.varRef},r=u=>n(u)??u,o=t.split(",").map(u=>u.trim()),[i,s]=o;return t=n(i)??r(s)??r(t),t};function NW(e){const{configs:t={},pseudos:n={},theme:r}=e;if(!r.__breakpoints)return()=>({});const{isResponsive:o,toArrayValue:i,media:s}=r.__breakpoints,u=(c,d=!1)=>{var f;const h=Ul(c,r);let m={};for(let g in h){let b=Ul(h[g],r);if(b==null)continue;if(Array.isArray(b)||ri(b)&&o(b)){let x=Array.isArray(b)?b:i(b);x=x.slice(0,s.length);for(let _=0;_t=>NW({theme:t,pseudos:$0,configs:d3})(e);function Bt(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function DW(e,t){if(Array.isArray(e))return e;if(ri(e))return t(e);if(e!=null)return[e]}function zW(e,t){for(let n=t+1;n{Ga(d,{[_]:m?x[_]:{[S]:x[_]}})});continue}if(!g){m?Ga(d,x):d[S]=x;continue}d[S]=x}}return d}}function BW(e){return t=>{const{variant:n,size:r,theme:o}=t,i=FW(o);return Ga({},Ul(e.baseStyle??{},t),i(e,"sizes",r,t),i(e,"variants",n,t))}}function $W(e,t,n){var r,o;return((o=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:o.varRef)??n}function vt(e){return bW(e,["styleConfig","size","variant","colorScheme"])}function VW(e){if(e.sheet)return e.sheet;for(var t=0;t0?vr(Ru,--kr):0,bu--,ln===10&&(bu=1,W0--),ln}function Vr(){return ln=kr<$k?vr(Ru,kr++):0,bu++,ln===10&&(bu=1,W0++),ln}function si(){return vr(Ru,kr)}function Zh(){return kr}function ff(e,t){return Md(Ru,e,t)}function Rd(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Vk(e){return W0=bu=1,$k=Qo(Ru=e),kr=0,[]}function Wk(e){return Ru="",e}function Kh(e){return Bk(ff(kr-1,Zy(e===91?e+2:e===40?e+1:e)))}function QW(e){for(;(ln=si())&&ln<33;)Vr();return Rd(e)>2||Rd(ln)>3?"":" "}function JW(e,t){for(;--t&&Vr()&&!(ln<48||ln>102||ln>57&&ln<65||ln>70&&ln<97););return ff(e,Zh()+(t<6&&si()==32&&Vr()==32))}function Zy(e){for(;Vr();)switch(ln){case e:return kr;case 34:case 39:e!==34&&e!==39&&Zy(ln);break;case 40:e===41&&Zy(e);break;case 92:Vr();break}return kr}function ej(e,t){for(;Vr()&&e+ln!==47+10;)if(e+ln===42+42&&si()===47)break;return"/*"+ff(t,kr-1)+"*"+V0(e===47?e:Vr())}function tj(e){for(;!Rd(si());)Vr();return ff(e,kr)}function nj(e){return Wk(qh("",null,null,null,[""],e=Vk(e),0,[0],e))}function qh(e,t,n,r,o,i,s,u,c){for(var d=0,f=0,h=s,m=0,g=0,b=0,w=1,k=1,S=1,x=0,_="",L=o,T=i,R=r,N=_;k;)switch(b=x,x=Vr()){case 40:if(b!=108&&N.charCodeAt(h-1)==58){Gy(N+=dt(Kh(x),"&","&\f"),"&\f")!=-1&&(S=-1);break}case 34:case 39:case 91:N+=Kh(x);break;case 9:case 10:case 13:case 32:N+=QW(b);break;case 92:N+=JW(Zh()-1,7);continue;case 47:switch(si()){case 42:case 47:ah(rj(ej(Vr(),Zh()),t,n),c);break;default:N+="/"}break;case 123*w:u[d++]=Qo(N)*S;case 125*w:case 59:case 0:switch(x){case 0:case 125:k=0;case 59+f:g>0&&Qo(N)-h&&ah(g>32?Mw(N+";",r,n,h-1):Mw(dt(N," ","")+";",r,n,h-2),c);break;case 59:N+=";";default:if(ah(R=Ow(N,t,n,d,f,o,u,_,L=[],T=[],h),i),x===123)if(f===0)qh(N,t,R,R,L,i,h,u,T);else switch(m){case 100:case 109:case 115:qh(e,R,R,r&&ah(Ow(e,R,R,0,0,o,u,_,o,L=[],h),T),o,T,h,u,r?L:T);break;default:qh(N,R,R,R,[""],T,0,u,T)}}d=f=g=0,w=S=1,_=N="",h=s;break;case 58:h=1+Qo(N),g=b;default:if(w<1){if(x==123)--w;else if(x==125&&w++==0&&XW()==125)continue}switch(N+=V0(x),x*w){case 38:S=f>0?1:(N+="\f",-1);break;case 44:u[d++]=(Qo(N)-1)*S,S=1;break;case 64:si()===45&&(N+=Kh(Vr())),m=si(),f=h=Qo(_=N+=tj(Zh())),x++;break;case 45:b===45&&Qo(N)==2&&(w=0)}}return i}function Ow(e,t,n,r,o,i,s,u,c,d,f){for(var h=o-1,m=o===0?i:[""],g=h3(m),b=0,w=0,k=0;b0?m[S]+" "+x:dt(x,/&\f/g,m[S])))&&(c[k++]=_);return j0(e,t,n,o===0?f3:u,c,d,f)}function rj(e,t,n){return j0(e,t,n,zk,V0(YW()),Md(e,2,-2),0)}function Mw(e,t,n,r){return j0(e,t,n,p3,Md(e,0,r),Md(e,r+1,-1),r)}function jk(e,t){switch(ZW(e,t)){case 5103:return it+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return it+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return it+e+$1+e+jn+e+e;case 6828:case 4268:return it+e+jn+e+e;case 6165:return it+e+jn+"flex-"+e+e;case 5187:return it+e+dt(e,/(\w+).+(:[^]+)/,it+"box-$1$2"+jn+"flex-$1$2")+e;case 5443:return it+e+jn+"flex-item-"+dt(e,/flex-|-self/,"")+e;case 4675:return it+e+jn+"flex-line-pack"+dt(e,/align-content|flex-|-self/,"")+e;case 5548:return it+e+jn+dt(e,"shrink","negative")+e;case 5292:return it+e+jn+dt(e,"basis","preferred-size")+e;case 6060:return it+"box-"+dt(e,"-grow","")+it+e+jn+dt(e,"grow","positive")+e;case 4554:return it+dt(e,/([^-])(transform)/g,"$1"+it+"$2")+e;case 6187:return dt(dt(dt(e,/(zoom-|grab)/,it+"$1"),/(image-set)/,it+"$1"),e,"")+e;case 5495:case 3959:return dt(e,/(image-set\([^]*)/,it+"$1$`$1");case 4968:return dt(dt(e,/(.+:)(flex-)?(.*)/,it+"box-pack:$3"+jn+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+it+e+e;case 4095:case 3583:case 4068:case 2532:return dt(e,/(.+)-inline(.+)/,it+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Qo(e)-1-t>6)switch(vr(e,t+1)){case 109:if(vr(e,t+4)!==45)break;case 102:return dt(e,/(.+:)(.+)-([^]+)/,"$1"+it+"$2-$3$1"+$1+(vr(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Gy(e,"stretch")?jk(dt(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(vr(e,t+1)!==115)break;case 6444:switch(vr(e,Qo(e)-3-(~Gy(e,"!important")&&10))){case 107:return dt(e,":",":"+it)+e;case 101:return dt(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+it+(vr(e,14)===45?"inline-":"")+"box$3$1"+it+"$2$3$1"+jn+"$2box$3")+e}break;case 5936:switch(vr(e,t+11)){case 114:return it+e+jn+dt(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return it+e+jn+dt(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return it+e+jn+dt(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return it+e+jn+e+e}return e}function nu(e,t){for(var n="",r=h3(e),o=0;o-1&&!e.return)switch(e.type){case p3:e.return=jk(e.value,e.length);break;case Fk:return nu([Lc(e,{value:dt(e.value,"@","@"+it)})],r);case f3:if(e.length)return qW(e.props,function(o){switch(KW(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return nu([Lc(e,{props:[dt(o,/:(read-\w+)/,":"+$1+"$1")]})],r);case"::placeholder":return nu([Lc(e,{props:[dt(o,/:(plac\w+)/,":"+it+"input-$1")]}),Lc(e,{props:[dt(o,/:(plac\w+)/,":"+$1+"$1")]}),Lc(e,{props:[dt(o,/:(plac\w+)/,jn+"input-$1")]})],r)}return""})}}var Rw=function(t){var n=new WeakMap;return function(r){if(n.has(r))return n.get(r);var o=t(r);return n.set(r,o),o}};function Hk(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var lj=function(t,n,r){for(var o=0,i=0;o=i,i=si(),o===38&&i===12&&(n[r]=1),!Rd(i);)Vr();return ff(t,kr)},uj=function(t,n){var r=-1,o=44;do switch(Rd(o)){case 0:o===38&&si()===12&&(n[r]=1),t[r]+=lj(kr-1,n,r);break;case 2:t[r]+=Kh(o);break;case 4:if(o===44){t[++r]=si()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=V0(o)}while(o=Vr());return t},cj=function(t,n){return Wk(uj(Vk(t),n))},Nw=new WeakMap,dj=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,o=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!Nw.get(r))&&!o){Nw.set(t,!0);for(var i=[],s=cj(n,i),u=r.props,c=0,d=0;c=4;++r,o-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(o){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var kj={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},Ej=/[A-Z]|^ms/g,Lj=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Xk=function(t){return t.charCodeAt(1)===45},Dw=function(t){return t!=null&&typeof t!="boolean"},Xv=Hk(function(e){return Xk(e)?e:e.replace(Ej,"-$&").toLowerCase()}),zw=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(Lj,function(r,o,i){return Jo={name:o,styles:i,next:Jo},o})}return kj[t]!==1&&!Xk(t)&&typeof n=="number"&&n!==0?n+"px":n};function Dd(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return Jo={name:n.name,styles:n.styles,next:Jo},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)Jo={name:r.name,styles:r.styles,next:Jo},r=r.next;var o=n.styles+";";return o}return Pj(e,t,n)}case"function":{if(e!==void 0){var i=Jo,s=n(e);return Jo=i,Dd(e,t,s)}break}}if(t==null)return n;var u=t[n];return u!==void 0?u:n}function Pj(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o{t.includes(r)||(n[r]=e[r])}),n}function zj(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const u=t.get(r);if(u.has(o))return u.get(o);const c=e(r,o,i,s);return u.set(o,c),c}},nE=Fj(zj);function rE(e,t){const n={};return Object.keys(e).forEach(r=>{const o=e[r];t(o,r,e)&&(n[r]=o)}),n}var oE=e=>rE(e,t=>t!=null);function b3(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function tm(e){if(!b3(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function Bj(e){var t;return b3(e)?((t=hf(e))==null?void 0:t.defaultView)??window:window}function hf(e){return b3(e)?e.ownerDocument??document:document}function $j(e){return e.view??window}function Vj(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var mf=Vj();function Wj(e){const t=hf(e);return t?.activeElement}function x3(e,t){return e?e===t||e.contains(t):!1}var iE=e=>e.hasAttribute("tabindex"),jj=e=>iE(e)&&e.tabIndex===-1;function Hj(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function Uj(e){return tm(e)&&e.localName==="input"&&"select"in e}function aE(e){return(tm(e)?hf(e):document).activeElement===e}function sE(e){return e.parentElement&&sE(e.parentElement)?!0:e.hidden}function Gj(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function lE(e){if(!tm(e)||sE(e)||Hj(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():Gj(e)?!0:iE(e)}function Zj(e){return e?tm(e)&&lE(e)&&!jj(e):!1}var Kj=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],qj=Kj.join(),Yj=e=>e.offsetWidth>0&&e.offsetHeight>0;function Xj(e){const t=Array.from(e.querySelectorAll(qj));return t.unshift(e),t.filter(n=>lE(n)&&Yj(n))}function V1(e,...t){return Gl(e)?e(...t):e}function Qj(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Jj(e){let t;return function(...r){return e&&(t=e.apply(this,r),e=null),t}}var eH=Jj(e=>()=>{const{condition:t,message:n}=e;t&&Nj&&console.warn(n)}),tH=(...e)=>t=>e.reduce((n,r)=>r(n),t);function W1(e,t={}){const{isActive:n=aE,nextTick:r,preventScroll:o=!0,selectTextIfInput:i=!0}=t;if(!e||n(e))return-1;function s(){if(!e){eH({condition:!0,message:"[chakra-ui]: can't call focus() on `null` or `undefined` element"});return}if(nH())e.focus({preventScroll:o});else if(e.focus(),o){const u=rH(e);oH(u)}if(i){if(Uj(e))e.select();else if("setSelectionRange"in e){const u=e;u.setSelectionRange(u.value.length,u.value.length)}}}return r?requestAnimationFrame(s):(s(),-1)}var sh=null;function nH(){if(sh==null){sh=!1;try{document.createElement("div").focus({get preventScroll(){return sh=!0,!0}})}catch{}}return sh}function rH(e){const t=hf(e),n=t.defaultView??window;let r=e.parentNode;const o=[],i=t.scrollingElement||t.documentElement;for(;r instanceof n.HTMLElement&&r!==i;)(r.offsetHeight{const n=$j(t),r=t instanceof n.MouseEvent;(!r||r&&t.button===0)&&e(t)}}var sH={pageX:0,pageY:0};function lH(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||sH;return{x:r[`${t}X`],y:r[`${t}Y`]}}function uH(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function cH(e,t="page"){return{point:iH(e)?lH(e,t):uH(e,t)}}var dH=(e,t=!1)=>{const n=r=>e(r,cH(r));return t?aH(n):n},fH=()=>mf&&window.onpointerdown===null,pH=()=>mf&&window.ontouchstart===null,hH=()=>mf&&window.onmousedown===null,mH={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},gH={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function vH(e){return fH()?e:pH()?gH[e]:hH()?mH[e]:e}Object.freeze(["base","sm","md","lg","xl","2xl"]);function yH(e){const{userAgent:t,vendor:n}=e,r=/(android)/i.test(t);switch(!0){case/CriOS/.test(t):return"Chrome for iOS";case/Edg\//.test(t):return"Edge";case(r&&/Silk\//.test(t)):return"Silk";case(/Chrome/.test(t)&&/Google Inc/.test(n)):return"Chrome";case/Firefox\/\d+\.\d+$/.test(t):return"Firefox";case r:return"AOSP";case/MSIE|Trident/.test(t):return"IE";case(/Safari/.test(e.userAgent)&&/Apple Computer/.test(t)):return"Safari";case/AppleWebKit/.test(t):return"WebKit";default:return null}}function bH(e){return mf?yH(window.navigator)===e:!1}function xH(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,o=C.exports.createContext(void 0);o.displayName=r;function i(){var s;const u=C.exports.useContext(o);if(!u&&t){const c=new Error(n);throw c.name="ContextError",(s=Error.captureStackTrace)==null||s.call(Error,c,i),c}return u}return[o.Provider,i,o]}var wH=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,SH=Hk(function(e){return wH.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),CH=SH,_H=function(t){return t!=="theme"},$w=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?CH:_H},Vw=function(t,n,r){var o;if(n){var i=n.shouldForwardProp;o=t.__emotion_forwardProp&&i?function(s){return t.__emotion_forwardProp(s)&&i(s)}:i}return typeof o!="function"&&r&&(o=t.__emotion_forwardProp),o},kH=function(t){var n=t.cache,r=t.serialized,o=t.isStringTag;return qk(n,r,o),Tj(function(){return Yk(n,r,o)}),null},EH=function e(t,n){var r=t.__emotion_real===t,o=r&&t.__emotion_base||t,i,s;n!==void 0&&(i=n.label,s=n.target);var u=Vw(t,n,r),c=u||$w(o),d=!c("as");return function(){var f=arguments,h=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(i!==void 0&&h.push("label:"+i+";"),f[0]==null||f[0].raw===void 0)h.push.apply(h,f);else{h.push(f[0][0]);for(var m=f.length,g=1;g` or ``");return e}function uE(){const e=u3(),t=nm();return{...e,theme:t}}function MH(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__breakpoints)==null?void 0:i.asArray)==null?void 0:s[o]};return r(t)??r(n)??n}function RH(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__cssMap)==null?void 0:i[o])==null?void 0:s.value};return r(t)??r(n)??n}function NH(e,t,n){const r=Array.isArray(t)?t:[t],o=Array.isArray(n)?n:[n];return i=>{const s=o.filter(Boolean),u=r.map((c,d)=>{if(e==="breakpoints")return MH(i,c,s[d]??c);const f=`${e}.${c}`;return RH(i,f,s[d]??c)});return Array.isArray(t)?u:u[0]}}function DH(e){const{cssVarsRoot:t,theme:n,children:r}=e,o=C.exports.useMemo(()=>EW(n),[n]);return q(Mj,{theme:o,children:[v(zH,{root:t}),r]})}function zH({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return v(em,{styles:n=>({[t]:n.__cssVars})})}xH({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function FH(){const{colorMode:e}=u3();return v(em,{styles:t=>{const n=nE(t,"styles.global"),r=V1(n,{theme:t,colorMode:e});return r?Dk(r)(t):void 0}})}var BH=new Set([...AW,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),$H=new Set(["htmlWidth","htmlHeight","htmlSize"]);function VH(e){return $H.has(e)||!BH.has(e)}var WH=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:o,sx:i,...s}=t,u=rE(s,(h,m)=>IW(m)),c=V1(e,t),d=Object.assign({},o,c,oE(u),i),f=Dk(d)(t.theme);return r?[f,r]:f};function Qv(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=VH);const o=WH({baseStyle:n});return Ky(e,r)(o)}function ue(e){return C.exports.forwardRef(e)}function cE(e,t={}){const{styleConfig:n,...r}=t,{theme:o,colorMode:i}=uE(),s=nE(o,`components.${e}`),u=n||s,c=Ga({theme:o,colorMode:i},u?.defaultProps??{},oE(Dj(r,["children"]))),d=C.exports.useRef({});if(u){const h=BW(u)(c);OH(d.current,h)||(d.current=h)}return d.current}function cr(e,t={}){return cE(e,t)}function dr(e,t={}){return cE(e,t)}function jH(){const e=new Map;return new Proxy(Qv,{apply(t,n,r){return Qv(...r)},get(t,n){return e.has(n)||e.set(n,Qv(n)),e.get(n)}})}var oe=jH();function HH(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function Tt(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:o="Provider",errorMessage:i}=e,s=C.exports.createContext(void 0);s.displayName=t;function u(){var c;const d=C.exports.useContext(s);if(!d&&n){const f=new Error(i??HH(r,o));throw f.name="ContextError",(c=Error.captureStackTrace)==null||c.call(Error,f,u),f}return d}return[s.Provider,u,s]}function UH(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function Yt(...e){return t=>{e.forEach(n=>{UH(n,t)})}}function GH(...e){return C.exports.useMemo(()=>Yt(...e),e)}function Ww(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var ZH=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function jw(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function Hw(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var qy=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,j1=e=>e,KH=class{descendants=new Map;register=e=>{if(e!=null)return ZH(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=Ww(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=jw(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=jw(r,this.enabledCount(),t);return this.enabledItem(o)};prev=(e,t=!0)=>{const n=Hw(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=Hw(r,this.enabledCount()-1,t);return this.enabledItem(o)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=Ww(n);t?.disabled&&(t.disabled=!!t.disabled);const o={node:e,index:-1,...t};this.descendants.set(e,o),this.assignIndex(r)}};function qH(){const e=C.exports.useRef(new KH);return qy(()=>()=>e.current.destroy()),e.current}var[YH,dE]=Tt({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function XH(e){const t=dE(),[n,r]=C.exports.useState(-1),o=C.exports.useRef(null);qy(()=>()=>{!o.current||t.unregister(o.current)},[]),qy(()=>{if(!o.current)return;const s=Number(o.current.dataset.index);n!=s&&!Number.isNaN(s)&&r(s)});const i=j1(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(o.current),register:Yt(i,o)}}function fE(){return[j1(YH),()=>j1(dE()),()=>qH(),o=>XH(o)]}var Qt=(...e)=>e.filter(Boolean).join(" "),Uw={path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},Kr=ue((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:u,__css:c,...d}=e,f=Qt("chakra-icon",u),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??Uw.viewBox;if(n&&typeof n!="string")return X.createElement(oe.svg,{as:n,...m,...d});const b=s??Uw.path;return X.createElement(oe.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});Kr.displayName="Icon";function Nu(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=ue((u,c)=>v(Kr,{ref:c,viewBox:t,...o,...u,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}function Gn(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function pE(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:o=(m,g)=>m!==g}=e,i=Gn(r),s=Gn(o),[u,c]=C.exports.useState(n),d=t!==void 0,f=d?t:u,h=C.exports.useCallback(m=>{const b=typeof m=="function"?m(f):m;!s(f,b)||(d||c(b),i(b))},[d,i,f,s]);return[f,h]}const w3=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),rm=C.exports.createContext({});function QH(){return C.exports.useContext(rm).visualElement}const Du=C.exports.createContext(null),Hs=typeof document<"u",H1=Hs?C.exports.useLayoutEffect:C.exports.useEffect,hE=C.exports.createContext({strict:!1});function JH(e,t,n,r){const o=QH(),i=C.exports.useContext(hE),s=C.exports.useContext(Du),u=C.exports.useContext(w3).reducedMotion,c=C.exports.useRef(void 0);r=r||i.renderer,!c.current&&r&&(c.current=r(e,{visualState:t,parent:o,props:n,presenceId:s?s.id:void 0,blockInitialAnimation:s?s.initial===!1:!1,reducedMotionConfig:u}));const d=c.current;return H1(()=>{d&&d.syncRender()}),C.exports.useEffect(()=>{d&&d.animationState&&d.animationState.animateChanges()}),H1(()=>()=>d&&d.notifyUnmount(),[]),d}function Zl(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function eU(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):Zl(n)&&(n.current=r))},[t])}function Fd(e){return typeof e=="string"||Array.isArray(e)}function om(e){return typeof e=="object"&&typeof e.start=="function"}const tU=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function im(e){return om(e.animate)||tU.some(t=>Fd(e[t]))}function mE(e){return Boolean(im(e)||e.variants)}function nU(e,t){if(im(e)){const{initial:n,animate:r}=e;return{initial:n===!1||Fd(n)?n:void 0,animate:Fd(r)?r:void 0}}return e.inherit!==!1?t:{}}function rU(e){const{initial:t,animate:n}=nU(e,C.exports.useContext(rm));return C.exports.useMemo(()=>({initial:t,animate:n}),[Gw(t),Gw(n)])}function Gw(e){return Array.isArray(e)?e.join(" "):e}const Ni=e=>({isEnabled:t=>e.some(n=>!!t[n])}),Bd={measureLayout:Ni(["layout","layoutId","drag"]),animation:Ni(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:Ni(["exit"]),drag:Ni(["drag","dragControls"]),focus:Ni(["whileFocus"]),hover:Ni(["whileHover","onHoverStart","onHoverEnd"]),tap:Ni(["whileTap","onTap","onTapStart","onTapCancel"]),pan:Ni(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:Ni(["whileInView","onViewportEnter","onViewportLeave"])};function oU(e){for(const t in e)t==="projectionNodeConstructor"?Bd.projectionNodeConstructor=e[t]:Bd[t].Component=e[t]}function am(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const nd={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let iU=1;function aU(){return am(()=>{if(nd.hasEverUpdated)return iU++})}const S3=C.exports.createContext({});class sU extends X.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const gE=C.exports.createContext({}),lU=Symbol.for("motionComponentSymbol");function uU({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:o,Component:i}){e&&oU(e);function s(c,d){const f={...C.exports.useContext(w3),...c,layoutId:cU(c)},{isStatic:h}=f;let m=null;const g=rU(c),b=h?void 0:aU(),w=o(c,h);if(!h&&Hs){g.visualElement=JH(i,w,f,t);const k=C.exports.useContext(hE).strict,S=C.exports.useContext(gE);g.visualElement&&(m=g.visualElement.loadFeatures(f,k,e,b,n||Bd.projectionNodeConstructor,S))}return q(sU,{visualElement:g.visualElement,props:f,children:[m,v(rm.Provider,{value:g,children:r(i,c,b,eU(w,g.visualElement,d),w,h,g.visualElement)})]})}const u=C.exports.forwardRef(s);return u[lU]=i,u}function cU({layoutId:e}){const t=C.exports.useContext(S3).id;return t&&e!==void 0?t+"-"+e:e}function dU(e){function t(r,o={}){return uU(e(r,o))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,o)=>(n.has(o)||n.set(o,t(o)),n.get(o))})}const fU=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function C3(e){return typeof e!="string"||e.includes("-")?!1:!!(fU.indexOf(e)>-1||/[A-Z]/.test(e))}const U1={};function pU(e){Object.assign(U1,e)}const G1=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],gf=new Set(G1);function vE(e,{layout:t,layoutId:n}){return gf.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!U1[e]||e==="opacity")}const hi=e=>!!e?.getVelocity,hU={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},mU=(e,t)=>G1.indexOf(e)-G1.indexOf(t);function gU({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},o,i){let s="";t.sort(mU);for(const u of t)s+=`${hU[u]||u}(${e[u]}) `;return n&&!e.z&&(s+="translateZ(0)"),s=s.trim(),i?s=i(e,o?"":s):r&&o&&(s="none"),s}function yE(e){return e.startsWith("--")}const vU=(e,t)=>t&&typeof e=="number"?t.transform(e):e,bE=(e,t)=>n=>Math.max(Math.min(n,t),e),rd=e=>e%1?Number(e.toFixed(5)):e,$d=/(-)?([\d]*\.?[\d])+/g,Yy=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,yU=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function vf(e){return typeof e=="string"}const Us={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},od=Object.assign(Object.assign({},Us),{transform:bE(0,1)}),lh=Object.assign(Object.assign({},Us),{default:1}),yf=e=>({test:t=>vf(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),ba=yf("deg"),li=yf("%"),Ne=yf("px"),bU=yf("vh"),xU=yf("vw"),Zw=Object.assign(Object.assign({},li),{parse:e=>li.parse(e)/100,transform:e=>li.transform(e*100)}),_3=(e,t)=>n=>Boolean(vf(n)&&yU.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),xE=(e,t,n)=>r=>{if(!vf(r))return r;const[o,i,s,u]=r.match($d);return{[e]:parseFloat(o),[t]:parseFloat(i),[n]:parseFloat(s),alpha:u!==void 0?parseFloat(u):1}},Es={test:_3("hsl","hue"),parse:xE("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+li.transform(rd(t))+", "+li.transform(rd(n))+", "+rd(od.transform(r))+")"},wU=bE(0,255),Jv=Object.assign(Object.assign({},Us),{transform:e=>Math.round(wU(e))}),Ia={test:_3("rgb","red"),parse:xE("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Jv.transform(e)+", "+Jv.transform(t)+", "+Jv.transform(n)+", "+rd(od.transform(r))+")"};function SU(e){let t="",n="",r="",o="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),o=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),o=e.substr(4,1),t+=t,n+=n,r+=r,o+=o),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:o?parseInt(o,16)/255:1}}const Xy={test:_3("#"),parse:SU,transform:Ia.transform},or={test:e=>Ia.test(e)||Xy.test(e)||Es.test(e),parse:e=>Ia.test(e)?Ia.parse(e):Es.test(e)?Es.parse(e):Xy.parse(e),transform:e=>vf(e)?e:e.hasOwnProperty("red")?Ia.transform(e):Es.transform(e)},wE="${c}",SE="${n}";function CU(e){var t,n,r,o;return isNaN(e)&&vf(e)&&((n=(t=e.match($d))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((o=(r=e.match(Yy))===null||r===void 0?void 0:r.length)!==null&&o!==void 0?o:0)>0}function CE(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(Yy);r&&(n=r.length,e=e.replace(Yy,wE),t.push(...r.map(or.parse)));const o=e.match($d);return o&&(e=e.replace($d,SE),t.push(...o.map(Us.parse))),{values:t,numColors:n,tokenised:e}}function _E(e){return CE(e).values}function kE(e){const{values:t,numColors:n,tokenised:r}=CE(e),o=t.length;return i=>{let s=r;for(let u=0;utypeof e=="number"?0:e;function kU(e){const t=_E(e);return kE(e)(t.map(_U))}const Xi={test:CU,parse:_E,createTransformer:kE,getAnimatableNone:kU},EU=new Set(["brightness","contrast","saturate","opacity"]);function LU(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match($d)||[];if(!r)return e;const o=n.replace(r,"");let i=EU.has(t)?1:0;return r!==n&&(i*=100),t+"("+i+o+")"}const PU=/([a-z-]*)\(.*?\)/g,Qy=Object.assign(Object.assign({},Xi),{getAnimatableNone:e=>{const t=e.match(PU);return t?t.map(LU).join(" "):e}}),Kw={...Us,transform:Math.round},EE={borderWidth:Ne,borderTopWidth:Ne,borderRightWidth:Ne,borderBottomWidth:Ne,borderLeftWidth:Ne,borderRadius:Ne,radius:Ne,borderTopLeftRadius:Ne,borderTopRightRadius:Ne,borderBottomRightRadius:Ne,borderBottomLeftRadius:Ne,width:Ne,maxWidth:Ne,height:Ne,maxHeight:Ne,size:Ne,top:Ne,right:Ne,bottom:Ne,left:Ne,padding:Ne,paddingTop:Ne,paddingRight:Ne,paddingBottom:Ne,paddingLeft:Ne,margin:Ne,marginTop:Ne,marginRight:Ne,marginBottom:Ne,marginLeft:Ne,rotate:ba,rotateX:ba,rotateY:ba,rotateZ:ba,scale:lh,scaleX:lh,scaleY:lh,scaleZ:lh,skew:ba,skewX:ba,skewY:ba,distance:Ne,translateX:Ne,translateY:Ne,translateZ:Ne,x:Ne,y:Ne,z:Ne,perspective:Ne,transformPerspective:Ne,opacity:od,originX:Zw,originY:Zw,originZ:Ne,zIndex:Kw,fillOpacity:od,strokeOpacity:od,numOctaves:Kw};function k3(e,t,n,r){const{style:o,vars:i,transform:s,transformKeys:u,transformOrigin:c}=e;u.length=0;let d=!1,f=!1,h=!0;for(const m in t){const g=t[m];if(yE(m)){i[m]=g;continue}const b=EE[m],w=vU(g,b);if(gf.has(m)){if(d=!0,s[m]=w,u.push(m),!h)continue;g!==(b.default||0)&&(h=!1)}else m.startsWith("origin")?(f=!0,c[m]=w):o[m]=w}if(d||r?o.transform=gU(e,n,h,r):!t.transform&&o.transform&&(o.transform="none"),f){const{originX:m="50%",originY:g="50%",originZ:b=0}=c;o.transformOrigin=`${m} ${g} ${b}`}}const E3=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function LE(e,t,n){for(const r in t)!hi(t[r])&&!vE(r,n)&&(e[r]=t[r])}function AU({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=E3();return k3(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function TU(e,t,n){const r=e.style||{},o={};return LE(o,r,e),Object.assign(o,AU(e,t,n)),e.transformValues?e.transformValues(o):o}function IU(e,t,n){const r={},o=TU(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout="none",o.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=o,r}const OU=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],MU=["whileTap","onTap","onTapStart","onTapCancel"],RU=["onPan","onPanStart","onPanSessionStart","onPanEnd"],NU=["whileInView","onViewportEnter","onViewportLeave","viewport"],DU=new Set(["initial","style","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...NU,...MU,...OU,...RU]);function Z1(e){return DU.has(e)}let PE=e=>!Z1(e);function zU(e){!e||(PE=t=>t.startsWith("on")?!Z1(t):e(t))}try{zU(require("@emotion/is-prop-valid").default)}catch{}function FU(e,t,n){const r={};for(const o in e)(PE(o)||n===!0&&Z1(o)||!t&&!Z1(o)||e.draggable&&o.startsWith("onDrag"))&&(r[o]=e[o]);return r}function qw(e,t,n){return typeof e=="string"?e:Ne.transform(t+n*e)}function BU(e,t,n){const r=qw(t,e.x,e.width),o=qw(n,e.y,e.height);return`${r} ${o}`}const $U={offset:"stroke-dashoffset",array:"stroke-dasharray"},VU={offset:"strokeDashoffset",array:"strokeDasharray"};function WU(e,t,n=1,r=0,o=!0){e.pathLength=1;const i=o?$U:VU;e[i.offset]=Ne.transform(-r);const s=Ne.transform(t),u=Ne.transform(n);e[i.array]=`${s} ${u}`}function L3(e,{attrX:t,attrY:n,originX:r,originY:o,pathLength:i,pathSpacing:s=1,pathOffset:u=0,...c},d,f){k3(e,c,d,f),e.attrs=e.style,e.style={};const{attrs:h,style:m,dimensions:g}=e;h.transform&&(g&&(m.transform=h.transform),delete h.transform),g&&(r!==void 0||o!==void 0||m.transform)&&(m.transformOrigin=BU(g,r!==void 0?r:.5,o!==void 0?o:.5)),t!==void 0&&(h.x=t),n!==void 0&&(h.y=n),i!==void 0&&WU(h,i,s,u,!1)}const AE=()=>({...E3(),attrs:{}});function jU(e,t){const n=C.exports.useMemo(()=>{const r=AE();return L3(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};LE(r,e.style,e),n.style={...r,...n.style}}return n}function HU(e=!1){return(n,r,o,i,{latestValues:s},u)=>{const d=(C3(n)?jU:IU)(r,s,u),h={...FU(r,typeof n=="string",e),...d,ref:i};return o&&(h["data-projection-id"]=o),C.exports.createElement(n,h)}}const TE=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function IE(e,{style:t,vars:n},r,o){Object.assign(e.style,t,o&&o.getProjectionStyles(r));for(const i in n)e.style.setProperty(i,n[i])}const OE=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function ME(e,t,n,r){IE(e,t,void 0,r);for(const o in t.attrs)e.setAttribute(OE.has(o)?o:TE(o),t.attrs[o])}function P3(e){const{style:t}=e,n={};for(const r in t)(hi(t[r])||vE(r,e))&&(n[r]=t[r]);return n}function RE(e){const t=P3(e);for(const n in e)if(hi(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function NE(e,t,n,r={},o={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),t}const Vd=e=>Array.isArray(e),UU=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),DE=e=>Vd(e)?e[e.length-1]||0:e;function Xh(e){const t=hi(e)?e.get():e;return UU(t)?t.toValue():t}function GU({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,o,i){const s={latestValues:ZU(r,o,i,e),renderState:t()};return n&&(s.mount=u=>n(r,u,s)),s}const zE=e=>(t,n)=>{const r=C.exports.useContext(rm),o=C.exports.useContext(Du),i=()=>GU(e,t,r,o);return n?i():am(i)};function ZU(e,t,n,r){const o={},i=r(e);for(const m in i)o[m]=Xh(i[m]);let{initial:s,animate:u}=e;const c=im(e),d=mE(e);t&&d&&!c&&e.inherit!==!1&&(s===void 0&&(s=t.initial),u===void 0&&(u=t.animate));let f=n?n.initial===!1:!1;f=f||s===!1;const h=f?u:s;return h&&typeof h!="boolean"&&!om(h)&&(Array.isArray(h)?h:[h]).forEach(g=>{const b=NE(e,g);if(!b)return;const{transitionEnd:w,transition:k,...S}=b;for(const x in S){let _=S[x];if(Array.isArray(_)){const L=f?_.length-1:0;_=_[L]}_!==null&&(o[x]=_)}for(const x in w)o[x]=w[x]}),o}const KU={useVisualState:zE({scrapeMotionValuesFromProps:RE,createRenderState:AE,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}L3(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),ME(t,n)}})},qU={useVisualState:zE({scrapeMotionValuesFromProps:P3,createRenderState:E3})};function YU(e,{forwardMotionProps:t=!1},n,r,o){return{...C3(e)?KU:qU,preloadedFeatures:n,useRender:HU(t),createVisualElement:r,projectionNodeConstructor:o,Component:e}}var Lt;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(Lt||(Lt={}));function sm(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function Jy(e,t,n,r){C.exports.useEffect(()=>{const o=e.current;if(n&&o)return sm(o,t,n,r)},[e,t,n,r])}function XU({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(Lt.Focus,!0)},o=()=>{n&&n.setActive(Lt.Focus,!1)};Jy(t,"focus",e?r:void 0),Jy(t,"blur",e?o:void 0)}function FE(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function BE(e){return!!e.touches}function QU(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const JU={pageX:0,pageY:0};function eG(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||JU;return{x:r[t+"X"],y:r[t+"Y"]}}function tG(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function A3(e,t="page"){return{point:BE(e)?eG(e,t):tG(e,t)}}const $E=(e,t=!1)=>{const n=r=>e(r,A3(r));return t?QU(n):n},nG=()=>Hs&&window.onpointerdown===null,rG=()=>Hs&&window.ontouchstart===null,oG=()=>Hs&&window.onmousedown===null,iG={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},aG={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function VE(e){return nG()?e:rG()?aG[e]:oG()?iG[e]:e}function ru(e,t,n,r){return sm(e,VE(t),$E(n,t==="pointerdown"),r)}function K1(e,t,n,r){return Jy(e,VE(t),n&&$E(n,t==="pointerdown"),r)}function WE(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const Yw=WE("dragHorizontal"),Xw=WE("dragVertical");function jE(e){let t=!1;if(e==="y")t=Xw();else if(e==="x")t=Yw();else{const n=Yw(),r=Xw();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function HE(){const e=jE(!0);return e?(e(),!1):!0}function Qw(e,t,n){return(r,o)=>{!FE(r)||HE()||(e.animationState&&e.animationState.setActive(Lt.Hover,t),n&&n(r,o))}}function sG({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){K1(r,"pointerenter",e||n?Qw(r,!0,e):void 0,{passive:!e}),K1(r,"pointerleave",t||n?Qw(r,!1,t):void 0,{passive:!t})}const UE=(e,t)=>t?e===t?!0:UE(e,t.parentElement):!1;function T3(e){return C.exports.useEffect(()=>()=>e(),[])}var ti=function(){return ti=Object.assign||function(t){for(var n,r=1,o=arguments.length;r0&&i[i.length-1])&&(d[0]===6||d[0]===2)){n=0;continue}if(d[0]===3&&(!i||d[1]>i[0]&&d[1]0)&&!(o=r.next()).done;)i.push(o.value)}catch(u){s={error:u}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i}function e4(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;rMath.min(Math.max(n,e),t),e2=.001,uG=.01,eS=10,cG=.05,dG=1;function fG({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let o,i;lG(e<=eS*1e3);let s=1-t;s=Y1(cG,dG,s),e=Y1(uG,eS,e/1e3),s<1?(o=d=>{const f=d*s,h=f*e,m=f-n,g=t4(d,s),b=Math.exp(-h);return e2-m/g*b},i=d=>{const h=d*s*e,m=h*n+n,g=Math.pow(s,2)*Math.pow(d,2)*e,b=Math.exp(-h),w=t4(Math.pow(d,2),s);return(-o(d)+e2>0?-1:1)*((m-g)*b)/w}):(o=d=>{const f=Math.exp(-d*e),h=(d-n)*e+1;return-e2+f*h},i=d=>{const f=Math.exp(-d*e),h=(n-d)*(e*e);return f*h});const u=5/e,c=hG(o,i,u);if(e=e*1e3,isNaN(c))return{stiffness:100,damping:10,duration:e};{const d=Math.pow(c,2)*r;return{stiffness:d,damping:s*2*Math.sqrt(r*d),duration:e}}}const pG=12;function hG(e,t,n){let r=n;for(let o=1;oe[n]!==void 0)}function vG(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!tS(e,gG)&&tS(e,mG)){const n=fG(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function I3(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:o}=e,i=lm(e,["from","to","restSpeed","restDelta"]);const s={done:!1,value:t};let{stiffness:u,damping:c,mass:d,velocity:f,duration:h,isResolvedFromDuration:m}=vG(i),g=nS,b=nS;function w(){const k=f?-(f/1e3):0,S=n-t,x=c/(2*Math.sqrt(u*d)),_=Math.sqrt(u/d)/1e3;if(o===void 0&&(o=Math.min(Math.abs(n-t)/100,.4)),x<1){const L=t4(_,x);g=T=>{const R=Math.exp(-x*_*T);return n-R*((k+x*_*S)/L*Math.sin(L*T)+S*Math.cos(L*T))},b=T=>{const R=Math.exp(-x*_*T);return x*_*R*(Math.sin(L*T)*(k+x*_*S)/L+S*Math.cos(L*T))-R*(Math.cos(L*T)*(k+x*_*S)-L*S*Math.sin(L*T))}}else if(x===1)g=L=>n-Math.exp(-_*L)*(S+(k+_*S)*L);else{const L=_*Math.sqrt(x*x-1);g=T=>{const R=Math.exp(-x*_*T),N=Math.min(L*T,300);return n-R*((k+x*_*S)*Math.sinh(N)+L*S*Math.cosh(N))/L}}}return w(),{next:k=>{const S=g(k);if(m)s.done=k>=h;else{const x=b(k)*1e3,_=Math.abs(x)<=r,L=Math.abs(n-S)<=o;s.done=_&&L}return s.value=s.done?n:S,s},flipTarget:()=>{f=-f,[t,n]=[n,t],w()}}}I3.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const nS=e=>0,Wd=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Xt=(e,t,n)=>-n*e+n*t+e;function t2(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function rS({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let o=0,i=0,s=0;if(!t)o=i=s=n;else{const u=n<.5?n*(1+t):n+t-n*t,c=2*n-u;o=t2(c,u,e+1/3),i=t2(c,u,e),s=t2(c,u,e-1/3)}return{red:Math.round(o*255),green:Math.round(i*255),blue:Math.round(s*255),alpha:r}}const yG=(e,t,n)=>{const r=e*e,o=t*t;return Math.sqrt(Math.max(0,n*(o-r)+r))},bG=[Xy,Ia,Es],oS=e=>bG.find(t=>t.test(e)),GE=(e,t)=>{let n=oS(e),r=oS(t),o=n.parse(e),i=r.parse(t);n===Es&&(o=rS(o),n=Ia),r===Es&&(i=rS(i),r=Ia);const s=Object.assign({},o);return u=>{for(const c in s)c!=="alpha"&&(s[c]=yG(o[c],i[c],u));return s.alpha=Xt(o.alpha,i.alpha,u),n.transform(s)}},n4=e=>typeof e=="number",xG=(e,t)=>n=>t(e(n)),um=(...e)=>e.reduce(xG);function ZE(e,t){return n4(e)?n=>Xt(e,t,n):or.test(e)?GE(e,t):qE(e,t)}const KE=(e,t)=>{const n=[...e],r=n.length,o=e.map((i,s)=>ZE(i,t[s]));return i=>{for(let s=0;s{const n=Object.assign(Object.assign({},e),t),r={};for(const o in n)e[o]!==void 0&&t[o]!==void 0&&(r[o]=ZE(e[o],t[o]));return o=>{for(const i in r)n[i]=r[i](o);return n}};function iS(e){const t=Xi.parse(e),n=t.length;let r=0,o=0,i=0;for(let s=0;s{const n=Xi.createTransformer(t),r=iS(e),o=iS(t);return r.numHSL===o.numHSL&&r.numRGB===o.numRGB&&r.numNumbers>=o.numNumbers?um(KE(r.parsed,o.parsed),n):s=>`${s>0?t:e}`},SG=(e,t)=>n=>Xt(e,t,n);function CG(e){if(typeof e=="number")return SG;if(typeof e=="string")return or.test(e)?GE:qE;if(Array.isArray(e))return KE;if(typeof e=="object")return wG}function _G(e,t,n){const r=[],o=n||CG(e[0]),i=e.length-1;for(let s=0;sn(Wd(e,t,r))}function EG(e,t){const n=e.length,r=n-1;return o=>{let i=0,s=!1;if(o<=e[0]?s=!0:o>=e[r]&&(i=r-1,s=!0),!s){let c=1;for(;co||c===r);c++);i=c-1}const u=Wd(e[i],e[i+1],o);return t[i](u)}}function YE(e,t,{clamp:n=!0,ease:r,mixer:o}={}){const i=e.length;q1(i===t.length),q1(!r||!Array.isArray(r)||r.length===i-1),e[0]>e[i-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const s=_G(t,r,o),u=i===2?kG(e,s):EG(e,s);return n?c=>u(Y1(e[0],e[i-1],c)):u}const cm=e=>t=>1-e(1-t),O3=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,LG=e=>t=>Math.pow(t,e),XE=e=>t=>t*t*((e+1)*t-e),PG=e=>{const t=XE(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},QE=1.525,AG=4/11,TG=8/11,IG=9/10,M3=e=>e,R3=LG(2),OG=cm(R3),JE=O3(R3),eL=e=>1-Math.sin(Math.acos(e)),N3=cm(eL),MG=O3(N3),D3=XE(QE),RG=cm(D3),NG=O3(D3),DG=PG(QE),zG=4356/361,FG=35442/1805,BG=16061/1805,X1=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-X1(1-e*2)):.5*X1(e*2-1)+.5;function WG(e,t){return e.map(()=>t||JE).splice(0,e.length-1)}function jG(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function HG(e,t){return e.map(n=>n*t)}function Qh({from:e=0,to:t=1,ease:n,offset:r,duration:o=300}){const i={done:!1,value:e},s=Array.isArray(t)?t:[e,t],u=HG(r&&r.length===s.length?r:jG(s),o);function c(){return YE(u,s,{ease:Array.isArray(n)?n:WG(s,n)})}let d=c();return{next:f=>(i.value=d(f),i.done=f>=o,i),flipTarget:()=>{s.reverse(),d=c()}}}function UG({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:o=.5,modifyTarget:i}){const s={done:!1,value:t};let u=n*e;const c=t+u,d=i===void 0?c:i(c);return d!==c&&(u=d-t),{next:f=>{const h=-u*Math.exp(-f/r);return s.done=!(h>o||h<-o),s.value=s.done?d:d+h,s},flipTarget:()=>{}}}const aS={keyframes:Qh,spring:I3,decay:UG};function GG(e){if(Array.isArray(e.to))return Qh;if(aS[e.type])return aS[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?Qh:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?I3:Qh}const tL=1/60*1e3,ZG=typeof performance<"u"?()=>performance.now():()=>Date.now(),nL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(ZG()),tL);function KG(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,u={schedule:(c,d=!1,f=!1)=>{const h=f&&o,m=h?t:n;return d&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const d=n.indexOf(c);d!==-1&&n.splice(d,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=KG(()=>jd=!0),e),{}),YG=bf.reduce((e,t)=>{const n=dm[t];return e[t]=(r,o=!1,i=!1)=>(jd||JG(),n.schedule(r,o,i)),e},{}),XG=bf.reduce((e,t)=>(e[t]=dm[t].cancel,e),{});bf.reduce((e,t)=>(e[t]=()=>dm[t].process(ou),e),{});const QG=e=>dm[e].process(ou),rL=e=>{jd=!1,ou.delta=r4?tL:Math.max(Math.min(e-ou.timestamp,qG),1),ou.timestamp=e,o4=!0,bf.forEach(QG),o4=!1,jd&&(r4=!1,nL(rL))},JG=()=>{jd=!0,r4=!0,o4||nL(rL)},eZ=()=>ou;function oL(e,t,n=0){return e-t-n}function tZ(e,t,n=0,r=!0){return r?oL(t+-e,t,n):t-(e-t)+n}function nZ(e,t,n,r){return r?e>=t+n:e<=-n}const rZ=e=>{const t=({delta:n})=>e(n);return{start:()=>YG.update(t,!0),stop:()=>XG.update(t)}};function iL(e){var t,n,{from:r,autoplay:o=!0,driver:i=rZ,elapsed:s=0,repeat:u=0,repeatType:c="loop",repeatDelay:d=0,onPlay:f,onStop:h,onComplete:m,onRepeat:g,onUpdate:b}=e,w=lm(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:k}=w,S,x=0,_=w.duration,L,T=!1,R=!0,N;const F=GG(w);!((n=(t=F).needsInterpolation)===null||n===void 0)&&n.call(t,r,k)&&(N=YE([0,100],[r,k],{clamp:!1}),r=0,k=100);const G=F(Object.assign(Object.assign({},w),{from:r,to:k}));function W(){x++,c==="reverse"?(R=x%2===0,s=tZ(s,_,d,R)):(s=oL(s,_,d),c==="mirror"&&G.flipTarget()),T=!1,g&&g()}function J(){S.stop(),m&&m()}function Ee(me){if(R||(me=-me),s+=me,!T){const ce=G.next(Math.max(0,s));L=ce.value,N&&(L=N(L)),T=R?ce.done:s<=0}b?.(L),T&&(x===0&&(_??(_=s)),x{h?.(),S.stop()}}}function aL(e,t){return t?e*(1e3/t):0}function oZ({from:e=0,velocity:t=0,min:n,max:r,power:o=.8,timeConstant:i=750,bounceStiffness:s=500,bounceDamping:u=10,restDelta:c=1,modifyTarget:d,driver:f,onUpdate:h,onComplete:m,onStop:g}){let b;function w(_){return n!==void 0&&_r}function k(_){return n===void 0?r:r===void 0||Math.abs(n-_){var T;h?.(L),(T=_.onUpdate)===null||T===void 0||T.call(_,L)},onComplete:m,onStop:g}))}function x(_){S(Object.assign({type:"spring",stiffness:s,damping:u,restDelta:c},_))}if(w(e))x({from:e,velocity:t,to:k(e)});else{let _=o*t+e;typeof d<"u"&&(_=d(_));const L=k(_),T=L===n?-1:1;let R,N;const F=G=>{R=N,N=G,t=aL(G-R,eZ().delta),(T===1&&G>L||T===-1&&Gb?.stop()}}const i4=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),sS=e=>i4(e)&&e.hasOwnProperty("z"),uh=(e,t)=>Math.abs(e-t);function z3(e,t){if(n4(e)&&n4(t))return uh(e,t);if(i4(e)&&i4(t)){const n=uh(e.x,t.x),r=uh(e.y,t.y),o=sS(e)&&sS(t)?uh(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(o,2))}}const sL=(e,t)=>1-3*t+3*e,lL=(e,t)=>3*t-6*e,uL=e=>3*e,Q1=(e,t,n)=>((sL(t,n)*e+lL(t,n))*e+uL(t))*e,cL=(e,t,n)=>3*sL(t,n)*e*e+2*lL(t,n)*e+uL(t),iZ=1e-7,aZ=10;function sZ(e,t,n,r,o){let i,s,u=0;do s=t+(n-t)/2,i=Q1(s,r,o)-e,i>0?n=s:t=s;while(Math.abs(i)>iZ&&++u=uZ?cZ(s,h,e,n):m===0?h:sZ(s,u,u+ch,e,n)}return s=>s===0||s===1?s:Q1(i(s),t,r)}function fZ({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(!1),u=C.exports.useRef(null),c={passive:!(t||e||n||g)};function d(){u.current&&u.current(),u.current=null}function f(){return d(),s.current=!1,o.animationState&&o.animationState.setActive(Lt.Tap,!1),!HE()}function h(b,w){!f()||(UE(o.getInstance(),b.target)?e&&e(b,w):n&&n(b,w))}function m(b,w){!f()||n&&n(b,w)}function g(b,w){d(),!s.current&&(s.current=!0,u.current=um(ru(window,"pointerup",h,c),ru(window,"pointercancel",m,c)),o.animationState&&o.animationState.setActive(Lt.Tap,!0),t&&t(b,w))}K1(o,"pointerdown",i?g:void 0,c),T3(d)}const pZ="production",dL=typeof process>"u"||process.env===void 0?pZ:"production",lS=new Set;function fL(e,t,n){e||lS.has(t)||(console.warn(t),n&&console.warn(n),lS.add(t))}const a4=new WeakMap,n2=new WeakMap,hZ=e=>{const t=a4.get(e.target);t&&t(e)},mZ=e=>{e.forEach(hZ)};function gZ({root:e,...t}){const n=e||document;n2.has(n)||n2.set(n,{});const r=n2.get(n),o=JSON.stringify(t);return r[o]||(r[o]=new IntersectionObserver(mZ,{root:e,...t})),r[o]}function vZ(e,t,n){const r=gZ(t);return a4.set(e,n),r.observe(e),()=>{a4.delete(e),r.unobserve(e)}}function yZ({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:o={}}){const i=C.exports.useRef({hasEnteredView:!1,isInView:!1});let s=Boolean(t||n||r);o.once&&i.current.hasEnteredView&&(s=!1),(typeof IntersectionObserver>"u"?wZ:xZ)(s,i.current,e,o)}const bZ={some:0,all:1};function xZ(e,t,n,{root:r,margin:o,amount:i="some",once:s}){C.exports.useEffect(()=>{if(!e)return;const u={root:r?.current,rootMargin:o,threshold:typeof i=="number"?i:bZ[i]},c=d=>{const{isIntersecting:f}=d;if(t.isInView===f||(t.isInView=f,s&&!f&&t.hasEnteredView))return;f&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(Lt.InView,f);const h=n.getProps(),m=f?h.onViewportEnter:h.onViewportLeave;m&&m(d)};return vZ(n.getInstance(),u,c)},[e,r,o,i])}function wZ(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(dL!=="production"&&fL(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:o}=n.getProps();o&&o(null),n.animationState&&n.animationState.setActive(Lt.InView,!0)}))},[e])}const Oa=e=>t=>(e(t),null),SZ={inView:Oa(yZ),tap:Oa(fZ),focus:Oa(XU),hover:Oa(sG)};function F3(){const e=C.exports.useContext(Du);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,o=C.exports.useId();return C.exports.useEffect(()=>r(o),[]),!t&&n?[!1,()=>n&&n(o)]:[!0]}function CZ(){return _Z(C.exports.useContext(Du))}function _Z(e){return e===null?!0:e.isPresent}function pL(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,kZ={linear:M3,easeIn:R3,easeInOut:JE,easeOut:OG,circIn:eL,circInOut:MG,circOut:N3,backIn:D3,backInOut:NG,backOut:RG,anticipate:DG,bounceIn:$G,bounceInOut:VG,bounceOut:X1},uS=e=>{if(Array.isArray(e)){q1(e.length===4);const[t,n,r,o]=e;return dZ(t,n,r,o)}else if(typeof e=="string")return kZ[e];return e},EZ=e=>Array.isArray(e)&&typeof e[0]!="number",cS=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&Xi.test(t)&&!t.startsWith("url(")),hs=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),dh=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),r2=()=>({type:"keyframes",ease:"linear",duration:.3}),LZ=e=>({type:"keyframes",duration:.8,values:e}),dS={x:hs,y:hs,z:hs,rotate:hs,rotateX:hs,rotateY:hs,rotateZ:hs,scaleX:dh,scaleY:dh,scale:dh,opacity:r2,backgroundColor:r2,color:r2,default:dh},PZ=(e,t)=>{let n;return Vd(t)?n=LZ:n=dS[e]||dS.default,{to:t,...n(t)}},AZ={...EE,color:or,backgroundColor:or,outlineColor:or,fill:or,stroke:or,borderColor:or,borderTopColor:or,borderRightColor:or,borderBottomColor:or,borderLeftColor:or,filter:Qy,WebkitFilter:Qy},B3=e=>AZ[e];function $3(e,t){var n;let r=B3(e);return r!==Qy&&(r=Xi),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const TZ={current:!1};function IZ({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:o,repeat:i,repeatType:s,repeatDelay:u,from:c,...d}){return!!Object.keys(d).length}function OZ({ease:e,times:t,yoyo:n,flip:r,loop:o,...i}){const s={...i};return t&&(s.offset=t),i.duration&&(s.duration=J1(i.duration)),i.repeatDelay&&(s.repeatDelay=J1(i.repeatDelay)),e&&(s.ease=EZ(e)?e.map(uS):uS(e)),i.type==="tween"&&(s.type="keyframes"),(n||o||r)&&(n?s.repeatType="reverse":o?s.repeatType="loop":r&&(s.repeatType="mirror"),s.repeat=o||n||r||i.repeat),i.type!=="spring"&&(s.type="keyframes"),s}function MZ(e,t){var n,r;return(r=(n=(V3(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function RZ(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function NZ(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),RZ(t),IZ(e)||(e={...e,...PZ(n,t.to)}),{...t,...OZ(e)}}function DZ(e,t,n,r,o){const i=V3(r,e)||{};let s=i.from!==void 0?i.from:t.get();const u=cS(e,n);s==="none"&&u&&typeof n=="string"?s=$3(e,n):fS(s)&&typeof n=="string"?s=pS(n):!Array.isArray(n)&&fS(n)&&typeof s=="string"&&(n=pS(s));const c=cS(e,s);function d(){const h={from:s,to:n,velocity:t.getVelocity(),onComplete:o,onUpdate:m=>t.set(m)};return i.type==="inertia"||i.type==="decay"?oZ({...h,...i}):iL({...NZ(i,h,e),onUpdate:m=>{h.onUpdate(m),i.onUpdate&&i.onUpdate(m)},onComplete:()=>{h.onComplete(),i.onComplete&&i.onComplete()}})}function f(){const h=DE(n);return t.set(h),o(),i.onUpdate&&i.onUpdate(h),i.onComplete&&i.onComplete(),{stop:()=>{}}}return!c||!u||i.type===!1?f:d}function fS(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function pS(e){return typeof e=="number"?0:$3("",e)}function V3(e,t){return e[t]||e.default||e}function W3(e,t,n,r={}){return TZ.current&&(r={type:!1}),t.start(o=>{let i,s;const u=DZ(e,t,n,r,o),c=MZ(r,e),d=()=>s=u();return c?i=window.setTimeout(d,J1(c)):d(),()=>{clearTimeout(i),s&&s.stop()}})}const zZ=e=>/^\-?\d*\.?\d+$/.test(e),FZ=e=>/^0[^.\s]+$/.test(e),hL=1/60*1e3,BZ=typeof performance<"u"?()=>performance.now():()=>Date.now(),mL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(BZ()),hL);function $Z(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,u={schedule:(c,d=!1,f=!1)=>{const h=f&&o,m=h?t:n;return d&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const d=n.indexOf(c);d!==-1&&n.splice(d,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=$Z(()=>Hd=!0),e),{}),ui=xf.reduce((e,t)=>{const n=fm[t];return e[t]=(r,o=!1,i=!1)=>(Hd||jZ(),n.schedule(r,o,i)),e},{}),Ud=xf.reduce((e,t)=>(e[t]=fm[t].cancel,e),{}),o2=xf.reduce((e,t)=>(e[t]=()=>fm[t].process(iu),e),{}),WZ=e=>fm[e].process(iu),gL=e=>{Hd=!1,iu.delta=s4?hL:Math.max(Math.min(e-iu.timestamp,VZ),1),iu.timestamp=e,l4=!0,xf.forEach(WZ),l4=!1,Hd&&(s4=!1,mL(gL))},jZ=()=>{Hd=!0,s4=!0,l4||mL(gL)},u4=()=>iu;function j3(e,t){e.indexOf(t)===-1&&e.push(t)}function H3(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class id{constructor(){this.subscriptions=[]}add(t){return j3(this.subscriptions,t),()=>H3(this.subscriptions,t)}notify(t,n,r){const o=this.subscriptions.length;if(!!o)if(o===1)this.subscriptions[0](t,n,r);else for(let i=0;i!isNaN(parseFloat(e));class UZ{constructor(t){this.version="7.3.5",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new id,this.velocityUpdateSubscribers=new id,this.renderSubscribers=new id,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:o,timestamp:i}=u4();this.lastUpdated!==i&&(this.timeDelta=o,this.lastUpdated=i,ui.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>ui.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=HZ(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?aL(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function xu(e){return new UZ(e)}const vL=e=>t=>t.test(e),GZ={test:e=>e==="auto",parse:e=>e},yL=[Us,Ne,li,ba,xU,bU,GZ],Pc=e=>yL.find(vL(e)),ZZ=[...yL,or,Xi],KZ=e=>ZZ.find(vL(e));function qZ(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function YZ(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function pm(e,t,n){const r=e.getProps();return NE(r,t,n!==void 0?n:r.custom,qZ(e),YZ(e))}function XZ(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,xu(n))}function QZ(e,t){const n=pm(e,t);let{transitionEnd:r={},transition:o={},...i}=n?e.makeTargetAnimatable(n,!1):{};i={...i,...r};for(const s in i){const u=DE(i[s]);XZ(e,s,u)}}function JZ(e,t,n){var r,o;const i=Object.keys(t).filter(u=>!e.hasValue(u)),s=i.length;if(!!s)for(let u=0;uc4(e,i,n));r=Promise.all(o)}else if(typeof t=="string")r=c4(e,t,n);else{const o=typeof t=="function"?pm(e,t,n.custom):t;r=bL(e,o,n)}return r.then(()=>e.notifyAnimationComplete(t))}function c4(e,t,n={}){var r;const o=pm(e,t,n.custom);let{transition:i=e.getDefaultTransition()||{}}=o||{};n.transitionOverride&&(i=n.transitionOverride);const s=o?()=>bL(e,o,n):()=>Promise.resolve(),u=!((r=e.variantChildren)===null||r===void 0)&&r.size?(d=0)=>{const{delayChildren:f=0,staggerChildren:h,staggerDirection:m}=i;return rK(e,t,f+d,h,m,n)}:()=>Promise.resolve(),{when:c}=i;if(c){const[d,f]=c==="beforeChildren"?[s,u]:[u,s];return d().then(f)}else return Promise.all([s(),u(n.delay)])}function bL(e,t,{delay:n=0,transitionOverride:r,type:o}={}){var i;let{transition:s=e.getDefaultTransition(),transitionEnd:u,...c}=e.makeTargetAnimatable(t);const d=e.getValue("willChange");r&&(s=r);const f=[],h=o&&((i=e.animationState)===null||i===void 0?void 0:i.getState()[o]);for(const m in c){const g=e.getValue(m),b=c[m];if(!g||b===void 0||h&&iK(h,m))continue;let w={delay:n,...s};e.shouldReduceMotion&&gf.has(m)&&(w={...w,type:!1,delay:0});let k=W3(m,g,b,w);e0(d)&&(d.add(m),k=k.then(()=>d.remove(m))),f.push(k)}return Promise.all(f).then(()=>{u&&QZ(e,u)})}function rK(e,t,n=0,r=0,o=1,i){const s=[],u=(e.variantChildren.size-1)*r,c=o===1?(d=0)=>d*r:(d=0)=>u-d*r;return Array.from(e.variantChildren).sort(oK).forEach((d,f)=>{s.push(c4(d,t,{...i,delay:n+c(f)}).then(()=>d.notifyAnimationComplete(t)))}),Promise.all(s)}function oK(e,t){return e.sortNodePosition(t)}function iK({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const U3=[Lt.Animate,Lt.InView,Lt.Focus,Lt.Hover,Lt.Tap,Lt.Drag,Lt.Exit],aK=[...U3].reverse(),sK=U3.length;function lK(e){return t=>Promise.all(t.map(({animation:n,options:r})=>nK(e,n,r)))}function uK(e){let t=lK(e);const n=dK();let r=!0;const o=(c,d)=>{const f=pm(e,d);if(f){const{transition:h,transitionEnd:m,...g}=f;c={...c,...g,...m}}return c};function i(c){t=c(e)}function s(c,d){var f;const h=e.getProps(),m=e.getVariantContext(!0)||{},g=[],b=new Set;let w={},k=1/0;for(let x=0;xk&&R;const J=Array.isArray(T)?T:[T];let Ee=J.reduce(o,{});N===!1&&(Ee={});const{prevResolvedValues:he={}}=L,me={...he,...Ee},ce=ge=>{W=!0,b.delete(ge),L.needsAnimating[ge]=!0};for(const ge in me){const ne=Ee[ge],j=he[ge];w.hasOwnProperty(ge)||(ne!==j?Vd(ne)&&Vd(j)?!pL(ne,j)||G?ce(ge):L.protectedKeys[ge]=!0:ne!==void 0?ce(ge):b.add(ge):ne!==void 0&&b.has(ge)?ce(ge):L.protectedKeys[ge]=!0)}L.prevProp=T,L.prevResolvedValues=Ee,L.isActive&&(w={...w,...Ee}),r&&e.blockInitialAnimation&&(W=!1),W&&!F&&g.push(...J.map(ge=>({animation:ge,options:{type:_,...c}})))}if(b.size){const x={};b.forEach(_=>{const L=e.getBaseTarget(_);L!==void 0&&(x[_]=L)}),g.push({animation:x})}let S=Boolean(g.length);return r&&h.initial===!1&&!e.manuallyAnimateOnMount&&(S=!1),r=!1,S?t(g):Promise.resolve()}function u(c,d,f){var h;if(n[c].isActive===d)return Promise.resolve();(h=e.variantChildren)===null||h===void 0||h.forEach(g=>{var b;return(b=g.animationState)===null||b===void 0?void 0:b.setActive(c,d)}),n[c].isActive=d;const m=s(f,c);for(const g in n)n[g].protectedKeys={};return m}return{animateChanges:s,setActive:u,setAnimateFunction:i,getState:()=>n}}function cK(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!pL(t,e):!1}function ms(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function dK(){return{[Lt.Animate]:ms(!0),[Lt.InView]:ms(),[Lt.Hover]:ms(),[Lt.Tap]:ms(),[Lt.Drag]:ms(),[Lt.Focus]:ms(),[Lt.Exit]:ms()}}const fK={animation:Oa(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=uK(e)),om(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:Oa(e=>{const{custom:t,visualElement:n}=e,[r,o]=F3(),i=C.exports.useContext(Du);C.exports.useEffect(()=>{n.isPresent=r;const s=n.animationState&&n.animationState.setActive(Lt.Exit,!r,{custom:i&&i.custom||t});s&&!r&&s.then(o)},[r])})};class xL{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=a2(this.lastMoveEventInfo,this.history),f=this.startEvent!==null,h=z3(d.offset,{x:0,y:0})>=3;if(!f&&!h)return;const{point:m}=d,{timestamp:g}=u4();this.history.push({...m,timestamp:g});const{onStart:b,onMove:w}=this.handlers;f||(b&&b(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),w&&w(this.lastMoveEvent,d)},this.handlePointerMove=(d,f)=>{if(this.lastMoveEvent=d,this.lastMoveEventInfo=i2(f,this.transformPagePoint),FE(d)&&d.buttons===0){this.handlePointerUp(d,f);return}ui.update(this.updatePoint,!0)},this.handlePointerUp=(d,f)=>{this.end();const{onEnd:h,onSessionEnd:m}=this.handlers,g=a2(i2(f,this.transformPagePoint),this.history);this.startEvent&&h&&h(d,g),m&&m(d,g)},BE(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const o=A3(t),i=i2(o,this.transformPagePoint),{point:s}=i,{timestamp:u}=u4();this.history=[{...s,timestamp:u}];const{onSessionStart:c}=n;c&&c(t,a2(i,this.history)),this.removeListeners=um(ru(window,"pointermove",this.handlePointerMove),ru(window,"pointerup",this.handlePointerUp),ru(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),Ud.update(this.updatePoint)}}function i2(e,t){return t?{point:t(e.point)}:e}function hS(e,t){return{x:e.x-t.x,y:e.y-t.y}}function a2({point:e},t){return{point:e,delta:hS(e,wL(t)),offset:hS(e,pK(t)),velocity:hK(t,.1)}}function pK(e){return e[0]}function wL(e){return e[e.length-1]}function hK(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const o=wL(e);for(;n>=0&&(r=e[n],!(o.timestamp-r.timestamp>J1(t)));)n--;if(!r)return{x:0,y:0};const i=(o.timestamp-r.timestamp)/1e3;if(i===0)return{x:0,y:0};const s={x:(o.x-r.x)/i,y:(o.y-r.y)/i};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}function jr(e){return e.max-e.min}function mS(e,t=0,n=.01){return z3(e,t)n&&(e=r?Xt(n,e,r.max):Math.min(e,n)),e}function bS(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function vK(e,{top:t,left:n,bottom:r,right:o}){return{x:bS(e.x,n,o),y:bS(e.y,t,r)}}function xS(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=Wd(t.min,t.max-r,e.min):r>o&&(n=Wd(e.min,e.max-o,t.min)),Y1(0,1,n)}function xK(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const d4=.35;function wK(e=d4){return e===!1?e=0:e===!0&&(e=d4),{x:wS(e,"left","right"),y:wS(e,"top","bottom")}}function wS(e,t,n){return{min:SS(e,t),max:SS(e,n)}}function SS(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const CS=()=>({translate:0,scale:1,origin:0,originPoint:0}),ld=()=>({x:CS(),y:CS()}),_S=()=>({min:0,max:0}),In=()=>({x:_S(),y:_S()});function Yo(e){return[e("x"),e("y")]}function SL({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function SK({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function CK(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function s2(e){return e===void 0||e===1}function CL({scale:e,scaleX:t,scaleY:n}){return!s2(e)||!s2(t)||!s2(n)}function xa(e){return CL(e)||kS(e.x)||kS(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function kS(e){return e&&e!=="0%"}function t0(e,t,n){const r=e-n,o=t*r;return n+o}function ES(e,t,n,r,o){return o!==void 0&&(e=t0(e,o,r)),t0(e,n,r)+t}function f4(e,t=0,n=1,r,o){e.min=ES(e.min,t,n,r,o),e.max=ES(e.max,t,n,r,o)}function _L(e,{x:t,y:n}){f4(e.x,t.translate,t.scale,t.originPoint),f4(e.y,n.translate,n.scale,n.originPoint)}function _K(e,t,n,r=!1){var o,i;const s=n.length;if(!s)return;t.x=t.y=1;let u,c;for(let d=0;d{this.stopAnimation(),n&&this.snapToCursor(A3(u,"page").point)},o=(u,c)=>{var d;const{drag:f,dragPropagation:h,onDragStart:m}=this.getProps();f&&!h&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=jE(f),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Yo(g=>{var b,w;let k=this.getAxisMotionValue(g).get()||0;if(li.test(k)){const S=(w=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||w===void 0?void 0:w.actual[g];S&&(k=jr(S)*(parseFloat(k)/100))}this.originPoint[g]=k}),m?.(u,c),(d=this.visualElement.animationState)===null||d===void 0||d.setActive(Lt.Drag,!0))},i=(u,c)=>{const{dragPropagation:d,dragDirectionLock:f,onDirectionLock:h,onDrag:m}=this.getProps();if(!d&&!this.openGlobalLock)return;const{offset:g}=c;if(f&&this.currentDirection===null){this.currentDirection=TK(g),this.currentDirection!==null&&h?.(this.currentDirection);return}this.updateAxis("x",c.point,g),this.updateAxis("y",c.point,g),this.visualElement.syncRender(),m?.(u,c)},s=(u,c)=>this.stop(u,c);this.panSession=new xL(t,{onSessionStart:r,onStart:o,onMove:i,onSessionEnd:s},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:o}=n;this.startAnimation(o);const{onDragEnd:i}=this.getProps();i?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Lt.Drag,!1)}updateAxis(t,n,r){const{drag:o}=this.getProps();if(!r||!fh(t,o,this.currentDirection))return;const i=this.getAxisMotionValue(t);let s=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(s=gK(s,this.constraints[t],this.elastic[t])),i.set(s)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},o=this.constraints;t&&Zl(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=vK(r.actual,t):this.constraints=!1,this.elastic=wK(n),o!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&Yo(i=>{this.getAxisMotionValue(i)&&(this.constraints[i]=xK(r.actual[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!Zl(t))return!1;const r=t.current,{projection:o}=this.visualElement;if(!o||!o.layout)return!1;const i=LK(r,o.root,this.visualElement.getTransformPagePoint());let s=yK(o.layout.actual,i);if(n){const u=n(SK(s));this.hasMutatedConstraints=!!u,u&&(s=SL(u))}return s}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:o,dragTransition:i,dragSnapToOrigin:s,onDragTransitionEnd:u}=this.getProps(),c=this.constraints||{},d=Yo(f=>{var h;if(!fh(f,n,this.currentDirection))return;let m=(h=c?.[f])!==null&&h!==void 0?h:{};s&&(m={min:0,max:0});const g=o?200:1e6,b=o?40:1e7,w={type:"inertia",velocity:r?t[f]:0,bounceStiffness:g,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...i,...m};return this.startAxisValueAnimation(f,w)});return Promise.all(d).then(u)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return W3(t,r,0,n)}stopAnimation(){Yo(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const o="_drag"+t.toUpperCase(),i=this.visualElement.getProps()[o];return i||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){Yo(n=>{const{drag:r}=this.getProps();if(!fh(n,r,this.currentDirection))return;const{projection:o}=this.visualElement,i=this.getAxisMotionValue(n);if(o&&o.layout){const{min:s,max:u}=o.layout.actual[n];i.set(t[n]-Xt(s,u,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:o}=this.visualElement;if(!Zl(r)||!o||!this.constraints)return;this.stopAnimation();const i={x:0,y:0};Yo(u=>{const c=this.getAxisMotionValue(u);if(c){const d=c.get();i[u]=bK({min:d,max:d},this.constraints[u])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=s?s({},""):"none",(t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout(),this.resolveConstraints(),Yo(u=>{if(!fh(u,n,null))return;const c=this.getAxisMotionValue(u),{min:d,max:f}=this.constraints[u];c.set(Xt(d,f,i[u]))})}addListeners(){var t;PK.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=ru(n,"pointerdown",d=>{const{drag:f,dragListener:h=!0}=this.getProps();f&&h&&this.start(d)}),o=()=>{const{dragConstraints:d}=this.getProps();Zl(d)&&(this.constraints=this.resolveRefConstraints())},{projection:i}=this.visualElement,s=i.addEventListener("measure",o);i&&!i.layout&&((t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout()),o();const u=sm(window,"resize",()=>this.scalePositionWithinConstraints()),c=i.addEventListener("didUpdate",({delta:d,hasLayoutChanged:f})=>{this.isDragging&&f&&(Yo(h=>{const m=this.getAxisMotionValue(h);!m||(this.originPoint[h]+=d[h].translate,m.set(m.get()+d[h].translate))}),this.visualElement.syncRender())});return()=>{u(),r(),s(),c?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:o=!1,dragConstraints:i=!1,dragElastic:s=d4,dragMomentum:u=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:o,dragConstraints:i,dragElastic:s,dragMomentum:u}}}function fh(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function TK(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function IK(e){const{dragControls:t,visualElement:n}=e,r=am(()=>new AK(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function OK({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(null),{transformPagePoint:u}=C.exports.useContext(w3),c={onSessionStart:r,onStart:t,onMove:e,onEnd:(f,h)=>{s.current=null,n&&n(f,h)}};C.exports.useEffect(()=>{s.current!==null&&s.current.updateHandlers(c)});function d(f){s.current=new xL(f,c,{transformPagePoint:u})}K1(o,"pointerdown",i&&d),T3(()=>s.current&&s.current.end())}const MK={pan:Oa(OK),drag:Oa(IK)},p4={current:null},EL={current:!1};function RK(){if(EL.current=!0,!!Hs)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>p4.current=e.matches;e.addListener(t),t()}else p4.current=!1}const ph=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function NK(){const e=ph.map(()=>new id),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{ph.forEach(o=>{var i;const s="on"+o,u=r[s];(i=t[o])===null||i===void 0||i.call(t),u&&(t[o]=n[s](u))})}};return e.forEach((r,o)=>{n["on"+ph[o]]=i=>r.add(i),n["notify"+ph[o]]=(...i)=>r.notify(...i)}),n}function DK(e,t,n){const{willChange:r}=t;for(const o in t){const i=t[o],s=n[o];if(hi(i))e.addValue(o,i),e0(r)&&r.add(o);else if(hi(s))e.addValue(o,xu(i)),e0(r)&&r.remove(o);else if(s!==i)if(e.hasValue(o)){const u=e.getValue(o);!u.hasAnimated&&u.set(i)}else{const u=e.getStaticValue(o);e.addValue(o,xu(u!==void 0?u:i))}}for(const o in n)t[o]===void 0&&e.removeValue(o);return t}const LL=Object.keys(Bd),zK=LL.length,PL=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:o,render:i,readValueFromInstance:s,removeValueFromRenderState:u,sortNodePosition:c,scrapeMotionValuesFromProps:d})=>({parent:f,props:h,presenceId:m,blockInitialAnimation:g,visualState:b,reducedMotionConfig:w},k={})=>{let S=!1;const{latestValues:x,renderState:_}=b;let L;const T=NK(),R=new Map,N=new Map;let F={};const G={...x};let W;function J(){!L||!S||(Ee(),i(L,_,h.style,Y.projection))}function Ee(){t(Y,_,x,k,h)}function he(){T.notifyUpdate(x)}function me(K,O){const H=O.onChange(de=>{x[K]=de,h.onUpdate&&ui.update(he,!1,!0)}),se=O.onRenderRequest(Y.scheduleRender);N.set(K,()=>{H(),se()})}const{willChange:ce,...ge}=d(h);for(const K in ge){const O=ge[K];x[K]!==void 0&&hi(O)&&(O.set(x[K],!1),e0(ce)&&ce.add(K))}const ne=im(h),j=mE(h),Y={treeType:e,current:null,depth:f?f.depth+1:0,parent:f,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:j?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(f?.isMounted()),blockInitialAnimation:g,isMounted:()=>Boolean(L),mount(K){S=!0,L=Y.current=K,Y.projection&&Y.projection.mount(K),j&&f&&!ne&&(W=f?.addVariantChild(Y)),R.forEach((O,H)=>me(H,O)),EL.current||RK(),Y.shouldReduceMotion=w==="never"?!1:w==="always"?!0:p4.current,f?.children.add(Y),Y.setProps(h)},unmount(){var K;(K=Y.projection)===null||K===void 0||K.unmount(),Ud.update(he),Ud.render(J),N.forEach(O=>O()),W?.(),f?.children.delete(Y),T.clearAllListeners(),L=void 0,S=!1},loadFeatures(K,O,H,se,de,ye){const be=[];for(let Pe=0;PeY.scheduleRender(),animationType:typeof fe=="string"?fe:"both",initialPromotionConfig:ye,layoutScroll:st})}return be},addVariantChild(K){var O;const H=Y.getClosestVariantNode();if(H)return(O=H.variantChildren)===null||O===void 0||O.add(K),()=>H.variantChildren.delete(K)},sortNodePosition(K){return!c||e!==K.treeType?0:c(Y.getInstance(),K.getInstance())},getClosestVariantNode:()=>j?Y:f?.getClosestVariantNode(),getLayoutId:()=>h.layoutId,getInstance:()=>L,getStaticValue:K=>x[K],setStaticValue:(K,O)=>x[K]=O,getLatestValues:()=>x,setVisibility(K){Y.isVisible!==K&&(Y.isVisible=K,Y.scheduleRender())},makeTargetAnimatable(K,O=!0){return r(Y,K,h,O)},measureViewportBox(){return o(L,h)},addValue(K,O){Y.hasValue(K)&&Y.removeValue(K),R.set(K,O),x[K]=O.get(),me(K,O)},removeValue(K){var O;R.delete(K),(O=N.get(K))===null||O===void 0||O(),N.delete(K),delete x[K],u(K,_)},hasValue:K=>R.has(K),getValue(K,O){let H=R.get(K);return H===void 0&&O!==void 0&&(H=xu(O),Y.addValue(K,H)),H},forEachValue:K=>R.forEach(K),readValue:K=>x[K]!==void 0?x[K]:s(L,K,k),setBaseTarget(K,O){G[K]=O},getBaseTarget(K){if(n){const O=n(h,K);if(O!==void 0&&!hi(O))return O}return G[K]},...T,build(){return Ee(),_},scheduleRender(){ui.render(J,!1,!0)},syncRender:J,setProps(K){(K.transformTemplate||h.transformTemplate)&&Y.scheduleRender(),h=K,T.updatePropListeners(K),F=DK(Y,d(h),F)},getProps:()=>h,getVariant:K=>{var O;return(O=h.variants)===null||O===void 0?void 0:O[K]},getDefaultTransition:()=>h.transition,getTransformPagePoint:()=>h.transformPagePoint,getVariantContext(K=!1){if(K)return f?.getVariantContext();if(!ne){const H=f?.getVariantContext()||{};return h.initial!==void 0&&(H.initial=h.initial),H}const O={};for(let H=0;H{const i=o.get();if(!h4(i))return;const s=m4(i,r);s&&o.set(s)});for(const o in t){const i=t[o];if(!h4(i))continue;const s=m4(i,r);!s||(t[o]=s,n&&n[o]===void 0&&(n[o]=i))}return{target:t,transitionEnd:n}}const VK=new Set(["width","height","top","left","right","bottom","x","y"]),IL=e=>VK.has(e),WK=e=>Object.keys(e).some(IL),OL=(e,t)=>{e.set(t,!1),e.set(t)},PS=e=>e===Us||e===Ne;var AS;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(AS||(AS={}));const TS=(e,t)=>parseFloat(e.split(", ")[t]),IS=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const o=r.match(/^matrix3d\((.+)\)$/);if(o)return TS(o[1],t);{const i=r.match(/^matrix\((.+)\)$/);return i?TS(i[1],e):0}},jK=new Set(["x","y","z"]),HK=G1.filter(e=>!jK.has(e));function UK(e){const t=[];return HK.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const OS={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:IS(4,13),y:IS(5,14)},GK=(e,t,n)=>{const r=t.measureViewportBox(),o=t.getInstance(),i=getComputedStyle(o),{display:s}=i,u={};s==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(d=>{u[d]=OS[d](r,i)}),t.syncRender();const c=t.measureViewportBox();return n.forEach(d=>{const f=t.getValue(d);OL(f,u[d]),e[d]=OS[d](c,i)}),e},ZK=(e,t,n={},r={})=>{t={...t},r={...r};const o=Object.keys(t).filter(IL);let i=[],s=!1;const u=[];if(o.forEach(c=>{const d=e.getValue(c);if(!e.hasValue(c))return;let f=n[c],h=Pc(f);const m=t[c];let g;if(Vd(m)){const b=m.length,w=m[0]===null?1:0;f=m[w],h=Pc(f);for(let k=w;k=0?window.pageYOffset:null,d=GK(t,e,u);return i.length&&i.forEach(([f,h])=>{e.getValue(f).set(h)}),e.syncRender(),Hs&&c!==null&&window.scrollTo({top:c}),{target:d,transitionEnd:r}}else return{target:t,transitionEnd:r}};function KK(e,t,n,r){return WK(t)?ZK(e,t,n,r):{target:t,transitionEnd:r}}const qK=(e,t,n,r)=>{const o=$K(e,t,r);return t=o.target,r=o.transitionEnd,KK(e,t,n,r)};function YK(e){return window.getComputedStyle(e)}const ML={treeType:"dom",readValueFromInstance(e,t){if(gf.has(t)){const n=B3(t);return n&&n.default||0}else{const n=YK(e),r=(yE(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return kL(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:o},i=!0){let s=tK(r,t||{},e);if(o&&(n&&(n=o(n)),r&&(r=o(r)),s&&(s=o(s))),i){JZ(e,r,s);const u=qK(e,r,s,n);n=u.transitionEnd,r=u.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:P3,build(e,t,n,r,o){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),k3(t,n,r,o.transformTemplate)},render:IE},XK=PL(ML),QK=PL({...ML,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return gf.has(t)?((n=B3(t))===null||n===void 0?void 0:n.default)||0:(t=OE.has(t)?t:TE(t),e.getAttribute(t))},scrapeMotionValuesFromProps:RE,build(e,t,n,r,o){L3(t,n,r,o.transformTemplate)},render:ME}),JK=(e,t)=>C3(e)?QK(t,{enableHardwareAcceleration:!1}):XK(t,{enableHardwareAcceleration:!0});function MS(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const Ac={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(Ne.test(e))e=parseFloat(e);else return e;const n=MS(e,t.target.x),r=MS(e,t.target.y);return`${n}% ${r}%`}},RS="_$css",eq={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,o=e.includes("var("),i=[];o&&(e=e.replace(TL,g=>(i.push(g),RS)));const s=Xi.parse(e);if(s.length>5)return r;const u=Xi.createTransformer(e),c=typeof s[0]!="number"?1:0,d=n.x.scale*t.x,f=n.y.scale*t.y;s[0+c]/=d,s[1+c]/=f;const h=Xt(d,f,.5);typeof s[2+c]=="number"&&(s[2+c]/=h),typeof s[3+c]=="number"&&(s[3+c]/=h);let m=u(s);if(o){let g=0;m=m.replace(RS,()=>{const b=i[g];return g++,b})}return m}};class tq extends X.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:o}=this.props,{projection:i}=t;pU(rq),i&&(n.group&&n.group.add(i),r&&r.register&&o&&r.register(i),i.root.didUpdate(),i.addEventListener("animationComplete",()=>{this.safeToRemove()}),i.setOptions({...i.options,onExitComplete:()=>this.safeToRemove()})),nd.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:o,isPresent:i}=this.props,s=r.projection;return s&&(s.isPresent=i,o||t.layoutDependency!==n||n===void 0?s.willUpdate():this.safeToRemove(),t.isPresent!==i&&(i?s.promote():s.relegate()||ui.postRender(()=>{var u;!((u=s.getStack())===null||u===void 0)&&u.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:o}=t;o&&(o.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(o),r?.deregister&&r.deregister(o))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function nq(e){const[t,n]=F3(),r=C.exports.useContext(S3);return v(tq,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(gE),isPresent:t,safeToRemove:n})}const rq={borderRadius:{...Ac,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Ac,borderTopRightRadius:Ac,borderBottomLeftRadius:Ac,borderBottomRightRadius:Ac,boxShadow:eq},oq={measureLayout:nq};function iq(e,t,n={}){const r=hi(e)?e:xu(e);return W3("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const RL=["TopLeft","TopRight","BottomLeft","BottomRight"],aq=RL.length,NS=e=>typeof e=="string"?parseFloat(e):e,DS=e=>typeof e=="number"||Ne.test(e);function sq(e,t,n,r,o,i){var s,u,c,d;o?(e.opacity=Xt(0,(s=n.opacity)!==null&&s!==void 0?s:1,lq(r)),e.opacityExit=Xt((u=t.opacity)!==null&&u!==void 0?u:1,0,uq(r))):i&&(e.opacity=Xt((c=t.opacity)!==null&&c!==void 0?c:1,(d=n.opacity)!==null&&d!==void 0?d:1,r));for(let f=0;frt?1:n(Wd(e,t,r))}function FS(e,t){e.min=t.min,e.max=t.max}function Lo(e,t){FS(e.x,t.x),FS(e.y,t.y)}function BS(e,t,n,r,o){return e-=t,e=t0(e,1/n,r),o!==void 0&&(e=t0(e,1/o,r)),e}function cq(e,t=0,n=1,r=.5,o,i=e,s=e){if(li.test(t)&&(t=parseFloat(t),t=Xt(s.min,s.max,t/100)-s.min),typeof t!="number")return;let u=Xt(i.min,i.max,r);e===i&&(u-=t),e.min=BS(e.min,t,n,u,o),e.max=BS(e.max,t,n,u,o)}function $S(e,t,[n,r,o],i,s){cq(e,t[n],t[r],t[o],t.scale,i,s)}const dq=["x","scaleX","originX"],fq=["y","scaleY","originY"];function VS(e,t,n,r){$S(e.x,t,dq,n?.x,r?.x),$S(e.y,t,fq,n?.y,r?.y)}function WS(e){return e.translate===0&&e.scale===1}function DL(e){return WS(e.x)&&WS(e.y)}function zL(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function jS(e){return jr(e.x)/jr(e.y)}function pq(e,t,n=.01){return z3(e,t)<=n}class hq{constructor(){this.members=[]}add(t){j3(this.members,t),t.scheduleRender()}remove(t){if(H3(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(o=>t===o);if(n===0)return!1;let r;for(let o=n;o>=0;o--){const i=this.members[o];if(i.isPresent!==!1){r=i;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:i}=t.options;i===!1&&o.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,o,i,s;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(s=(o=t.resumingFrom)===null||o===void 0?void 0:(i=o.options).onExitComplete)===null||s===void 0||s.call(i)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const mq="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function HS(e,t,n){const r=e.x.translate/t.x,o=e.y.translate/t.y;let i=`translate3d(${r}px, ${o}px, 0) `;if(i+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:c,rotateX:d,rotateY:f}=n;c&&(i+=`rotate(${c}deg) `),d&&(i+=`rotateX(${d}deg) `),f&&(i+=`rotateY(${f}deg) `)}const s=e.x.scale*t.x,u=e.y.scale*t.y;return i+=`scale(${s}, ${u})`,i===mq?"none":i}const gq=(e,t)=>e.depth-t.depth;class vq{constructor(){this.children=[],this.isDirty=!1}add(t){j3(this.children,t),this.isDirty=!0}remove(t){H3(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(gq),this.isDirty=!1,this.children.forEach(t)}}const US=["","X","Y","Z"],GS=1e3;function FL({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:o}){return class{constructor(s,u={},c=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(Cq),this.nodes.forEach(_q)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=s,this.latestValues=u,this.root=c?c.root||c:this,this.path=c?[...c.path,c]:[],this.parent=c,this.depth=c?c.depth+1:0,s&&this.root.registerPotentialNode(s,this);for(let d=0;dthis.root.updateBlockedByResize=!1;e(s,()=>{this.root.updateBlockedByResize=!0,clearTimeout(m),m=window.setTimeout(g,250),nd.hasAnimatedSinceResize&&(nd.hasAnimatedSinceResize=!1,this.nodes.forEach(Sq))})}d&&this.root.registerSharedNode(d,this),this.options.animate!==!1&&h&&(d||f)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:g,hasRelativeTargetChanged:b,layout:w})=>{var k,S,x,_,L;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const T=(S=(k=this.options.transition)!==null&&k!==void 0?k:h.getDefaultTransition())!==null&&S!==void 0?S:Aq,{onLayoutAnimationStart:R,onLayoutAnimationComplete:N}=h.getProps(),F=!this.targetLayout||!zL(this.targetLayout,w)||b,G=!g&&b;if(((x=this.resumeFrom)===null||x===void 0?void 0:x.instance)||G||g&&(F||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,G);const W={...V3(T,"layout"),onPlay:R,onComplete:N};h.shouldReduceMotion&&(W.delay=0,W.type=!1),this.startAnimation(W)}else!g&&this.animationProgress===0&&this.finishAnimation(),this.isLead()&&((L=(_=this.options).onExitComplete)===null||L===void 0||L.call(_));this.targetLayout=w})}unmount(){var s,u;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(s=this.getStack())===null||s===void 0||s.remove(this),(u=this.parent)===null||u===void 0||u.children.delete(this),this.instance=void 0,Ud.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var s;return this.isAnimationBlocked||((s=this.parent)===null||s===void 0?void 0:s.isTreeAnimationBlocked())||!1}startUpdate(){var s;this.isUpdateBlocked()||(this.isUpdating=!0,(s=this.nodes)===null||s===void 0||s.forEach(kq))}willUpdate(s=!0){var u,c,d;if(this.root.isUpdateBlocked()){(c=(u=this.options).onExitComplete)===null||c===void 0||c.call(u);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let g=0;g{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const s=this.measure(),u=this.removeTransform(this.removeElementScroll(s));XS(u),this.snapshot={measured:s,layout:u,latestValues:{}}}updateLayout(){var s;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let d=0;d{var x;const _=S/1e3;KS(m.x,s.x,_),KS(m.y,s.y,_),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((x=this.relativeParent)===null||x===void 0?void 0:x.layout)&&(sd(g,this.layout.actual,this.relativeParent.layout.actual),Lq(this.relativeTarget,this.relativeTargetOrigin,g,_)),b&&(this.animationValues=h,sq(h,f,this.latestValues,_,k,w)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=_},this.mixTargetDelta(0)}startAnimation(s){var u,c;this.notifyListeners("animationStart"),(u=this.currentAnimation)===null||u===void 0||u.stop(),this.resumingFrom&&((c=this.resumingFrom.currentAnimation)===null||c===void 0||c.stop()),this.pendingAnimation&&(Ud.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=ui.update(()=>{nd.hasAnimatedSinceResize=!0,this.currentAnimation=iq(0,GS,{...s,onUpdate:d=>{var f;this.mixTargetDelta(d),(f=s.onUpdate)===null||f===void 0||f.call(s,d)},onComplete:()=>{var d;(d=s.onComplete)===null||d===void 0||d.call(s),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var s;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(s=this.getStack())===null||s===void 0||s.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var s;this.currentAnimation&&((s=this.mixTargetDelta)===null||s===void 0||s.call(this,GS),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const s=this.getLead();let{targetWithTransforms:u,target:c,layout:d,latestValues:f}=s;if(!(!u||!c||!d)){if(this!==s&&this.layout&&d&&BL(this.options.animationType,this.layout.actual,d.actual)){c=this.target||In();const h=jr(this.layout.actual.x);c.x.min=s.target.x.min,c.x.max=c.x.min+h;const m=jr(this.layout.actual.y);c.y.min=s.target.y.min,c.y.max=c.y.min+m}Lo(u,c),Kl(u,f),ad(this.projectionDeltaWithTransform,this.layoutCorrected,u,f)}}registerSharedNode(s,u){var c,d,f;this.sharedNodes.has(s)||this.sharedNodes.set(s,new hq),this.sharedNodes.get(s).add(u),u.promote({transition:(c=u.options.initialPromotionConfig)===null||c===void 0?void 0:c.transition,preserveFollowOpacity:(f=(d=u.options.initialPromotionConfig)===null||d===void 0?void 0:d.shouldPreserveFollowOpacity)===null||f===void 0?void 0:f.call(d,u)})}isLead(){const s=this.getStack();return s?s.lead===this:!0}getLead(){var s;const{layoutId:u}=this.options;return u?((s=this.getStack())===null||s===void 0?void 0:s.lead)||this:this}getPrevLead(){var s;const{layoutId:u}=this.options;return u?(s=this.getStack())===null||s===void 0?void 0:s.prevLead:void 0}getStack(){const{layoutId:s}=this.options;if(s)return this.root.sharedNodes.get(s)}promote({needsReset:s,transition:u,preserveFollowOpacity:c}={}){const d=this.getStack();d&&d.promote(this,c),s&&(this.projectionDelta=void 0,this.needsReset=!0),u&&this.setOptions({transition:u})}relegate(){const s=this.getStack();return s?s.relegate(this):!1}resetRotation(){const{visualElement:s}=this.options;if(!s)return;let u=!1;const c={};for(let d=0;d{var u;return(u=s.currentAnimation)===null||u===void 0?void 0:u.stop()}),this.root.nodes.forEach(ZS),this.root.sharedNodes.clear()}}}function yq(e){e.updateLayout()}function bq(e){var t,n,r;const o=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&o&&e.hasListeners("didUpdate")){const{actual:i,measured:s}=e.layout,{animationType:u}=e.options;u==="size"?Yo(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=jr(g);g.min=i[m].min,g.max=g.min+b}):BL(u,o.layout,i)&&Yo(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=jr(i[m]);g.max=g.min+b});const c=ld();ad(c,i,o.layout);const d=ld();o.isShared?ad(d,e.applyTransform(s,!0),o.measured):ad(d,i,o.layout);const f=!DL(c);let h=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:g}=e.relativeParent;if(m&&g){const b=In();sd(b,o.layout,m.layout);const w=In();sd(w,i,g.actual),zL(b,w)||(h=!0)}}e.notifyListeners("didUpdate",{layout:i,snapshot:o,delta:d,layoutDelta:c,hasLayoutChanged:f,hasRelativeTargetChanged:h})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function xq(e){e.clearSnapshot()}function ZS(e){e.clearMeasurements()}function wq(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function Sq(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function Cq(e){e.resolveTargetDelta()}function _q(e){e.calcProjection()}function kq(e){e.resetRotation()}function Eq(e){e.removeLeadSnapshot()}function KS(e,t,n){e.translate=Xt(t.translate,0,n),e.scale=Xt(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function qS(e,t,n,r){e.min=Xt(t.min,n.min,r),e.max=Xt(t.max,n.max,r)}function Lq(e,t,n,r){qS(e.x,t.x,n.x,r),qS(e.y,t.y,n.y,r)}function Pq(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const Aq={duration:.45,ease:[.4,0,.1,1]};function Tq(e,t){let n=e.root;for(let i=e.path.length-1;i>=0;i--)if(Boolean(e.path[i].instance)){n=e.path[i];break}const o=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);o&&e.mount(o,!0)}function YS(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function XS(e){YS(e.x),YS(e.y)}function BL(e,t,n){return e==="position"||e==="preserve-aspect"&&!pq(jS(t),jS(n))}const Iq=FL({attachResizeListener:(e,t)=>sm(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),l2={current:void 0},Oq=FL({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!l2.current){const e=new Iq(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),l2.current=e}return l2.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),Mq={...fK,...SZ,...MK,...oq},go=dU((e,t)=>YU(e,t,Mq,JK,Oq));function $L(){const e=C.exports.useRef(!1);return H1(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function Rq(){const e=$L(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>ui.postRender(r),[r]),t]}class Nq extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function Dq({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),o=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:i,height:s,top:u,left:c}=o.current;if(t||!r.current||!i||!s)return;r.current.dataset.motionPopId=n;const d=document.createElement("style");return document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` - [data-motion-pop-id="${n}"] { - position: absolute !important; - width: ${i}px !important; - height: ${s}px !important; - top: ${u}px !important; - left: ${c}px !important; - } - `),()=>{document.head.removeChild(d)}},[t]),v(Nq,{isPresent:t,childRef:r,sizeRef:o,children:C.exports.cloneElement(e,{ref:r})})}const u2=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:o,presenceAffectsLayout:i,mode:s})=>{const u=am(zq),c=C.exports.useId(),d=C.exports.useMemo(()=>({id:c,initial:t,isPresent:n,custom:o,onExitComplete:f=>{u.set(f,!0);for(const h of u.values())if(!h)return;r&&r()},register:f=>(u.set(f,!1),()=>u.delete(f))}),i?void 0:[n]);return C.exports.useMemo(()=>{u.forEach((f,h)=>u.set(h,!1))},[n]),C.exports.useEffect(()=>{!n&&!u.size&&r&&r()},[n]),s==="popLayout"&&(e=v(Dq,{isPresent:n,children:e})),v(Du.Provider,{value:d,children:e})};function zq(){return new Map}const Il=e=>e.key||"";function Fq(e,t){e.forEach(n=>{const r=Il(n);t.set(r,n)})}function Bq(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const na=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:o,presenceAffectsLayout:i=!0,mode:s="sync"})=>{o&&(s="wait",fL(!1,"Replace exitBeforeEnter with mode='wait'"));let[u]=Rq();const c=C.exports.useContext(S3).forceRender;c&&(u=c);const d=$L(),f=Bq(e);let h=f;const m=new Set,g=C.exports.useRef(h),b=C.exports.useRef(new Map).current,w=C.exports.useRef(!0);if(H1(()=>{w.current=!1,Fq(f,b),g.current=h}),T3(()=>{w.current=!0,b.clear(),m.clear()}),w.current)return v(yn,{children:h.map(_=>v(u2,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:i,mode:s,children:_},Il(_)))});h=[...h];const k=g.current.map(Il),S=f.map(Il),x=k.length;for(let _=0;_{if(S.indexOf(_)!==-1)return;const L=b.get(_);if(!L)return;const T=k.indexOf(_),R=()=>{b.delete(_),m.delete(_);const N=g.current.findIndex(F=>F.key===_);if(g.current.splice(N,1),!m.size){if(g.current=f,d.current===!1)return;u(),r&&r()}};h.splice(T,0,v(u2,{isPresent:!1,onExitComplete:R,custom:t,presenceAffectsLayout:i,mode:s,children:L},Il(L)))}),h=h.map(_=>{const L=_.key;return m.has(L)?_:v(u2,{isPresent:!0,presenceAffectsLayout:i,mode:s,children:_},Il(_))}),dL!=="production"&&s==="wait"&&h.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),v(yn,{children:m.size?h:h.map(_=>C.exports.cloneElement(_))})};var wf=(...e)=>e.filter(Boolean).join(" ");function $q(){return!1}var Vq=e=>{const{condition:t,message:n}=e;t&&$q()&&console.warn(n)},Ls={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},Tc={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function g4(e){switch(e?.direction??"right"){case"right":return Tc.slideRight;case"left":return Tc.slideLeft;case"bottom":return Tc.slideDown;case"top":return Tc.slideUp;default:return Tc.slideRight}}var Is={enter:{duration:.2,ease:Ls.easeOut},exit:{duration:.1,ease:Ls.easeIn}},Fo={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},Wq=e=>e!=null&&parseInt(e.toString(),10)>0,QS={exit:{height:{duration:.2,ease:Ls.ease},opacity:{duration:.3,ease:Ls.ease}},enter:{height:{duration:.3,ease:Ls.ease},opacity:{duration:.4,ease:Ls.ease}}},jq={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:Wq(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Fo.exit(QS.exit,o)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Fo.enter(QS.enter,o)})},VL=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:o=!0,startingHeight:i=0,endingHeight:s="auto",style:u,className:c,transition:d,transitionEnd:f,...h}=e,[m,g]=C.exports.useState(!1);C.exports.useEffect(()=>{const x=setTimeout(()=>{g(!0)});return()=>clearTimeout(x)},[]),Vq({condition:Boolean(i>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(i.toString())>0,w={startingHeight:i,endingHeight:s,animateOpacity:o,transition:m?d:{enter:{duration:0}},transitionEnd:{enter:f?.enter,exit:r?f?.exit:{...f?.exit,display:b?"block":"none"}}},k=r?n:!0,S=n||r?"enter":"exit";return v(na,{initial:!1,custom:w,children:k&&X.createElement(go.div,{ref:t,...h,className:wf("chakra-collapse",c),style:{overflow:"hidden",display:"block",...u},custom:w,variants:jq,initial:r?"exit":!1,animate:S,exit:"exit"})})});VL.displayName="Collapse";var Hq={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Fo.enter(Is.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Fo.exit(Is.exit,n),transitionEnd:t?.exit})},WL={initial:"exit",animate:"enter",exit:"exit",variants:Hq},Uq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,className:i,transition:s,transitionEnd:u,delay:c,...d}=t,f=o||r?"enter":"exit",h=r?o&&r:!0,m={transition:s,transitionEnd:u,delay:c};return v(na,{custom:m,children:h&&X.createElement(go.div,{ref:n,className:wf("chakra-fade",i),custom:m,...WL,animate:f,...d})})});Uq.displayName="Fade";var Gq={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Fo.exit(Is.exit,o)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Fo.enter(Is.enter,n),transitionEnd:e?.enter})},jL={initial:"exit",animate:"enter",exit:"exit",variants:Gq},Zq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,initialScale:s=.95,className:u,transition:c,transitionEnd:d,delay:f,...h}=t,m=r?o&&r:!0,g=o||r?"enter":"exit",b={initialScale:s,reverse:i,transition:c,transitionEnd:d,delay:f};return v(na,{custom:b,children:m&&X.createElement(go.div,{ref:n,className:wf("chakra-offset-slide",u),...jL,animate:g,custom:b,...h})})});Zq.displayName="ScaleFade";var JS={exit:{duration:.15,ease:Ls.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},Kq={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:o}=g4({direction:e});return{...o,transition:t?.exit??Fo.exit(JS.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:o}=g4({direction:e});return{...o,transition:n?.enter??Fo.enter(JS.enter,r),transitionEnd:t?.enter}}},HL=C.exports.forwardRef(function(t,n){const{direction:r="right",style:o,unmountOnExit:i,in:s,className:u,transition:c,transitionEnd:d,delay:f,...h}=t,m=g4({direction:r}),g=Object.assign({position:"fixed"},m.position,o),b=i?s&&i:!0,w=s||i?"enter":"exit",k={transitionEnd:d,transition:c,direction:r,delay:f};return v(na,{custom:k,children:b&&X.createElement(go.div,{...h,ref:n,initial:"exit",className:wf("chakra-slide",u),animate:w,exit:"exit",custom:k,variants:Kq,style:g})})});HL.displayName="Slide";var qq={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,x:e,y:t,transition:n?.exit??Fo.exit(Is.exit,o),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Fo.enter(Is.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:o,delay:i})=>{const s={x:t,y:e};return{opacity:0,transition:n?.exit??Fo.exit(Is.exit,i),...o?{...s,transitionEnd:r?.exit}:{transitionEnd:{...s,...r?.exit}}}}},v4={initial:"initial",animate:"enter",exit:"exit",variants:qq},Yq=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,className:s,offsetX:u=0,offsetY:c=8,transition:d,transitionEnd:f,delay:h,...m}=t,g=r?o&&r:!0,b=o||r?"enter":"exit",w={offsetX:u,offsetY:c,reverse:i,transition:d,transitionEnd:f,delay:h};return v(na,{custom:w,children:g&&X.createElement(go.div,{ref:n,className:wf("chakra-offset-slide",s),custom:w,...v4,animate:b,...m})})});Yq.displayName="SlideFade";var Sf=(...e)=>e.filter(Boolean).join(" ");function Xq(){return!1}var hm=e=>{const{condition:t,message:n}=e;t&&Xq()&&console.warn(n)};function c2(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[Qq,mm]=Tt({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[Jq,G3]=Tt({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[eY,k0e,tY,nY]=fE(),UL=ue(function(t,n){const{getButtonProps:r}=G3(),o=r(t,n),i=mm(),s={display:"flex",alignItems:"center",width:"100%",outline:0,...i.button};return X.createElement(oe.button,{...o,className:Sf("chakra-accordion__button",t.className),__css:s})});UL.displayName="AccordionButton";function rY(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:o,allowToggle:i,...s}=e;aY(e),sY(e);const u=tY(),[c,d]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{d(-1)},[]);const[f,h]=pE({value:r,defaultValue(){return o?n??[]:n??-1},onChange:t});return{index:f,setIndex:h,htmlProps:s,getAccordionItemProps:g=>{let b=!1;return g!==null&&(b=Array.isArray(f)?f.includes(g):f===g),{isOpen:b,onChange:k=>{if(g!==null)if(o&&Array.isArray(f)){const S=k?f.concat(g):f.filter(x=>x!==g);h(S)}else k?h(g):i&&h(-1)}}},focusedIndex:c,setFocusedIndex:d,descendants:u}}var[oY,Z3]=Tt({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function iY(e){const{isDisabled:t,isFocusable:n,id:r,...o}=e,{getAccordionItemProps:i,setFocusedIndex:s}=Z3(),u=C.exports.useRef(null),c=C.exports.useId(),d=r??c,f=`accordion-button-${d}`,h=`accordion-panel-${d}`;lY(e);const{register:m,index:g,descendants:b}=nY({disabled:t&&!n}),{isOpen:w,onChange:k}=i(g===-1?null:g);uY({isOpen:w,isDisabled:t});const S=()=>{k?.(!0)},x=()=>{k?.(!1)},_=C.exports.useCallback(()=>{k?.(!w),s(g)},[g,s,w,k]),L=C.exports.useCallback(F=>{const W={ArrowDown:()=>{const J=b.nextEnabled(g);J?.node.focus()},ArrowUp:()=>{const J=b.prevEnabled(g);J?.node.focus()},Home:()=>{const J=b.firstEnabled();J?.node.focus()},End:()=>{const J=b.lastEnabled();J?.node.focus()}}[F.key];W&&(F.preventDefault(),W(F))},[b,g]),T=C.exports.useCallback(()=>{s(g)},[s,g]),R=C.exports.useCallback(function(G={},W=null){return{...G,type:"button",ref:Yt(m,u,W),id:f,disabled:!!t,"aria-expanded":!!w,"aria-controls":h,onClick:c2(G.onClick,_),onFocus:c2(G.onFocus,T),onKeyDown:c2(G.onKeyDown,L)}},[f,t,w,_,T,L,h,m]),N=C.exports.useCallback(function(G={},W=null){return{...G,ref:W,role:"region",id:h,"aria-labelledby":f,hidden:!w}},[f,w,h]);return{isOpen:w,isDisabled:t,isFocusable:n,onOpen:S,onClose:x,getButtonProps:R,getPanelProps:N,htmlProps:o}}function aY(e){const t=e.index||e.defaultIndex,n=t==null&&!Array.isArray(t)&&e.allowMultiple;hm({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function sY(e){hm({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function lY(e){hm({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. - `})}function uY(e){hm({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function GL(e){const{isOpen:t,isDisabled:n}=G3(),{reduceMotion:r}=Z3(),o=Sf("chakra-accordion__icon",e.className),i=mm(),s={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...i.icon};return v(Kr,{viewBox:"0 0 24 24","aria-hidden":!0,className:o,__css:s,...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}GL.displayName="AccordionIcon";var ZL=ue(function(t,n){const{children:r,className:o}=t,{htmlProps:i,...s}=iY(t),c={...mm().container,overflowAnchor:"none"},d=C.exports.useMemo(()=>s,[s]);return X.createElement(Jq,{value:d},X.createElement(oe.div,{ref:n,...i,className:Sf("chakra-accordion__item",o),__css:c},typeof r=="function"?r({isExpanded:!!s.isOpen,isDisabled:!!s.isDisabled}):r))});ZL.displayName="AccordionItem";var KL=ue(function(t,n){const{reduceMotion:r}=Z3(),{getPanelProps:o,isOpen:i}=G3(),s=o(t,n),u=Sf("chakra-accordion__panel",t.className),c=mm();r||delete s.hidden;const d=X.createElement(oe.div,{...s,__css:c.panel,className:u});return r?d:v(VL,{in:i,children:d})});KL.displayName="AccordionPanel";var qL=ue(function({children:t,reduceMotion:n,...r},o){const i=dr("Accordion",r),s=vt(r),{htmlProps:u,descendants:c,...d}=rY(s),f=C.exports.useMemo(()=>({...d,reduceMotion:!!n}),[d,n]);return X.createElement(eY,{value:c},X.createElement(oY,{value:f},X.createElement(Qq,{value:i},X.createElement(oe.div,{ref:o,...u,className:Sf("chakra-accordion",r.className),__css:i.root},t))))});qL.displayName="Accordion";var cY=(...e)=>e.filter(Boolean).join(" "),dY=pf({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),gm=ue((e,t)=>{const n=cr("Spinner",e),{label:r="Loading...",thickness:o="2px",speed:i="0.45s",emptyColor:s="transparent",className:u,...c}=vt(e),d=cY("chakra-spinner",u),f={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:o,borderBottomColor:s,borderLeftColor:s,animation:`${dY} ${i} linear infinite`,...n};return X.createElement(oe.div,{ref:t,__css:f,className:d,...c},r&&X.createElement(oe.span,{srOnly:!0},r))});gm.displayName="Spinner";var vm=(...e)=>e.filter(Boolean).join(" ");function fY(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function pY(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function e8(e){return v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[hY,mY]=Tt({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[gY,K3]=Tt({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),YL={info:{icon:pY,colorScheme:"blue"},warning:{icon:e8,colorScheme:"orange"},success:{icon:fY,colorScheme:"green"},error:{icon:e8,colorScheme:"red"},loading:{icon:gm,colorScheme:"blue"}};function vY(e){return YL[e].colorScheme}function yY(e){return YL[e].icon}var XL=ue(function(t,n){const{status:r="info",addRole:o=!0,...i}=vt(t),s=t.colorScheme??vY(r),u=dr("Alert",{...t,colorScheme:s}),c={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...u.container};return X.createElement(hY,{value:{status:r}},X.createElement(gY,{value:u},X.createElement(oe.div,{role:o?"alert":void 0,ref:n,...i,className:vm("chakra-alert",t.className),__css:c})))});XL.displayName="Alert";var QL=ue(function(t,n){const r=K3(),o={display:"inline",...r.description};return X.createElement(oe.div,{ref:n,...t,className:vm("chakra-alert__desc",t.className),__css:o})});QL.displayName="AlertDescription";function JL(e){const{status:t}=mY(),n=yY(t),r=K3(),o=t==="loading"?r.spinner:r.icon;return X.createElement(oe.span,{display:"inherit",...e,className:vm("chakra-alert__icon",e.className),__css:o},e.children||v(n,{h:"100%",w:"100%"}))}JL.displayName="AlertIcon";var eP=ue(function(t,n){const r=K3();return X.createElement(oe.div,{ref:n,...t,className:vm("chakra-alert__title",t.className),__css:r.title})});eP.displayName="AlertTitle";function bY(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xY(e){const{loading:t,src:n,srcSet:r,onLoad:o,onError:i,crossOrigin:s,sizes:u,ignoreFallback:c}=e,[d,f]=C.exports.useState("pending");C.exports.useEffect(()=>{f(n?"loading":"pending")},[n]);const h=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;g();const b=new Image;b.src=n,s&&(b.crossOrigin=s),r&&(b.srcset=r),u&&(b.sizes=u),t&&(b.loading=t),b.onload=w=>{g(),f("loaded"),o?.(w)},b.onerror=w=>{g(),f("failed"),i?.(w)},h.current=b},[n,s,r,u,o,i,t]),g=()=>{h.current&&(h.current.onload=null,h.current.onerror=null,h.current=null)};return ai(()=>{if(!c)return d==="loading"&&m(),()=>{g()}},[d,m,c]),c?"loaded":d}var wY=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",n0=ue(function(t,n){const{htmlWidth:r,htmlHeight:o,alt:i,...s}=t;return v("img",{width:r,height:o,ref:n,alt:i,...s})});n0.displayName="NativeImage";var ym=ue(function(t,n){const{fallbackSrc:r,fallback:o,src:i,srcSet:s,align:u,fit:c,loading:d,ignoreFallback:f,crossOrigin:h,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:g,...b}=t,w=r!==void 0||o!==void 0,k=d!=null||f||!w,S=xY({...t,ignoreFallback:k}),x=wY(S,m),_={ref:n,objectFit:c,objectPosition:u,...k?b:bY(b,["onError","onLoad"])};return x?o||X.createElement(oe.img,{as:n0,className:"chakra-image__placeholder",src:r,..._}):X.createElement(oe.img,{as:n0,src:i,srcSet:s,crossOrigin:h,loading:d,referrerPolicy:g,className:"chakra-image",..._})});ym.displayName="Image";ue((e,t)=>X.createElement(oe.img,{ref:t,as:n0,className:"chakra-image",...e}));var SY=Object.create,tP=Object.defineProperty,CY=Object.getOwnPropertyDescriptor,nP=Object.getOwnPropertyNames,_Y=Object.getPrototypeOf,kY=Object.prototype.hasOwnProperty,rP=(e,t)=>function(){return t||(0,e[nP(e)[0]])((t={exports:{}}).exports,t),t.exports},EY=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of nP(t))!kY.call(e,o)&&o!==n&&tP(e,o,{get:()=>t[o],enumerable:!(r=CY(t,o))||r.enumerable});return e},LY=(e,t,n)=>(n=e!=null?SY(_Y(e)):{},EY(t||!e||!e.__esModule?tP(n,"default",{value:e,enumerable:!0}):n,e)),PY=rP({"../../node_modules/.pnpm/react@18.2.0/node_modules/react/cjs/react.production.min.js"(e){var t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),u=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),m=Symbol.iterator;function g(O){return O===null||typeof O!="object"?null:(O=m&&O[m]||O["@@iterator"],typeof O=="function"?O:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},w=Object.assign,k={};function S(O,H,se){this.props=O,this.context=H,this.refs=k,this.updater=se||b}S.prototype.isReactComponent={},S.prototype.setState=function(O,H){if(typeof O!="object"&&typeof O!="function"&&O!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,O,H,"setState")},S.prototype.forceUpdate=function(O){this.updater.enqueueForceUpdate(this,O,"forceUpdate")};function x(){}x.prototype=S.prototype;function _(O,H,se){this.props=O,this.context=H,this.refs=k,this.updater=se||b}var L=_.prototype=new x;L.constructor=_,w(L,S.prototype),L.isPureReactComponent=!0;var T=Array.isArray,R=Object.prototype.hasOwnProperty,N={current:null},F={key:!0,ref:!0,__self:!0,__source:!0};function G(O,H,se){var de,ye={},be=null,Pe=null;if(H!=null)for(de in H.ref!==void 0&&(Pe=H.ref),H.key!==void 0&&(be=""+H.key),H)R.call(H,de)&&!F.hasOwnProperty(de)&&(ye[de]=H[de]);var fe=arguments.length-2;if(fe===1)ye.children=se;else if(1(0,t8.isValidElement)(t))}/** - * @license React - * react.development.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - *//** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var xm=(...e)=>e.filter(Boolean).join(" "),n8=e=>e?"":void 0,[TY,IY]=Tt({strict:!1,name:"ButtonGroupContext"});function y4(e){const{children:t,className:n,...r}=e,o=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,i=xm("chakra-button__icon",n);return X.createElement(oe.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:i},o)}y4.displayName="ButtonIcon";function b4(e){const{label:t,placement:n,spacing:r="0.5rem",children:o=v(gm,{color:"currentColor",width:"1em",height:"1em"}),className:i,__css:s,...u}=e,c=xm("chakra-button__spinner",i),d=n==="start"?"marginEnd":"marginStart",f=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[d]:t?r:0,fontSize:"1em",lineHeight:"normal",...s}),[s,t,d,r]);return X.createElement(oe.div,{className:c,...u,__css:f},o)}b4.displayName="ButtonSpinner";function OY(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(i=>{!i||n(i.tagName==="BUTTON")},[]),type:t?"button":void 0}}var mi=ue((e,t)=>{const n=IY(),r=cr("Button",{...n,...e}),{isDisabled:o=n?.isDisabled,isLoading:i,isActive:s,children:u,leftIcon:c,rightIcon:d,loadingText:f,iconSpacing:h="0.5rem",type:m,spinner:g,spinnerPlacement:b="start",className:w,as:k,...S}=vt(e),x=C.exports.useMemo(()=>{const R={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:R}}},[r,n]),{ref:_,type:L}=OY(k),T={rightIcon:d,leftIcon:c,iconSpacing:h,children:u};return X.createElement(oe.button,{disabled:o||i,ref:GH(t,_),as:k,type:m??L,"data-active":n8(s),"data-loading":n8(i),__css:x,className:xm("chakra-button",w),...S},i&&b==="start"&&v(b4,{className:"chakra-button__spinner--start",label:f,placement:"start",spacing:h,children:g}),i?f||X.createElement(oe.span,{opacity:0},v(r8,{...T})):v(r8,{...T}),i&&b==="end"&&v(b4,{className:"chakra-button__spinner--end",label:f,placement:"end",spacing:h,children:g}))});mi.displayName="Button";function r8(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:o}=e;return q(yn,{children:[t&&v(y4,{marginEnd:o,children:t}),r,n&&v(y4,{marginStart:o,children:n})]})}var MY=ue(function(t,n){const{size:r,colorScheme:o,variant:i,className:s,spacing:u="0.5rem",isAttached:c,isDisabled:d,...f}=t,h=xm("chakra-button__group",s),m=C.exports.useMemo(()=>({size:r,colorScheme:o,variant:i,isDisabled:d}),[r,o,i,d]);let g={display:"inline-flex"};return c?g={...g,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:g={...g,"& > *:not(style) ~ *:not(style)":{marginStart:u}},X.createElement(TY,{value:m},X.createElement(oe.div,{ref:n,role:"group",__css:g,className:h,"data-attached":c?"":void 0,...f}))});MY.displayName="ButtonGroup";var un=ue((e,t)=>{const{icon:n,children:r,isRound:o,"aria-label":i,...s}=e,u=n||r,c=C.exports.isValidElement(u)?C.exports.cloneElement(u,{"aria-hidden":!0,focusable:!1}):null;return v(mi,{padding:"0",borderRadius:o?"full":void 0,ref:t,"aria-label":i,...s,children:c})});un.displayName="IconButton";var Bu=(...e)=>e.filter(Boolean).join(" "),hh=e=>e?"":void 0,d2=e=>e?!0:void 0;function o8(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[RY,oP]=Tt({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[NY,$u]=Tt({strict:!1,name:"FormControlContext"});function DY(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:o,isReadOnly:i,...s}=e,u=C.exports.useId(),c=t||`field-${u}`,d=`${c}-label`,f=`${c}-feedback`,h=`${c}-helptext`,[m,g]=C.exports.useState(!1),[b,w]=C.exports.useState(!1),[k,S]=C.exports.useState(!1),x=C.exports.useCallback((N={},F=null)=>({id:h,...N,ref:Yt(F,G=>{!G||w(!0)})}),[h]),_=C.exports.useCallback((N={},F=null)=>({...N,ref:F,"data-focus":hh(k),"data-disabled":hh(o),"data-invalid":hh(r),"data-readonly":hh(i),id:N.id??d,htmlFor:N.htmlFor??c}),[c,o,k,r,i,d]),L=C.exports.useCallback((N={},F=null)=>({id:f,...N,ref:Yt(F,G=>{!G||g(!0)}),"aria-live":"polite"}),[f]),T=C.exports.useCallback((N={},F=null)=>({...N,...s,ref:F,role:"group"}),[s]),R=C.exports.useCallback((N={},F=null)=>({...N,ref:F,role:"presentation","aria-hidden":!0,children:N.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!i,isDisabled:!!o,isFocused:!!k,onFocus:()=>S(!0),onBlur:()=>S(!1),hasFeedbackText:m,setHasFeedbackText:g,hasHelpText:b,setHasHelpText:w,id:c,labelId:d,feedbackId:f,helpTextId:h,htmlProps:s,getHelpTextProps:x,getErrorMessageProps:L,getRootProps:T,getLabelProps:_,getRequiredIndicatorProps:R}}var ns=ue(function(t,n){const r=dr("Form",t),o=vt(t),{getRootProps:i,htmlProps:s,...u}=DY(o),c=Bu("chakra-form-control",t.className);return X.createElement(NY,{value:u},X.createElement(RY,{value:r},X.createElement(oe.div,{...i({},n),className:c,__css:r.container})))});ns.displayName="FormControl";var zY=ue(function(t,n){const r=$u(),o=oP(),i=Bu("chakra-form__helper-text",t.className);return X.createElement(oe.div,{...r?.getHelpTextProps(t,n),__css:o.helperText,className:i})});zY.displayName="FormHelperText";function q3(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:o,...i}=Y3(e);return{...i,disabled:t,readOnly:r,required:o,"aria-invalid":d2(n),"aria-required":d2(o),"aria-readonly":d2(r)}}function Y3(e){const t=$u(),{id:n,disabled:r,readOnly:o,required:i,isRequired:s,isInvalid:u,isReadOnly:c,isDisabled:d,onFocus:f,onBlur:h,...m}=e,g=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&g.push(t.feedbackId),t?.hasHelpText&&g.push(t.helpTextId),{...m,"aria-describedby":g.join(" ")||void 0,id:n??t?.id,isDisabled:r??d??t?.isDisabled,isReadOnly:o??c??t?.isReadOnly,isRequired:i??s??t?.isRequired,isInvalid:u??t?.isInvalid,onFocus:o8(t?.onFocus,f),onBlur:o8(t?.onBlur,h)}}var[FY,BY]=Tt({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),$Y=ue((e,t)=>{const n=dr("FormError",e),r=vt(e),o=$u();return o?.isInvalid?X.createElement(FY,{value:n},X.createElement(oe.div,{...o?.getErrorMessageProps(r,t),className:Bu("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});$Y.displayName="FormErrorMessage";var VY=ue((e,t)=>{const n=BY(),r=$u();if(!r?.isInvalid)return null;const o=Bu("chakra-form__error-icon",e.className);return v(Kr,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:o,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});VY.displayName="FormErrorIcon";var Gs=ue(function(t,n){const r=cr("FormLabel",t),o=vt(t),{className:i,children:s,requiredIndicator:u=v(iP,{}),optionalIndicator:c=null,...d}=o,f=$u(),h=f?.getLabelProps(d,n)??{ref:n,...d};return X.createElement(oe.label,{...h,className:Bu("chakra-form__label",o.className),__css:{display:"block",textAlign:"start",...r}},s,f?.isRequired?u:c)});Gs.displayName="FormLabel";var iP=ue(function(t,n){const r=$u(),o=oP();if(!r?.isRequired)return null;const i=Bu("chakra-form__required-indicator",t.className);return X.createElement(oe.span,{...r?.getRequiredIndicatorProps(t,n),__css:o.requiredIndicator,className:i})});iP.displayName="RequiredIndicator";function r0(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var X3={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},WY=oe("span",{baseStyle:X3});WY.displayName="VisuallyHidden";var jY=oe("input",{baseStyle:X3});jY.displayName="VisuallyHiddenInput";var i8=!1,wm=null,wu=!1,x4=new Set,HY=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function UY(e){return!(e.metaKey||!HY&&e.altKey||e.ctrlKey)}function Q3(e,t){x4.forEach(n=>n(e,t))}function a8(e){wu=!0,UY(e)&&(wm="keyboard",Q3("keyboard",e))}function Sl(e){wm="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(wu=!0,Q3("pointer",e))}function GY(e){e.target===window||e.target===document||(wu||(wm="keyboard",Q3("keyboard",e)),wu=!1)}function ZY(){wu=!1}function s8(){return wm!=="pointer"}function KY(){if(typeof window>"u"||i8)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){wu=!0,e.apply(this,n)},document.addEventListener("keydown",a8,!0),document.addEventListener("keyup",a8,!0),window.addEventListener("focus",GY,!0),window.addEventListener("blur",ZY,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",Sl,!0),document.addEventListener("pointermove",Sl,!0),document.addEventListener("pointerup",Sl,!0)):(document.addEventListener("mousedown",Sl,!0),document.addEventListener("mousemove",Sl,!0),document.addEventListener("mouseup",Sl,!0)),i8=!0}function qY(e){KY(),e(s8());const t=()=>e(s8());return x4.add(t),()=>{x4.delete(t)}}var[E0e,YY]=Tt({name:"CheckboxGroupContext",strict:!1}),XY=(...e)=>e.filter(Boolean).join(" "),tr=e=>e?"":void 0;function ro(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function QY(...e){return function(n){e.forEach(r=>{r?.(n)})}}function JY(e){const t=go;return"custom"in t&&typeof t.custom=="function"?t.custom(e):t(e)}var aP=JY(oe.svg);function eX(e){return v(aP,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:v("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function tX(e){return v(aP,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:v("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function nX({open:e,children:t}){return v(na,{initial:!1,children:e&&X.createElement(go.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function rX(e){const{isIndeterminate:t,isChecked:n,...r}=e;return v(nX,{open:n||t,children:v(t?tX:eX,{...r})})}function oX(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function sP(e={}){const t=Y3(e),{isDisabled:n,isReadOnly:r,isRequired:o,isInvalid:i,id:s,onBlur:u,onFocus:c,"aria-describedby":d}=t,{defaultChecked:f,isChecked:h,isFocusable:m,onChange:g,isIndeterminate:b,name:w,value:k,tabIndex:S=void 0,"aria-label":x,"aria-labelledby":_,"aria-invalid":L,...T}=e,R=oX(T,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),N=Gn(g),F=Gn(u),G=Gn(c),[W,J]=C.exports.useState(!1),[Ee,he]=C.exports.useState(!1),[me,ce]=C.exports.useState(!1),[ge,ne]=C.exports.useState(!1);C.exports.useEffect(()=>qY(J),[]);const j=C.exports.useRef(null),[Y,K]=C.exports.useState(!0),[O,H]=C.exports.useState(!!f),se=h!==void 0,de=se?h:O,ye=C.exports.useCallback(xe=>{if(r||n){xe.preventDefault();return}se||H(de?xe.target.checked:b?!0:xe.target.checked),N?.(xe)},[r,n,de,se,b,N]);ai(()=>{j.current&&(j.current.indeterminate=Boolean(b))},[b]),r0(()=>{n&&he(!1)},[n,he]),ai(()=>{const xe=j.current;!xe?.form||(xe.form.onreset=()=>{H(!!f)})},[]);const be=n&&!m,Pe=C.exports.useCallback(xe=>{xe.key===" "&&ne(!0)},[ne]),fe=C.exports.useCallback(xe=>{xe.key===" "&&ne(!1)},[ne]);ai(()=>{if(!j.current)return;j.current.checked!==de&&H(j.current.checked)},[j.current]);const _e=C.exports.useCallback((xe={},Ie=null)=>{const tt=ze=>{Ee&&ze.preventDefault(),ne(!0)};return{...xe,ref:Ie,"data-active":tr(ge),"data-hover":tr(me),"data-checked":tr(de),"data-focus":tr(Ee),"data-focus-visible":tr(Ee&&W),"data-indeterminate":tr(b),"data-disabled":tr(n),"data-invalid":tr(i),"data-readonly":tr(r),"aria-hidden":!0,onMouseDown:ro(xe.onMouseDown,tt),onMouseUp:ro(xe.onMouseUp,()=>ne(!1)),onMouseEnter:ro(xe.onMouseEnter,()=>ce(!0)),onMouseLeave:ro(xe.onMouseLeave,()=>ce(!1))}},[ge,de,n,Ee,W,me,b,i,r]),De=C.exports.useCallback((xe={},Ie=null)=>({...R,...xe,ref:Yt(Ie,tt=>{!tt||K(tt.tagName==="LABEL")}),onClick:ro(xe.onClick,()=>{var tt;Y||((tt=j.current)==null||tt.click(),requestAnimationFrame(()=>{var ze;(ze=j.current)==null||ze.focus()}))}),"data-disabled":tr(n),"data-checked":tr(de),"data-invalid":tr(i)}),[R,n,de,i,Y]),st=C.exports.useCallback((xe={},Ie=null)=>({...xe,ref:Yt(j,Ie),type:"checkbox",name:w,value:k,id:s,tabIndex:S,onChange:ro(xe.onChange,ye),onBlur:ro(xe.onBlur,F,()=>he(!1)),onFocus:ro(xe.onFocus,G,()=>he(!0)),onKeyDown:ro(xe.onKeyDown,Pe),onKeyUp:ro(xe.onKeyUp,fe),required:o,checked:de,disabled:be,readOnly:r,"aria-label":x,"aria-labelledby":_,"aria-invalid":L?Boolean(L):i,"aria-describedby":d,"aria-disabled":n,style:X3}),[w,k,s,ye,F,G,Pe,fe,o,de,be,r,x,_,L,i,d,n,S]),It=C.exports.useCallback((xe={},Ie=null)=>({...xe,ref:Ie,onMouseDown:ro(xe.onMouseDown,l8),onTouchStart:ro(xe.onTouchStart,l8),"data-disabled":tr(n),"data-checked":tr(de),"data-invalid":tr(i)}),[de,n,i]);return{state:{isInvalid:i,isFocused:Ee,isChecked:de,isActive:ge,isHovered:me,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:o},getRootProps:De,getCheckboxProps:_e,getInputProps:st,getLabelProps:It,htmlProps:R}}function l8(e){e.preventDefault(),e.stopPropagation()}var iX=oe("span",{baseStyle:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0}}),aX=oe("label",{baseStyle:{cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"}}),sX=ue(function(t,n){const r=YY(),o={...r,...t},i=dr("Checkbox",o),s=vt(t),{spacing:u="0.5rem",className:c,children:d,iconColor:f,iconSize:h,icon:m=v(rX,{}),isChecked:g,isDisabled:b=r?.isDisabled,onChange:w,inputProps:k,...S}=s;let x=g;r?.value&&s.value&&(x=r.value.includes(s.value));let _=w;r?.onChange&&s.value&&(_=QY(r.onChange,w));const{state:L,getInputProps:T,getCheckboxProps:R,getLabelProps:N,getRootProps:F}=sP({...S,isDisabled:b,isChecked:x,onChange:_}),G=C.exports.useMemo(()=>({opacity:L.isChecked||L.isIndeterminate?1:0,transform:L.isChecked||L.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:h,color:f,...i.icon}),[f,h,L.isChecked,L.isIndeterminate,i.icon]),W=C.exports.cloneElement(m,{__css:G,isIndeterminate:L.isIndeterminate,isChecked:L.isChecked});return q(aX,{__css:i.container,className:XY("chakra-checkbox",c),...F(),children:[v("input",{className:"chakra-checkbox__input",...T(k,n)}),v(iX,{__css:i.control,className:"chakra-checkbox__control",...R(),children:W}),d&&X.createElement(oe.span,{className:"chakra-checkbox__label",...N(),__css:{marginStart:u,...i.label}},d)]})});sX.displayName="Checkbox";function lX(e){return v(Kr,{focusable:"false","aria-hidden":!0,...e,children:v("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var Sm=ue(function(t,n){const r=cr("CloseButton",t),{children:o,isDisabled:i,__css:s,...u}=vt(t),c={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return X.createElement(oe.button,{type:"button","aria-label":"Close",ref:n,disabled:i,__css:{...c,...r,...s},...u},o||v(lX,{width:"1em",height:"1em"}))});Sm.displayName="CloseButton";function uX(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function lP(e,t){let n=uX(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function u8(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function cX(e,t,n){return e==null?e:(nr==null?"":f2(r,i,n)??""),m=typeof o<"u",g=m?o:f,b=uP(wa(g),i),w=n??b,k=C.exports.useCallback(W=>{W!==g&&(m||h(W.toString()),d?.(W.toString(),wa(W)))},[d,m,g]),S=C.exports.useCallback(W=>{let J=W;return c&&(J=cX(J,s,u)),lP(J,w)},[w,c,u,s]),x=C.exports.useCallback((W=i)=>{let J;g===""?J=wa(W):J=wa(g)+W,J=S(J),k(J)},[S,i,k,g]),_=C.exports.useCallback((W=i)=>{let J;g===""?J=wa(-W):J=wa(g)-W,J=S(J),k(J)},[S,i,k,g]),L=C.exports.useCallback(()=>{let W;r==null?W="":W=f2(r,i,n)??s,k(W)},[r,n,i,k,s]),T=C.exports.useCallback(W=>{const J=f2(W,i,w)??s;k(J)},[w,i,k,s]),R=wa(g);return{isOutOfRange:R>u||Rv(em,{styles:cP}),pX=()=>v(em,{styles:` - html { - line-height: 1.5; - -webkit-text-size-adjust: 100%; - font-family: system-ui, sans-serif; - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; - -moz-osx-font-smoothing: grayscale; - touch-action: manipulation; - } - - body { - position: relative; - min-height: 100%; - font-feature-settings: 'kern'; - } - - *, - *::before, - *::after { - border-width: 0; - border-style: solid; - box-sizing: border-box; - } - - main { - display: block; - } - - hr { - border-top-width: 1px; - box-sizing: content-box; - height: 0; - overflow: visible; - } - - pre, - code, - kbd, - samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; - font-size: 1em; - } - - a { - background-color: transparent; - color: inherit; - text-decoration: inherit; - } - - abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - } - - b, - strong { - font-weight: bold; - } - - small { - font-size: 80%; - } - - sub, - sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; - } - - sub { - bottom: -0.25em; - } - - sup { - top: -0.5em; - } - - img { - border-style: none; - } - - button, - input, - optgroup, - select, - textarea { - font-family: inherit; - font-size: 100%; - line-height: 1.15; - margin: 0; - } - - button, - input { - overflow: visible; - } - - button, - select { - text-transform: none; - } - - button::-moz-focus-inner, - [type="button"]::-moz-focus-inner, - [type="reset"]::-moz-focus-inner, - [type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; - } - - fieldset { - padding: 0.35em 0.75em 0.625em; - } - - legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - } - - progress { - vertical-align: baseline; - } - - textarea { - overflow: auto; - } - - [type="checkbox"], - [type="radio"] { - box-sizing: border-box; - padding: 0; - } - - [type="number"]::-webkit-inner-spin-button, - [type="number"]::-webkit-outer-spin-button { - -webkit-appearance: none !important; - } - - input[type="number"] { - -moz-appearance: textfield; - } - - [type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; - } - - [type="search"]::-webkit-search-decoration { - -webkit-appearance: none !important; - } - - ::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; - } - - details { - display: block; - } - - summary { - display: list-item; - } - - template { - display: none; - } - - [hidden] { - display: none !important; - } - - body, - blockquote, - dl, - dd, - h1, - h2, - h3, - h4, - h5, - h6, - hr, - figure, - p, - pre { - margin: 0; - } - - button { - background: transparent; - padding: 0; - } - - fieldset { - margin: 0; - padding: 0; - } - - ol, - ul { - margin: 0; - padding: 0; - } - - textarea { - resize: vertical; - } - - button, - [role="button"] { - cursor: pointer; - } - - button::-moz-focus-inner { - border: 0 !important; - } - - table { - border-collapse: collapse; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - font-size: inherit; - font-weight: inherit; - } - - button, - input, - optgroup, - select, - textarea { - padding: 0; - line-height: inherit; - color: inherit; - } - - img, - svg, - video, - canvas, - audio, - iframe, - embed, - object { - display: block; - } - - img, - video { - max-width: 100%; - height: auto; - } - - [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { - outline: none; - box-shadow: none; - } - - select::-ms-expand { - display: none; - } - - ${cP} - `});function w4(e,t,n,r){const o=Gn(n);return C.exports.useEffect(()=>{const i=typeof e=="function"?e():e??document;if(!(!n||!i))return i.addEventListener(t,o,r),()=>{i.removeEventListener(t,o,r)}},[t,e,r,o,n]),()=>{const i=typeof e=="function"?e():e??document;i?.removeEventListener(t,o,r)}}var hX=mf?C.exports.useLayoutEffect:C.exports.useEffect;function S4(e,t=[]){const n=C.exports.useRef(e);return hX(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function J3(e,t,n,r){const o=S4(t);return C.exports.useEffect(()=>{const i=V1(n)??document;if(!!t)return i.addEventListener(e,o,r),()=>{i.removeEventListener(e,o,r)}},[e,n,r,o,t]),()=>{(V1(n)??document).removeEventListener(e,o,r)}}function mX(e){const{isOpen:t,ref:n}=e,[r,o]=C.exports.useState(t),[i,s]=C.exports.useState(!1);return C.exports.useEffect(()=>{i||(o(t),s(!0))},[t,i,r]),J3("animationend",()=>{o(t)},()=>n.current),{present:!(t?!1:!r),onComplete(){var c;const d=Bj(n.current),f=new d.CustomEvent("animationend",{bubbles:!0});(c=n.current)==null||c.dispatchEvent(f)}}}function gX(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function vX(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function o0(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=S4(n),s=S4(t),[u,c]=C.exports.useState(e.defaultIsOpen||!1),[d,f]=gX(r,u),h=vX(o,"disclosure"),m=C.exports.useCallback(()=>{d||c(!1),s?.()},[d,s]),g=C.exports.useCallback(()=>{d||c(!0),i?.()},[d,i]),b=C.exports.useCallback(()=>{(f?m:g)()},[f,g,m]);return{isOpen:!!f,onOpen:g,onClose:m,onToggle:b,isControlled:d,getButtonProps:(w={})=>({...w,"aria-expanded":f,"aria-controls":h,onClick:Qj(w.onClick,b)}),getDisclosureProps:(w={})=>({...w,hidden:!f,id:h})}}var dP=(e,t)=>{const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])};function yX(e){const t=e.current;if(!t)return!1;const n=Wj(t);return!n||x3(t,n)?!1:!!Zj(n)}function bX(e,t){const{shouldFocus:n,visible:r,focusRef:o}=t,i=n&&!r;dP(()=>{if(!i||yX(e))return;const s=o?.current||e.current;s&&W1(s,{nextTick:!0})},[i,e,o])}function xX(e,t,n,r){return J3(vH(t),dH(n,t==="pointerdown"),e,r)}function wX(e){const{ref:t,elements:n,enabled:r}=e,o=bH("Safari");xX(()=>hf(t.current),"pointerdown",s=>{if(!o||!r)return;const u=s.target,d=(n??[t]).some(f=>{const h=tE(f)?f.current:f;return x3(h,u)});!aE(u)&&d&&(s.preventDefault(),W1(u))})}var SX={preventScroll:!0,shouldFocus:!1};function CX(e,t=SX){const{focusRef:n,preventScroll:r,shouldFocus:o,visible:i}=t,s=tE(e)?e.current:e,u=o&&i,c=C.exports.useCallback(()=>{if(!(!s||!u)&&!x3(s,document.activeElement))if(n?.current)W1(n.current,{preventScroll:r,nextTick:!0});else{const d=Xj(s);d.length>0&&W1(d[0],{preventScroll:r,nextTick:!0})}},[u,r,s,n]);dP(()=>{c()},[c]),J3("transitionend",c,s)}function eb(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var tb=ue(function(t,n){const{htmlSize:r,...o}=t,i=dr("Input",o),s=vt(o),u=q3(s),c=Qt("chakra-input",t.className);return X.createElement(oe.input,{size:r,...u,__css:i.field,ref:n,className:c})});tb.displayName="Input";tb.id="Input";var[_X,fP]=Tt({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),kX=ue(function(t,n){const r=dr("Input",t),{children:o,className:i,...s}=vt(t),u=Qt("chakra-input__group",i),c={},d=bm(o),f=r.field;d.forEach(m=>{!r||(f&&m.type.id==="InputLeftElement"&&(c.paddingStart=f.height??f.h),f&&m.type.id==="InputRightElement"&&(c.paddingEnd=f.height??f.h),m.type.id==="InputRightAddon"&&(c.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(c.borderStartRadius=0))});const h=d.map(m=>{var g,b;const w=eb({size:((g=m.props)==null?void 0:g.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,w):C.exports.cloneElement(m,Object.assign(w,c,m.props))});return X.createElement(oe.div,{className:u,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...s},v(_X,{value:r,children:h}))});kX.displayName="InputGroup";var EX={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},LX=oe("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),nb=ue(function(t,n){const{placement:r="left",...o}=t,i=EX[r]??{},s=fP();return v(LX,{ref:n,...o,__css:{...s.addon,...i}})});nb.displayName="InputAddon";var pP=ue(function(t,n){return v(nb,{ref:n,placement:"left",...t,className:Qt("chakra-input__left-addon",t.className)})});pP.displayName="InputLeftAddon";pP.id="InputLeftAddon";var hP=ue(function(t,n){return v(nb,{ref:n,placement:"right",...t,className:Qt("chakra-input__right-addon",t.className)})});hP.displayName="InputRightAddon";hP.id="InputRightAddon";var PX=oe("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),Cm=ue(function(t,n){const{placement:r="left",...o}=t,i=fP(),s=i.field,c={[r==="left"?"insetStart":"insetEnd"]:"0",width:s?.height??s?.h,height:s?.height??s?.h,fontSize:s?.fontSize,...i.element};return v(PX,{ref:n,__css:c,...o})});Cm.id="InputElement";Cm.displayName="InputElement";var mP=ue(function(t,n){const{className:r,...o}=t,i=Qt("chakra-input__left-element",r);return v(Cm,{ref:n,placement:"left",className:i,...o})});mP.id="InputLeftElement";mP.displayName="InputLeftElement";var gP=ue(function(t,n){const{className:r,...o}=t,i=Qt("chakra-input__right-element",r);return v(Cm,{ref:n,placement:"right",className:i,...o})});gP.id="InputRightElement";gP.displayName="InputRightElement";function AX(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function Za(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):AX(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var TX=ue(function(e,t){const{ratio:n=4/3,children:r,className:o,...i}=e,s=C.exports.Children.only(r),u=Qt("chakra-aspect-ratio",o);return X.createElement(oe.div,{ref:t,position:"relative",className:u,_before:{height:0,content:'""',display:"block",paddingBottom:Za(n,c=>`${1/c*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...i},s)});TX.displayName="AspectRatio";var IX=ue(function(t,n){const r=cr("Badge",t),{className:o,...i}=vt(t);return X.createElement(oe.span,{ref:n,className:Qt("chakra-badge",t.className),...i,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});IX.displayName="Badge";var po=oe("div");po.displayName="Box";var vP=ue(function(t,n){const{size:r,centerContent:o=!0,...i}=t;return v(po,{ref:n,boxSize:r,__css:{...o?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...i})});vP.displayName="Square";var OX=ue(function(t,n){const{size:r,...o}=t;return v(vP,{size:r,ref:n,borderRadius:"9999px",...o})});OX.displayName="Circle";var yP=oe("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});yP.displayName="Center";var MX={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};ue(function(t,n){const{axis:r="both",...o}=t;return X.createElement(oe.div,{ref:n,__css:MX[r],...o,position:"absolute"})});var RX=ue(function(t,n){const r=cr("Code",t),{className:o,...i}=vt(t);return X.createElement(oe.code,{ref:n,className:Qt("chakra-code",t.className),...i,__css:{display:"inline-block",...r}})});RX.displayName="Code";var NX=ue(function(t,n){const{className:r,centerContent:o,...i}=vt(t),s=cr("Container",t);return X.createElement(oe.div,{ref:n,className:Qt("chakra-container",r),...i,__css:{...s,...o&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});NX.displayName="Container";var DX=ue(function(t,n){const{borderLeftWidth:r,borderBottomWidth:o,borderTopWidth:i,borderRightWidth:s,borderWidth:u,borderStyle:c,borderColor:d,...f}=cr("Divider",t),{className:h,orientation:m="horizontal",__css:g,...b}=vt(t),w={vertical:{borderLeftWidth:r||s||u||"1px",height:"100%"},horizontal:{borderBottomWidth:o||i||u||"1px",width:"100%"}};return X.createElement(oe.hr,{ref:n,"aria-orientation":m,...b,__css:{...f,border:"0",borderColor:d,borderStyle:c,...w[m],...g},className:Qt("chakra-divider",h)})});DX.displayName="Divider";var Pt=ue(function(t,n){const{direction:r,align:o,justify:i,wrap:s,basis:u,grow:c,shrink:d,...f}=t,h={display:"flex",flexDirection:r,alignItems:o,justifyContent:i,flexWrap:s,flexBasis:u,flexGrow:c,flexShrink:d};return X.createElement(oe.div,{ref:n,__css:h,...f})});Pt.displayName="Flex";var bP=ue(function(t,n){const{templateAreas:r,gap:o,rowGap:i,columnGap:s,column:u,row:c,autoFlow:d,autoRows:f,templateRows:h,autoColumns:m,templateColumns:g,...b}=t,w={display:"grid",gridTemplateAreas:r,gridGap:o,gridRowGap:i,gridColumnGap:s,gridAutoColumns:m,gridColumn:u,gridRow:c,gridAutoFlow:d,gridAutoRows:f,gridTemplateRows:h,gridTemplateColumns:g};return X.createElement(oe.div,{ref:n,__css:w,...b})});bP.displayName="Grid";function c8(e){return Za(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var zX=ue(function(t,n){const{area:r,colSpan:o,colStart:i,colEnd:s,rowEnd:u,rowSpan:c,rowStart:d,...f}=t,h=eb({gridArea:r,gridColumn:c8(o),gridRow:c8(c),gridColumnStart:i,gridColumnEnd:s,gridRowStart:d,gridRowEnd:u});return X.createElement(oe.div,{ref:n,__css:h,...f})});zX.displayName="GridItem";var rb=ue(function(t,n){const r=cr("Heading",t),{className:o,...i}=vt(t);return X.createElement(oe.h2,{ref:n,className:Qt("chakra-heading",t.className),...i,__css:r})});rb.displayName="Heading";ue(function(t,n){const r=cr("Mark",t),o=vt(t);return v(po,{ref:n,...o,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var FX=ue(function(t,n){const r=cr("Kbd",t),{className:o,...i}=vt(t);return X.createElement(oe.kbd,{ref:n,className:Qt("chakra-kbd",o),...i,__css:{fontFamily:"mono",...r}})});FX.displayName="Kbd";var au=ue(function(t,n){const r=cr("Link",t),{className:o,isExternal:i,...s}=vt(t);return X.createElement(oe.a,{target:i?"_blank":void 0,rel:i?"noopener":void 0,ref:n,className:Qt("chakra-link",o),...s,__css:r})});au.displayName="Link";ue(function(t,n){const{isExternal:r,target:o,rel:i,className:s,...u}=t;return X.createElement(oe.a,{...u,ref:n,className:Qt("chakra-linkbox__overlay",s),rel:r?"noopener noreferrer":i,target:r?"_blank":o,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});ue(function(t,n){const{className:r,...o}=t;return X.createElement(oe.div,{ref:n,position:"relative",...o,className:Qt("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[BX,xP]=Tt({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),ob=ue(function(t,n){const r=dr("List",t),{children:o,styleType:i="none",stylePosition:s,spacing:u,...c}=vt(t),d=bm(o),h=u?{["& > *:not(style) ~ *:not(style)"]:{mt:u}}:{};return X.createElement(BX,{value:r},X.createElement(oe.ul,{ref:n,listStyleType:i,listStylePosition:s,role:"list",__css:{...r.container,...h},...c},d))});ob.displayName="List";var $X=ue((e,t)=>{const{as:n,...r}=e;return v(ob,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});$X.displayName="OrderedList";var VX=ue(function(t,n){const{as:r,...o}=t;return v(ob,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...o})});VX.displayName="UnorderedList";var WX=ue(function(t,n){const r=xP();return X.createElement(oe.li,{ref:n,...t,__css:r.item})});WX.displayName="ListItem";var jX=ue(function(t,n){const r=xP();return v(Kr,{ref:n,role:"presentation",...t,__css:r.icon})});jX.displayName="ListIcon";var HX=ue(function(t,n){const{columns:r,spacingX:o,spacingY:i,spacing:s,minChildWidth:u,...c}=t,d=nm(),f=u?GX(u,d):ZX(r);return v(bP,{ref:n,gap:s,columnGap:o,rowGap:i,templateColumns:f,...c})});HX.displayName="SimpleGrid";function UX(e){return typeof e=="number"?`${e}px`:e}function GX(e,t){return Za(e,n=>{const r=NH("sizes",n,UX(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function ZX(e){return Za(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var KX=oe("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});KX.displayName="Spacer";var C4="& > *:not(style) ~ *:not(style)";function qX(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[C4]:Za(n,o=>r[o])}}function YX(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":Za(n,o=>r[o])}}var wP=e=>X.createElement(oe.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});wP.displayName="StackItem";var ib=ue((e,t)=>{const{isInline:n,direction:r,align:o,justify:i,spacing:s="0.5rem",wrap:u,children:c,divider:d,className:f,shouldWrapChildren:h,...m}=e,g=n?"row":r??"column",b=C.exports.useMemo(()=>qX({direction:g,spacing:s}),[g,s]),w=C.exports.useMemo(()=>YX({spacing:s,direction:g}),[s,g]),k=!!d,S=!h&&!k,x=bm(c),_=S?x:x.map((T,R)=>{const N=typeof T.key<"u"?T.key:R,F=R+1===x.length,W=h?v(wP,{children:T},N):T;if(!k)return W;const J=C.exports.cloneElement(d,{__css:w}),Ee=F?null:J;return q(C.exports.Fragment,{children:[W,Ee]},N)}),L=Qt("chakra-stack",f);return X.createElement(oe.div,{ref:t,display:"flex",alignItems:o,justifyContent:i,flexDirection:b.flexDirection,flexWrap:u,className:L,__css:k?{}:{[C4]:b[C4]},...m},_)});ib.displayName="Stack";var XX=ue((e,t)=>v(ib,{align:"center",...e,direction:"row",ref:t}));XX.displayName="HStack";var QX=ue((e,t)=>v(ib,{align:"center",...e,direction:"column",ref:t}));QX.displayName="VStack";var zr=ue(function(t,n){const r=cr("Text",t),{className:o,align:i,decoration:s,casing:u,...c}=vt(t),d=eb({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return X.createElement(oe.p,{ref:n,className:Qt("chakra-text",t.className),...d,...c,__css:r})});zr.displayName="Text";function d8(e){return typeof e=="number"?`${e}px`:e}var JX=ue(function(t,n){const{spacing:r="0.5rem",spacingX:o,spacingY:i,children:s,justify:u,direction:c,align:d,className:f,shouldWrapChildren:h,...m}=t,g=C.exports.useMemo(()=>{const{spacingX:w=r,spacingY:k=r}={spacingX:o,spacingY:i};return{"--chakra-wrap-x-spacing":S=>Za(w,x=>d8($y("space",x)(S))),"--chakra-wrap-y-spacing":S=>Za(k,x=>d8($y("space",x)(S))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:u,alignItems:d,flexDirection:c,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,o,i,u,d,c]),b=h?C.exports.Children.map(s,(w,k)=>v(SP,{children:w},k)):s;return X.createElement(oe.div,{ref:n,className:Qt("chakra-wrap",f),overflow:"hidden",...m},X.createElement(oe.ul,{className:"chakra-wrap__list",__css:g},b))});JX.displayName="Wrap";var SP=ue(function(t,n){const{className:r,...o}=t;return X.createElement(oe.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:Qt("chakra-wrap__listitem",r),...o})});SP.displayName="WrapItem";var eQ={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},CP=eQ,Cl=()=>{},tQ={document:CP,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:Cl,removeEventListener:Cl,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:Cl,removeListener:Cl}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:Cl,setInterval:()=>0,clearInterval:Cl},nQ=tQ,rQ={window:nQ,document:CP},_P=typeof window<"u"?{window,document}:rQ,kP=C.exports.createContext(_P);kP.displayName="EnvironmentContext";function EP(e){const{children:t,environment:n}=e,[r,o]=C.exports.useState(null),[i,s]=C.exports.useState(!1);C.exports.useEffect(()=>s(!0),[]);const u=C.exports.useMemo(()=>{if(n)return n;const c=r?.ownerDocument,d=r?.ownerDocument.defaultView;return c?{document:c,window:d}:_P},[r,n]);return q(kP.Provider,{value:u,children:[t,!n&&i&&v("span",{id:"__chakra_env",hidden:!0,ref:c=>{C.exports.startTransition(()=>{c&&o(c)})}})]})}EP.displayName="EnvironmentProvider";var oQ=e=>e?"":void 0;function iQ(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((o,i,s,u)=>{e.current.set(s,{type:i,el:o,options:u}),o.addEventListener(i,s,u)},[]),r=C.exports.useCallback((o,i,s,u)=>{o.removeEventListener(i,s,u),e.current.delete(s)},[]);return C.exports.useEffect(()=>()=>{t.forEach((o,i)=>{r(o.el,o.type,i,o.options)})},[r,t]),{add:n,remove:r}}function p2(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function aQ(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:o=!0,clickOnSpace:i=!0,onMouseDown:s,onMouseUp:u,onClick:c,onKeyDown:d,onKeyUp:f,tabIndex:h,onMouseOver:m,onMouseLeave:g,...b}=e,[w,k]=C.exports.useState(!0),[S,x]=C.exports.useState(!1),_=iQ(),L=ne=>{!ne||ne.tagName!=="BUTTON"&&k(!1)},T=w?h:h||0,R=n&&!r,N=C.exports.useCallback(ne=>{if(n){ne.stopPropagation(),ne.preventDefault();return}ne.currentTarget.focus(),c?.(ne)},[n,c]),F=C.exports.useCallback(ne=>{S&&p2(ne)&&(ne.preventDefault(),ne.stopPropagation(),x(!1),_.remove(document,"keyup",F,!1))},[S,_]),G=C.exports.useCallback(ne=>{if(d?.(ne),n||ne.defaultPrevented||ne.metaKey||!p2(ne.nativeEvent)||w)return;const j=o&&ne.key==="Enter";i&&ne.key===" "&&(ne.preventDefault(),x(!0)),j&&(ne.preventDefault(),ne.currentTarget.click()),_.add(document,"keyup",F,!1)},[n,w,d,o,i,_,F]),W=C.exports.useCallback(ne=>{if(f?.(ne),n||ne.defaultPrevented||ne.metaKey||!p2(ne.nativeEvent)||w)return;i&&ne.key===" "&&(ne.preventDefault(),x(!1),ne.currentTarget.click())},[i,w,n,f]),J=C.exports.useCallback(ne=>{ne.button===0&&(x(!1),_.remove(document,"mouseup",J,!1))},[_]),Ee=C.exports.useCallback(ne=>{if(ne.button!==0)return;if(n){ne.stopPropagation(),ne.preventDefault();return}w||x(!0),ne.currentTarget.focus({preventScroll:!0}),_.add(document,"mouseup",J,!1),s?.(ne)},[n,w,s,_,J]),he=C.exports.useCallback(ne=>{ne.button===0&&(w||x(!1),u?.(ne))},[u,w]),me=C.exports.useCallback(ne=>{if(n){ne.preventDefault();return}m?.(ne)},[n,m]),ce=C.exports.useCallback(ne=>{S&&(ne.preventDefault(),x(!1)),g?.(ne)},[S,g]),ge=Yt(t,L);return w?{...b,ref:ge,type:"button","aria-disabled":R?void 0:n,disabled:R,onClick:N,onMouseDown:s,onMouseUp:u,onKeyUp:f,onKeyDown:d,onMouseOver:m,onMouseLeave:g}:{...b,ref:ge,role:"button","data-active":oQ(S),"aria-disabled":n?"true":void 0,tabIndex:R?void 0:T,onClick:N,onMouseDown:Ee,onMouseUp:he,onKeyUp:W,onKeyDown:G,onMouseOver:me,onMouseLeave:ce}}function sQ(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function lQ(e){if(!sQ(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}var uQ=e=>e.hasAttribute("tabindex");function cQ(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function LP(e){return e.parentElement&&LP(e.parentElement)?!0:e.hidden}function dQ(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function fQ(e){if(!lQ(e)||LP(e)||cQ(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():dQ(e)?!0:uQ(e)}var pQ=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],hQ=pQ.join(),mQ=e=>e.offsetWidth>0&&e.offsetHeight>0;function gQ(e){const t=Array.from(e.querySelectorAll(hQ));return t.unshift(e),t.filter(n=>fQ(n)&&mQ(n))}var Cr="top",ho="bottom",mo="right",_r="left",ab="auto",Cf=[Cr,ho,mo,_r],Su="start",Gd="end",vQ="clippingParents",PP="viewport",Ic="popper",yQ="reference",f8=Cf.reduce(function(e,t){return e.concat([t+"-"+Su,t+"-"+Gd])},[]),AP=[].concat(Cf,[ab]).reduce(function(e,t){return e.concat([t,t+"-"+Su,t+"-"+Gd])},[]),bQ="beforeRead",xQ="read",wQ="afterRead",SQ="beforeMain",CQ="main",_Q="afterMain",kQ="beforeWrite",EQ="write",LQ="afterWrite",PQ=[bQ,xQ,wQ,SQ,CQ,_Q,kQ,EQ,LQ];function gi(e){return e?(e.nodeName||"").toLowerCase():null}function vo(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function $s(e){var t=vo(e).Element;return e instanceof t||e instanceof Element}function uo(e){var t=vo(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function sb(e){if(typeof ShadowRoot>"u")return!1;var t=vo(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function AQ(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},o=t.attributes[n]||{},i=t.elements[n];!uo(i)||!gi(i)||(Object.assign(i.style,r),Object.keys(o).forEach(function(s){var u=o[s];u===!1?i.removeAttribute(s):i.setAttribute(s,u===!0?"":u)}))})}function TQ(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var o=t.elements[r],i=t.attributes[r]||{},s=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),u=s.reduce(function(c,d){return c[d]="",c},{});!uo(o)||!gi(o)||(Object.assign(o.style,u),Object.keys(i).forEach(function(c){o.removeAttribute(c)}))})}}const IQ={name:"applyStyles",enabled:!0,phase:"write",fn:AQ,effect:TQ,requires:["computeStyles"]};function ci(e){return e.split("-")[0]}var Os=Math.max,i0=Math.min,Cu=Math.round;function _4(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function TP(){return!/^((?!chrome|android).)*safari/i.test(_4())}function _u(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),o=1,i=1;t&&uo(e)&&(o=e.offsetWidth>0&&Cu(r.width)/e.offsetWidth||1,i=e.offsetHeight>0&&Cu(r.height)/e.offsetHeight||1);var s=$s(e)?vo(e):window,u=s.visualViewport,c=!TP()&&n,d=(r.left+(c&&u?u.offsetLeft:0))/o,f=(r.top+(c&&u?u.offsetTop:0))/i,h=r.width/o,m=r.height/i;return{width:h,height:m,top:f,right:d+h,bottom:f+m,left:d,x:d,y:f}}function lb(e){var t=_u(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function IP(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&sb(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function Qi(e){return vo(e).getComputedStyle(e)}function OQ(e){return["table","td","th"].indexOf(gi(e))>=0}function rs(e){return(($s(e)?e.ownerDocument:e.document)||window.document).documentElement}function _m(e){return gi(e)==="html"?e:e.assignedSlot||e.parentNode||(sb(e)?e.host:null)||rs(e)}function p8(e){return!uo(e)||Qi(e).position==="fixed"?null:e.offsetParent}function MQ(e){var t=/firefox/i.test(_4()),n=/Trident/i.test(_4());if(n&&uo(e)){var r=Qi(e);if(r.position==="fixed")return null}var o=_m(e);for(sb(o)&&(o=o.host);uo(o)&&["html","body"].indexOf(gi(o))<0;){var i=Qi(o);if(i.transform!=="none"||i.perspective!=="none"||i.contain==="paint"||["transform","perspective"].indexOf(i.willChange)!==-1||t&&i.willChange==="filter"||t&&i.filter&&i.filter!=="none")return o;o=o.parentNode}return null}function _f(e){for(var t=vo(e),n=p8(e);n&&OQ(n)&&Qi(n).position==="static";)n=p8(n);return n&&(gi(n)==="html"||gi(n)==="body"&&Qi(n).position==="static")?t:n||MQ(e)||t}function ub(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function ud(e,t,n){return Os(e,i0(t,n))}function RQ(e,t,n){var r=ud(e,t,n);return r>n?n:r}function OP(){return{top:0,right:0,bottom:0,left:0}}function MP(e){return Object.assign({},OP(),e)}function RP(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var NQ=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,MP(typeof t!="number"?t:RP(t,Cf))};function DQ(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,s=n.modifiersData.popperOffsets,u=ci(n.placement),c=ub(u),d=[_r,mo].indexOf(u)>=0,f=d?"height":"width";if(!(!i||!s)){var h=NQ(o.padding,n),m=lb(i),g=c==="y"?Cr:_r,b=c==="y"?ho:mo,w=n.rects.reference[f]+n.rects.reference[c]-s[c]-n.rects.popper[f],k=s[c]-n.rects.reference[c],S=_f(i),x=S?c==="y"?S.clientHeight||0:S.clientWidth||0:0,_=w/2-k/2,L=h[g],T=x-m[f]-h[b],R=x/2-m[f]/2+_,N=ud(L,R,T),F=c;n.modifiersData[r]=(t={},t[F]=N,t.centerOffset=N-R,t)}}function zQ(e){var t=e.state,n=e.options,r=n.element,o=r===void 0?"[data-popper-arrow]":r;o!=null&&(typeof o=="string"&&(o=t.elements.popper.querySelector(o),!o)||!IP(t.elements.popper,o)||(t.elements.arrow=o))}const FQ={name:"arrow",enabled:!0,phase:"main",fn:DQ,effect:zQ,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ku(e){return e.split("-")[1]}var BQ={top:"auto",right:"auto",bottom:"auto",left:"auto"};function $Q(e){var t=e.x,n=e.y,r=window,o=r.devicePixelRatio||1;return{x:Cu(t*o)/o||0,y:Cu(n*o)/o||0}}function h8(e){var t,n=e.popper,r=e.popperRect,o=e.placement,i=e.variation,s=e.offsets,u=e.position,c=e.gpuAcceleration,d=e.adaptive,f=e.roundOffsets,h=e.isFixed,m=s.x,g=m===void 0?0:m,b=s.y,w=b===void 0?0:b,k=typeof f=="function"?f({x:g,y:w}):{x:g,y:w};g=k.x,w=k.y;var S=s.hasOwnProperty("x"),x=s.hasOwnProperty("y"),_=_r,L=Cr,T=window;if(d){var R=_f(n),N="clientHeight",F="clientWidth";if(R===vo(n)&&(R=rs(n),Qi(R).position!=="static"&&u==="absolute"&&(N="scrollHeight",F="scrollWidth")),R=R,o===Cr||(o===_r||o===mo)&&i===Gd){L=ho;var G=h&&R===T&&T.visualViewport?T.visualViewport.height:R[N];w-=G-r.height,w*=c?1:-1}if(o===_r||(o===Cr||o===ho)&&i===Gd){_=mo;var W=h&&R===T&&T.visualViewport?T.visualViewport.width:R[F];g-=W-r.width,g*=c?1:-1}}var J=Object.assign({position:u},d&&BQ),Ee=f===!0?$Q({x:g,y:w}):{x:g,y:w};if(g=Ee.x,w=Ee.y,c){var he;return Object.assign({},J,(he={},he[L]=x?"0":"",he[_]=S?"0":"",he.transform=(T.devicePixelRatio||1)<=1?"translate("+g+"px, "+w+"px)":"translate3d("+g+"px, "+w+"px, 0)",he))}return Object.assign({},J,(t={},t[L]=x?w+"px":"",t[_]=S?g+"px":"",t.transform="",t))}function VQ(e){var t=e.state,n=e.options,r=n.gpuAcceleration,o=r===void 0?!0:r,i=n.adaptive,s=i===void 0?!0:i,u=n.roundOffsets,c=u===void 0?!0:u,d={placement:ci(t.placement),variation:ku(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,h8(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:c})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,h8(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:c})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const WQ={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:VQ,data:{}};var mh={passive:!0};function jQ(e){var t=e.state,n=e.instance,r=e.options,o=r.scroll,i=o===void 0?!0:o,s=r.resize,u=s===void 0?!0:s,c=vo(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&d.forEach(function(f){f.addEventListener("scroll",n.update,mh)}),u&&c.addEventListener("resize",n.update,mh),function(){i&&d.forEach(function(f){f.removeEventListener("scroll",n.update,mh)}),u&&c.removeEventListener("resize",n.update,mh)}}const HQ={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:jQ,data:{}};var UQ={left:"right",right:"left",bottom:"top",top:"bottom"};function e1(e){return e.replace(/left|right|bottom|top/g,function(t){return UQ[t]})}var GQ={start:"end",end:"start"};function m8(e){return e.replace(/start|end/g,function(t){return GQ[t]})}function cb(e){var t=vo(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function db(e){return _u(rs(e)).left+cb(e).scrollLeft}function ZQ(e,t){var n=vo(e),r=rs(e),o=n.visualViewport,i=r.clientWidth,s=r.clientHeight,u=0,c=0;if(o){i=o.width,s=o.height;var d=TP();(d||!d&&t==="fixed")&&(u=o.offsetLeft,c=o.offsetTop)}return{width:i,height:s,x:u+db(e),y:c}}function KQ(e){var t,n=rs(e),r=cb(e),o=(t=e.ownerDocument)==null?void 0:t.body,i=Os(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=Os(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),u=-r.scrollLeft+db(e),c=-r.scrollTop;return Qi(o||n).direction==="rtl"&&(u+=Os(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:s,x:u,y:c}}function fb(e){var t=Qi(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function NP(e){return["html","body","#document"].indexOf(gi(e))>=0?e.ownerDocument.body:uo(e)&&fb(e)?e:NP(_m(e))}function cd(e,t){var n;t===void 0&&(t=[]);var r=NP(e),o=r===((n=e.ownerDocument)==null?void 0:n.body),i=vo(r),s=o?[i].concat(i.visualViewport||[],fb(r)?r:[]):r,u=t.concat(s);return o?u:u.concat(cd(_m(s)))}function k4(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function qQ(e,t){var n=_u(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function g8(e,t,n){return t===PP?k4(ZQ(e,n)):$s(t)?qQ(t,n):k4(KQ(rs(e)))}function YQ(e){var t=cd(_m(e)),n=["absolute","fixed"].indexOf(Qi(e).position)>=0,r=n&&uo(e)?_f(e):e;return $s(r)?t.filter(function(o){return $s(o)&&IP(o,r)&&gi(o)!=="body"}):[]}function XQ(e,t,n,r){var o=t==="clippingParents"?YQ(e):[].concat(t),i=[].concat(o,[n]),s=i[0],u=i.reduce(function(c,d){var f=g8(e,d,r);return c.top=Os(f.top,c.top),c.right=i0(f.right,c.right),c.bottom=i0(f.bottom,c.bottom),c.left=Os(f.left,c.left),c},g8(e,s,r));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function DP(e){var t=e.reference,n=e.element,r=e.placement,o=r?ci(r):null,i=r?ku(r):null,s=t.x+t.width/2-n.width/2,u=t.y+t.height/2-n.height/2,c;switch(o){case Cr:c={x:s,y:t.y-n.height};break;case ho:c={x:s,y:t.y+t.height};break;case mo:c={x:t.x+t.width,y:u};break;case _r:c={x:t.x-n.width,y:u};break;default:c={x:t.x,y:t.y}}var d=o?ub(o):null;if(d!=null){var f=d==="y"?"height":"width";switch(i){case Su:c[d]=c[d]-(t[f]/2-n[f]/2);break;case Gd:c[d]=c[d]+(t[f]/2-n[f]/2);break}}return c}function Zd(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=r===void 0?e.placement:r,i=n.strategy,s=i===void 0?e.strategy:i,u=n.boundary,c=u===void 0?vQ:u,d=n.rootBoundary,f=d===void 0?PP:d,h=n.elementContext,m=h===void 0?Ic:h,g=n.altBoundary,b=g===void 0?!1:g,w=n.padding,k=w===void 0?0:w,S=MP(typeof k!="number"?k:RP(k,Cf)),x=m===Ic?yQ:Ic,_=e.rects.popper,L=e.elements[b?x:m],T=XQ($s(L)?L:L.contextElement||rs(e.elements.popper),c,f,s),R=_u(e.elements.reference),N=DP({reference:R,element:_,strategy:"absolute",placement:o}),F=k4(Object.assign({},_,N)),G=m===Ic?F:R,W={top:T.top-G.top+S.top,bottom:G.bottom-T.bottom+S.bottom,left:T.left-G.left+S.left,right:G.right-T.right+S.right},J=e.modifiersData.offset;if(m===Ic&&J){var Ee=J[o];Object.keys(W).forEach(function(he){var me=[mo,ho].indexOf(he)>=0?1:-1,ce=[Cr,ho].indexOf(he)>=0?"y":"x";W[he]+=Ee[ce]*me})}return W}function QQ(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,s=n.padding,u=n.flipVariations,c=n.allowedAutoPlacements,d=c===void 0?AP:c,f=ku(r),h=f?u?f8:f8.filter(function(b){return ku(b)===f}):Cf,m=h.filter(function(b){return d.indexOf(b)>=0});m.length===0&&(m=h);var g=m.reduce(function(b,w){return b[w]=Zd(e,{placement:w,boundary:o,rootBoundary:i,padding:s})[ci(w)],b},{});return Object.keys(g).sort(function(b,w){return g[b]-g[w]})}function JQ(e){if(ci(e)===ab)return[];var t=e1(e);return[m8(e),t,m8(t)]}function eJ(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,u=s===void 0?!0:s,c=n.fallbackPlacements,d=n.padding,f=n.boundary,h=n.rootBoundary,m=n.altBoundary,g=n.flipVariations,b=g===void 0?!0:g,w=n.allowedAutoPlacements,k=t.options.placement,S=ci(k),x=S===k,_=c||(x||!b?[e1(k)]:JQ(k)),L=[k].concat(_).reduce(function(de,ye){return de.concat(ci(ye)===ab?QQ(t,{placement:ye,boundary:f,rootBoundary:h,padding:d,flipVariations:b,allowedAutoPlacements:w}):ye)},[]),T=t.rects.reference,R=t.rects.popper,N=new Map,F=!0,G=L[0],W=0;W=0,ce=me?"width":"height",ge=Zd(t,{placement:J,boundary:f,rootBoundary:h,altBoundary:m,padding:d}),ne=me?he?mo:_r:he?ho:Cr;T[ce]>R[ce]&&(ne=e1(ne));var j=e1(ne),Y=[];if(i&&Y.push(ge[Ee]<=0),u&&Y.push(ge[ne]<=0,ge[j]<=0),Y.every(function(de){return de})){G=J,F=!1;break}N.set(J,Y)}if(F)for(var K=b?3:1,O=function(ye){var be=L.find(function(Pe){var fe=N.get(Pe);if(fe)return fe.slice(0,ye).every(function(_e){return _e})});if(be)return G=be,"break"},H=K;H>0;H--){var se=O(H);if(se==="break")break}t.placement!==G&&(t.modifiersData[r]._skip=!0,t.placement=G,t.reset=!0)}}const tJ={name:"flip",enabled:!0,phase:"main",fn:eJ,requiresIfExists:["offset"],data:{_skip:!1}};function v8(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function y8(e){return[Cr,mo,ho,_r].some(function(t){return e[t]>=0})}function nJ(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,s=Zd(t,{elementContext:"reference"}),u=Zd(t,{altBoundary:!0}),c=v8(s,r),d=v8(u,o,i),f=y8(c),h=y8(d);t.modifiersData[n]={referenceClippingOffsets:c,popperEscapeOffsets:d,isReferenceHidden:f,hasPopperEscaped:h},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":f,"data-popper-escaped":h})}const rJ={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:nJ};function oJ(e,t,n){var r=ci(e),o=[_r,Cr].indexOf(r)>=0?-1:1,i=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,s=i[0],u=i[1];return s=s||0,u=(u||0)*o,[_r,mo].indexOf(r)>=0?{x:u,y:s}:{x:s,y:u}}function iJ(e){var t=e.state,n=e.options,r=e.name,o=n.offset,i=o===void 0?[0,0]:o,s=AP.reduce(function(f,h){return f[h]=oJ(h,t.rects,i),f},{}),u=s[t.placement],c=u.x,d=u.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=c,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=s}const aJ={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:iJ};function sJ(e){var t=e.state,n=e.name;t.modifiersData[n]=DP({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const lJ={name:"popperOffsets",enabled:!0,phase:"read",fn:sJ,data:{}};function uJ(e){return e==="x"?"y":"x"}function cJ(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,u=s===void 0?!1:s,c=n.boundary,d=n.rootBoundary,f=n.altBoundary,h=n.padding,m=n.tether,g=m===void 0?!0:m,b=n.tetherOffset,w=b===void 0?0:b,k=Zd(t,{boundary:c,rootBoundary:d,padding:h,altBoundary:f}),S=ci(t.placement),x=ku(t.placement),_=!x,L=ub(S),T=uJ(L),R=t.modifiersData.popperOffsets,N=t.rects.reference,F=t.rects.popper,G=typeof w=="function"?w(Object.assign({},t.rects,{placement:t.placement})):w,W=typeof G=="number"?{mainAxis:G,altAxis:G}:Object.assign({mainAxis:0,altAxis:0},G),J=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,Ee={x:0,y:0};if(!!R){if(i){var he,me=L==="y"?Cr:_r,ce=L==="y"?ho:mo,ge=L==="y"?"height":"width",ne=R[L],j=ne+k[me],Y=ne-k[ce],K=g?-F[ge]/2:0,O=x===Su?N[ge]:F[ge],H=x===Su?-F[ge]:-N[ge],se=t.elements.arrow,de=g&&se?lb(se):{width:0,height:0},ye=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:OP(),be=ye[me],Pe=ye[ce],fe=ud(0,N[ge],de[ge]),_e=_?N[ge]/2-K-fe-be-W.mainAxis:O-fe-be-W.mainAxis,De=_?-N[ge]/2+K+fe+Pe+W.mainAxis:H+fe+Pe+W.mainAxis,st=t.elements.arrow&&_f(t.elements.arrow),It=st?L==="y"?st.clientTop||0:st.clientLeft||0:0,bn=(he=J?.[L])!=null?he:0,xe=ne+_e-bn-It,Ie=ne+De-bn,tt=ud(g?i0(j,xe):j,ne,g?Os(Y,Ie):Y);R[L]=tt,Ee[L]=tt-ne}if(u){var ze,$t=L==="x"?Cr:_r,xn=L==="x"?ho:mo,lt=R[T],Ct=T==="y"?"height":"width",Jt=lt+k[$t],Gt=lt-k[xn],pe=[Cr,_r].indexOf(S)!==-1,Le=(ze=J?.[T])!=null?ze:0,ft=pe?Jt:lt-N[Ct]-F[Ct]-Le+W.altAxis,ut=pe?lt+N[Ct]+F[Ct]-Le-W.altAxis:Gt,ie=g&&pe?RQ(ft,lt,ut):ud(g?ft:Jt,lt,g?ut:Gt);R[T]=ie,Ee[T]=ie-lt}t.modifiersData[r]=Ee}}const dJ={name:"preventOverflow",enabled:!0,phase:"main",fn:cJ,requiresIfExists:["offset"]};function fJ(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function pJ(e){return e===vo(e)||!uo(e)?cb(e):fJ(e)}function hJ(e){var t=e.getBoundingClientRect(),n=Cu(t.width)/e.offsetWidth||1,r=Cu(t.height)/e.offsetHeight||1;return n!==1||r!==1}function mJ(e,t,n){n===void 0&&(n=!1);var r=uo(t),o=uo(t)&&hJ(t),i=rs(t),s=_u(e,o,n),u={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(r||!r&&!n)&&((gi(t)!=="body"||fb(i))&&(u=pJ(t)),uo(t)?(c=_u(t,!0),c.x+=t.clientLeft,c.y+=t.clientTop):i&&(c.x=db(i))),{x:s.left+u.scrollLeft-c.x,y:s.top+u.scrollTop-c.y,width:s.width,height:s.height}}function gJ(e){var t=new Map,n=new Set,r=[];e.forEach(function(i){t.set(i.name,i)});function o(i){n.add(i.name);var s=[].concat(i.requires||[],i.requiresIfExists||[]);s.forEach(function(u){if(!n.has(u)){var c=t.get(u);c&&o(c)}}),r.push(i)}return e.forEach(function(i){n.has(i.name)||o(i)}),r}function vJ(e){var t=gJ(e);return PQ.reduce(function(n,r){return n.concat(t.filter(function(o){return o.phase===r}))},[])}function yJ(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function bJ(e){var t=e.reduce(function(n,r){var o=n[r.name];return n[r.name]=o?Object.assign({},o,r,{options:Object.assign({},o.options,r.options),data:Object.assign({},o.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var b8={placement:"bottom",modifiers:[],strategy:"absolute"};function x8(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),cn={arrowShadowColor:_l("--popper-arrow-shadow-color"),arrowSize:_l("--popper-arrow-size","8px"),arrowSizeHalf:_l("--popper-arrow-size-half"),arrowBg:_l("--popper-arrow-bg"),transformOrigin:_l("--popper-transform-origin"),arrowOffset:_l("--popper-arrow-offset")};function CJ(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var _J={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},kJ=e=>_J[e],w8={scroll:!0,resize:!0};function EJ(e){let t;return typeof e=="object"?t={enabled:!0,options:{...w8,...e}}:t={enabled:e,options:w8},t}var LJ={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},PJ={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{S8(e)},effect:({state:e})=>()=>{S8(e)}},S8=e=>{e.elements.popper.style.setProperty(cn.transformOrigin.var,kJ(e.placement))},AJ={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{TJ(e)}},TJ=e=>{var t;if(!e.placement)return;const n=IJ(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:cn.arrowSize.varRef,height:cn.arrowSize.varRef,zIndex:-1});const r={[cn.arrowSizeHalf.var]:`calc(${cn.arrowSize.varRef} / 2)`,[cn.arrowOffset.var]:`calc(${cn.arrowSizeHalf.varRef} * -1)`};for(const o in r)e.elements.arrow.style.setProperty(o,r[o])}},IJ=e=>{if(e.startsWith("top"))return{property:"bottom",value:cn.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:cn.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:cn.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:cn.arrowOffset.varRef}},OJ={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{C8(e)},effect:({state:e})=>()=>{C8(e)}},C8=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:cn.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:CJ(e.placement)})},MJ={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},RJ={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function NJ(e,t="ltr"){var n;const r=((n=MJ[e])==null?void 0:n[t])||e;return t==="ltr"?r:RJ[e]??r}function zP(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:o="absolute",arrowPadding:i=8,eventListeners:s=!0,offset:u,gutter:c=8,flip:d=!0,boundary:f="clippingParents",preventOverflow:h=!0,matchWidth:m,direction:g="ltr"}=e,b=C.exports.useRef(null),w=C.exports.useRef(null),k=C.exports.useRef(null),S=NJ(r,g),x=C.exports.useRef(()=>{}),_=C.exports.useCallback(()=>{var W;!t||!b.current||!w.current||((W=x.current)==null||W.call(x),k.current=SJ(b.current,w.current,{placement:S,modifiers:[OJ,AJ,PJ,{...LJ,enabled:!!m},{name:"eventListeners",...EJ(s)},{name:"arrow",options:{padding:i}},{name:"offset",options:{offset:u??[0,c]}},{name:"flip",enabled:!!d,options:{padding:8}},{name:"preventOverflow",enabled:!!h,options:{boundary:f}},...n??[]],strategy:o}),k.current.forceUpdate(),x.current=k.current.destroy)},[S,t,n,m,s,i,u,c,d,h,f,o]);C.exports.useEffect(()=>()=>{var W;!b.current&&!w.current&&((W=k.current)==null||W.destroy(),k.current=null)},[]);const L=C.exports.useCallback(W=>{b.current=W,_()},[_]),T=C.exports.useCallback((W={},J=null)=>({...W,ref:Yt(L,J)}),[L]),R=C.exports.useCallback(W=>{w.current=W,_()},[_]),N=C.exports.useCallback((W={},J=null)=>({...W,ref:Yt(R,J),style:{...W.style,position:o,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[o,R,m]),F=C.exports.useCallback((W={},J=null)=>{const{size:Ee,shadowColor:he,bg:me,style:ce,...ge}=W;return{...ge,ref:J,"data-popper-arrow":"",style:DJ(W)}},[]),G=C.exports.useCallback((W={},J=null)=>({...W,ref:J,"data-popper-arrow-inner":""}),[]);return{update(){var W;(W=k.current)==null||W.update()},forceUpdate(){var W;(W=k.current)==null||W.forceUpdate()},transformOrigin:cn.transformOrigin.varRef,referenceRef:L,popperRef:R,getPopperProps:N,getArrowProps:F,getArrowInnerProps:G,getReferenceProps:T}}function DJ(e){const{size:t,shadowColor:n,bg:r,style:o}=e,i={...o,position:"absolute"};return t&&(i["--popper-arrow-size"]=t),n&&(i["--popper-arrow-shadow-color"]=n),r&&(i["--popper-arrow-bg"]=r),i}function FP(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=Gn(n),s=Gn(t),[u,c]=C.exports.useState(e.defaultIsOpen||!1),d=r!==void 0?r:u,f=r!==void 0,h=o??`disclosure-${C.exports.useId()}`,m=C.exports.useCallback(()=>{f||c(!1),s?.()},[f,s]),g=C.exports.useCallback(()=>{f||c(!0),i?.()},[f,i]),b=C.exports.useCallback(()=>{d?m():g()},[d,g,m]);function w(S={}){return{...S,"aria-expanded":d,"aria-controls":h,onClick(x){var _;(_=S.onClick)==null||_.call(S,x),b()}}}function k(S={}){return{...S,hidden:!d,id:h}}return{isOpen:d,onOpen:g,onClose:m,onToggle:b,isControlled:f,getButtonProps:w,getDisclosureProps:k}}function BP(e){const{wasSelected:t,enabled:n,isSelected:r,mode:o="unmount"}=e;return!!(!n||r||o==="keepMounted"&&t)}var[zJ,FJ]=Tt({strict:!1,name:"PortalManagerContext"});function $P(e){const{children:t,zIndex:n}=e;return v(zJ,{value:{zIndex:n},children:t})}$P.displayName="PortalManager";var[VP,BJ]=Tt({strict:!1,name:"PortalContext"}),pb="chakra-portal",$J=".chakra-portal",VJ=e=>v("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),WJ=e=>{const{appendToParentPortal:t,children:n}=e,[r,o]=C.exports.useState(null),i=C.exports.useRef(null),[,s]=C.exports.useState({});C.exports.useEffect(()=>s({}),[]);const u=BJ(),c=FJ();ai(()=>{if(!r)return;const f=r.ownerDocument,h=t?u??f.body:f.body;if(!h)return;i.current=f.createElement("div"),i.current.className=pb,h.appendChild(i.current),s({});const m=i.current;return()=>{h.contains(m)&&h.removeChild(m)}},[r]);const d=c?.zIndex?v(VJ,{zIndex:c?.zIndex,children:n}):n;return i.current?Iu.exports.createPortal(v(VP,{value:i.current,children:d}),i.current):v("span",{ref:f=>{f&&o(f)}})},jJ=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,o=n.current,i=o??(typeof window<"u"?document.body:void 0),s=C.exports.useMemo(()=>{const c=o?.ownerDocument.createElement("div");return c&&(c.className=pb),c},[o]),[,u]=C.exports.useState({});return ai(()=>u({}),[]),ai(()=>{if(!(!s||!i))return i.appendChild(s),()=>{i.removeChild(s)}},[s,i]),i&&s?Iu.exports.createPortal(v(VP,{value:r?s:null,children:t}),s):null};function Zs(e){const{containerRef:t,...n}=e;return t?v(jJ,{containerRef:t,...n}):v(WJ,{...n})}Zs.defaultProps={appendToParentPortal:!0};Zs.className=pb;Zs.selector=$J;Zs.displayName="Portal";var HJ=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},kl=new WeakMap,gh=new WeakMap,vh={},h2=0,UJ=function(e,t,n,r){var o=Array.isArray(e)?e:[e];vh[n]||(vh[n]=new WeakMap);var i=vh[n],s=[],u=new Set,c=new Set(o),d=function(h){!h||u.has(h)||(u.add(h),d(h.parentNode))};o.forEach(d);var f=function(h){!h||c.has(h)||Array.prototype.forEach.call(h.children,function(m){if(u.has(m))f(m);else{var g=m.getAttribute(r),b=g!==null&&g!=="false",w=(kl.get(m)||0)+1,k=(i.get(m)||0)+1;kl.set(m,w),i.set(m,k),s.push(m),w===1&&b&&gh.set(m,!0),k===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return f(t),u.clear(),h2++,function(){s.forEach(function(h){var m=kl.get(h)-1,g=i.get(h)-1;kl.set(h,m),i.set(h,g),m||(gh.has(h)||h.removeAttribute(r),gh.delete(h)),g||h.removeAttribute(n)}),h2--,h2||(kl=new WeakMap,kl=new WeakMap,gh=new WeakMap,vh={})}},GJ=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=t||HJ(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live]"))),UJ(r,o,n,"aria-hidden")):function(){return null}};function ZJ(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var wt={exports:{}},KJ="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",qJ=KJ,YJ=qJ;function WP(){}function jP(){}jP.resetWarningCache=WP;var XJ=function(){function e(r,o,i,s,u,c){if(c!==YJ){var d=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw d.name="Invariant Violation",d}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:jP,resetWarningCache:WP};return n.PropTypes=n,n};wt.exports=XJ();var E4="data-focus-lock",HP="data-focus-lock-disabled",QJ="data-no-focus-lock",JJ="data-autofocus-inside",eee="data-no-autofocus";function tee(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function nee(e,t){var n=C.exports.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}function UP(e,t){return nee(t||null,function(n){return e.forEach(function(r){return tee(r,n)})})}var m2={width:"1px",height:"0px",padding:0,overflow:"hidden",position:"fixed",top:"1px",left:"1px"};function GP(e){return e}function ZP(e,t){t===void 0&&(t=GP);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(u){return u!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(u){return i(u)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var u=n;n=[],u.forEach(i),s=n}var c=function(){var f=s;s=[],f.forEach(i)},d=function(){return Promise.resolve().then(c)};d(),n={push:function(f){s.push(f),d()},filter:function(f){return s=s.filter(f),n}}}};return o}function hb(e,t){return t===void 0&&(t=GP),ZP(e,t)}function KP(e){e===void 0&&(e={});var t=ZP(null);return t.options=ti({async:!0,ssr:!1},e),t}var qP=function(e){var t=e.sideCar,n=lm(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return v(r,{...ti({},n)})};qP.isSideCarExport=!0;function ree(e,t){return e.useMedium(t),qP}var YP=hb({},function(e){var t=e.target,n=e.currentTarget;return{target:t,currentTarget:n}}),XP=hb(),oee=hb(),iee=KP({async:!0}),aee=[],mb=C.exports.forwardRef(function(t,n){var r,o=C.exports.useState(),i=o[0],s=o[1],u=C.exports.useRef(),c=C.exports.useRef(!1),d=C.exports.useRef(null),f=t.children,h=t.disabled,m=t.noFocusGuards,g=t.persistentFocus,b=t.crossFrame,w=t.autoFocus;t.allowTextSelection;var k=t.group,S=t.className,x=t.whiteList,_=t.hasPositiveIndices,L=t.shards,T=L===void 0?aee:L,R=t.as,N=R===void 0?"div":R,F=t.lockProps,G=F===void 0?{}:F,W=t.sideCar,J=t.returnFocus,Ee=t.focusOptions,he=t.onActivation,me=t.onDeactivation,ce=C.exports.useState({}),ge=ce[0],ne=C.exports.useCallback(function(){d.current=d.current||document&&document.activeElement,u.current&&he&&he(u.current),c.current=!0},[he]),j=C.exports.useCallback(function(){c.current=!1,me&&me(u.current)},[me]);C.exports.useEffect(function(){h||(d.current=null)},[]);var Y=C.exports.useCallback(function(Pe){var fe=d.current;if(fe&&fe.focus){var _e=typeof J=="function"?J(fe):J;if(_e){var De=typeof _e=="object"?_e:void 0;d.current=null,Pe?Promise.resolve().then(function(){return fe.focus(De)}):fe.focus(De)}}},[J]),K=C.exports.useCallback(function(Pe){c.current&&YP.useMedium(Pe)},[]),O=XP.useMedium,H=C.exports.useCallback(function(Pe){u.current!==Pe&&(u.current=Pe,s(Pe))},[]),se=Nd((r={},r[HP]=h&&"disabled",r[E4]=k,r),G),de=m!==!0,ye=de&&m!=="tail",be=UP([n,H]);return q(yn,{children:[de&&[v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:m2},"guard-first"),_?v("div",{"data-focus-guard":!0,tabIndex:h?-1:1,style:m2},"guard-nearest"):null],!h&&v(W,{id:ge,sideCar:iee,observed:i,disabled:h,persistentFocus:g,crossFrame:b,autoFocus:w,whiteList:x,shards:T,onActivation:ne,onDeactivation:j,returnFocus:Y,focusOptions:Ee}),v(N,{ref:be,...se,className:S,onBlur:O,onFocus:K,children:f}),ye&&v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:m2})]})});mb.propTypes={};mb.defaultProps={children:void 0,disabled:!1,returnFocus:!1,focusOptions:void 0,noFocusGuards:!1,autoFocus:!0,persistentFocus:!1,crossFrame:!0,hasPositiveIndices:void 0,allowTextSelection:void 0,group:void 0,className:void 0,whiteList:void 0,shards:void 0,as:"div",lockProps:{},onActivation:void 0,onDeactivation:void 0};const QP=mb;function L4(e,t){return L4=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,o){return r.__proto__=o,r},L4(e,t)}function see(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,L4(e,t)}function JP(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function lee(e,t){function n(r){return r.displayName||r.name||"Component"}return function(o){var i=[],s;function u(){s=e(i.map(function(d){return d.props})),t(s)}var c=function(d){see(f,d);function f(){return d.apply(this,arguments)||this}f.peek=function(){return s};var h=f.prototype;return h.componentDidMount=function(){i.push(this),u()},h.componentDidUpdate=function(){u()},h.componentWillUnmount=function(){var g=i.indexOf(this);i.splice(g,1),u()},h.render=function(){return v(o,{...this.props})},f}(C.exports.PureComponent);return JP(c,"displayName","SideEffect("+n(o)+")"),c}}var yi=function(e){for(var t=Array(e.length),n=0;n=0}).sort(gee)},vee=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],vb=vee.join(","),yee="".concat(vb,", [data-focus-guard]"),lA=function(e,t){var n;return yi(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,o){return r.concat(o.matches(t?yee:vb)?[o]:[],lA(o))},[])},yb=function(e,t){return e.reduce(function(n,r){return n.concat(lA(r,t),r.parentNode?yi(r.parentNode.querySelectorAll(vb)).filter(function(o){return o===r}):[])},[])},bee=function(e){var t=e.querySelectorAll("[".concat(JJ,"]"));return yi(t).map(function(n){return yb([n])}).reduce(function(n,r){return n.concat(r)},[])},bb=function(e,t){return yi(e).filter(function(n){return nA(t,n)}).filter(function(n){return pee(n)})},_8=function(e,t){return t===void 0&&(t=new Map),yi(e).filter(function(n){return rA(t,n)})},A4=function(e,t,n){return sA(bb(yb(e,n),t),!0,n)},k8=function(e,t){return sA(bb(yb(e),t),!1)},xee=function(e,t){return bb(bee(e),t)},Kd=function(e,t){return(e.shadowRoot?Kd(e.shadowRoot,t):Object.getPrototypeOf(e).contains.call(e,t))||yi(e.children).some(function(n){return Kd(n,t)})},wee=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(o),(i&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(s,u){return!t.has(u)})},uA=function(e){return e.parentNode?uA(e.parentNode):e},xb=function(e){var t=P4(e);return t.filter(Boolean).reduce(function(n,r){var o=r.getAttribute(E4);return n.push.apply(n,o?wee(yi(uA(r).querySelectorAll("[".concat(E4,'="').concat(o,'"]:not([').concat(HP,'="disabled"])')))):[r]),n},[])},cA=function(e){return e.activeElement?e.activeElement.shadowRoot?cA(e.activeElement.shadowRoot):e.activeElement:void 0},wb=function(){return document.activeElement?document.activeElement.shadowRoot?cA(document.activeElement.shadowRoot):document.activeElement:void 0},See=function(e){return e===document.activeElement},Cee=function(e){return Boolean(yi(e.querySelectorAll("iframe")).some(function(t){return See(t)}))},dA=function(e){var t=document&&wb();return!t||t.dataset&&t.dataset.focusGuard?!1:xb(e).some(function(n){return Kd(n,t)||Cee(n)})},_ee=function(){var e=document&&wb();return e?yi(document.querySelectorAll("[".concat(QJ,"]"))).some(function(t){return Kd(t,e)}):!1},kee=function(e,t){return t.filter(aA).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},Sb=function(e,t){return aA(e)&&e.name?kee(e,t):e},Eee=function(e){var t=new Set;return e.forEach(function(n){return t.add(Sb(n,e))}),e.filter(function(n){return t.has(n)})},E8=function(e){return e[0]&&e.length>1?Sb(e[0],e):e[0]},L8=function(e,t){return e.length>1?e.indexOf(Sb(e[t],e)):t},fA="NEW_FOCUS",Lee=function(e,t,n,r){var o=e.length,i=e[0],s=e[o-1],u=gb(n);if(!(n&&e.indexOf(n)>=0)){var c=n!==void 0?t.indexOf(n):-1,d=r?t.indexOf(r):c,f=r?e.indexOf(r):-1,h=c-d,m=t.indexOf(i),g=t.indexOf(s),b=Eee(t),w=n!==void 0?b.indexOf(n):-1,k=w-(r?b.indexOf(r):c),S=L8(e,0),x=L8(e,o-1);if(c===-1||f===-1)return fA;if(!h&&f>=0)return f;if(c<=m&&u&&Math.abs(h)>1)return x;if(c>=g&&u&&Math.abs(h)>1)return S;if(h&&Math.abs(k)>1)return f;if(c<=m)return x;if(c>g)return S;if(h)return Math.abs(h)>1?f:(o+f+h)%o}},T4=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&T4(e.parentNode.host||e.parentNode,t),t},g2=function(e,t){for(var n=T4(e),r=T4(t),o=0;o=0)return i}return!1},pA=function(e,t,n){var r=P4(e),o=P4(t),i=r[0],s=!1;return o.filter(Boolean).forEach(function(u){s=g2(s||u,u)||s,n.filter(Boolean).forEach(function(c){var d=g2(i,c);d&&(!s||Kd(d,s)?s=d:s=g2(d,s))})}),s},Pee=function(e,t){return e.reduce(function(n,r){return n.concat(xee(r,t))},[])},Aee=function(e){return function(t){var n;return t.autofocus||!!(!((n=oA(t))===null||n===void 0)&&n.autofocus)||e.indexOf(t)>=0}},Tee=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(mee)},Iee=function(e,t){var n=document&&wb(),r=xb(e).filter(a0),o=pA(n||e,e,r),i=new Map,s=k8(r,i),u=A4(r,i).filter(function(g){var b=g.node;return a0(b)});if(!(!u[0]&&(u=s,!u[0]))){var c=k8([o],i).map(function(g){var b=g.node;return b}),d=Tee(c,u),f=d.map(function(g){var b=g.node;return b}),h=Lee(f,c,n,t);if(h===fA){var m=_8(s.map(function(g){var b=g.node;return b})).filter(Aee(Pee(r,i)));return{node:m&&m.length?E8(m):E8(_8(f))}}return h===void 0?h:d[h]}},Oee=function(e){var t=xb(e).filter(a0),n=pA(e,e,t),r=new Map,o=A4([n],r,!0),i=A4(t,r).filter(function(s){var u=s.node;return a0(u)}).map(function(s){var u=s.node;return u});return o.map(function(s){var u=s.node,c=s.index;return{node:u,index:c,lockItem:i.indexOf(u)>=0,guard:gb(u)}})},Mee=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},v2=0,y2=!1,Ree=function(e,t,n){n===void 0&&(n={});var r=Iee(e,t);if(!y2&&r){if(v2>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),y2=!0,setTimeout(function(){y2=!1},1);return}v2++,Mee(r.node,n.focusOptions),v2--}};const hA=Ree;function mA(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var Nee=function(){return document&&document.activeElement===document.body},Dee=function(){return Nee()||_ee()},su=null,ql=null,lu=null,qd=!1,zee=function(){return!0},Fee=function(t){return(su.whiteList||zee)(t)},Bee=function(t,n){lu={observerNode:t,portaledElement:n}},$ee=function(t){return lu&&lu.portaledElement===t};function P8(e,t,n,r){var o=null,i=e;do{var s=r[i];if(s.guard)s.node.dataset.focusAutoGuard&&(o=s);else if(s.lockItem){if(i!==e)return;o=null}else break}while((i+=n)!==t);o&&(o.node.tabIndex=0)}var Vee=function(t){return t&&"current"in t?t.current:t},Wee=function(t){return t?Boolean(qd):qd==="meanwhile"},jee=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},Hee=function(t,n){return n.some(function(r){return jee(t,r,r)})},s0=function(){var t=!1;if(su){var n=su,r=n.observed,o=n.persistentFocus,i=n.autoFocus,s=n.shards,u=n.crossFrame,c=n.focusOptions,d=r||lu&&lu.portaledElement,f=document&&document.activeElement;if(d){var h=[d].concat(s.map(Vee).filter(Boolean));if((!f||Fee(f))&&(o||Wee(u)||!Dee()||!ql&&i)&&(d&&!(dA(h)||f&&Hee(f,h)||$ee(f))&&(document&&!ql&&f&&!i?(f.blur&&f.blur(),document.body.focus()):(t=hA(h,ql,{focusOptions:c}),lu={})),qd=!1,ql=document&&document.activeElement),document){var m=document&&document.activeElement,g=Oee(h),b=g.map(function(w){var k=w.node;return k}).indexOf(m);b>-1&&(g.filter(function(w){var k=w.guard,S=w.node;return k&&S.dataset.focusAutoGuard}).forEach(function(w){var k=w.node;return k.removeAttribute("tabIndex")}),P8(b,g.length,1,g),P8(b,-1,-1,g))}}}return t},gA=function(t){s0()&&t&&(t.stopPropagation(),t.preventDefault())},Cb=function(){return mA(s0)},Uee=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||Bee(r,n)},Gee=function(){return null},vA=function(){qd="just",setTimeout(function(){qd="meanwhile"},0)},Zee=function(){document.addEventListener("focusin",gA),document.addEventListener("focusout",Cb),window.addEventListener("blur",vA)},Kee=function(){document.removeEventListener("focusin",gA),document.removeEventListener("focusout",Cb),window.removeEventListener("blur",vA)};function qee(e){return e.filter(function(t){var n=t.disabled;return!n})}function Yee(e){var t=e.slice(-1)[0];t&&!su&&Zee();var n=su,r=n&&t&&t.id===n.id;su=t,n&&!r&&(n.onDeactivation(),e.filter(function(o){var i=o.id;return i===n.id}).length||n.returnFocus(!t)),t?(ql=null,(!r||n.observed!==t.observed)&&t.onActivation(),s0(),mA(s0)):(Kee(),ql=null)}YP.assignSyncMedium(Uee);XP.assignMedium(Cb);oee.assignMedium(function(e){return e({moveFocusInside:hA,focusInside:dA})});const Xee=lee(qee,Yee)(Gee);var yA=C.exports.forwardRef(function(t,n){return v(QP,{sideCar:Xee,ref:n,...t})}),bA=QP.propTypes||{};bA.sideCar;ZJ(bA,["sideCar"]);yA.propTypes={};const Qee=yA;var xA=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:o,children:i,isDisabled:s,autoFocus:u,persistentFocus:c,lockFocusAcrossFrames:d}=e,f=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&gQ(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),h=C.exports.useCallback(()=>{var g;(g=n?.current)==null||g.focus()},[n]);return v(Qee,{crossFrame:d,persistentFocus:c,autoFocus:u,disabled:s,onActivation:f,onDeactivation:h,returnFocus:o&&!n,children:i})};xA.displayName="FocusLock";var t1="right-scroll-bar-position",n1="width-before-scroll-bar",Jee="with-scroll-bars-hidden",ete="--removed-body-scroll-bar-size",wA=KP(),b2=function(){},km=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:b2,onWheelCapture:b2,onTouchMoveCapture:b2}),o=r[0],i=r[1],s=e.forwardProps,u=e.children,c=e.className,d=e.removeScrollBar,f=e.enabled,h=e.shards,m=e.sideCar,g=e.noIsolation,b=e.inert,w=e.allowPinchZoom,k=e.as,S=k===void 0?"div":k,x=lm(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),_=m,L=UP([n,t]),T=ti(ti({},x),o);return q(yn,{children:[f&&v(_,{sideCar:wA,removeScrollBar:d,shards:h,noIsolation:g,inert:b,setCallbacks:i,allowPinchZoom:!!w,lockRef:n}),s?C.exports.cloneElement(C.exports.Children.only(u),ti(ti({},T),{ref:L})):v(S,{...ti({},T,{className:c,ref:L}),children:u})]})});km.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};km.classNames={fullWidth:n1,zeroRight:t1};var tte=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function nte(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=tte();return t&&e.setAttribute("nonce",t),e}function rte(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function ote(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var ite=function(){var e=0,t=null;return{add:function(n){e==0&&(t=nte())&&(rte(t,n),ote(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},ate=function(){var e=ite();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},SA=function(){var e=ate(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},ste={left:0,top:0,right:0,gap:0},x2=function(e){return parseInt(e||"",10)||0},lte=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],o=t[e==="padding"?"paddingRight":"marginRight"];return[x2(n),x2(r),x2(o)]},ute=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return ste;var t=lte(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},cte=SA(),dte=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,u=e.gap;return n===void 0&&(n="margin"),` - .`.concat(Jee,` { - overflow: hidden `).concat(r,`; - padding-right: `).concat(u,"px ").concat(r,`; - } - body { - overflow: hidden `).concat(r,`; - overscroll-behavior: contain; - `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` - padding-left: `.concat(o,`px; - padding-top: `).concat(i,`px; - padding-right: `).concat(s,`px; - margin-left:0; - margin-top:0; - margin-right: `).concat(u,"px ").concat(r,`; - `),n==="padding"&&"padding-right: ".concat(u,"px ").concat(r,";")].filter(Boolean).join(""),` - } - - .`).concat(t1,` { - right: `).concat(u,"px ").concat(r,`; - } - - .`).concat(n1,` { - margin-right: `).concat(u,"px ").concat(r,`; - } - - .`).concat(t1," .").concat(t1,` { - right: 0 `).concat(r,`; - } - - .`).concat(n1," .").concat(n1,` { - margin-right: 0 `).concat(r,`; - } - - body { - `).concat(ete,": ").concat(u,`px; - } -`)},fte=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r,i=C.exports.useMemo(function(){return ute(o)},[o]);return v(cte,{styles:dte(i,!t,o,n?"":"!important")})},I4=!1;if(typeof window<"u")try{var yh=Object.defineProperty({},"passive",{get:function(){return I4=!0,!0}});window.addEventListener("test",yh,yh),window.removeEventListener("test",yh,yh)}catch{I4=!1}var El=I4?{passive:!1}:!1,pte=function(e){return e.tagName==="TEXTAREA"},CA=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!pte(e)&&n[t]==="visible")},hte=function(e){return CA(e,"overflowY")},mte=function(e){return CA(e,"overflowX")},A8=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=_A(e,n);if(r){var o=kA(e,n),i=o[1],s=o[2];if(i>s)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},gte=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},vte=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},_A=function(e,t){return e==="v"?hte(t):mte(t)},kA=function(e,t){return e==="v"?gte(t):vte(t)},yte=function(e,t){return e==="h"&&t==="rtl"?-1:1},bte=function(e,t,n,r,o){var i=yte(e,window.getComputedStyle(t).direction),s=i*r,u=n.target,c=t.contains(u),d=!1,f=s>0,h=0,m=0;do{var g=kA(e,u),b=g[0],w=g[1],k=g[2],S=w-k-i*b;(b||S)&&_A(e,u)&&(h+=S,m+=b),u=u.parentNode}while(!c&&u!==document.body||c&&(t.contains(u)||t===u));return(f&&(o&&h===0||!o&&s>h)||!f&&(o&&m===0||!o&&-s>m))&&(d=!0),d},bh=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},T8=function(e){return[e.deltaX,e.deltaY]},I8=function(e){return e&&"current"in e?e.current:e},xte=function(e,t){return e[0]===t[0]&&e[1]===t[1]},wte=function(e){return` - .block-interactivity-`.concat(e,` {pointer-events: none;} - .allow-interactivity-`).concat(e,` {pointer-events: all;} -`)},Ste=0,Ll=[];function Cte(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),o=C.exports.useState(Ste++)[0],i=C.exports.useState(function(){return SA()})[0],s=C.exports.useRef(e);C.exports.useEffect(function(){s.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var w=e4([e.lockRef.current],(e.shards||[]).map(I8),!0).filter(Boolean);return w.forEach(function(k){return k.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),w.forEach(function(k){return k.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var u=C.exports.useCallback(function(w,k){if("touches"in w&&w.touches.length===2)return!s.current.allowPinchZoom;var S=bh(w),x=n.current,_="deltaX"in w?w.deltaX:x[0]-S[0],L="deltaY"in w?w.deltaY:x[1]-S[1],T,R=w.target,N=Math.abs(_)>Math.abs(L)?"h":"v";if("touches"in w&&N==="h"&&R.type==="range")return!1;var F=A8(N,R);if(!F)return!0;if(F?T=N:(T=N==="v"?"h":"v",F=A8(N,R)),!F)return!1;if(!r.current&&"changedTouches"in w&&(_||L)&&(r.current=T),!T)return!0;var G=r.current||T;return bte(G,k,w,G==="h"?_:L,!0)},[]),c=C.exports.useCallback(function(w){var k=w;if(!(!Ll.length||Ll[Ll.length-1]!==i)){var S="deltaY"in k?T8(k):bh(k),x=t.current.filter(function(T){return T.name===k.type&&T.target===k.target&&xte(T.delta,S)})[0];if(x&&x.should){k.cancelable&&k.preventDefault();return}if(!x){var _=(s.current.shards||[]).map(I8).filter(Boolean).filter(function(T){return T.contains(k.target)}),L=_.length>0?u(k,_[0]):!s.current.noIsolation;L&&k.cancelable&&k.preventDefault()}}},[]),d=C.exports.useCallback(function(w,k,S,x){var _={name:w,delta:k,target:S,should:x};t.current.push(_),setTimeout(function(){t.current=t.current.filter(function(L){return L!==_})},1)},[]),f=C.exports.useCallback(function(w){n.current=bh(w),r.current=void 0},[]),h=C.exports.useCallback(function(w){d(w.type,T8(w),w.target,u(w,e.lockRef.current))},[]),m=C.exports.useCallback(function(w){d(w.type,bh(w),w.target,u(w,e.lockRef.current))},[]);C.exports.useEffect(function(){return Ll.push(i),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:m}),document.addEventListener("wheel",c,El),document.addEventListener("touchmove",c,El),document.addEventListener("touchstart",f,El),function(){Ll=Ll.filter(function(w){return w!==i}),document.removeEventListener("wheel",c,El),document.removeEventListener("touchmove",c,El),document.removeEventListener("touchstart",f,El)}},[]);var g=e.removeScrollBar,b=e.inert;return q(yn,{children:[b?v(i,{styles:wte(o)}):null,g?v(fte,{gapMode:"margin"}):null]})}const _te=ree(wA,Cte);var EA=C.exports.forwardRef(function(e,t){return v(km,{...ti({},e,{ref:t,sideCar:_te})})});EA.classNames=km.classNames;const kte=EA;var Ks=(...e)=>e.filter(Boolean).join(" ");function Vc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Ete=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},O4=new Ete;function Lte(e,t){C.exports.useEffect(()=>(t&&O4.add(e),()=>{O4.remove(e)}),[t,e])}function Pte(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:o=!0,closeOnEsc:i=!0,useInert:s=!0,onOverlayClick:u,onEsc:c}=e,d=C.exports.useRef(null),f=C.exports.useRef(null),[h,m,g]=Tte(r,"chakra-modal","chakra-modal--header","chakra-modal--body");Ate(d,t&&s),Lte(d,t);const b=C.exports.useRef(null),w=C.exports.useCallback(F=>{b.current=F.target},[]),k=C.exports.useCallback(F=>{F.key==="Escape"&&(F.stopPropagation(),i&&n?.(),c?.())},[i,n,c]),[S,x]=C.exports.useState(!1),[_,L]=C.exports.useState(!1),T=C.exports.useCallback((F={},G=null)=>({role:"dialog",...F,ref:Yt(G,d),id:h,tabIndex:-1,"aria-modal":!0,"aria-labelledby":S?m:void 0,"aria-describedby":_?g:void 0,onClick:Vc(F.onClick,W=>W.stopPropagation())}),[g,_,h,m,S]),R=C.exports.useCallback(F=>{F.stopPropagation(),b.current===F.target&&(!O4.isTopModal(d)||(o&&n?.(),u?.()))},[n,o,u]),N=C.exports.useCallback((F={},G=null)=>({...F,ref:Yt(G,f),onClick:Vc(F.onClick,R),onKeyDown:Vc(F.onKeyDown,k),onMouseDown:Vc(F.onMouseDown,w)}),[k,w,R]);return{isOpen:t,onClose:n,headerId:m,bodyId:g,setBodyMounted:L,setHeaderMounted:x,dialogRef:d,overlayRef:f,getDialogProps:T,getDialogContainerProps:N}}function Ate(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return GJ(e.current)},[t,e,n])}function Tte(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(o=>`${o}-${r}`),[r,t])}var[Ite,qs]=Tt({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Ote,Ka]=Tt({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),Eu=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:u,blockScrollOnMount:c,allowPinchZoom:d,preserveScrollBarGap:f,motionPreset:h,lockFocusAcrossFrames:m,onCloseComplete:g}=e,b=dr("Modal",e),k={...Pte(e),autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:u,blockScrollOnMount:c,allowPinchZoom:d,preserveScrollBarGap:f,motionPreset:h,lockFocusAcrossFrames:m};return v(Ote,{value:k,children:v(Ite,{value:b,children:v(na,{onExitComplete:g,children:k.isOpen&&v(Zs,{...t,children:n})})})})};Eu.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};Eu.displayName="Modal";var l0=ue((e,t)=>{const{className:n,...r}=e,{bodyId:o,setBodyMounted:i}=Ka();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=Ks("chakra-modal__body",n),u=qs();return X.createElement(oe.div,{ref:t,className:s,id:o,...r,__css:u.body})});l0.displayName="ModalBody";var _b=ue((e,t)=>{const{onClick:n,className:r,...o}=e,{onClose:i}=Ka(),s=Ks("chakra-modal__close-btn",r),u=qs();return v(Sm,{ref:t,__css:u.closeButton,className:s,onClick:Vc(n,c=>{c.stopPropagation(),i()}),...o})});_b.displayName="ModalCloseButton";function LA(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:o,blockScrollOnMount:i,allowPinchZoom:s,finalFocusRef:u,returnFocusOnClose:c,preserveScrollBarGap:d,lockFocusAcrossFrames:f}=Ka(),[h,m]=F3();return C.exports.useEffect(()=>{!h&&m&&setTimeout(m)},[h,m]),v(xA,{autoFocus:t,isDisabled:!n,initialFocusRef:o,finalFocusRef:u,restoreFocus:c,contentRef:r,lockFocusAcrossFrames:f,children:v(kte,{removeScrollBar:!d,allowPinchZoom:s,enabled:i,forwardProps:!0,children:e.children})})}var Mte={slideInBottom:{...v4,custom:{offsetY:16,reverse:!0}},slideInRight:{...v4,custom:{offsetX:16,reverse:!0}},scale:{...jL,custom:{initialScale:.95,reverse:!0}},none:{}},Rte=oe(go.section),PA=C.exports.forwardRef((e,t)=>{const{preset:n,...r}=e,o=Mte[n];return v(Rte,{ref:t,...o,...r})});PA.displayName="ModalTransition";var Yd=ue((e,t)=>{const{className:n,children:r,containerProps:o,...i}=e,{getDialogProps:s,getDialogContainerProps:u}=Ka(),c=s(i,t),d=u(o),f=Ks("chakra-modal__content",n),h=qs(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh","@supports(height: -webkit-fill-available)":{height:"-webkit-fill-available"},position:"fixed",left:0,top:0,...h.dialogContainer},{motionPreset:b}=Ka();return X.createElement(LA,null,X.createElement(oe.div,{...d,className:"chakra-modal__content-container",tabIndex:-1,__css:g},v(PA,{preset:b,className:f,...c,__css:m,children:r})))});Yd.displayName="ModalContent";var kb=ue((e,t)=>{const{className:n,...r}=e,o=Ks("chakra-modal__footer",n),i=qs(),s={display:"flex",alignItems:"center",justifyContent:"flex-end",...i.footer};return X.createElement(oe.footer,{ref:t,...r,__css:s,className:o})});kb.displayName="ModalFooter";var Eb=ue((e,t)=>{const{className:n,...r}=e,{headerId:o,setHeaderMounted:i}=Ka();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=Ks("chakra-modal__header",n),u=qs(),c={flex:0,...u.header};return X.createElement(oe.header,{ref:t,className:s,id:o,...r,__css:c})});Eb.displayName="ModalHeader";var Nte=oe(go.div),Xd=ue((e,t)=>{const{className:n,transition:r,...o}=e,i=Ks("chakra-modal__overlay",n),s=qs(),u={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...s.overlay},{motionPreset:c}=Ka();return v(Nte,{...c==="none"?{}:WL,__css:u,ref:t,className:i,...o})});Xd.displayName="ModalOverlay";function Dte(e){const{leastDestructiveRef:t,...n}=e;return v(Eu,{...n,initialFocusRef:t})}var zte=ue((e,t)=>v(Yd,{ref:t,role:"alertdialog",...e})),[L0e,Fte]=Tt(),Bte=oe(HL),$te=ue((e,t)=>{const{className:n,children:r,...o}=e,{getDialogProps:i,getDialogContainerProps:s,isOpen:u}=Ka(),c=i(o,t),d=s(),f=Ks("chakra-modal__content",n),h=qs(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh",position:"fixed",left:0,top:0,...h.dialogContainer},{placement:b}=Fte();return X.createElement(oe.div,{...d,className:"chakra-modal__content-container",__css:g},v(LA,{children:v(Bte,{direction:b,in:u,className:f,...c,__css:m,children:r})}))});$te.displayName="DrawerContent";function Vte(e,t){const n=Gn(e);C.exports.useEffect(()=>{let r=null;const o=()=>n();return t!==null&&(r=window.setInterval(o,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var AA=(...e)=>e.filter(Boolean).join(" "),w2=e=>e?!0:void 0;function Go(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var Wte=e=>v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),jte=e=>v(Kr,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function O8(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const o=e.current.ownerDocument.defaultView??window,i=Array.isArray(t)?t:[t],s=new o.MutationObserver(u=>{for(const c of u)c.type==="attributes"&&c.attributeName&&i.includes(c.attributeName)&&n(c)});return s.observe(e.current,{attributes:!0,attributeFilter:i}),()=>s.disconnect()})}var Hte=50,M8=300;function Ute(e,t){const[n,r]=C.exports.useState(!1),[o,i]=C.exports.useState(null),[s,u]=C.exports.useState(!0),c=C.exports.useRef(null),d=()=>clearTimeout(c.current);Vte(()=>{o==="increment"&&e(),o==="decrement"&&t()},n?Hte:null);const f=C.exports.useCallback(()=>{s&&e(),c.current=setTimeout(()=>{u(!1),r(!0),i("increment")},M8)},[e,s]),h=C.exports.useCallback(()=>{s&&t(),c.current=setTimeout(()=>{u(!1),r(!0),i("decrement")},M8)},[t,s]),m=C.exports.useCallback(()=>{u(!0),r(!1),d()},[]);return C.exports.useEffect(()=>()=>d(),[]),{up:f,down:h,stop:m,isSpinning:n}}var Gte=/^[Ee0-9+\-.]$/;function Zte(e){return Gte.test(e)}function Kte(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function qte(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:o=Number.MIN_SAFE_INTEGER,max:i=Number.MAX_SAFE_INTEGER,step:s=1,isReadOnly:u,isDisabled:c,isRequired:d,isInvalid:f,pattern:h="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:g,id:b,onChange:w,precision:k,name:S,"aria-describedby":x,"aria-label":_,"aria-labelledby":L,onFocus:T,onBlur:R,onInvalid:N,getAriaValueText:F,isValidCharacter:G,format:W,parse:J,...Ee}=e,he=Gn(T),me=Gn(R),ce=Gn(N),ge=Gn(G??Zte),ne=Gn(F),j=dX(e),{update:Y,increment:K,decrement:O}=j,[H,se]=C.exports.useState(!1),de=!(u||c),ye=C.exports.useRef(null),be=C.exports.useRef(null),Pe=C.exports.useRef(null),fe=C.exports.useRef(null),_e=C.exports.useCallback(ie=>ie.split("").filter(ge).join(""),[ge]),De=C.exports.useCallback(ie=>J?.(ie)??ie,[J]),st=C.exports.useCallback(ie=>(W?.(ie)??ie).toString(),[W]);r0(()=>{(j.valueAsNumber>i||j.valueAsNumber{if(!ye.current)return;if(ye.current.value!=j.value){const Ge=De(ye.current.value);j.setValue(_e(Ge))}},[De,_e]);const It=C.exports.useCallback((ie=s)=>{de&&K(ie)},[K,de,s]),bn=C.exports.useCallback((ie=s)=>{de&&O(ie)},[O,de,s]),xe=Ute(It,bn);O8(Pe,"disabled",xe.stop,xe.isSpinning),O8(fe,"disabled",xe.stop,xe.isSpinning);const Ie=C.exports.useCallback(ie=>{if(ie.nativeEvent.isComposing)return;const Et=De(ie.currentTarget.value);Y(_e(Et)),be.current={start:ie.currentTarget.selectionStart,end:ie.currentTarget.selectionEnd}},[Y,_e,De]),tt=C.exports.useCallback(ie=>{var Ge;he?.(ie),be.current&&(ie.target.selectionStart=be.current.start??((Ge=ie.currentTarget.value)==null?void 0:Ge.length),ie.currentTarget.selectionEnd=be.current.end??ie.currentTarget.selectionStart)},[he]),ze=C.exports.useCallback(ie=>{if(ie.nativeEvent.isComposing)return;Kte(ie,ge)||ie.preventDefault();const Ge=$t(ie)*s,Et=ie.key,Fn={ArrowUp:()=>It(Ge),ArrowDown:()=>bn(Ge),Home:()=>Y(o),End:()=>Y(i)}[Et];Fn&&(ie.preventDefault(),Fn(ie))},[ge,s,It,bn,Y,o,i]),$t=ie=>{let Ge=1;return(ie.metaKey||ie.ctrlKey)&&(Ge=.1),ie.shiftKey&&(Ge=10),Ge},xn=C.exports.useMemo(()=>{const ie=ne?.(j.value);if(ie!=null)return ie;const Ge=j.value.toString();return Ge||void 0},[j.value,ne]),lt=C.exports.useCallback(()=>{let ie=j.value;ie!==""&&(j.valueAsNumberi&&(ie=i),j.cast(ie))},[j,i,o]),Ct=C.exports.useCallback(()=>{se(!1),n&<()},[n,se,lt]),Jt=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var ie;(ie=ye.current)==null||ie.focus()})},[t]),Gt=C.exports.useCallback(ie=>{ie.preventDefault(),xe.up(),Jt()},[Jt,xe]),pe=C.exports.useCallback(ie=>{ie.preventDefault(),xe.down(),Jt()},[Jt,xe]);w4(()=>ye.current,"wheel",ie=>{var Ge;const En=(((Ge=ye.current)==null?void 0:Ge.ownerDocument)??document).activeElement===ye.current;if(!g||!En)return;ie.preventDefault();const Fn=$t(ie)*s,Lr=Math.sign(ie.deltaY);Lr===-1?It(Fn):Lr===1&&bn(Fn)},{passive:!1});const Le=C.exports.useCallback((ie={},Ge=null)=>{const Et=c||r&&j.isAtMax;return{...ie,ref:Yt(Ge,Pe),role:"button",tabIndex:-1,onPointerDown:Go(ie.onPointerDown,En=>{Et||Gt(En)}),onPointerLeave:Go(ie.onPointerLeave,xe.stop),onPointerUp:Go(ie.onPointerUp,xe.stop),disabled:Et,"aria-disabled":w2(Et)}},[j.isAtMax,r,Gt,xe.stop,c]),ft=C.exports.useCallback((ie={},Ge=null)=>{const Et=c||r&&j.isAtMin;return{...ie,ref:Yt(Ge,fe),role:"button",tabIndex:-1,onPointerDown:Go(ie.onPointerDown,En=>{Et||pe(En)}),onPointerLeave:Go(ie.onPointerLeave,xe.stop),onPointerUp:Go(ie.onPointerUp,xe.stop),disabled:Et,"aria-disabled":w2(Et)}},[j.isAtMin,r,pe,xe.stop,c]),ut=C.exports.useCallback((ie={},Ge=null)=>({name:S,inputMode:m,type:"text",pattern:h,"aria-labelledby":L,"aria-label":_,"aria-describedby":x,id:b,disabled:c,...ie,readOnly:ie.readOnly??u,"aria-readonly":ie.readOnly??u,"aria-required":ie.required??d,required:ie.required??d,ref:Yt(ye,Ge),value:st(j.value),role:"spinbutton","aria-valuemin":o,"aria-valuemax":i,"aria-valuenow":Number.isNaN(j.valueAsNumber)?void 0:j.valueAsNumber,"aria-invalid":w2(f??j.isOutOfRange),"aria-valuetext":xn,autoComplete:"off",autoCorrect:"off",onChange:Go(ie.onChange,Ie),onKeyDown:Go(ie.onKeyDown,ze),onFocus:Go(ie.onFocus,tt,()=>se(!0)),onBlur:Go(ie.onBlur,me,Ct)}),[S,m,h,L,_,st,x,b,c,d,u,f,j.value,j.valueAsNumber,j.isOutOfRange,o,i,xn,Ie,ze,tt,me,Ct]);return{value:st(j.value),valueAsNumber:j.valueAsNumber,isFocused:H,isDisabled:c,isReadOnly:u,getIncrementButtonProps:Le,getDecrementButtonProps:ft,getInputProps:ut,htmlProps:Ee}}var[Yte,Em]=Tt({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Xte,Lb]=Tt({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),TA=ue(function(t,n){const r=dr("NumberInput",t),o=vt(t),i=Y3(o),{htmlProps:s,...u}=qte(i),c=C.exports.useMemo(()=>u,[u]);return X.createElement(Xte,{value:c},X.createElement(Yte,{value:r},X.createElement(oe.div,{...s,ref:n,className:AA("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});TA.displayName="NumberInput";var Qte=ue(function(t,n){const r=Em();return X.createElement(oe.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});Qte.displayName="NumberInputStepper";var IA=ue(function(t,n){const{getInputProps:r}=Lb(),o=r(t,n),i=Em();return X.createElement(oe.input,{...o,className:AA("chakra-numberinput__field",t.className),__css:{width:"100%",...i.field}})});IA.displayName="NumberInputField";var OA=oe("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),MA=ue(function(t,n){const r=Em(),{getDecrementButtonProps:o}=Lb(),i=o(t,n);return v(OA,{...i,__css:r.stepper,children:t.children??v(Wte,{})})});MA.displayName="NumberDecrementStepper";var RA=ue(function(t,n){const{getIncrementButtonProps:r}=Lb(),o=r(t,n),i=Em();return v(OA,{...o,__css:i.stepper,children:t.children??v(jte,{})})});RA.displayName="NumberIncrementStepper";var kf=(...e)=>e.filter(Boolean).join(" ");function Jte(e,...t){return ene(e)?e(...t):e}var ene=e=>typeof e=="function";function Zo(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function tne(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[nne,Ys]=Tt({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[rne,Ef]=Tt({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),Pl={click:"click",hover:"hover"};function one(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:o,returnFocusOnClose:i=!0,autoFocus:s=!0,arrowSize:u,arrowShadowColor:c,trigger:d=Pl.click,openDelay:f=200,closeDelay:h=200,isLazy:m,lazyBehavior:g="unmount",computePositionOnMount:b,...w}=e,{isOpen:k,onClose:S,onOpen:x,onToggle:_}=FP(e),L=C.exports.useRef(null),T=C.exports.useRef(null),R=C.exports.useRef(null),N=C.exports.useRef(!1),F=C.exports.useRef(!1);k&&(F.current=!0);const[G,W]=C.exports.useState(!1),[J,Ee]=C.exports.useState(!1),he=C.exports.useId(),me=o??he,[ce,ge,ne,j]=["popover-trigger","popover-content","popover-header","popover-body"].map(Ie=>`${Ie}-${me}`),{referenceRef:Y,getArrowProps:K,getPopperProps:O,getArrowInnerProps:H,forceUpdate:se}=zP({...w,enabled:k||!!b}),de=mX({isOpen:k,ref:R});wX({enabled:k,ref:T}),bX(R,{focusRef:T,visible:k,shouldFocus:i&&d===Pl.click}),CX(R,{focusRef:r,visible:k,shouldFocus:s&&d===Pl.click});const ye=BP({wasSelected:F.current,enabled:m,mode:g,isSelected:de.present}),be=C.exports.useCallback((Ie={},tt=null)=>{const ze={...Ie,style:{...Ie.style,transformOrigin:cn.transformOrigin.varRef,[cn.arrowSize.var]:u?`${u}px`:void 0,[cn.arrowShadowColor.var]:c},ref:Yt(R,tt),children:ye?Ie.children:null,id:ge,tabIndex:-1,role:"dialog",onKeyDown:Zo(Ie.onKeyDown,$t=>{n&&$t.key==="Escape"&&S()}),onBlur:Zo(Ie.onBlur,$t=>{const xn=R8($t),lt=S2(R.current,xn),Ct=S2(T.current,xn);k&&t&&(!lt&&!Ct)&&S()}),"aria-labelledby":G?ne:void 0,"aria-describedby":J?j:void 0};return d===Pl.hover&&(ze.role="tooltip",ze.onMouseEnter=Zo(Ie.onMouseEnter,()=>{N.current=!0}),ze.onMouseLeave=Zo(Ie.onMouseLeave,$t=>{$t.nativeEvent.relatedTarget!==null&&(N.current=!1,setTimeout(S,h))})),ze},[ye,ge,G,ne,J,j,d,n,S,k,t,h,c,u]),Pe=C.exports.useCallback((Ie={},tt=null)=>O({...Ie,style:{visibility:k?"visible":"hidden",...Ie.style}},tt),[k,O]),fe=C.exports.useCallback((Ie,tt=null)=>({...Ie,ref:Yt(tt,L,Y)}),[L,Y]),_e=C.exports.useRef(),De=C.exports.useRef(),st=C.exports.useCallback(Ie=>{L.current==null&&Y(Ie)},[Y]),It=C.exports.useCallback((Ie={},tt=null)=>{const ze={...Ie,ref:Yt(T,tt,st),id:ce,"aria-haspopup":"dialog","aria-expanded":k,"aria-controls":ge};return d===Pl.click&&(ze.onClick=Zo(Ie.onClick,_)),d===Pl.hover&&(ze.onFocus=Zo(Ie.onFocus,()=>{_e.current===void 0&&x()}),ze.onBlur=Zo(Ie.onBlur,$t=>{const xn=R8($t),lt=!S2(R.current,xn);k&&t&<&&S()}),ze.onKeyDown=Zo(Ie.onKeyDown,$t=>{$t.key==="Escape"&&S()}),ze.onMouseEnter=Zo(Ie.onMouseEnter,()=>{N.current=!0,_e.current=window.setTimeout(x,f)}),ze.onMouseLeave=Zo(Ie.onMouseLeave,()=>{N.current=!1,_e.current&&(clearTimeout(_e.current),_e.current=void 0),De.current=window.setTimeout(()=>{N.current===!1&&S()},h)})),ze},[ce,k,ge,d,st,_,x,t,S,f,h]);C.exports.useEffect(()=>()=>{_e.current&&clearTimeout(_e.current),De.current&&clearTimeout(De.current)},[]);const bn=C.exports.useCallback((Ie={},tt=null)=>({...Ie,id:ne,ref:Yt(tt,ze=>{W(!!ze)})}),[ne]),xe=C.exports.useCallback((Ie={},tt=null)=>({...Ie,id:j,ref:Yt(tt,ze=>{Ee(!!ze)})}),[j]);return{forceUpdate:se,isOpen:k,onAnimationComplete:de.onComplete,onClose:S,getAnchorProps:fe,getArrowProps:K,getArrowInnerProps:H,getPopoverPositionerProps:Pe,getPopoverProps:be,getTriggerProps:It,getHeaderProps:bn,getBodyProps:xe}}function S2(e,t){return e===t||e?.contains(t)}function R8(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function Pb(e){const t=dr("Popover",e),{children:n,...r}=vt(e),o=nm(),i=one({...r,direction:o.direction});return v(nne,{value:i,children:v(rne,{value:t,children:Jte(n,{isOpen:i.isOpen,onClose:i.onClose,forceUpdate:i.forceUpdate})})})}Pb.displayName="Popover";function Ab(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:o,getArrowInnerProps:i}=Ys(),s=Ef(),u=t??n??r;return X.createElement(oe.div,{...o(),className:"chakra-popover__arrow-positioner"},X.createElement(oe.div,{className:kf("chakra-popover__arrow",e.className),...i(e),__css:{...s.arrow,"--popper-arrow-bg":u?`colors.${u}, ${u}`:void 0}}))}Ab.displayName="PopoverArrow";var ine=ue(function(t,n){const{getBodyProps:r}=Ys(),o=Ef();return X.createElement(oe.div,{...r(t,n),className:kf("chakra-popover__body",t.className),__css:o.body})});ine.displayName="PopoverBody";var ane=ue(function(t,n){const{onClose:r}=Ys(),o=Ef();return v(Sm,{size:"sm",onClick:r,className:kf("chakra-popover__close-btn",t.className),__css:o.closeButton,ref:n,...t})});ane.displayName="PopoverCloseButton";function sne(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var lne={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},une=go(oe.section),Tb=ue(function(t,n){const{isOpen:r}=Ys();return X.createElement(une,{ref:n,variants:sne(t.variants),...t,initial:!1,animate:r?"enter":"exit"})});Tb.defaultProps={variants:lne};Tb.displayName="PopoverTransition";var Ib=ue(function(t,n){const{rootProps:r,...o}=t,{getPopoverProps:i,getPopoverPositionerProps:s,onAnimationComplete:u}=Ys(),c=Ef(),d={position:"relative",display:"flex",flexDirection:"column",...c.content};return X.createElement(oe.div,{...s(r),__css:c.popper,className:"chakra-popover__popper"},v(Tb,{...i(o,n),onAnimationComplete:tne(u,o.onAnimationComplete),className:kf("chakra-popover__content",t.className),__css:d}))});Ib.displayName="PopoverContent";var NA=ue(function(t,n){const{getHeaderProps:r}=Ys(),o=Ef();return X.createElement(oe.header,{...r(t,n),className:kf("chakra-popover__header",t.className),__css:o.header})});NA.displayName="PopoverHeader";function Ob(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=Ys();return C.exports.cloneElement(t,n(t.props,t.ref))}Ob.displayName="PopoverTrigger";function cne(e,t,n){return(e-t)*100/(n-t)}pf({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}});pf({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}});var dne=pf({"0%":{left:"-40%"},"100%":{left:"100%"}}),fne=pf({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function pne(e){const{value:t=0,min:n,max:r,valueText:o,getValueText:i,isIndeterminate:s}=e,u=cne(t,n,r);return{bind:{"data-indeterminate":s?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":s?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof i=="function"?i(t,u):o})(),role:"progressbar"},percent:u,value:t}}var[hne,mne]=Tt({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),gne=e=>{const{min:t,max:n,value:r,isIndeterminate:o,...i}=e,s=pne({value:r,min:t,max:n,isIndeterminate:o}),u=mne(),c={height:"100%",...u.filledTrack};return X.createElement(oe.div,{style:{width:`${s.percent}%`,...i.style},...s.bind,...i,__css:c})},DA=e=>{var t;const{value:n,min:r=0,max:o=100,hasStripe:i,isAnimated:s,children:u,borderRadius:c,isIndeterminate:d,"aria-label":f,"aria-labelledby":h,...m}=vt(e),g=dr("Progress",e),b=c??((t=g.track)==null?void 0:t.borderRadius),w={animation:`${fne} 1s linear infinite`},x={...!d&&i&&s&&w,...d&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${dne} 1s ease infinite normal none running`}},_={overflow:"hidden",position:"relative",...g.track};return X.createElement(oe.div,{borderRadius:b,__css:_,...m},q(hne,{value:g,children:[v(gne,{"aria-label":f,"aria-labelledby":h,min:r,max:o,value:n,isIndeterminate:d,css:x,borderRadius:b}),u]}))};DA.displayName="Progress";var vne=oe("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});vne.displayName="CircularProgressLabel";var yne=(...e)=>e.filter(Boolean).join(" "),bne=e=>e?"":void 0;function xne(e,t){const n={},r={};for(const[o,i]of Object.entries(e))t.includes(o)?n[o]=i:r[o]=i;return[n,r]}var zA=ue(function(t,n){const{children:r,placeholder:o,className:i,...s}=t;return X.createElement(oe.select,{...s,ref:n,className:yne("chakra-select",i)},o&&v("option",{value:"",children:o}),r)});zA.displayName="SelectField";var FA=ue((e,t)=>{var n;const r=dr("Select",e),{rootProps:o,placeholder:i,icon:s,color:u,height:c,h:d,minH:f,minHeight:h,iconColor:m,iconSize:g,...b}=vt(e),[w,k]=xne(b,PW),S=q3(k),x={width:"100%",height:"fit-content",position:"relative",color:u},_={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return X.createElement(oe.div,{className:"chakra-select__wrapper",__css:x,...w,...o},v(zA,{ref:t,height:d??c,minH:f??h,placeholder:i,...S,__css:_,children:e.children}),v(BA,{"data-disabled":bne(S.disabled),...(m||u)&&{color:m||u},__css:r.icon,...g&&{fontSize:g},children:s}))});FA.displayName="Select";var wne=e=>v("svg",{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),Sne=oe("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),BA=e=>{const{children:t=v(wne,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return v(Sne,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};BA.displayName="SelectIcon";var Cne=(...e)=>e.filter(Boolean).join(" "),N8=e=>e?"":void 0,Lm=ue(function(t,n){const r=dr("Switch",t),{spacing:o="0.5rem",children:i,...s}=vt(t),{state:u,getInputProps:c,getCheckboxProps:d,getRootProps:f,getLabelProps:h}=sP(s),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),g=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:o,...r.label}),[o,r.label]);return X.createElement(oe.label,{...f(),className:Cne("chakra-switch",t.className),__css:m},v("input",{className:"chakra-switch__input",...c({},n)}),X.createElement(oe.span,{...d(),className:"chakra-switch__track",__css:g},X.createElement(oe.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":N8(u.isChecked),"data-hover":N8(u.isHovered)})),i&&X.createElement(oe.span,{className:"chakra-switch__label",...h(),__css:b},i))});Lm.displayName="Switch";var Vu=(...e)=>e.filter(Boolean).join(" ");function M4(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[_ne,$A,kne,Ene]=fE();function Lne(e){const{defaultIndex:t,onChange:n,index:r,isManual:o,isLazy:i,lazyBehavior:s="unmount",orientation:u="horizontal",direction:c="ltr",...d}=e,[f,h]=C.exports.useState(t??0),[m,g]=pE({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&h(r)},[r]);const b=kne(),w=C.exports.useId();return{id:`tabs-${e.id??w}`,selectedIndex:m,focusedIndex:f,setSelectedIndex:g,setFocusedIndex:h,isManual:o,isLazy:i,lazyBehavior:s,orientation:u,descendants:b,direction:c,htmlProps:d}}var[Pne,Lf]=Tt({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function Ane(e){const{focusedIndex:t,orientation:n,direction:r}=Lf(),o=$A(),i=C.exports.useCallback(s=>{const u=()=>{var x;const _=o.nextEnabled(t);_&&((x=_.node)==null||x.focus())},c=()=>{var x;const _=o.prevEnabled(t);_&&((x=_.node)==null||x.focus())},d=()=>{var x;const _=o.firstEnabled();_&&((x=_.node)==null||x.focus())},f=()=>{var x;const _=o.lastEnabled();_&&((x=_.node)==null||x.focus())},h=n==="horizontal",m=n==="vertical",g=s.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",w=r==="ltr"?"ArrowRight":"ArrowLeft",S={[b]:()=>h&&c(),[w]:()=>h&&u(),ArrowDown:()=>m&&u(),ArrowUp:()=>m&&c(),Home:d,End:f}[g];S&&(s.preventDefault(),S(s))},[o,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:M4(e.onKeyDown,i)}}function Tne(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:o,isManual:i,id:s,setFocusedIndex:u,selectedIndex:c}=Lf(),{index:d,register:f}=Ene({disabled:t&&!n}),h=d===c,m=()=>{o(d)},g=()=>{u(d),!i&&!(t&&n)&&o(d)},b=aQ({...r,ref:Yt(f,e.ref),isDisabled:t,isFocusable:n,onClick:M4(e.onClick,m)}),w="button";return{...b,id:VA(s,d),role:"tab",tabIndex:h?0:-1,type:w,"aria-selected":h,"aria-controls":WA(s,d),onFocus:t?void 0:M4(e.onFocus,g)}}var[Ine,One]=Tt({});function Mne(e){const t=Lf(),{id:n,selectedIndex:r}=t,i=bm(e.children).map((s,u)=>C.exports.createElement(Ine,{key:u,value:{isSelected:u===r,id:WA(n,u),tabId:VA(n,u),selectedIndex:r}},s));return{...e,children:i}}function Rne(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:o}=Lf(),{isSelected:i,id:s,tabId:u}=One(),c=C.exports.useRef(!1);i&&(c.current=!0);const d=BP({wasSelected:c.current,isSelected:i,enabled:r,mode:o});return{tabIndex:0,...n,children:d?t:null,role:"tabpanel","aria-labelledby":u,hidden:!i,id:s}}function Nne(){const e=Lf(),t=$A(),{selectedIndex:n,orientation:r}=e,o=r==="horizontal",i=r==="vertical",[s,u]=C.exports.useState(()=>{if(o)return{left:0,width:0};if(i)return{top:0,height:0}}),[c,d]=C.exports.useState(!1);return ai(()=>{if(n==null)return;const f=t.item(n);if(f==null)return;o&&u({left:f.node.offsetLeft,width:f.node.offsetWidth}),i&&u({top:f.node.offsetTop,height:f.node.offsetHeight});const h=requestAnimationFrame(()=>{d(!0)});return()=>{h&&cancelAnimationFrame(h)}},[n,o,i,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:c?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...s}}function VA(e,t){return`${e}--tab-${t}`}function WA(e,t){return`${e}--tabpanel-${t}`}var[Dne,Pf]=Tt({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),jA=ue(function(t,n){const r=dr("Tabs",t),{children:o,className:i,...s}=vt(t),{htmlProps:u,descendants:c,...d}=Lne(s),f=C.exports.useMemo(()=>d,[d]),{isFitted:h,...m}=u;return X.createElement(_ne,{value:c},X.createElement(Pne,{value:f},X.createElement(Dne,{value:r},X.createElement(oe.div,{className:Vu("chakra-tabs",i),ref:n,...m,__css:r.root},o))))});jA.displayName="Tabs";var zne=ue(function(t,n){const r=Nne(),o={...t.style,...r},i=Pf();return X.createElement(oe.div,{ref:n,...t,className:Vu("chakra-tabs__tab-indicator",t.className),style:o,__css:i.indicator})});zne.displayName="TabIndicator";var Fne=ue(function(t,n){const r=Ane({...t,ref:n}),o=Pf(),i={display:"flex",...o.tablist};return X.createElement(oe.div,{...r,className:Vu("chakra-tabs__tablist",t.className),__css:i})});Fne.displayName="TabList";var HA=ue(function(t,n){const r=Rne({...t,ref:n}),o=Pf();return X.createElement(oe.div,{outline:"0",...r,className:Vu("chakra-tabs__tab-panel",t.className),__css:o.tabpanel})});HA.displayName="TabPanel";var UA=ue(function(t,n){const r=Mne(t),o=Pf();return X.createElement(oe.div,{...r,width:"100%",ref:n,className:Vu("chakra-tabs__tab-panels",t.className),__css:o.tabpanels})});UA.displayName="TabPanels";var GA=ue(function(t,n){const r=Pf(),o=Tne({...t,ref:n}),i={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return X.createElement(oe.button,{...o,className:Vu("chakra-tabs__tab",t.className),__css:i})});GA.displayName="Tab";var Bne=(...e)=>e.filter(Boolean).join(" ");function $ne(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var Vne=["h","minH","height","minHeight"],ZA=ue((e,t)=>{const n=cr("Textarea",e),{className:r,rows:o,...i}=vt(e),s=q3(i),u=o?$ne(n,Vne):n;return X.createElement(oe.textarea,{ref:t,rows:o,...s,className:Bne("chakra-textarea",r),__css:u})});ZA.displayName="Textarea";function gt(e,t={}){let n=!1;function r(){if(!n){n=!0;return}throw new Error("[anatomy] .part(...) should only be called once. Did you mean to use .extend(...) ?")}function o(...f){r();for(const h of f)t[h]=c(h);return gt(e,t)}function i(...f){for(const h of f)h in t||(t[h]=c(h));return gt(e,t)}function s(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.selector]))}function u(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.className]))}function c(f){const g=`chakra-${(["container","root"].includes(f??"")?[e]:[e,f]).filter(Boolean).join("__")}`;return{className:g,selector:`.${g}`,toString:()=>f}}return{parts:o,toPart:c,extend:i,selectors:s,classnames:u,get keys(){return Object.keys(t)},__type:{}}}var Wne=gt("accordion").parts("root","container","button","panel").extend("icon"),jne=gt("alert").parts("title","description","container").extend("icon","spinner"),Hne=gt("avatar").parts("label","badge","container").extend("excessLabel","group"),Une=gt("breadcrumb").parts("link","item","container").extend("separator");gt("button").parts();var Gne=gt("checkbox").parts("control","icon","container").extend("label");gt("progress").parts("track","filledTrack").extend("label");var Zne=gt("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Kne=gt("editable").parts("preview","input","textarea"),qne=gt("form").parts("container","requiredIndicator","helperText"),Yne=gt("formError").parts("text","icon"),Xne=gt("input").parts("addon","field","element"),Qne=gt("list").parts("container","item","icon"),Jne=gt("menu").parts("button","list","item").extend("groupTitle","command","divider"),ere=gt("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),tre=gt("numberinput").parts("root","field","stepperGroup","stepper");gt("pininput").parts("field");var nre=gt("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),rre=gt("progress").parts("label","filledTrack","track"),ore=gt("radio").parts("container","control","label"),ire=gt("select").parts("field","icon"),are=gt("slider").parts("container","track","thumb","filledTrack","mark"),sre=gt("stat").parts("container","label","helpText","number","icon"),lre=gt("switch").parts("container","track","thumb"),ure=gt("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),cre=gt("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),dre=gt("tag").parts("container","label","closeButton");function Dn(e,t){fre(e)&&(e="100%");var n=pre(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function xh(e){return Math.min(1,Math.max(0,e))}function fre(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function pre(e){return typeof e=="string"&&e.indexOf("%")!==-1}function KA(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function wh(e){return e<=1?"".concat(Number(e)*100,"%"):e}function Ps(e){return e.length===1?"0"+e:String(e)}function hre(e,t,n){return{r:Dn(e,255)*255,g:Dn(t,255)*255,b:Dn(n,255)*255}}function D8(e,t,n){e=Dn(e,255),t=Dn(t,255),n=Dn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=0,u=(r+o)/2;if(r===o)s=0,i=0;else{var c=r-o;switch(s=u>.5?c/(2-r-o):c/(r+o),r){case e:i=(t-n)/c+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function mre(e,t,n){var r,o,i;if(e=Dn(e,360),t=Dn(t,100),n=Dn(n,100),t===0)o=n,i=n,r=n;else{var s=n<.5?n*(1+t):n+t-n*t,u=2*n-s;r=C2(u,s,e+1/3),o=C2(u,s,e),i=C2(u,s,e-1/3)}return{r:r*255,g:o*255,b:i*255}}function z8(e,t,n){e=Dn(e,255),t=Dn(t,255),n=Dn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=r,u=r-o,c=r===0?0:u/r;if(r===o)i=0;else{switch(r){case e:i=(t-n)/u+(t>16,g:(e&65280)>>8,b:e&255}}var R4={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function xre(e){var t={r:0,g:0,b:0},n=1,r=null,o=null,i=null,s=!1,u=!1;return typeof e=="string"&&(e=Cre(e)),typeof e=="object"&&(Di(e.r)&&Di(e.g)&&Di(e.b)?(t=hre(e.r,e.g,e.b),s=!0,u=String(e.r).substr(-1)==="%"?"prgb":"rgb"):Di(e.h)&&Di(e.s)&&Di(e.v)?(r=wh(e.s),o=wh(e.v),t=gre(e.h,r,o),s=!0,u="hsv"):Di(e.h)&&Di(e.s)&&Di(e.l)&&(r=wh(e.s),i=wh(e.l),t=mre(e.h,r,i),s=!0,u="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=KA(n),{ok:s,format:e.format||u,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var wre="[-\\+]?\\d+%?",Sre="[-\\+]?\\d*\\.\\d+%?",Ma="(?:".concat(Sre,")|(?:").concat(wre,")"),_2="[\\s|\\(]+(".concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")\\s*\\)?"),k2="[\\s|\\(]+(".concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")[,|\\s]+(").concat(Ma,")\\s*\\)?"),Ao={CSS_UNIT:new RegExp(Ma),rgb:new RegExp("rgb"+_2),rgba:new RegExp("rgba"+k2),hsl:new RegExp("hsl"+_2),hsla:new RegExp("hsla"+k2),hsv:new RegExp("hsv"+_2),hsva:new RegExp("hsva"+k2),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function Cre(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(R4[e])e=R4[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=Ao.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=Ao.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=Ao.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=Ao.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=Ao.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=Ao.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=Ao.hex8.exec(e),n?{r:Nr(n[1]),g:Nr(n[2]),b:Nr(n[3]),a:B8(n[4]),format:t?"name":"hex8"}:(n=Ao.hex6.exec(e),n?{r:Nr(n[1]),g:Nr(n[2]),b:Nr(n[3]),format:t?"name":"hex"}:(n=Ao.hex4.exec(e),n?{r:Nr(n[1]+n[1]),g:Nr(n[2]+n[2]),b:Nr(n[3]+n[3]),a:B8(n[4]+n[4]),format:t?"name":"hex8"}:(n=Ao.hex3.exec(e),n?{r:Nr(n[1]+n[1]),g:Nr(n[2]+n[2]),b:Nr(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function Di(e){return Boolean(Ao.CSS_UNIT.exec(String(e)))}var Af=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=bre(t)),this.originalInput=t;var o=xre(t);this.originalInput=t,this.r=o.r,this.g=o.g,this.b=o.b,this.a=o.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:o.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=o.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,o,i=t.r/255,s=t.g/255,u=t.b/255;return i<=.03928?n=i/12.92:n=Math.pow((i+.055)/1.055,2.4),s<=.03928?r=s/12.92:r=Math.pow((s+.055)/1.055,2.4),u<=.03928?o=u/12.92:o=Math.pow((u+.055)/1.055,2.4),.2126*n+.7152*r+.0722*o},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=KA(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=z8(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=z8(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=D8(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=D8(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),F8(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),vre(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(Dn(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(Dn(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+F8(this.r,this.g,this.b,!1),n=0,r=Object.entries(R4);n=0,i=!n&&o&&(t.startsWith("hex")||t==="name");return i?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=xh(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=xh(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=xh(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=xh(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),i=n/100,s={r:(o.r-r.r)*i+r.r,g:(o.g-r.g)*i+r.g,b:(o.b-r.b)*i+r.b,a:(o.a-r.a)*i+r.a};return new e(s)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),o=360/n,i=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,i.push(new e(r));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,i=n.v,s=[],u=1/t;t--;)s.push(new e({h:r,s:o,v:i})),i=(i+u)%1;return s},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],i=360/t,s=1;sn.length;)e.count=null,e.seed&&(e.seed+=1),n.push(qA(e));return e.count=t,n}var r=_re(e.hue,e.seed),o=kre(r,e),i=Ere(r,o,e),s={h:r,s:o,v:i};return e.alpha!==void 0&&(s.a=e.alpha),new Af(s)}function _re(e,t){var n=Pre(e),r=u0(n,t);return r<0&&(r=360+r),r}function kre(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return u0([0,100],t.seed);var n=YA(e).saturationRange,r=n[0],o=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=o-10;break;case"light":o=55;break}return u0([r,o],t.seed)}function Ere(e,t,n){var r=Lre(e,t),o=100;switch(n.luminosity){case"dark":o=r+20;break;case"light":r=(o+r)/2;break;case"random":r=0,o=100;break}return u0([r,o],n.seed)}function Lre(e,t){for(var n=YA(e).lowerBounds,r=0;r=o&&t<=s){var c=(u-i)/(s-o),d=i-c*o;return c*t+d}}return 0}function Pre(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=QA.find(function(s){return s.name===e});if(n){var r=XA(n);if(r.hueRange)return r.hueRange}var o=new Af(e);if(o.isValid){var i=o.toHsv().h;return[i,i]}}return[0,360]}function YA(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=QA;t=o.hueRange[0]&&e<=o.hueRange[1])return o}throw Error("Color not found")}function u0(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var o=t/233280;return Math.floor(r+o*(n-r))}function XA(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],o=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,o]}}var QA=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function Are(e,t,n,r,o){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,vn=(e,t,n)=>{const r=Are(e,`colors.${t}`,t),{isValid:o}=new Af(r);return o?r:n},Ire=e=>t=>{const n=vn(t,e);return new Af(n).isDark()?"dark":"light"},Ore=e=>t=>Ire(e)(t)==="dark",Lu=(e,t)=>n=>{const r=vn(n,e);return new Af(r).setAlpha(t).toRgbString()};function $8(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( - 45deg, - ${t} 25%, - transparent 25%, - transparent 50%, - ${t} 50%, - ${t} 75%, - transparent 75%, - transparent - )`,backgroundSize:`${e} ${e}`}}function Mre(e){const t=qA().toHexString();return!e||Tre(e)?t:e.string&&e.colors?Nre(e.string,e.colors):e.string&&!e.colors?Rre(e.string):e.colors&&!e.string?Dre(e.colors):t}function Rre(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255).toString(16)}`.substr(-2);return n}function Nre(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function Mb(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function zre(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function JA(e){return zre(e)&&e.reference?e.reference:String(e)}var Pm=(e,...t)=>t.map(JA).join(` ${e} `).replace(/calc/g,""),V8=(...e)=>`calc(${Pm("+",...e)})`,W8=(...e)=>`calc(${Pm("-",...e)})`,N4=(...e)=>`calc(${Pm("*",...e)})`,j8=(...e)=>`calc(${Pm("/",...e)})`,H8=e=>{const t=JA(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:N4(t,-1)},Wi=Object.assign(e=>({add:(...t)=>Wi(V8(e,...t)),subtract:(...t)=>Wi(W8(e,...t)),multiply:(...t)=>Wi(N4(e,...t)),divide:(...t)=>Wi(j8(e,...t)),negate:()=>Wi(H8(e)),toString:()=>e.toString()}),{add:V8,subtract:W8,multiply:N4,divide:j8,negate:H8});function Fre(e){return!Number.isInteger(parseFloat(e.toString()))}function Bre(e,t="-"){return e.replace(/\s+/g,t)}function eT(e){const t=Bre(e.toString());return t.includes("\\.")?e:Fre(e)?t.replace(".","\\."):e}function $re(e,t=""){return[t,eT(e)].filter(Boolean).join("-")}function Vre(e,t){return`var(${eT(e)}${t?`, ${t}`:""})`}function Wre(e,t=""){return`--${$re(e,t)}`}function Er(e,t){const n=Wre(e,t?.prefix);return{variable:n,reference:Vre(n,jre(t?.fallback))}}function jre(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:Hre,defineMultiStyleConfig:Ure}=Bt(Wne.keys),Gre={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},Zre={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},Kre={pt:"2",px:"4",pb:"5"},qre={fontSize:"1.25em"},Yre=Hre({container:Gre,button:Zre,panel:Kre,icon:qre}),Xre=Ure({baseStyle:Yre}),{definePartsStyle:Tf,defineMultiStyleConfig:Qre}=Bt(jne.keys),Ji=ts("alert-fg"),If=ts("alert-bg"),Jre=Tf({container:{bg:If.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:Ji.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:Ji.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function Rb(e){const{theme:t,colorScheme:n}=e,r=vn(t,`${n}.100`,n),o=Lu(`${n}.200`,.16)(t);return re(r,o)(e)}var eoe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[If.variable]:Rb(e),[Ji.variable]:`colors.${n}`}}}),toe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[If.variable]:Rb(e),[Ji.variable]:`colors.${n}`,paddingStart:"3",borderStartWidth:"4px",borderStartColor:Ji.reference}}}),noe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e);return{container:{[If.variable]:Rb(e),[Ji.variable]:`colors.${n}`,pt:"2",borderTopWidth:"4px",borderTopColor:Ji.reference}}}),roe=Tf(e=>{const{colorScheme:t}=e,n=re(`${t}.500`,`${t}.200`)(e),r=re("white","gray.900")(e);return{container:{[If.variable]:`colors.${n}`,[Ji.variable]:`colors.${r}`,color:Ji.reference}}}),ooe={subtle:eoe,"left-accent":toe,"top-accent":noe,solid:roe},ioe=Qre({baseStyle:Jre,variants:ooe,defaultProps:{variant:"subtle",colorScheme:"blue"}}),tT={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},aoe={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},soe={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},loe={...tT,...aoe,container:soe},nT=loe,uoe=e=>typeof e=="function";function on(e,...t){return uoe(e)?e(...t):e}var{definePartsStyle:rT,defineMultiStyleConfig:coe}=Bt(Hne.keys),doe=e=>({borderRadius:"full",border:"0.2em solid",borderColor:re("white","gray.800")(e)}),foe=e=>({bg:re("gray.200","whiteAlpha.400")(e)}),poe=e=>{const{name:t,theme:n}=e,r=t?Mre({string:t}):"gray.400",o=Ore(r)(n);let i="white";o||(i="gray.800");const s=re("white","gray.800")(e);return{bg:r,color:i,borderColor:s,verticalAlign:"top"}},hoe=rT(e=>({badge:on(doe,e),excessLabel:on(foe,e),container:on(poe,e)}));function va(e){const t=e!=="100%"?nT[e]:void 0;return rT({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var moe={"2xs":va(4),xs:va(6),sm:va(8),md:va(12),lg:va(16),xl:va(24),"2xl":va(32),full:va("100%")},goe=coe({baseStyle:hoe,sizes:moe,defaultProps:{size:"md"}}),voe={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},yoe=e=>{const{colorScheme:t,theme:n}=e,r=Lu(`${t}.500`,.6)(n);return{bg:re(`${t}.500`,r)(e),color:re("white","whiteAlpha.800")(e)}},boe=e=>{const{colorScheme:t,theme:n}=e,r=Lu(`${t}.200`,.16)(n);return{bg:re(`${t}.100`,r)(e),color:re(`${t}.800`,`${t}.200`)(e)}},xoe=e=>{const{colorScheme:t,theme:n}=e,r=Lu(`${t}.200`,.8)(n),o=vn(n,`${t}.500`),i=re(o,r)(e);return{color:i,boxShadow:`inset 0 0 0px 1px ${i}`}},woe={solid:yoe,subtle:boe,outline:xoe},dd={baseStyle:voe,variants:woe,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:Soe,definePartsStyle:Coe}=Bt(Une.keys),_oe={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},koe=Coe({link:_oe}),Eoe=Soe({baseStyle:koe}),Loe={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},oT=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:re("inherit","whiteAlpha.900")(e),_hover:{bg:re("gray.100","whiteAlpha.200")(e)},_active:{bg:re("gray.200","whiteAlpha.300")(e)}};const r=Lu(`${t}.200`,.12)(n),o=Lu(`${t}.200`,.24)(n);return{color:re(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:re(`${t}.50`,r)(e)},_active:{bg:re(`${t}.100`,o)(e)}}},Poe=e=>{const{colorScheme:t}=e,n=re("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...on(oT,e)}},Aoe={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},Toe=e=>{const{colorScheme:t}=e;if(t==="gray"){const u=re("gray.100","whiteAlpha.200")(e);return{bg:u,_hover:{bg:re("gray.200","whiteAlpha.300")(e),_disabled:{bg:u}},_active:{bg:re("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:o=`${t}.600`,activeBg:i=`${t}.700`}=Aoe[t]??{},s=re(n,`${t}.200`)(e);return{bg:s,color:re(r,"gray.800")(e),_hover:{bg:re(o,`${t}.300`)(e),_disabled:{bg:s}},_active:{bg:re(i,`${t}.400`)(e)}}},Ioe=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:re(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:re(`${t}.700`,`${t}.500`)(e)}}},Ooe={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},Moe={ghost:oT,outline:Poe,solid:Toe,link:Ioe,unstyled:Ooe},Roe={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},Noe={baseStyle:Loe,variants:Moe,sizes:Roe,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:r1,defineMultiStyleConfig:Doe}=Bt(Gne.keys),fd=ts("checkbox-size"),zoe=e=>{const{colorScheme:t}=e;return{w:fd.reference,h:fd.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:re(`${t}.500`,`${t}.200`)(e),borderColor:re(`${t}.500`,`${t}.200`)(e),color:re("white","gray.900")(e),_hover:{bg:re(`${t}.600`,`${t}.300`)(e),borderColor:re(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:re("gray.200","transparent")(e),bg:re("gray.200","whiteAlpha.300")(e),color:re("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:re(`${t}.500`,`${t}.200`)(e),borderColor:re(`${t}.500`,`${t}.200`)(e),color:re("white","gray.900")(e)},_disabled:{bg:re("gray.100","whiteAlpha.100")(e),borderColor:re("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:re("red.500","red.300")(e)}}},Foe={_disabled:{cursor:"not-allowed"}},Boe={userSelect:"none",_disabled:{opacity:.4}},$oe={transitionProperty:"transform",transitionDuration:"normal"},Voe=r1(e=>({icon:$oe,container:Foe,control:on(zoe,e),label:Boe})),Woe={sm:r1({control:{[fd.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:r1({control:{[fd.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:r1({control:{[fd.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},c0=Doe({baseStyle:Voe,sizes:Woe,defaultProps:{size:"md",colorScheme:"blue"}}),pd=Er("close-button-size"),joe=e=>{const t=re("blackAlpha.100","whiteAlpha.100")(e),n=re("blackAlpha.200","whiteAlpha.200")(e);return{w:[pd.reference],h:[pd.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},Hoe={lg:{[pd.variable]:"sizes.10",fontSize:"md"},md:{[pd.variable]:"sizes.8",fontSize:"xs"},sm:{[pd.variable]:"sizes.6",fontSize:"2xs"}},Uoe={baseStyle:joe,sizes:Hoe,defaultProps:{size:"md"}},{variants:Goe,defaultProps:Zoe}=dd,Koe={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},qoe={baseStyle:Koe,variants:Goe,defaultProps:Zoe},Yoe={w:"100%",mx:"auto",maxW:"prose",px:"4"},Xoe={baseStyle:Yoe},Qoe={opacity:.6,borderColor:"inherit"},Joe={borderStyle:"solid"},eie={borderStyle:"dashed"},tie={solid:Joe,dashed:eie},nie={baseStyle:Qoe,variants:tie,defaultProps:{variant:"solid"}},{definePartsStyle:D4,defineMultiStyleConfig:rie}=Bt(Zne.keys);function Al(e){return D4(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var oie={bg:"blackAlpha.600",zIndex:"overlay"},iie={display:"flex",zIndex:"modal",justifyContent:"center"},aie=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:re("white","gray.700")(e),color:"inherit",boxShadow:re("lg","dark-lg")(e)}},sie={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},lie={position:"absolute",top:"2",insetEnd:"3"},uie={px:"6",py:"2",flex:"1",overflow:"auto"},cie={px:"6",py:"4"},die=D4(e=>({overlay:oie,dialogContainer:iie,dialog:on(aie,e),header:sie,closeButton:lie,body:uie,footer:cie})),fie={xs:Al("xs"),sm:Al("md"),md:Al("lg"),lg:Al("2xl"),xl:Al("4xl"),full:Al("full")},pie=rie({baseStyle:die,sizes:fie,defaultProps:{size:"xs"}}),{definePartsStyle:hie,defineMultiStyleConfig:mie}=Bt(Kne.keys),gie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},vie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},yie={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},bie=hie({preview:gie,input:vie,textarea:yie}),xie=mie({baseStyle:bie}),{definePartsStyle:wie,defineMultiStyleConfig:Sie}=Bt(qne.keys),Cie=e=>({marginStart:"1",color:re("red.500","red.300")(e)}),_ie=e=>({mt:"2",color:re("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),kie=wie(e=>({container:{width:"100%",position:"relative"},requiredIndicator:on(Cie,e),helperText:on(_ie,e)})),Eie=Sie({baseStyle:kie}),{definePartsStyle:Lie,defineMultiStyleConfig:Pie}=Bt(Yne.keys),Aie=e=>({color:re("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),Tie=e=>({marginEnd:"0.5em",color:re("red.500","red.300")(e)}),Iie=Lie(e=>({text:on(Aie,e),icon:on(Tie,e)})),Oie=Pie({baseStyle:Iie}),Mie={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},Rie={baseStyle:Mie},Nie={fontFamily:"heading",fontWeight:"bold"},Die={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},zie={baseStyle:Nie,sizes:Die,defaultProps:{size:"xl"}},{definePartsStyle:Ui,defineMultiStyleConfig:Fie}=Bt(Xne.keys),Bie=Ui({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),ya={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},$ie={lg:Ui({field:ya.lg,addon:ya.lg}),md:Ui({field:ya.md,addon:ya.md}),sm:Ui({field:ya.sm,addon:ya.sm}),xs:Ui({field:ya.xs,addon:ya.xs})};function Nb(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||re("blue.500","blue.300")(e),errorBorderColor:n||re("red.500","red.300")(e)}}var Vie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Nb(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:re("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r),boxShadow:`0 0 0 1px ${vn(t,r)}`},_focusVisible:{zIndex:1,borderColor:vn(t,n),boxShadow:`0 0 0 1px ${vn(t,n)}`}},addon:{border:"1px solid",borderColor:re("inherit","whiteAlpha.50")(e),bg:re("gray.100","whiteAlpha.300")(e)}}}),Wie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Nb(e);return{field:{border:"2px solid",borderColor:"transparent",bg:re("gray.100","whiteAlpha.50")(e),_hover:{bg:re("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r)},_focusVisible:{bg:"transparent",borderColor:vn(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:re("gray.100","whiteAlpha.50")(e)}}}),jie=Ui(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=Nb(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:vn(t,r),boxShadow:`0px 1px 0px 0px ${vn(t,r)}`},_focusVisible:{borderColor:vn(t,n),boxShadow:`0px 1px 0px 0px ${vn(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),Hie=Ui({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),Uie={outline:Vie,filled:Wie,flushed:jie,unstyled:Hie},at=Fie({baseStyle:Bie,sizes:$ie,variants:Uie,defaultProps:{size:"md",variant:"outline"}}),Gie=e=>({bg:re("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),Zie={baseStyle:Gie},Kie={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},qie={baseStyle:Kie},{defineMultiStyleConfig:Yie,definePartsStyle:Xie}=Bt(Qne.keys),Qie={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},Jie=Xie({icon:Qie}),eae=Yie({baseStyle:Jie}),{defineMultiStyleConfig:tae,definePartsStyle:nae}=Bt(Jne.keys),rae=e=>({bg:re("#fff","gray.700")(e),boxShadow:re("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),oae=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:re("gray.100","whiteAlpha.100")(e)},_active:{bg:re("gray.200","whiteAlpha.200")(e)},_expanded:{bg:re("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),iae={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},aae={opacity:.6},sae={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},lae={transitionProperty:"common",transitionDuration:"normal"},uae=nae(e=>({button:lae,list:on(rae,e),item:on(oae,e),groupTitle:iae,command:aae,divider:sae})),cae=tae({baseStyle:uae}),{defineMultiStyleConfig:dae,definePartsStyle:z4}=Bt(ere.keys),fae={bg:"blackAlpha.600",zIndex:"modal"},pae=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},hae=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:re("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:re("lg","dark-lg")(e)}},mae={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},gae={position:"absolute",top:"2",insetEnd:"3"},vae=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},yae={px:"6",py:"4"},bae=z4(e=>({overlay:fae,dialogContainer:on(pae,e),dialog:on(hae,e),header:mae,closeButton:gae,body:on(vae,e),footer:yae}));function Po(e){return z4(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var xae={xs:Po("xs"),sm:Po("sm"),md:Po("md"),lg:Po("lg"),xl:Po("xl"),"2xl":Po("2xl"),"3xl":Po("3xl"),"4xl":Po("4xl"),"5xl":Po("5xl"),"6xl":Po("6xl"),full:Po("full")},wae=dae({baseStyle:bae,sizes:xae,defaultProps:{size:"md"}}),Sae={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},iT=Sae,{defineMultiStyleConfig:Cae,definePartsStyle:aT}=Bt(tre.keys),Db=Er("number-input-stepper-width"),sT=Er("number-input-input-padding"),_ae=Wi(Db).add("0.5rem").toString(),kae={[Db.variable]:"sizes.6",[sT.variable]:_ae},Eae=e=>{var t;return((t=on(at.baseStyle,e))==null?void 0:t.field)??{}},Lae={width:[Db.reference]},Pae=e=>({borderStart:"1px solid",borderStartColor:re("inherit","whiteAlpha.300")(e),color:re("inherit","whiteAlpha.800")(e),_active:{bg:re("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),Aae=aT(e=>({root:kae,field:Eae,stepperGroup:Lae,stepper:on(Pae,e)??{}}));function Sh(e){var t,n;const r=(t=at.sizes)==null?void 0:t[e],o={lg:"md",md:"md",sm:"sm",xs:"sm"},i=((n=r.field)==null?void 0:n.fontSize)??"md",s=iT.fontSizes[i];return aT({field:{...r.field,paddingInlineEnd:sT.reference,verticalAlign:"top"},stepper:{fontSize:Wi(s).multiply(.75).toString(),_first:{borderTopEndRadius:o[e]},_last:{borderBottomEndRadius:o[e],mt:"-1px",borderTopWidth:1}}})}var Tae={xs:Sh("xs"),sm:Sh("sm"),md:Sh("md"),lg:Sh("lg")},Iae=Cae({baseStyle:Aae,sizes:Tae,variants:at.variants,defaultProps:at.defaultProps}),U8,Oae={...(U8=at.baseStyle)==null?void 0:U8.field,textAlign:"center"},Mae={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},G8,Rae={outline:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=on((t=at.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((G8=at.variants)==null?void 0:G8.unstyled.field)??{}},Nae={baseStyle:Oae,sizes:Mae,variants:Rae,defaultProps:at.defaultProps},{defineMultiStyleConfig:Dae,definePartsStyle:zae}=Bt(nre.keys),E2=Er("popper-bg"),Fae=Er("popper-arrow-bg"),Bae=Er("popper-arrow-shadow-color"),$ae={zIndex:10},Vae=e=>{const t=re("white","gray.700")(e),n=re("gray.200","whiteAlpha.300")(e);return{[E2.variable]:`colors.${t}`,bg:E2.reference,[Fae.variable]:E2.reference,[Bae.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},Wae={px:3,py:2,borderBottomWidth:"1px"},jae={px:3,py:2},Hae={px:3,py:2,borderTopWidth:"1px"},Uae={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},Gae=zae(e=>({popper:$ae,content:Vae(e),header:Wae,body:jae,footer:Hae,closeButton:Uae})),Zae=Dae({baseStyle:Gae}),{defineMultiStyleConfig:Kae,definePartsStyle:Wc}=Bt(rre.keys),qae=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:o}=e,i=re($8(),$8("1rem","rgba(0,0,0,0.1)"))(e),s=re(`${t}.500`,`${t}.200`)(e),u=`linear-gradient( - to right, - transparent 0%, - ${vn(n,s)} 50%, - transparent 100% - )`;return{...!r&&o&&i,...r?{bgImage:u}:{bgColor:s}}},Yae={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},Xae=e=>({bg:re("gray.100","whiteAlpha.300")(e)}),Qae=e=>({transitionProperty:"common",transitionDuration:"slow",...qae(e)}),Jae=Wc(e=>({label:Yae,filledTrack:Qae(e),track:Xae(e)})),ese={xs:Wc({track:{h:"1"}}),sm:Wc({track:{h:"2"}}),md:Wc({track:{h:"3"}}),lg:Wc({track:{h:"4"}})},tse=Kae({sizes:ese,baseStyle:Jae,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:nse,definePartsStyle:o1}=Bt(ore.keys),rse=e=>{var t;const n=(t=on(c0.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},ose=o1(e=>{var t,n,r,o;return{label:(n=(t=c0).baseStyle)==null?void 0:n.call(t,e).label,container:(o=(r=c0).baseStyle)==null?void 0:o.call(r,e).container,control:rse(e)}}),ise={md:o1({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:o1({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:o1({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},ase=nse({baseStyle:ose,sizes:ise,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:sse,definePartsStyle:lse}=Bt(ire.keys),use=e=>{var t;return{...(t=at.baseStyle)==null?void 0:t.field,bg:re("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:re("white","gray.700")(e)}}},cse={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},dse=lse(e=>({field:use(e),icon:cse})),Ch={paddingInlineEnd:"8"},Z8,K8,q8,Y8,X8,Q8,J8,e7,fse={lg:{...(Z8=at.sizes)==null?void 0:Z8.lg,field:{...(K8=at.sizes)==null?void 0:K8.lg.field,...Ch}},md:{...(q8=at.sizes)==null?void 0:q8.md,field:{...(Y8=at.sizes)==null?void 0:Y8.md.field,...Ch}},sm:{...(X8=at.sizes)==null?void 0:X8.sm,field:{...(Q8=at.sizes)==null?void 0:Q8.sm.field,...Ch}},xs:{...(J8=at.sizes)==null?void 0:J8.xs,field:{...(e7=at.sizes)==null?void 0:e7.sm.field,...Ch},icon:{insetEnd:"1"}}},pse=sse({baseStyle:dse,sizes:fse,variants:at.variants,defaultProps:at.defaultProps}),hse=ts("skeleton-start-color"),mse=ts("skeleton-end-color"),gse=e=>{const t=re("gray.100","gray.800")(e),n=re("gray.400","gray.600")(e),{startColor:r=t,endColor:o=n,theme:i}=e,s=vn(i,r),u=vn(i,o);return{[hse.variable]:s,[mse.variable]:u,opacity:.7,borderRadius:"2px",borderColor:s,background:u}},vse={baseStyle:gse},yse=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:re("white","gray.700")(e)}}),bse={baseStyle:yse},{defineMultiStyleConfig:xse,definePartsStyle:Am}=Bt(are.keys),Qd=ts("slider-thumb-size"),Jd=ts("slider-track-size"),wse=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...Mb({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},Sse=e=>({...Mb({orientation:e.orientation,horizontal:{h:Jd.reference},vertical:{w:Jd.reference}}),overflow:"hidden",borderRadius:"sm",bg:re("gray.200","whiteAlpha.200")(e),_disabled:{bg:re("gray.300","whiteAlpha.300")(e)}}),Cse=e=>{const{orientation:t}=e;return{...Mb({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:Qd.reference,h:Qd.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},_se=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:re(`${t}.500`,`${t}.200`)(e)}},kse=Am(e=>({container:wse(e),track:Sse(e),thumb:Cse(e),filledTrack:_se(e)})),Ese=Am({container:{[Qd.variable]:"sizes.4",[Jd.variable]:"sizes.1"}}),Lse=Am({container:{[Qd.variable]:"sizes.3.5",[Jd.variable]:"sizes.1"}}),Pse=Am({container:{[Qd.variable]:"sizes.2.5",[Jd.variable]:"sizes.0.5"}}),Ase={lg:Ese,md:Lse,sm:Pse},Tse=xse({baseStyle:kse,sizes:Ase,defaultProps:{size:"md",colorScheme:"blue"}}),xs=Er("spinner-size"),Ise={width:[xs.reference],height:[xs.reference]},Ose={xs:{[xs.variable]:"sizes.3"},sm:{[xs.variable]:"sizes.4"},md:{[xs.variable]:"sizes.6"},lg:{[xs.variable]:"sizes.8"},xl:{[xs.variable]:"sizes.12"}},Mse={baseStyle:Ise,sizes:Ose,defaultProps:{size:"md"}},{defineMultiStyleConfig:Rse,definePartsStyle:lT}=Bt(sre.keys),Nse={fontWeight:"medium"},Dse={opacity:.8,marginBottom:"2"},zse={verticalAlign:"baseline",fontWeight:"semibold"},Fse={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},Bse=lT({container:{},label:Nse,helpText:Dse,number:zse,icon:Fse}),$se={md:lT({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},Vse=Rse({baseStyle:Bse,sizes:$se,defaultProps:{size:"md"}}),{defineMultiStyleConfig:Wse,definePartsStyle:i1}=Bt(lre.keys),hd=Er("switch-track-width"),Ms=Er("switch-track-height"),L2=Er("switch-track-diff"),jse=Wi.subtract(hd,Ms),F4=Er("switch-thumb-x"),Hse=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[hd.reference],height:[Ms.reference],transitionProperty:"common",transitionDuration:"fast",bg:re("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:re(`${t}.500`,`${t}.200`)(e)}}},Use={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[Ms.reference],height:[Ms.reference],_checked:{transform:`translateX(${F4.reference})`}},Gse=i1(e=>({container:{[L2.variable]:jse,[F4.variable]:L2.reference,_rtl:{[F4.variable]:Wi(L2).negate().toString()}},track:Hse(e),thumb:Use})),Zse={sm:i1({container:{[hd.variable]:"1.375rem",[Ms.variable]:"sizes.3"}}),md:i1({container:{[hd.variable]:"1.875rem",[Ms.variable]:"sizes.4"}}),lg:i1({container:{[hd.variable]:"2.875rem",[Ms.variable]:"sizes.6"}})},Kse=Wse({baseStyle:Gse,sizes:Zse,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:qse,definePartsStyle:uu}=Bt(ure.keys),Yse=uu({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),d0={"&[data-is-numeric=true]":{textAlign:"end"}},Xse=uu(e=>{const{colorScheme:t}=e;return{th:{color:re("gray.600","gray.400")(e),borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},td:{borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},caption:{color:re("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Qse=uu(e=>{const{colorScheme:t}=e;return{th:{color:re("gray.600","gray.400")(e),borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},td:{borderBottom:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e),...d0},caption:{color:re("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:re(`${t}.100`,`${t}.700`)(e)},td:{background:re(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Jse={simple:Xse,striped:Qse,unstyled:{}},ele={sm:uu({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:uu({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:uu({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},tle=qse({baseStyle:Yse,variants:Jse,sizes:ele,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:nle,definePartsStyle:di}=Bt(cre.keys),rle=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},ole=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},ile=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},ale={p:4},sle=di(e=>({root:rle(e),tab:ole(e),tablist:ile(e),tabpanel:ale})),lle={sm:di({tab:{py:1,px:4,fontSize:"sm"}}),md:di({tab:{fontSize:"md",py:2,px:4}}),lg:di({tab:{fontSize:"lg",py:3,px:4}})},ule=di(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",o=n==="vertical"?"borderStart":"borderBottom",i=r?"marginStart":"marginBottom";return{tablist:{[o]:"2px solid",borderColor:"inherit"},tab:{[o]:"2px solid",borderColor:"transparent",[i]:"-2px",_selected:{color:re(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:re("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),cle=di(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:re(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:re("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),dle=di(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:re("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:re("#fff","gray.800")(e),color:re(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),fle=di(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:vn(n,`${t}.700`),bg:vn(n,`${t}.100`)}}}}),ple=di(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:re("gray.600","inherit")(e),_selected:{color:re("#fff","gray.800")(e),bg:re(`${t}.600`,`${t}.300`)(e)}}}}),hle=di({}),mle={line:ule,enclosed:cle,"enclosed-colored":dle,"soft-rounded":fle,"solid-rounded":ple,unstyled:hle},gle=nle({baseStyle:sle,sizes:lle,variants:mle,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:vle,definePartsStyle:Rs}=Bt(dre.keys),yle={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},ble={lineHeight:1.2,overflow:"visible"},xle={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},wle=Rs({container:yle,label:ble,closeButton:xle}),Sle={sm:Rs({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:Rs({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:Rs({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},Cle={subtle:Rs(e=>{var t;return{container:(t=dd.variants)==null?void 0:t.subtle(e)}}),solid:Rs(e=>{var t;return{container:(t=dd.variants)==null?void 0:t.solid(e)}}),outline:Rs(e=>{var t;return{container:(t=dd.variants)==null?void 0:t.outline(e)}})},_le=vle({variants:Cle,baseStyle:wle,sizes:Sle,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),t7,kle={...(t7=at.baseStyle)==null?void 0:t7.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},n7,Ele={outline:e=>{var t;return((t=at.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=at.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=at.variants)==null?void 0:t.filled(e).field)??{}},unstyled:((n7=at.variants)==null?void 0:n7.unstyled.field)??{}},r7,o7,i7,a7,Lle={xs:((r7=at.sizes)==null?void 0:r7.xs.field)??{},sm:((o7=at.sizes)==null?void 0:o7.sm.field)??{},md:((i7=at.sizes)==null?void 0:i7.md.field)??{},lg:((a7=at.sizes)==null?void 0:a7.lg.field)??{}},Ple={baseStyle:kle,sizes:Lle,variants:Ele,defaultProps:{size:"md",variant:"outline"}},P2=Er("tooltip-bg"),s7=Er("tooltip-fg"),Ale=Er("popper-arrow-bg"),Tle=e=>{const t=re("gray.700","gray.300")(e),n=re("whiteAlpha.900","gray.900")(e);return{bg:P2.reference,color:s7.reference,[P2.variable]:`colors.${t}`,[s7.variable]:`colors.${n}`,[Ale.variable]:P2.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},Ile={baseStyle:Tle},Ole={Accordion:Xre,Alert:ioe,Avatar:goe,Badge:dd,Breadcrumb:Eoe,Button:Noe,Checkbox:c0,CloseButton:Uoe,Code:qoe,Container:Xoe,Divider:nie,Drawer:pie,Editable:xie,Form:Eie,FormError:Oie,FormLabel:Rie,Heading:zie,Input:at,Kbd:Zie,Link:qie,List:eae,Menu:cae,Modal:wae,NumberInput:Iae,PinInput:Nae,Popover:Zae,Progress:tse,Radio:ase,Select:pse,Skeleton:vse,SkipLink:bse,Slider:Tse,Spinner:Mse,Stat:Vse,Switch:Kse,Table:tle,Tabs:gle,Tag:_le,Textarea:Ple,Tooltip:Ile},Mle={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},Rle=Mle,Nle={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},Dle=Nle,zle={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},Fle=zle,Ble={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},$le=Ble,Vle={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},Wle=Vle,jle={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Hle={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},Ule={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},Gle={property:jle,easing:Hle,duration:Ule},Zle=Gle,Kle={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},qle=Kle,Yle={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},Xle=Yle,Qle={breakpoints:Dle,zIndices:qle,radii:$le,blur:Xle,colors:Fle,...iT,sizes:nT,shadows:Wle,space:tT,borders:Rle,transition:Zle},Jle={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},eue={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function tue(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var nue=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function rue(e){return tue(e)?nue.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var oue="ltr",iue={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},uT={semanticTokens:Jle,direction:oue,...Qle,components:Ole,styles:eue,config:iue};function aue(e,t){const n=Gn(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function B4(e,...t){return sue(e)?e(...t):e}var sue=e=>typeof e=="function";function lue(e,t){const n=e??"bottom",o={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return o?.[t]??n}var uue=(e,t)=>e.find(n=>n.id===t);function l7(e,t){const n=cT(e,t),r=n?e[n].findIndex(o=>o.id===t):-1;return{position:n,index:r}}function cT(e,t){for(const[n,r]of Object.entries(e))if(uue(r,t))return n}function cue(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function due(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,o=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,i=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",s=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:o,right:i,left:s}}var fue={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},ni=pue(fue);function pue(e){let t=e;const n=new Set,r=o=>{t=o(t),n.forEach(i=>i())};return{getState:()=>t,subscribe:o=>(n.add(o),()=>{r(()=>e),n.delete(o)}),removeToast:(o,i)=>{r(s=>({...s,[i]:s[i].filter(u=>u.id!=o)}))},notify:(o,i)=>{const s=hue(o,i),{position:u,id:c}=s;return r(d=>{const h=u.includes("top")?[s,...d[u]??[]]:[...d[u]??[],s];return{...d,[u]:h}}),c},update:(o,i)=>{!o||r(s=>{const u={...s},{position:c,index:d}=l7(u,o);return c&&d!==-1&&(u[c][d]={...u[c][d],...i,message:dT(i)}),u})},closeAll:({positions:o}={})=>{r(i=>(o??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((c,d)=>(c[d]=i[d].map(f=>({...f,requestClose:!0})),c),{...i}))},close:o=>{r(i=>{const s=cT(i,o);return s?{...i,[s]:i[s].map(u=>u.id==o?{...u,requestClose:!0}:u)}:i})},isActive:o=>Boolean(l7(ni.getState(),o).position)}}var u7=0;function hue(e,t={}){u7+=1;const n=t.id??u7,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>ni.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var mue=e=>{const{status:t,variant:n="solid",id:r,title:o,isClosable:i,onClose:s,description:u,icon:c}=e,d=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return X.createElement(XL,{addRole:!1,status:t,variant:n,id:d?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},v(JL,{children:c}),X.createElement(oe.div,{flex:"1",maxWidth:"100%"},o&&v(eP,{id:d?.title,children:o}),u&&v(QL,{id:d?.description,display:"block",children:u})),i&&v(Sm,{size:"sm",onClick:s,position:"absolute",insetEnd:1,top:1}))};function dT(e={}){const{render:t,toastComponent:n=mue}=e;return o=>typeof t=="function"?t(o):v(n,{...o,...e})}function gue(e,t){const n=o=>({...t,...o,position:lue(o?.position??t?.position,e)}),r=o=>{const i=n(o),s=dT(i);return ni.notify(s,i)};return r.update=(o,i)=>{ni.update(o,n(i))},r.promise=(o,i)=>{const s=r({...i.loading,status:"loading",duration:null});o.then(u=>r.update(s,{status:"success",duration:5e3,...B4(i.success,u)})).catch(u=>r.update(s,{status:"error",duration:5e3,...B4(i.error,u)}))},r.closeAll=ni.closeAll,r.close=ni.close,r.isActive=ni.isActive,r}function fT(e){const{theme:t}=uE();return C.exports.useMemo(()=>gue(t.direction,e),[e,t.direction])}var vue={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},pT=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:o,requestClose:i=!1,position:s="bottom",duration:u=5e3,containerStyle:c,motionVariants:d=vue,toastSpacing:f="0.5rem"}=e,[h,m]=C.exports.useState(u),g=CZ();r0(()=>{g||r?.()},[g]),r0(()=>{m(u)},[u]);const b=()=>m(null),w=()=>m(u),k=()=>{g&&o()};C.exports.useEffect(()=>{g&&i&&o()},[g,i,o]),aue(k,h);const S=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:f,...c}),[c,f]),x=C.exports.useMemo(()=>cue(s),[s]);return X.createElement(go.li,{layout:!0,className:"chakra-toast",variants:d,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:w,custom:{position:s},style:x},X.createElement(oe.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:S},B4(n,{id:t,onClose:k})))});pT.displayName="ToastComponent";var yue=e=>{const t=C.exports.useSyncExternalStore(ni.subscribe,ni.getState,ni.getState),{children:n,motionVariants:r,component:o=pT,portalProps:i}=e,u=Object.keys(t).map(c=>{const d=t[c];return v("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${c}`,style:due(c),children:v(na,{initial:!1,children:d.map(f=>v(o,{motionVariants:r,...f},f.id))})},c)});return q(yn,{children:[n,v(Zs,{...i,children:u})]})};function bue(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function xue(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var wue={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function Oc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var $4=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},V4=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function Sue(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:o,closeOnEsc:i=!0,onOpen:s,onClose:u,placement:c,id:d,isOpen:f,defaultIsOpen:h,arrowSize:m=10,arrowShadowColor:g,arrowPadding:b,modifiers:w,isDisabled:k,gutter:S,offset:x,direction:_,...L}=e,{isOpen:T,onOpen:R,onClose:N}=FP({isOpen:f,defaultIsOpen:h,onOpen:s,onClose:u}),{referenceRef:F,getPopperProps:G,getArrowInnerProps:W,getArrowProps:J}=zP({enabled:T,placement:c,arrowPadding:b,modifiers:w,gutter:S,offset:x,direction:_}),Ee=C.exports.useId(),me=`tooltip-${d??Ee}`,ce=C.exports.useRef(null),ge=C.exports.useRef(),ne=C.exports.useRef(),j=C.exports.useCallback(()=>{ne.current&&(clearTimeout(ne.current),ne.current=void 0),N()},[N]),Y=Cue(ce,j),K=C.exports.useCallback(()=>{if(!k&&!ge.current){Y();const fe=V4(ce);ge.current=fe.setTimeout(R,t)}},[Y,k,R,t]),O=C.exports.useCallback(()=>{ge.current&&(clearTimeout(ge.current),ge.current=void 0);const fe=V4(ce);ne.current=fe.setTimeout(j,n)},[n,j]),H=C.exports.useCallback(()=>{T&&r&&O()},[r,O,T]),se=C.exports.useCallback(()=>{T&&o&&O()},[o,O,T]),de=C.exports.useCallback(fe=>{T&&fe.key==="Escape"&&O()},[T,O]);w4(()=>$4(ce),"keydown",i?de:void 0),C.exports.useEffect(()=>()=>{clearTimeout(ge.current),clearTimeout(ne.current)},[]),w4(()=>ce.current,"mouseleave",O);const ye=C.exports.useCallback((fe={},_e=null)=>({...fe,ref:Yt(ce,_e,F),onMouseEnter:Oc(fe.onMouseEnter,K),onClick:Oc(fe.onClick,H),onMouseDown:Oc(fe.onMouseDown,se),onFocus:Oc(fe.onFocus,K),onBlur:Oc(fe.onBlur,O),"aria-describedby":T?me:void 0}),[K,O,se,T,me,H,F]),be=C.exports.useCallback((fe={},_e=null)=>G({...fe,style:{...fe.style,[cn.arrowSize.var]:m?`${m}px`:void 0,[cn.arrowShadowColor.var]:g}},_e),[G,m,g]),Pe=C.exports.useCallback((fe={},_e=null)=>{const De={...fe.style,position:"relative",transformOrigin:cn.transformOrigin.varRef};return{ref:_e,...L,...fe,id:me,role:"tooltip",style:De}},[L,me]);return{isOpen:T,show:K,hide:O,getTriggerProps:ye,getTooltipProps:Pe,getTooltipPositionerProps:be,getArrowProps:J,getArrowInnerProps:W}}var A2="chakra-ui:close-tooltip";function Cue(e,t){return C.exports.useEffect(()=>{const n=$4(e);return n.addEventListener(A2,t),()=>n.removeEventListener(A2,t)},[t,e]),()=>{const n=$4(e),r=V4(e);n.dispatchEvent(new r.CustomEvent(A2))}}var _ue=oe(go.div),Rn=ue((e,t)=>{const n=cr("Tooltip",e),r=vt(e),o=nm(),{children:i,label:s,shouldWrapChildren:u,"aria-label":c,hasArrow:d,bg:f,portalProps:h,background:m,backgroundColor:g,bgColor:b,...w}=r,k=m??g??f??b;if(k){n.bg=k;const F=$W(o,"colors",k);n[cn.arrowBg.var]=F}const S=Sue({...w,direction:o.direction}),x=typeof i=="string"||u;let _;if(x)_=X.createElement(oe.span,{tabIndex:0,...S.getTriggerProps()},i);else{const F=C.exports.Children.only(i);_=C.exports.cloneElement(F,S.getTriggerProps(F.props,F.ref))}const L=!!c,T=S.getTooltipProps({},t),R=L?bue(T,["role","id"]):T,N=xue(T,["role","id"]);return s?q(yn,{children:[_,v(na,{children:S.isOpen&&X.createElement(Zs,{...h},X.createElement(oe.div,{...S.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},q(_ue,{variants:wue,...R,initial:"exit",animate:"enter",exit:"exit",__css:n,children:[s,L&&X.createElement(oe.span,{srOnly:!0,...N},c),d&&X.createElement(oe.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},X.createElement(oe.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):v(yn,{children:i})});Rn.displayName="Tooltip";var kue=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:o=!0,theme:i={},environment:s,cssVarsRoot:u}=e,c=v(EP,{environment:s,children:t});return v(DH,{theme:i,cssVarsRoot:u,children:q(Lk,{colorModeManager:n,options:i.config,children:[o?v(pX,{}):v(fX,{}),v(FH,{}),r?v($P,{zIndex:r,children:c}):c]})})};function Eue({children:e,theme:t=uT,toastOptions:n,...r}){return q(kue,{theme:t,...r,children:[e,v(yue,{...n})]})}function Lue(...e){let t=[...e],n=e[e.length-1];return rue(n)&&t.length>1?t=t.slice(0,t.length-1):n=uT,tH(...t.map(r=>o=>Gl(r)?r(o):Pue(o,r)))(n)}function Pue(...e){return Ga({},...e,hT)}function hT(e,t,n,r){if((Gl(e)||Gl(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...o)=>{const i=Gl(e)?e(...o):e,s=Gl(t)?t(...o):t;return Ga({},i,s,hT)}}function Ro(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:zb(e)?2:Fb(e)?3:0}function cu(e,t){return Wu(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Aue(e,t){return Wu(e)===2?e.get(t):e[t]}function mT(e,t,n){var r=Wu(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function gT(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function zb(e){return Nue&&e instanceof Map}function Fb(e){return Due&&e instanceof Set}function ys(e){return e.o||e.t}function Bb(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=yT(e);delete t[zt];for(var n=du(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=Tue),Object.freeze(e),t&&Vs(e,function(n,r){return $b(r,!0)},!0)),e}function Tue(){Ro(2)}function Vb(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function fi(e){var t=U4[e];return t||Ro(18,e),t}function Iue(e,t){U4[e]||(U4[e]=t)}function W4(){return ef}function T2(e,t){t&&(fi("Patches"),e.u=[],e.s=[],e.v=t)}function f0(e){j4(e),e.p.forEach(Oue),e.p=null}function j4(e){e===ef&&(ef=e.l)}function c7(e){return ef={p:[],l:ef,h:e,m:!0,_:0}}function Oue(e){var t=e[zt];t.i===0||t.i===1?t.j():t.O=!0}function I2(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||fi("ES5").S(t,e,r),r?(n[zt].P&&(f0(t),Ro(4)),ea(e)&&(e=p0(t,e),t.l||h0(t,e)),t.u&&fi("Patches").M(n[zt].t,e,t.u,t.s)):e=p0(t,n,[]),f0(t),t.u&&t.v(t.u,t.s),e!==vT?e:void 0}function p0(e,t,n){if(Vb(t))return t;var r=t[zt];if(!r)return Vs(t,function(i,s){return d7(e,r,t,i,s,n)},!0),t;if(r.A!==e)return t;if(!r.P)return h0(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var o=r.i===4||r.i===5?r.o=Bb(r.k):r.o;Vs(r.i===3?new Set(o):o,function(i,s){return d7(e,r,o,i,s,n)}),h0(e,o,!1),n&&e.u&&fi("Patches").R(r,n,e.u,e.s)}return r.o}function d7(e,t,n,r,o,i){if(qa(o)){var s=p0(e,o,i&&t&&t.i!==3&&!cu(t.D,r)?i.concat(r):void 0);if(mT(n,r,s),!qa(s))return;e.m=!1}if(ea(o)&&!Vb(o)){if(!e.h.F&&e._<1)return;p0(e,o),t&&t.A.l||h0(e,o)}}function h0(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&$b(t,n)}function O2(e,t){var n=e[zt];return(n?ys(n):e)[t]}function f7(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function La(e){e.P||(e.P=!0,e.l&&La(e.l))}function M2(e){e.o||(e.o=Bb(e.t))}function H4(e,t,n){var r=zb(t)?fi("MapSet").N(t,n):Fb(t)?fi("MapSet").T(t,n):e.g?function(o,i){var s=Array.isArray(o),u={i:s?1:0,A:i?i.A:W4(),P:!1,I:!1,D:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=u,d=tf;s&&(c=[u],d=jc);var f=Proxy.revocable(c,d),h=f.revoke,m=f.proxy;return u.k=m,u.j=h,m}(t,n):fi("ES5").J(t,n);return(n?n.A:W4()).p.push(r),r}function Mue(e){return qa(e)||Ro(22,e),function t(n){if(!ea(n))return n;var r,o=n[zt],i=Wu(n);if(o){if(!o.P&&(o.i<4||!fi("ES5").K(o)))return o.t;o.I=!0,r=p7(n,i),o.I=!1}else r=p7(n,i);return Vs(r,function(s,u){o&&Aue(o.t,s)===u||mT(r,s,t(u))}),i===3?new Set(r):r}(e)}function p7(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return Bb(e)}function Rue(){function e(i,s){var u=o[i];return u?u.enumerable=s:o[i]=u={configurable:!0,enumerable:s,get:function(){var c=this[zt];return tf.get(c,i)},set:function(c){var d=this[zt];tf.set(d,i,c)}},u}function t(i){for(var s=i.length-1;s>=0;s--){var u=i[s][zt];if(!u.P)switch(u.i){case 5:r(u)&&La(u);break;case 4:n(u)&&La(u)}}}function n(i){for(var s=i.t,u=i.k,c=du(u),d=c.length-1;d>=0;d--){var f=c[d];if(f!==zt){var h=s[f];if(h===void 0&&!cu(s,f))return!0;var m=u[f],g=m&&m[zt];if(g?g.t!==h:!gT(m,h))return!0}}var b=!!s[zt];return c.length!==du(s).length+(b?0:1)}function r(i){var s=i.k;if(s.length!==i.t.length)return!0;var u=Object.getOwnPropertyDescriptor(s,s.length-1);if(u&&!u.get)return!0;for(var c=0;c1?S-1:0),_=1;_1?f-1:0),m=1;m=0;o--){var i=r[o];if(i.path.length===0&&i.op==="replace"){n=i.value;break}}o>-1&&(r=r.slice(o+1));var s=fi("Patches").$;return qa(n)?s(n,r):this.produce(n,function(u){return s(u,r)})},e}(),Hr=new Fue,bT=Hr.produce;Hr.produceWithPatches.bind(Hr);Hr.setAutoFreeze.bind(Hr);Hr.setUseProxies.bind(Hr);Hr.applyPatches.bind(Hr);Hr.createDraft.bind(Hr);Hr.finishDraft.bind(Hr);function v7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function y7(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(Hn(1));return n(jb)(e,t)}if(typeof e!="function")throw new Error(Hn(2));var o=e,i=t,s=[],u=s,c=!1;function d(){u===s&&(u=s.slice())}function f(){if(c)throw new Error(Hn(3));return i}function h(w){if(typeof w!="function")throw new Error(Hn(4));if(c)throw new Error(Hn(5));var k=!0;return d(),u.push(w),function(){if(!!k){if(c)throw new Error(Hn(6));k=!1,d();var x=u.indexOf(w);u.splice(x,1),s=null}}}function m(w){if(!Bue(w))throw new Error(Hn(7));if(typeof w.type>"u")throw new Error(Hn(8));if(c)throw new Error(Hn(9));try{c=!0,i=o(i,w)}finally{c=!1}for(var k=s=u,S=0;S"u")throw new Error(Hn(12));if(typeof n(void 0,{type:m0.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Hn(13))})}function xT(e){for(var t=Object.keys(e),n={},r=0;r"u")throw d&&d.type,new Error(Hn(14));h[g]=k,f=f||k!==w}return f=f||i.length!==Object.keys(c).length,f?h:c}}function g0(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var d=n[c];return c>0&&(n.splice(c,1),n.unshift(d)),d.value}return v0}function o(u,c){r(u)===v0&&(n.unshift({key:u,value:c}),n.length>e&&n.pop())}function i(){return n}function s(){n=[]}return{get:r,put:o,getEntries:i,clear:s}}var Hue=function(t,n){return t===n};function Uue(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var o=n.length,i=0;i1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?vce:gce;kT.useSyncExternalStore=Pu.useSyncExternalStore!==void 0?Pu.useSyncExternalStore:yce;(function(e){e.exports=kT})(_T);var ET={exports:{}},LT={};/** - * @license React - * use-sync-external-store-shim/with-selector.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var Tm=C.exports,bce=_T.exports;function xce(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var wce=typeof Object.is=="function"?Object.is:xce,Sce=bce.useSyncExternalStore,Cce=Tm.useRef,_ce=Tm.useEffect,kce=Tm.useMemo,Ece=Tm.useDebugValue;LT.useSyncExternalStoreWithSelector=function(e,t,n,r,o){var i=Cce(null);if(i.current===null){var s={hasValue:!1,value:null};i.current=s}else s=i.current;i=kce(function(){function c(g){if(!d){if(d=!0,f=g,g=r(g),o!==void 0&&s.hasValue){var b=s.value;if(o(b,g))return h=b}return h=g}if(b=h,wce(f,g))return b;var w=r(g);return o!==void 0&&o(b,w)?b:(f=g,h=w)}var d=!1,f,h,m=n===void 0?null:n;return[function(){return c(t())},m===null?void 0:function(){return c(m())}]},[t,n,r,o]);var u=Sce(e,i[0],i[1]);return _ce(function(){s.hasValue=!0,s.value=u},[u]),Ece(u),u};(function(e){e.exports=LT})(ET);function Lce(e){e()}let PT=Lce;const Pce=e=>PT=e,Ace=()=>PT,Ya=X.createContext(null);function AT(){return C.exports.useContext(Ya)}const Tce=()=>{throw new Error("uSES not initialized!")};let TT=Tce;const Ice=e=>{TT=e},Oce=(e,t)=>e===t;function Mce(e=Ya){const t=e===Ya?AT:()=>C.exports.useContext(e);return function(r,o=Oce){const{store:i,subscription:s,getServerState:u}=t(),c=TT(s.addNestedSub,i.getState,u||i.getState,r,o);return C.exports.useDebugValue(c),c}}const Rce=Mce();var Nce={exports:{}},bt={};/** - * @license React - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var Gb=Symbol.for("react.element"),Zb=Symbol.for("react.portal"),Im=Symbol.for("react.fragment"),Om=Symbol.for("react.strict_mode"),Mm=Symbol.for("react.profiler"),Rm=Symbol.for("react.provider"),Nm=Symbol.for("react.context"),Dce=Symbol.for("react.server_context"),Dm=Symbol.for("react.forward_ref"),zm=Symbol.for("react.suspense"),Fm=Symbol.for("react.suspense_list"),Bm=Symbol.for("react.memo"),$m=Symbol.for("react.lazy"),zce=Symbol.for("react.offscreen"),IT;IT=Symbol.for("react.module.reference");function yo(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case Gb:switch(e=e.type,e){case Im:case Mm:case Om:case zm:case Fm:return e;default:switch(e=e&&e.$$typeof,e){case Dce:case Nm:case Dm:case $m:case Bm:case Rm:return e;default:return t}}case Zb:return t}}}bt.ContextConsumer=Nm;bt.ContextProvider=Rm;bt.Element=Gb;bt.ForwardRef=Dm;bt.Fragment=Im;bt.Lazy=$m;bt.Memo=Bm;bt.Portal=Zb;bt.Profiler=Mm;bt.StrictMode=Om;bt.Suspense=zm;bt.SuspenseList=Fm;bt.isAsyncMode=function(){return!1};bt.isConcurrentMode=function(){return!1};bt.isContextConsumer=function(e){return yo(e)===Nm};bt.isContextProvider=function(e){return yo(e)===Rm};bt.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===Gb};bt.isForwardRef=function(e){return yo(e)===Dm};bt.isFragment=function(e){return yo(e)===Im};bt.isLazy=function(e){return yo(e)===$m};bt.isMemo=function(e){return yo(e)===Bm};bt.isPortal=function(e){return yo(e)===Zb};bt.isProfiler=function(e){return yo(e)===Mm};bt.isStrictMode=function(e){return yo(e)===Om};bt.isSuspense=function(e){return yo(e)===zm};bt.isSuspenseList=function(e){return yo(e)===Fm};bt.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===Im||e===Mm||e===Om||e===zm||e===Fm||e===zce||typeof e=="object"&&e!==null&&(e.$$typeof===$m||e.$$typeof===Bm||e.$$typeof===Rm||e.$$typeof===Nm||e.$$typeof===Dm||e.$$typeof===IT||e.getModuleId!==void 0)};bt.typeOf=yo;(function(e){e.exports=bt})(Nce);function Fce(){const e=Ace();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],o=t;for(;o;)r.push(o),o=o.next;return r},subscribe(r){let o=!0,i=n={callback:r,next:null,prev:n};return i.prev?i.prev.next=i:t=i,function(){!o||t===null||(o=!1,i.next?i.next.prev=i.prev:n=i.prev,i.prev?i.prev.next=i.next:t=i.next)}}}}const C7={notify(){},get:()=>[]};function Bce(e,t){let n,r=C7;function o(h){return c(),r.subscribe(h)}function i(){r.notify()}function s(){f.onStateChange&&f.onStateChange()}function u(){return Boolean(n)}function c(){n||(n=t?t.addNestedSub(s):e.subscribe(s),r=Fce())}function d(){n&&(n(),n=void 0,r.clear(),r=C7)}const f={addNestedSub:o,notifyNestedSubs:i,handleChangeWrapper:s,isSubscribed:u,trySubscribe:c,tryUnsubscribe:d,getListeners:()=>r};return f}const $ce=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",Vce=$ce?C.exports.useLayoutEffect:C.exports.useEffect;function Wce({store:e,context:t,children:n,serverState:r}){const o=C.exports.useMemo(()=>{const u=Bce(e);return{store:e,subscription:u,getServerState:r?()=>r:void 0}},[e,r]),i=C.exports.useMemo(()=>e.getState(),[e]);return Vce(()=>{const{subscription:u}=o;return u.onStateChange=u.notifyNestedSubs,u.trySubscribe(),i!==e.getState()&&u.notifyNestedSubs(),()=>{u.tryUnsubscribe(),u.onStateChange=void 0}},[o,i]),v((t||Ya).Provider,{value:o,children:n})}function OT(e=Ya){const t=e===Ya?AT:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const jce=OT();function Hce(e=Ya){const t=e===Ya?jce:OT(e);return function(){return t().dispatch}}const Uce=Hce();Ice(ET.exports.useSyncExternalStoreWithSelector);Pce(Iu.exports.unstable_batchedUpdates);var Kb="persist:",MT="persist/FLUSH",qb="persist/REHYDRATE",RT="persist/PAUSE",NT="persist/PERSIST",DT="persist/PURGE",zT="persist/REGISTER",Gce=-1;function a1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?a1=function(n){return typeof n}:a1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},a1(e)}function _7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Zce(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function ode(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var ide=5e3;function FT(e,t){var n=e.version!==void 0?e.version:Gce;e.debug;var r=e.stateReconciler===void 0?qce:e.stateReconciler,o=e.getStoredState||Qce,i=e.timeout!==void 0?e.timeout:ide,s=null,u=!1,c=!0,d=function(h){return h._persist.rehydrated&&s&&!c&&s.update(h),h};return function(f,h){var m=f||{},g=m._persist,b=rde(m,["_persist"]),w=b;if(h.type===NT){var k=!1,S=function(F,G){k||(h.rehydrate(e.key,F,G),k=!0)};if(i&&setTimeout(function(){!k&&S(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},i),c=!1,s||(s=Yce(e)),g)return zi({},t(w,h),{_persist:g});if(typeof h.rehydrate!="function"||typeof h.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return h.register(e.key),o(e).then(function(N){var F=e.migrate||function(G,W){return Promise.resolve(G)};F(N,n).then(function(G){S(G)},function(G){S(void 0,G)})},function(N){S(void 0,N)}),zi({},t(w,h),{_persist:{version:n,rehydrated:!1}})}else{if(h.type===DT)return u=!0,h.result(ede(e)),zi({},t(w,h),{_persist:g});if(h.type===MT)return h.result(s&&s.flush()),zi({},t(w,h),{_persist:g});if(h.type===RT)c=!0;else if(h.type===qb){if(u)return zi({},w,{_persist:zi({},g,{rehydrated:!0})});if(h.key===e.key){var x=t(w,h),_=h.payload,L=r!==!1&&_!==void 0?r(_,f,x,e):x,T=zi({},L,{_persist:zi({},g,{rehydrated:!0})});return d(T)}}}if(!g)return t(f,h);var R=t(w,h);return R===w?f:d(zi({},R,{_persist:g}))}}function E7(e){return lde(e)||sde(e)||ade()}function ade(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function sde(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function lde(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&arguments[0]!==void 0?arguments[0]:BT,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case zT:return Z4({},t,{registry:[].concat(E7(t.registry),[n.key])});case qb:var r=t.registry.indexOf(n.key),o=E7(t.registry);return o.splice(r,1),Z4({},t,{registry:o,bootstrapped:o.length===0});default:return t}};function dde(e,t,n){var r=n||!1,o=jb(cde,BT,t&&t.enhancer?t.enhancer:void 0),i=function(d){o.dispatch({type:zT,key:d})},s=function(d,f,h){var m={type:qb,payload:f,err:h,key:d};e.dispatch(m),o.dispatch(m),r&&u.getState().bootstrapped&&(r(),r=!1)},u=Z4({},o,{purge:function(){var d=[];return e.dispatch({type:DT,result:function(h){d.push(h)}}),Promise.all(d)},flush:function(){var d=[];return e.dispatch({type:MT,result:function(h){d.push(h)}}),Promise.all(d)},pause:function(){e.dispatch({type:RT})},persist:function(){e.dispatch({type:NT,register:i,rehydrate:s})}});return t&&t.manualPersist||u.persist(),u}var Yb={},Xb={};Xb.__esModule=!0;Xb.default=hde;function s1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?s1=function(n){return typeof n}:s1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},s1(e)}function D2(){}var fde={getItem:D2,setItem:D2,removeItem:D2};function pde(e){if((typeof self>"u"?"undefined":s1(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function hde(e){var t="".concat(e,"Storage");return pde(t)?self[t]:fde}Yb.__esModule=!0;Yb.default=vde;var mde=gde(Xb);function gde(e){return e&&e.__esModule?e:{default:e}}function vde(e){var t=(0,mde.default)(e);return{getItem:function(r){return new Promise(function(o,i){o(t.getItem(r))})},setItem:function(r,o){return new Promise(function(i,s){i(t.setItem(r,o))})},removeItem:function(r){return new Promise(function(o,i){o(t.removeItem(r))})}}}var Qb=void 0,yde=bde(Yb);function bde(e){return e&&e.__esModule?e:{default:e}}var xde=(0,yde.default)("local");Qb=xde;const K4=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),wde=e=>{const r=e.split(",").map(o=>o.split(":")).map(o=>({seed:Number(o[0]),weight:Number(o[1])}));return Jb(r)?r:!1},Jb=e=>Boolean(typeof e=="string"?wde(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,o=!isNaN(parseInt(n.toString(),10)),i=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(o&&i)})),q4=e=>e.reduce((t,n,r,o)=>{const{seed:i,weight:s}=n;return t+=`${i}:${s}`,r!==o.length-1&&(t+=","),t},""),Sde=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]),$T={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,hiresFix:!1,shouldUseInitImage:!1,img2imgStrength:.75,initialImagePath:null,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunGFPGAN:!1,gfpganStrength:.8,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,shouldShowGallery:!1},Cde=$T,VT=Hb({name:"options",initialState:Cde,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=K4(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setGfpganStrength:(e,t)=>{e.gfpganStrength=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setShouldUseInitImage:(e,t)=>{e.shouldUseInitImage=t.payload},setInitialImagePath:(e,t)=>{const n=t.payload;e.shouldUseInitImage=!!n,e.initialImagePath=n},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setHiresFix:(e,t)=>{e.hiresFix=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,o={...e,[n]:r};return n==="seed"&&(o.shouldRandomizeSeed=!1),n==="initialImagePath"&&r===""&&(o.shouldUseInitImage=!1),o},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:o,seed:i,variations:s,steps:u,cfg_scale:c,threshold:d,perlin:f,seamless:h,hires_fix:m,width:g,height:b,strength:w,fit:k,init_image_path:S,mask_image_path:x}=t.payload.image;n==="img2img"?(S&&(e.initialImagePath=S),x&&(e.maskPath=x),w&&(e.img2imgStrength=w),typeof k=="boolean"&&(e.shouldFitToWidthHeight=k),e.shouldUseInitImage=!0):e.shouldUseInitImage=!1,s&&s.length>0?(e.seedWeights=q4(s),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),o&&(e.prompt=K4(o)),r&&(e.sampler=r),u&&(e.steps=u),c&&(e.cfgScale=c),d&&(e.threshold=d),typeof d>"u"&&(e.threshold=0),f&&(e.perlin=f),typeof f>"u"&&(e.perlin=0),typeof h=="boolean"&&(e.seamless=h),typeof m=="boolean"&&(e.hiresFix=m),g&&(e.width=g),b&&(e.height=b)},resetOptionsState:e=>({...e,...$T}),setShouldRunGFPGAN:(e,t)=>{e.shouldRunGFPGAN=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{e.activeTab=t.payload},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload}}}),{setPrompt:WT,setIterations:_de,setSteps:jT,setCfgScale:HT,setThreshold:kde,setPerlin:Ede,setHeight:UT,setWidth:GT,setSampler:ZT,setSeed:Of,setSeamless:KT,setHiresFix:qT,setImg2imgStrength:YT,setGfpganStrength:Y4,setUpscalingLevel:X4,setUpscalingStrength:Q4,setShouldUseInitImage:P0e,setInitialImagePath:Au,setMaskPath:J4,resetSeed:A0e,resetOptionsState:T0e,setShouldFitToWidthHeight:XT,setParameter:I0e,setShouldGenerateVariations:Lde,setSeedWeights:QT,setVariationAmount:Pde,setAllParameters:JT,setShouldRunGFPGAN:Ade,setShouldRunESRGAN:Tde,setShouldRandomizeSeed:Ide,setShowAdvancedOptions:Ode,setActiveTab:Bi,setShouldShowImageDetails:Mde,setShouldShowGallery:P7}=VT.actions,Rde=VT.reducer;var Kn={exports:{}};/** - * @license - * Lodash - * Copyright OpenJS Foundation and other contributors - * Released under MIT license - * Based on Underscore.js 1.8.3 - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */(function(e,t){(function(){var n,r="4.17.21",o=200,i="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",s="Expected a function",u="Invalid `variable` option passed into `_.template`",c="__lodash_hash_undefined__",d=500,f="__lodash_placeholder__",h=1,m=2,g=4,b=1,w=2,k=1,S=2,x=4,_=8,L=16,T=32,R=64,N=128,F=256,G=512,W=30,J="...",Ee=800,he=16,me=1,ce=2,ge=3,ne=1/0,j=9007199254740991,Y=17976931348623157e292,K=0/0,O=4294967295,H=O-1,se=O>>>1,de=[["ary",N],["bind",k],["bindKey",S],["curry",_],["curryRight",L],["flip",G],["partial",T],["partialRight",R],["rearg",F]],ye="[object Arguments]",be="[object Array]",Pe="[object AsyncFunction]",fe="[object Boolean]",_e="[object Date]",De="[object DOMException]",st="[object Error]",It="[object Function]",bn="[object GeneratorFunction]",xe="[object Map]",Ie="[object Number]",tt="[object Null]",ze="[object Object]",$t="[object Promise]",xn="[object Proxy]",lt="[object RegExp]",Ct="[object Set]",Jt="[object String]",Gt="[object Symbol]",pe="[object Undefined]",Le="[object WeakMap]",ft="[object WeakSet]",ut="[object ArrayBuffer]",ie="[object DataView]",Ge="[object Float32Array]",Et="[object Float64Array]",En="[object Int8Array]",Fn="[object Int16Array]",Lr="[object Int32Array]",$o="[object Uint8Array]",xi="[object Uint8ClampedArray]",Yn="[object Uint16Array]",qr="[object Uint32Array]",os=/\b__p \+= '';/g,Qs=/\b(__p \+=) '' \+/g,Hm=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Uu=/&(?:amp|lt|gt|quot|#39);/g,ra=/[&<>"']/g,Um=RegExp(Uu.source),wi=RegExp(ra.source),Gm=/<%-([\s\S]+?)%>/g,Zm=/<%([\s\S]+?)%>/g,Rf=/<%=([\s\S]+?)%>/g,Km=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,qm=/^\w*$/,bo=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Gu=/[\\^$.*+?()[\]{}|]/g,Ym=RegExp(Gu.source),Zu=/^\s+/,Xm=/\s/,Qm=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,oa=/\{\n\/\* \[wrapped with (.+)\] \*/,Jm=/,? & /,eg=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,tg=/[()=,{}\[\]\/\s]/,ng=/\\(\\)?/g,rg=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Si=/\w*$/,og=/^[-+]0x[0-9a-f]+$/i,ig=/^0b[01]+$/i,ag=/^\[object .+?Constructor\]$/,sg=/^0o[0-7]+$/i,lg=/^(?:0|[1-9]\d*)$/,ug=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ia=/($^)/,cg=/['\n\r\u2028\u2029\\]/g,Ci="\\ud800-\\udfff",Ku="\\u0300-\\u036f",dg="\\ufe20-\\ufe2f",Js="\\u20d0-\\u20ff",qu=Ku+dg+Js,Nf="\\u2700-\\u27bf",Df="a-z\\xdf-\\xf6\\xf8-\\xff",fg="\\xac\\xb1\\xd7\\xf7",zf="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",pg="\\u2000-\\u206f",hg=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ff="A-Z\\xc0-\\xd6\\xd8-\\xde",Bf="\\ufe0e\\ufe0f",$f=fg+zf+pg+hg,Yu="['\u2019]",mg="["+Ci+"]",Vf="["+$f+"]",el="["+qu+"]",Wf="\\d+",tl="["+Nf+"]",nl="["+Df+"]",jf="[^"+Ci+$f+Wf+Nf+Df+Ff+"]",Xu="\\ud83c[\\udffb-\\udfff]",Hf="(?:"+el+"|"+Xu+")",Uf="[^"+Ci+"]",Qu="(?:\\ud83c[\\udde6-\\uddff]){2}",Ju="[\\ud800-\\udbff][\\udc00-\\udfff]",_i="["+Ff+"]",Gf="\\u200d",Zf="(?:"+nl+"|"+jf+")",gg="(?:"+_i+"|"+jf+")",rl="(?:"+Yu+"(?:d|ll|m|re|s|t|ve))?",Kf="(?:"+Yu+"(?:D|LL|M|RE|S|T|VE))?",qf=Hf+"?",Yf="["+Bf+"]?",ol="(?:"+Gf+"(?:"+[Uf,Qu,Ju].join("|")+")"+Yf+qf+")*",ec="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",tc="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",il=Yf+qf+ol,vg="(?:"+[tl,Qu,Ju].join("|")+")"+il,Xf="(?:"+[Uf+el+"?",el,Qu,Ju,mg].join("|")+")",nc=RegExp(Yu,"g"),Qf=RegExp(el,"g"),xo=RegExp(Xu+"(?="+Xu+")|"+Xf+il,"g"),is=RegExp([_i+"?"+nl+"+"+rl+"(?="+[Vf,_i,"$"].join("|")+")",gg+"+"+Kf+"(?="+[Vf,_i+Zf,"$"].join("|")+")",_i+"?"+Zf+"+"+rl,_i+"+"+Kf,tc,ec,Wf,vg].join("|"),"g"),yg=RegExp("["+Gf+Ci+qu+Bf+"]"),Jf=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,bg=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],ep=-1,_t={};_t[Ge]=_t[Et]=_t[En]=_t[Fn]=_t[Lr]=_t[$o]=_t[xi]=_t[Yn]=_t[qr]=!0,_t[ye]=_t[be]=_t[ut]=_t[fe]=_t[ie]=_t[_e]=_t[st]=_t[It]=_t[xe]=_t[Ie]=_t[ze]=_t[lt]=_t[Ct]=_t[Jt]=_t[Le]=!1;var xt={};xt[ye]=xt[be]=xt[ut]=xt[ie]=xt[fe]=xt[_e]=xt[Ge]=xt[Et]=xt[En]=xt[Fn]=xt[Lr]=xt[xe]=xt[Ie]=xt[ze]=xt[lt]=xt[Ct]=xt[Jt]=xt[Gt]=xt[$o]=xt[xi]=xt[Yn]=xt[qr]=!0,xt[st]=xt[It]=xt[Le]=!1;var tp={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},xg={"&":"&","<":"<",">":">",'"':""","'":"'"},I={"&":"&","<":"<",">":">",""":'"',"'":"'"},z={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},U=parseFloat,we=parseInt,Ze=typeof Vi=="object"&&Vi&&Vi.Object===Object&&Vi,pt=typeof self=="object"&&self&&self.Object===Object&&self,$e=Ze||pt||Function("return this")(),He=t&&!t.nodeType&&t,nt=He&&!0&&e&&!e.nodeType&&e,Xn=nt&&nt.exports===He,Ln=Xn&&Ze.process,wn=function(){try{var $=nt&&nt.require&&nt.require("util").types;return $||Ln&&Ln.binding&&Ln.binding("util")}catch{}}(),al=wn&&wn.isArrayBuffer,sl=wn&&wn.isDate,rc=wn&&wn.isMap,c6=wn&&wn.isRegExp,d6=wn&&wn.isSet,f6=wn&&wn.isTypedArray;function Pr($,Q,Z){switch(Z.length){case 0:return $.call(Q);case 1:return $.call(Q,Z[0]);case 2:return $.call(Q,Z[0],Z[1]);case 3:return $.call(Q,Z[0],Z[1],Z[2])}return $.apply(Q,Z)}function mO($,Q,Z,Se){for(var Fe=-1,rt=$==null?0:$.length;++Fe-1}function wg($,Q,Z){for(var Se=-1,Fe=$==null?0:$.length;++Se-1;);return Z}function x6($,Q){for(var Z=$.length;Z--&&ll(Q,$[Z],0)>-1;);return Z}function _O($,Q){for(var Z=$.length,Se=0;Z--;)$[Z]===Q&&++Se;return Se}var kO=kg(tp),EO=kg(xg);function LO($){return"\\"+z[$]}function PO($,Q){return $==null?n:$[Q]}function ul($){return yg.test($)}function AO($){return Jf.test($)}function TO($){for(var Q,Z=[];!(Q=$.next()).done;)Z.push(Q.value);return Z}function Ag($){var Q=-1,Z=Array($.size);return $.forEach(function(Se,Fe){Z[++Q]=[Fe,Se]}),Z}function w6($,Q){return function(Z){return $(Q(Z))}}function la($,Q){for(var Z=-1,Se=$.length,Fe=0,rt=[];++Z-1}function vM(a,l){var p=this.__data__,y=bp(p,a);return y<0?(++this.size,p.push([a,l])):p[y][1]=l,this}ki.prototype.clear=pM,ki.prototype.delete=hM,ki.prototype.get=mM,ki.prototype.has=gM,ki.prototype.set=vM;function Ei(a){var l=-1,p=a==null?0:a.length;for(this.clear();++l=l?a:l)),a}function Jr(a,l,p,y,E,A){var M,D=l&h,V=l&m,ee=l&g;if(p&&(M=E?p(a,y,E,A):p(a)),M!==n)return M;if(!Vt(a))return a;var te=Be(a);if(te){if(M=wR(a),!D)return fr(a,M)}else{var ae=$n(a),ve=ae==It||ae==bn;if(ha(a))return r9(a,D);if(ae==ze||ae==ye||ve&&!E){if(M=V||ve?{}:S9(a),!D)return V?cR(a,MM(M,a)):uR(a,M6(M,a))}else{if(!xt[ae])return E?a:{};M=SR(a,ae,D)}}A||(A=new So);var Ae=A.get(a);if(Ae)return Ae;A.set(a,M),X9(a)?a.forEach(function(Re){M.add(Jr(Re,l,p,Re,a,A))}):q9(a)&&a.forEach(function(Re,Ke){M.set(Ke,Jr(Re,l,p,Ke,a,A))});var Me=ee?V?tv:ev:V?hr:Sn,We=te?n:Me(a);return Yr(We||a,function(Re,Ke){We&&(Ke=Re,Re=a[Ke]),cc(M,Ke,Jr(Re,l,p,Ke,a,A))}),M}function RM(a){var l=Sn(a);return function(p){return R6(p,a,l)}}function R6(a,l,p){var y=p.length;if(a==null)return!y;for(a=kt(a);y--;){var E=p[y],A=l[E],M=a[E];if(M===n&&!(E in a)||!A(M))return!1}return!0}function N6(a,l,p){if(typeof a!="function")throw new Xr(s);return vc(function(){a.apply(n,p)},l)}function dc(a,l,p,y){var E=-1,A=np,M=!0,D=a.length,V=[],ee=l.length;if(!D)return V;p&&(l=Nt(l,Ar(p))),y?(A=wg,M=!1):l.length>=o&&(A=oc,M=!1,l=new ls(l));e:for(;++EE?0:E+p),y=y===n||y>E?E:Ve(y),y<0&&(y+=E),y=p>y?0:J9(y);p0&&p(D)?l>1?Pn(D,l-1,p,y,E):sa(E,D):y||(E[E.length]=D)}return E}var Dg=u9(),F6=u9(!0);function Vo(a,l){return a&&Dg(a,l,Sn)}function zg(a,l){return a&&F6(a,l,Sn)}function wp(a,l){return aa(l,function(p){return Ii(a[p])})}function cs(a,l){l=fa(l,a);for(var p=0,y=l.length;a!=null&&pl}function zM(a,l){return a!=null&&ht.call(a,l)}function FM(a,l){return a!=null&&l in kt(a)}function BM(a,l,p){return a>=Bn(l,p)&&a=120&&te.length>=120)?new ls(M&&te):n}te=a[0];var ae=-1,ve=D[0];e:for(;++ae-1;)D!==a&&fp.call(D,V,1),fp.call(a,V,1);return a}function q6(a,l){for(var p=a?l.length:0,y=p-1;p--;){var E=l[p];if(p==y||E!==A){var A=E;Ti(E)?fp.call(a,E,1):Zg(a,E)}}return a}function Hg(a,l){return a+mp(A6()*(l-a+1))}function QM(a,l,p,y){for(var E=-1,A=hn(hp((l-a)/(p||1)),0),M=Z(A);A--;)M[y?A:++E]=a,a+=p;return M}function Ug(a,l){var p="";if(!a||l<1||l>j)return p;do l%2&&(p+=a),l=mp(l/2),l&&(a+=a);while(l);return p}function Ue(a,l){return lv(k9(a,l,mr),a+"")}function JM(a){return O6(xl(a))}function eR(a,l){var p=xl(a);return Op(p,us(l,0,p.length))}function hc(a,l,p,y){if(!Vt(a))return a;l=fa(l,a);for(var E=-1,A=l.length,M=A-1,D=a;D!=null&&++EE?0:E+l),p=p>E?E:p,p<0&&(p+=E),E=l>p?0:p-l>>>0,l>>>=0;for(var A=Z(E);++y>>1,M=a[A];M!==null&&!Ir(M)&&(p?M<=l:M=o){var ee=l?null:hR(a);if(ee)return op(ee);M=!1,E=oc,V=new ls}else V=l?[]:D;e:for(;++y=y?a:eo(a,l,p)}var n9=UO||function(a){return $e.clearTimeout(a)};function r9(a,l){if(l)return a.slice();var p=a.length,y=_6?_6(p):new a.constructor(p);return a.copy(y),y}function Xg(a){var l=new a.constructor(a.byteLength);return new cp(l).set(new cp(a)),l}function iR(a,l){var p=l?Xg(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.byteLength)}function aR(a){var l=new a.constructor(a.source,Si.exec(a));return l.lastIndex=a.lastIndex,l}function sR(a){return uc?kt(uc.call(a)):{}}function o9(a,l){var p=l?Xg(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.length)}function i9(a,l){if(a!==l){var p=a!==n,y=a===null,E=a===a,A=Ir(a),M=l!==n,D=l===null,V=l===l,ee=Ir(l);if(!D&&!ee&&!A&&a>l||A&&M&&V&&!D&&!ee||y&&M&&V||!p&&V||!E)return 1;if(!y&&!A&&!ee&&a=D)return V;var ee=p[y];return V*(ee=="desc"?-1:1)}}return a.index-l.index}function a9(a,l,p,y){for(var E=-1,A=a.length,M=p.length,D=-1,V=l.length,ee=hn(A-M,0),te=Z(V+ee),ae=!y;++D1?p[E-1]:n,M=E>2?p[2]:n;for(A=a.length>3&&typeof A=="function"?(E--,A):n,M&&Jn(p[0],p[1],M)&&(A=E<3?n:A,E=1),l=kt(l);++y-1?E[A?l[M]:M]:n}}function f9(a){return Ai(function(l){var p=l.length,y=p,E=Qr.prototype.thru;for(a&&l.reverse();y--;){var A=l[y];if(typeof A!="function")throw new Xr(s);if(E&&!M&&Tp(A)=="wrapper")var M=new Qr([],!0)}for(y=M?y:p;++y1&&Xe.reverse(),te&&VD))return!1;var ee=A.get(a),te=A.get(l);if(ee&&te)return ee==l&&te==a;var ae=-1,ve=!0,Ae=p&w?new ls:n;for(A.set(a,l),A.set(l,a);++ae1?"& ":"")+l[y],l=l.join(p>2?", ":" "),a.replace(Qm,`{ -/* [wrapped with `+l+`] */ -`)}function _R(a){return Be(a)||ps(a)||!!(L6&&a&&a[L6])}function Ti(a,l){var p=typeof a;return l=l??j,!!l&&(p=="number"||p!="symbol"&&lg.test(a))&&a>-1&&a%1==0&&a0){if(++l>=Ee)return arguments[0]}else l=0;return a.apply(n,arguments)}}function Op(a,l){var p=-1,y=a.length,E=y-1;for(l=l===n?y:l;++p1?a[l-1]:n;return p=typeof p=="function"?(a.pop(),p):n,z9(a,p)});function F9(a){var l=P(a);return l.__chain__=!0,l}function NN(a,l){return l(a),a}function Mp(a,l){return l(a)}var DN=Ai(function(a){var l=a.length,p=l?a[0]:0,y=this.__wrapped__,E=function(A){return Ng(A,a)};return l>1||this.__actions__.length||!(y instanceof qe)||!Ti(p)?this.thru(E):(y=y.slice(p,+p+(l?1:0)),y.__actions__.push({func:Mp,args:[E],thisArg:n}),new Qr(y,this.__chain__).thru(function(A){return l&&!A.length&&A.push(n),A}))});function zN(){return F9(this)}function FN(){return new Qr(this.value(),this.__chain__)}function BN(){this.__values__===n&&(this.__values__=Q9(this.value()));var a=this.__index__>=this.__values__.length,l=a?n:this.__values__[this.__index__++];return{done:a,value:l}}function $N(){return this}function VN(a){for(var l,p=this;p instanceof yp;){var y=I9(p);y.__index__=0,y.__values__=n,l?E.__wrapped__=y:l=y;var E=y;p=p.__wrapped__}return E.__wrapped__=a,l}function WN(){var a=this.__wrapped__;if(a instanceof qe){var l=a;return this.__actions__.length&&(l=new qe(this)),l=l.reverse(),l.__actions__.push({func:Mp,args:[uv],thisArg:n}),new Qr(l,this.__chain__)}return this.thru(uv)}function jN(){return e9(this.__wrapped__,this.__actions__)}var HN=kp(function(a,l,p){ht.call(a,p)?++a[p]:Li(a,p,1)});function UN(a,l,p){var y=Be(a)?p6:NM;return p&&Jn(a,l,p)&&(l=n),y(a,Oe(l,3))}function GN(a,l){var p=Be(a)?aa:z6;return p(a,Oe(l,3))}var ZN=d9(O9),KN=d9(M9);function qN(a,l){return Pn(Rp(a,l),1)}function YN(a,l){return Pn(Rp(a,l),ne)}function XN(a,l,p){return p=p===n?1:Ve(p),Pn(Rp(a,l),p)}function B9(a,l){var p=Be(a)?Yr:ca;return p(a,Oe(l,3))}function $9(a,l){var p=Be(a)?gO:D6;return p(a,Oe(l,3))}var QN=kp(function(a,l,p){ht.call(a,p)?a[p].push(l):Li(a,p,[l])});function JN(a,l,p,y){a=pr(a)?a:xl(a),p=p&&!y?Ve(p):0;var E=a.length;return p<0&&(p=hn(E+p,0)),Bp(a)?p<=E&&a.indexOf(l,p)>-1:!!E&&ll(a,l,p)>-1}var eD=Ue(function(a,l,p){var y=-1,E=typeof l=="function",A=pr(a)?Z(a.length):[];return ca(a,function(M){A[++y]=E?Pr(l,M,p):fc(M,l,p)}),A}),tD=kp(function(a,l,p){Li(a,p,l)});function Rp(a,l){var p=Be(a)?Nt:j6;return p(a,Oe(l,3))}function nD(a,l,p,y){return a==null?[]:(Be(l)||(l=l==null?[]:[l]),p=y?n:p,Be(p)||(p=p==null?[]:[p]),Z6(a,l,p))}var rD=kp(function(a,l,p){a[p?0:1].push(l)},function(){return[[],[]]});function oD(a,l,p){var y=Be(a)?Sg:v6,E=arguments.length<3;return y(a,Oe(l,4),p,E,ca)}function iD(a,l,p){var y=Be(a)?vO:v6,E=arguments.length<3;return y(a,Oe(l,4),p,E,D6)}function aD(a,l){var p=Be(a)?aa:z6;return p(a,zp(Oe(l,3)))}function sD(a){var l=Be(a)?O6:JM;return l(a)}function lD(a,l,p){(p?Jn(a,l,p):l===n)?l=1:l=Ve(l);var y=Be(a)?TM:eR;return y(a,l)}function uD(a){var l=Be(a)?IM:nR;return l(a)}function cD(a){if(a==null)return 0;if(pr(a))return Bp(a)?cl(a):a.length;var l=$n(a);return l==xe||l==Ct?a.size:Vg(a).length}function dD(a,l,p){var y=Be(a)?Cg:rR;return p&&Jn(a,l,p)&&(l=n),y(a,Oe(l,3))}var fD=Ue(function(a,l){if(a==null)return[];var p=l.length;return p>1&&Jn(a,l[0],l[1])?l=[]:p>2&&Jn(l[0],l[1],l[2])&&(l=[l[0]]),Z6(a,Pn(l,1),[])}),Np=GO||function(){return $e.Date.now()};function pD(a,l){if(typeof l!="function")throw new Xr(s);return a=Ve(a),function(){if(--a<1)return l.apply(this,arguments)}}function V9(a,l,p){return l=p?n:l,l=a&&l==null?a.length:l,Pi(a,N,n,n,n,n,l)}function W9(a,l){var p;if(typeof l!="function")throw new Xr(s);return a=Ve(a),function(){return--a>0&&(p=l.apply(this,arguments)),a<=1&&(l=n),p}}var dv=Ue(function(a,l,p){var y=k;if(p.length){var E=la(p,yl(dv));y|=T}return Pi(a,y,l,p,E)}),j9=Ue(function(a,l,p){var y=k|S;if(p.length){var E=la(p,yl(j9));y|=T}return Pi(l,y,a,p,E)});function H9(a,l,p){l=p?n:l;var y=Pi(a,_,n,n,n,n,n,l);return y.placeholder=H9.placeholder,y}function U9(a,l,p){l=p?n:l;var y=Pi(a,L,n,n,n,n,n,l);return y.placeholder=U9.placeholder,y}function G9(a,l,p){var y,E,A,M,D,V,ee=0,te=!1,ae=!1,ve=!0;if(typeof a!="function")throw new Xr(s);l=no(l)||0,Vt(p)&&(te=!!p.leading,ae="maxWait"in p,A=ae?hn(no(p.maxWait)||0,l):A,ve="trailing"in p?!!p.trailing:ve);function Ae(tn){var _o=y,Mi=E;return y=E=n,ee=tn,M=a.apply(Mi,_o),M}function Me(tn){return ee=tn,D=vc(Ke,l),te?Ae(tn):M}function We(tn){var _o=tn-V,Mi=tn-ee,dx=l-_o;return ae?Bn(dx,A-Mi):dx}function Re(tn){var _o=tn-V,Mi=tn-ee;return V===n||_o>=l||_o<0||ae&&Mi>=A}function Ke(){var tn=Np();if(Re(tn))return Xe(tn);D=vc(Ke,We(tn))}function Xe(tn){return D=n,ve&&y?Ae(tn):(y=E=n,M)}function Or(){D!==n&&n9(D),ee=0,y=V=E=D=n}function er(){return D===n?M:Xe(Np())}function Mr(){var tn=Np(),_o=Re(tn);if(y=arguments,E=this,V=tn,_o){if(D===n)return Me(V);if(ae)return n9(D),D=vc(Ke,l),Ae(V)}return D===n&&(D=vc(Ke,l)),M}return Mr.cancel=Or,Mr.flush=er,Mr}var hD=Ue(function(a,l){return N6(a,1,l)}),mD=Ue(function(a,l,p){return N6(a,no(l)||0,p)});function gD(a){return Pi(a,G)}function Dp(a,l){if(typeof a!="function"||l!=null&&typeof l!="function")throw new Xr(s);var p=function(){var y=arguments,E=l?l.apply(this,y):y[0],A=p.cache;if(A.has(E))return A.get(E);var M=a.apply(this,y);return p.cache=A.set(E,M)||A,M};return p.cache=new(Dp.Cache||Ei),p}Dp.Cache=Ei;function zp(a){if(typeof a!="function")throw new Xr(s);return function(){var l=arguments;switch(l.length){case 0:return!a.call(this);case 1:return!a.call(this,l[0]);case 2:return!a.call(this,l[0],l[1]);case 3:return!a.call(this,l[0],l[1],l[2])}return!a.apply(this,l)}}function vD(a){return W9(2,a)}var yD=oR(function(a,l){l=l.length==1&&Be(l[0])?Nt(l[0],Ar(Oe())):Nt(Pn(l,1),Ar(Oe()));var p=l.length;return Ue(function(y){for(var E=-1,A=Bn(y.length,p);++E=l}),ps=$6(function(){return arguments}())?$6:function(a){return Zt(a)&&ht.call(a,"callee")&&!E6.call(a,"callee")},Be=Z.isArray,MD=al?Ar(al):VM;function pr(a){return a!=null&&Fp(a.length)&&!Ii(a)}function en(a){return Zt(a)&&pr(a)}function RD(a){return a===!0||a===!1||Zt(a)&&Qn(a)==fe}var ha=KO||Cv,ND=sl?Ar(sl):WM;function DD(a){return Zt(a)&&a.nodeType===1&&!yc(a)}function zD(a){if(a==null)return!0;if(pr(a)&&(Be(a)||typeof a=="string"||typeof a.splice=="function"||ha(a)||bl(a)||ps(a)))return!a.length;var l=$n(a);if(l==xe||l==Ct)return!a.size;if(gc(a))return!Vg(a).length;for(var p in a)if(ht.call(a,p))return!1;return!0}function FD(a,l){return pc(a,l)}function BD(a,l,p){p=typeof p=="function"?p:n;var y=p?p(a,l):n;return y===n?pc(a,l,n,p):!!y}function pv(a){if(!Zt(a))return!1;var l=Qn(a);return l==st||l==De||typeof a.message=="string"&&typeof a.name=="string"&&!yc(a)}function $D(a){return typeof a=="number"&&P6(a)}function Ii(a){if(!Vt(a))return!1;var l=Qn(a);return l==It||l==bn||l==Pe||l==xn}function K9(a){return typeof a=="number"&&a==Ve(a)}function Fp(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=j}function Vt(a){var l=typeof a;return a!=null&&(l=="object"||l=="function")}function Zt(a){return a!=null&&typeof a=="object"}var q9=rc?Ar(rc):HM;function VD(a,l){return a===l||$g(a,l,rv(l))}function WD(a,l,p){return p=typeof p=="function"?p:n,$g(a,l,rv(l),p)}function jD(a){return Y9(a)&&a!=+a}function HD(a){if(LR(a))throw new Fe(i);return V6(a)}function UD(a){return a===null}function GD(a){return a==null}function Y9(a){return typeof a=="number"||Zt(a)&&Qn(a)==Ie}function yc(a){if(!Zt(a)||Qn(a)!=ze)return!1;var l=dp(a);if(l===null)return!0;var p=ht.call(l,"constructor")&&l.constructor;return typeof p=="function"&&p instanceof p&&sp.call(p)==WO}var hv=c6?Ar(c6):UM;function ZD(a){return K9(a)&&a>=-j&&a<=j}var X9=d6?Ar(d6):GM;function Bp(a){return typeof a=="string"||!Be(a)&&Zt(a)&&Qn(a)==Jt}function Ir(a){return typeof a=="symbol"||Zt(a)&&Qn(a)==Gt}var bl=f6?Ar(f6):ZM;function KD(a){return a===n}function qD(a){return Zt(a)&&$n(a)==Le}function YD(a){return Zt(a)&&Qn(a)==ft}var XD=Ap(Wg),QD=Ap(function(a,l){return a<=l});function Q9(a){if(!a)return[];if(pr(a))return Bp(a)?wo(a):fr(a);if(ic&&a[ic])return TO(a[ic]());var l=$n(a),p=l==xe?Ag:l==Ct?op:xl;return p(a)}function Oi(a){if(!a)return a===0?a:0;if(a=no(a),a===ne||a===-ne){var l=a<0?-1:1;return l*Y}return a===a?a:0}function Ve(a){var l=Oi(a),p=l%1;return l===l?p?l-p:l:0}function J9(a){return a?us(Ve(a),0,O):0}function no(a){if(typeof a=="number")return a;if(Ir(a))return K;if(Vt(a)){var l=typeof a.valueOf=="function"?a.valueOf():a;a=Vt(l)?l+"":l}if(typeof a!="string")return a===0?a:+a;a=y6(a);var p=ig.test(a);return p||sg.test(a)?we(a.slice(2),p?2:8):og.test(a)?K:+a}function ex(a){return Wo(a,hr(a))}function JD(a){return a?us(Ve(a),-j,j):a===0?a:0}function ct(a){return a==null?"":Tr(a)}var ez=gl(function(a,l){if(gc(l)||pr(l)){Wo(l,Sn(l),a);return}for(var p in l)ht.call(l,p)&&cc(a,p,l[p])}),tx=gl(function(a,l){Wo(l,hr(l),a)}),$p=gl(function(a,l,p,y){Wo(l,hr(l),a,y)}),tz=gl(function(a,l,p,y){Wo(l,Sn(l),a,y)}),nz=Ai(Ng);function rz(a,l){var p=ml(a);return l==null?p:M6(p,l)}var oz=Ue(function(a,l){a=kt(a);var p=-1,y=l.length,E=y>2?l[2]:n;for(E&&Jn(l[0],l[1],E)&&(y=1);++p1),A}),Wo(a,tv(a),p),y&&(p=Jr(p,h|m|g,mR));for(var E=l.length;E--;)Zg(p,l[E]);return p});function Sz(a,l){return rx(a,zp(Oe(l)))}var Cz=Ai(function(a,l){return a==null?{}:YM(a,l)});function rx(a,l){if(a==null)return{};var p=Nt(tv(a),function(y){return[y]});return l=Oe(l),K6(a,p,function(y,E){return l(y,E[0])})}function _z(a,l,p){l=fa(l,a);var y=-1,E=l.length;for(E||(E=1,a=n);++yl){var y=a;a=l,l=y}if(p||a%1||l%1){var E=A6();return Bn(a+E*(l-a+U("1e-"+((E+"").length-1))),l)}return Hg(a,l)}var Nz=vl(function(a,l,p){return l=l.toLowerCase(),a+(p?ax(l):l)});function ax(a){return vv(ct(a).toLowerCase())}function sx(a){return a=ct(a),a&&a.replace(ug,kO).replace(Qf,"")}function Dz(a,l,p){a=ct(a),l=Tr(l);var y=a.length;p=p===n?y:us(Ve(p),0,y);var E=p;return p-=l.length,p>=0&&a.slice(p,E)==l}function zz(a){return a=ct(a),a&&wi.test(a)?a.replace(ra,EO):a}function Fz(a){return a=ct(a),a&&Ym.test(a)?a.replace(Gu,"\\$&"):a}var Bz=vl(function(a,l,p){return a+(p?"-":"")+l.toLowerCase()}),$z=vl(function(a,l,p){return a+(p?" ":"")+l.toLowerCase()}),Vz=c9("toLowerCase");function Wz(a,l,p){a=ct(a),l=Ve(l);var y=l?cl(a):0;if(!l||y>=l)return a;var E=(l-y)/2;return Pp(mp(E),p)+a+Pp(hp(E),p)}function jz(a,l,p){a=ct(a),l=Ve(l);var y=l?cl(a):0;return l&&y>>0,p?(a=ct(a),a&&(typeof l=="string"||l!=null&&!hv(l))&&(l=Tr(l),!l&&ul(a))?pa(wo(a),0,p):a.split(l,p)):[]}var Yz=vl(function(a,l,p){return a+(p?" ":"")+vv(l)});function Xz(a,l,p){return a=ct(a),p=p==null?0:us(Ve(p),0,a.length),l=Tr(l),a.slice(p,p+l.length)==l}function Qz(a,l,p){var y=P.templateSettings;p&&Jn(a,l,p)&&(l=n),a=ct(a),l=$p({},l,y,v9);var E=$p({},l.imports,y.imports,v9),A=Sn(E),M=Pg(E,A),D,V,ee=0,te=l.interpolate||ia,ae="__p += '",ve=Tg((l.escape||ia).source+"|"+te.source+"|"+(te===Rf?rg:ia).source+"|"+(l.evaluate||ia).source+"|$","g"),Ae="//# sourceURL="+(ht.call(l,"sourceURL")?(l.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++ep+"]")+` -`;a.replace(ve,function(Re,Ke,Xe,Or,er,Mr){return Xe||(Xe=Or),ae+=a.slice(ee,Mr).replace(cg,LO),Ke&&(D=!0,ae+=`' + -__e(`+Ke+`) + -'`),er&&(V=!0,ae+=`'; -`+er+`; -__p += '`),Xe&&(ae+=`' + -((__t = (`+Xe+`)) == null ? '' : __t) + -'`),ee=Mr+Re.length,Re}),ae+=`'; -`;var Me=ht.call(l,"variable")&&l.variable;if(!Me)ae=`with (obj) { -`+ae+` -} -`;else if(tg.test(Me))throw new Fe(u);ae=(V?ae.replace(os,""):ae).replace(Qs,"$1").replace(Hm,"$1;"),ae="function("+(Me||"obj")+`) { -`+(Me?"":`obj || (obj = {}); -`)+"var __t, __p = ''"+(D?", __e = _.escape":"")+(V?`, __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -`:`; -`)+ae+`return __p -}`;var We=ux(function(){return rt(A,Ae+"return "+ae).apply(n,M)});if(We.source=ae,pv(We))throw We;return We}function Jz(a){return ct(a).toLowerCase()}function eF(a){return ct(a).toUpperCase()}function tF(a,l,p){if(a=ct(a),a&&(p||l===n))return y6(a);if(!a||!(l=Tr(l)))return a;var y=wo(a),E=wo(l),A=b6(y,E),M=x6(y,E)+1;return pa(y,A,M).join("")}function nF(a,l,p){if(a=ct(a),a&&(p||l===n))return a.slice(0,S6(a)+1);if(!a||!(l=Tr(l)))return a;var y=wo(a),E=x6(y,wo(l))+1;return pa(y,0,E).join("")}function rF(a,l,p){if(a=ct(a),a&&(p||l===n))return a.replace(Zu,"");if(!a||!(l=Tr(l)))return a;var y=wo(a),E=b6(y,wo(l));return pa(y,E).join("")}function oF(a,l){var p=W,y=J;if(Vt(l)){var E="separator"in l?l.separator:E;p="length"in l?Ve(l.length):p,y="omission"in l?Tr(l.omission):y}a=ct(a);var A=a.length;if(ul(a)){var M=wo(a);A=M.length}if(p>=A)return a;var D=p-cl(y);if(D<1)return y;var V=M?pa(M,0,D).join(""):a.slice(0,D);if(E===n)return V+y;if(M&&(D+=V.length-D),hv(E)){if(a.slice(D).search(E)){var ee,te=V;for(E.global||(E=Tg(E.source,ct(Si.exec(E))+"g")),E.lastIndex=0;ee=E.exec(te);)var ae=ee.index;V=V.slice(0,ae===n?D:ae)}}else if(a.indexOf(Tr(E),D)!=D){var ve=V.lastIndexOf(E);ve>-1&&(V=V.slice(0,ve))}return V+y}function iF(a){return a=ct(a),a&&Um.test(a)?a.replace(Uu,RO):a}var aF=vl(function(a,l,p){return a+(p?" ":"")+l.toUpperCase()}),vv=c9("toUpperCase");function lx(a,l,p){return a=ct(a),l=p?n:l,l===n?AO(a)?zO(a):xO(a):a.match(l)||[]}var ux=Ue(function(a,l){try{return Pr(a,n,l)}catch(p){return pv(p)?p:new Fe(p)}}),sF=Ai(function(a,l){return Yr(l,function(p){p=jo(p),Li(a,p,dv(a[p],a))}),a});function lF(a){var l=a==null?0:a.length,p=Oe();return a=l?Nt(a,function(y){if(typeof y[1]!="function")throw new Xr(s);return[p(y[0]),y[1]]}):[],Ue(function(y){for(var E=-1;++Ej)return[];var p=O,y=Bn(a,O);l=Oe(l),a-=O;for(var E=Lg(y,l);++p0||l<0)?new qe(p):(a<0?p=p.takeRight(-a):a&&(p=p.drop(a)),l!==n&&(l=Ve(l),p=l<0?p.dropRight(-l):p.take(l-a)),p)},qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},qe.prototype.toArray=function(){return this.take(O)},Vo(qe.prototype,function(a,l){var p=/^(?:filter|find|map|reject)|While$/.test(l),y=/^(?:head|last)$/.test(l),E=P[y?"take"+(l=="last"?"Right":""):l],A=y||/^find/.test(l);!E||(P.prototype[l]=function(){var M=this.__wrapped__,D=y?[1]:arguments,V=M instanceof qe,ee=D[0],te=V||Be(M),ae=function(Ke){var Xe=E.apply(P,sa([Ke],D));return y&&ve?Xe[0]:Xe};te&&p&&typeof ee=="function"&&ee.length!=1&&(V=te=!1);var ve=this.__chain__,Ae=!!this.__actions__.length,Me=A&&!ve,We=V&&!Ae;if(!A&&te){M=We?M:new qe(this);var Re=a.apply(M,D);return Re.__actions__.push({func:Mp,args:[ae],thisArg:n}),new Qr(Re,ve)}return Me&&We?a.apply(this,D):(Re=this.thru(ae),Me?y?Re.value()[0]:Re.value():Re)})}),Yr(["pop","push","shift","sort","splice","unshift"],function(a){var l=ip[a],p=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",y=/^(?:pop|shift)$/.test(a);P.prototype[a]=function(){var E=arguments;if(y&&!this.__chain__){var A=this.value();return l.apply(Be(A)?A:[],E)}return this[p](function(M){return l.apply(Be(M)?M:[],E)})}}),Vo(qe.prototype,function(a,l){var p=P[l];if(p){var y=p.name+"";ht.call(hl,y)||(hl[y]=[]),hl[y].push({name:l,func:p})}}),hl[Ep(n,S).name]=[{name:"wrapper",func:n}],qe.prototype.clone=iM,qe.prototype.reverse=aM,qe.prototype.value=sM,P.prototype.at=DN,P.prototype.chain=zN,P.prototype.commit=FN,P.prototype.next=BN,P.prototype.plant=VN,P.prototype.reverse=WN,P.prototype.toJSON=P.prototype.valueOf=P.prototype.value=jN,P.prototype.first=P.prototype.head,ic&&(P.prototype[ic]=$N),P},dl=FO();nt?((nt.exports=dl)._=dl,He._=dl):$e._=dl}).call(Vi)})(Kn,Kn.exports);const rf=Kn.exports,Nde={currentImageUuid:"",images:[],areMoreImagesAvailable:!0},eI=Hb({name:"gallery",initialState:Nde,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const n=t.payload,r=e.images.filter(o=>o.uuid!==n);if(n===e.currentImageUuid){const o=e.images.findIndex(s=>s.uuid===n),i=Kn.exports.clamp(o,0,r.length-1);e.currentImage=r.length?r[i]:void 0,e.currentImageUuid=r.length?r[i].uuid:""}e.images=r},addImage:(e,t)=>{const n=t.payload,{uuid:r,mtime:o}=n;e.images.unshift(n),e.currentImageUuid=r,e.intermediateImage=void 0,e.currentImage=n,e.latest_mtime=o},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(rf.inRange(r,0,t.length)){const o=t[r+1];e.currentImage=o,e.currentImageUuid=o.uuid}}},selectPrevImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(rf.inRange(r,1,t.length+1)){const o=t[r-1];e.currentImage=o,e.currentImageUuid=o.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r}=t.payload;if(n.length>0){if(e.images=e.images.concat(n).sort((o,i)=>i.mtime-o.mtime),!e.currentImage){const o=n[0];e.currentImage=o,e.currentImageUuid=o.uuid}e.latest_mtime=n[0].mtime,e.earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.areMoreImagesAvailable=r)}}}),{addImage:_h,clearIntermediateImage:A7,removeImage:Dde,setCurrentImage:zde,addGalleryImages:Fde,setIntermediateImage:Bde,selectNextImage:tI,selectPrevImage:nI}=eI.actions,$de=eI.reducer,Vde={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgress:!1,shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",hasError:!1,wasErrorSeen:!0},Wde=Vde,rI=Hb({name:"system",initialState:Wde,reducers:{setShouldDisplayInProgress:(e,t)=>{e.shouldDisplayInProgress=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Server error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:o}=t.payload,s={timestamp:n,message:r,level:o||"info"};e.log.push(s)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"}}}),{setShouldDisplayInProgress:jde,setIsProcessing:l1,addLogEntry:nr,setShouldShowLogViewer:T7,setIsConnected:I7,setSocketId:O0e,setShouldConfirmOnDelete:oI,setOpenAccordions:Hde,setSystemStatus:Ude,setCurrentStatus:O7,setSystemConfig:Gde,setShouldDisplayGuides:Zde,processingCanceled:Kde,errorOccurred:qde,errorSeen:iI}=rI.actions,Yde=rI.reducer,vi=Object.create(null);vi.open="0";vi.close="1";vi.ping="2";vi.pong="3";vi.message="4";vi.upgrade="5";vi.noop="6";const u1=Object.create(null);Object.keys(vi).forEach(e=>{u1[vi[e]]=e});const Xde={type:"error",data:"parser error"},Qde=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Jde=typeof ArrayBuffer=="function",efe=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,aI=({type:e,data:t},n,r)=>Qde&&t instanceof Blob?n?r(t):M7(t,r):Jde&&(t instanceof ArrayBuffer||efe(t))?n?r(t):M7(new Blob([t]),r):r(vi[e]+(t||"")),M7=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},R7="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Hc=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,o=0,i,s,u,c;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const d=new ArrayBuffer(t),f=new Uint8Array(d);for(r=0;r>4,f[o++]=(s&15)<<4|u>>2,f[o++]=(u&3)<<6|c&63;return d},nfe=typeof ArrayBuffer=="function",sI=(e,t)=>{if(typeof e!="string")return{type:"message",data:lI(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:rfe(e.substring(1),t)}:u1[n]?e.length>1?{type:u1[n],data:e.substring(1)}:{type:u1[n]}:Xde},rfe=(e,t)=>{if(nfe){const n=tfe(e);return lI(n,t)}else return{base64:!0,data:e}},lI=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},uI=String.fromCharCode(30),ofe=(e,t)=>{const n=e.length,r=new Array(n);let o=0;e.forEach((i,s)=>{aI(i,!1,u=>{r[s]=u,++o===n&&t(r.join(uI))})})},ife=(e,t)=>{const n=e.split(uI),r=[];for(let o=0;otypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function dI(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const sfe=setTimeout,lfe=clearTimeout;function Vm(e,t){t.useNativeTimers?(e.setTimeoutFn=sfe.bind(Ra),e.clearTimeoutFn=lfe.bind(Ra)):(e.setTimeoutFn=setTimeout.bind(Ra),e.clearTimeoutFn=clearTimeout.bind(Ra))}const ufe=1.33;function cfe(e){return typeof e=="string"?dfe(e):Math.ceil((e.byteLength||e.size)*ufe)}function dfe(e){let t=0,n=0;for(let r=0,o=e.length;r=57344?n+=3:(r++,n+=4);return n}class ffe extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class fI extends fn{constructor(t){super(),this.writable=!1,Vm(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new ffe(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=sI(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const pI="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),e5=64,pfe={};let N7=0,kh=0,D7;function z7(e){let t="";do t=pI[e%e5]+t,e=Math.floor(e/e5);while(e>0);return t}function hI(){const e=z7(+new Date);return e!==D7?(N7=0,D7=e):e+"."+z7(N7++)}for(;kh{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};ife(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,ofe(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=hI()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const o=mI(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new pi(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(o,i)=>{this.onError("xhr post error",o,i)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class pi extends fn{constructor(t,n){super(),Vm(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=dI(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new vI(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=pi.requestsCount++,pi.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=gfe,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete pi.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}pi.requestsCount=0;pi.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",F7);else if(typeof addEventListener=="function"){const e="onpagehide"in Ra?"pagehide":"unload";addEventListener(e,F7,!1)}}function F7(){for(let e in pi.requests)pi.requests.hasOwnProperty(e)&&pi.requests[e].abort()}const bfe=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),Eh=Ra.WebSocket||Ra.MozWebSocket,B7=!0,xfe="arraybuffer",$7=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class wfe extends fI{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=$7?{}:dI(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=B7&&!$7?n?new Eh(t,n):new Eh(t):new Eh(t,n,r)}catch(o){return this.emitReserved("error",o)}this.ws.binaryType=this.socket.binaryType||xfe,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const s={};try{B7&&this.ws.send(i)}catch{}o&&bfe(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=hI()),this.supportsBinary||(t.b64=1);const o=mI(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}check(){return!!Eh}}const Sfe={websocket:wfe,polling:yfe},Cfe=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,_fe=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function t5(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let o=Cfe.exec(e||""),i={},s=14;for(;s--;)i[_fe[s]]=o[s]||"";return n!=-1&&r!=-1&&(i.source=t,i.host=i.host.substring(1,i.host.length-1).replace(/;/g,":"),i.authority=i.authority.replace("[","").replace("]","").replace(/;/g,":"),i.ipv6uri=!0),i.pathNames=kfe(i,i.path),i.queryKey=Efe(i,i.query),i}function kfe(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.substr(0,1)=="/"||t.length===0)&&r.splice(0,1),t.substr(t.length-1,1)=="/"&&r.splice(r.length-1,1),r}function Efe(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,o,i){o&&(n[o]=i)}),n}class Pa extends fn{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=t5(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=t5(n.host).host),Vm(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=hfe(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&addEventListener("beforeunload",()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},!1),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=cI,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new Sfe[t](r)}open(){let t;if(this.opts.rememberUpgrade&&Pa.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;Pa.priorWebsocketSuccess=!1;const o=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",h=>{if(!r)if(h.type==="pong"&&h.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;Pa.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(f(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function i(){r||(r=!0,f(),n.close(),n=null)}const s=h=>{const m=new Error("probe error: "+h);m.transport=n.name,i(),this.emitReserved("upgradeError",m)};function u(){s("transport closed")}function c(){s("socket closed")}function d(h){n&&h.name!==n.name&&i()}const f=()=>{n.removeListener("open",o),n.removeListener("error",s),n.removeListener("close",u),this.off("close",c),this.off("upgrading",d)};n.once("open",o),n.once("error",s),n.once("close",u),this.once("close",c),this.once("upgrading",d),n.open()}onOpen(){if(this.readyState="open",Pa.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,o){if(typeof n=="function"&&(o=n,n=void 0),typeof r=="function"&&(o=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const i={type:t,data:n,options:r};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),o&&this.once("flush",o),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){Pa.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&removeEventListener("offline",this.offlineEventListener,!1),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const o=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,yI=Object.prototype.toString,Tfe=typeof Blob=="function"||typeof Blob<"u"&&yI.call(Blob)==="[object BlobConstructor]",Ife=typeof File=="function"||typeof File<"u"&&yI.call(File)==="[object FileConstructor]";function e6(e){return Pfe&&(e instanceof ArrayBuffer||Afe(e))||Tfe&&e instanceof Blob||Ife&&e instanceof File}function c1(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case Qe.ACK:case Qe.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class Dfe{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=Mfe(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const zfe=Object.freeze(Object.defineProperty({__proto__:null,protocol:Rfe,get PacketType(){return Qe},Encoder:Nfe,Decoder:t6},Symbol.toStringTag,{value:"Module"}));function Oo(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const Ffe=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class bI extends fn{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[Oo(t,"open",this.onopen.bind(this)),Oo(t,"packet",this.onpacket.bind(this)),Oo(t,"error",this.onerror.bind(this)),Oo(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(Ffe.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:Qe.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const s=this.ids++,u=n.pop();this._registerAckCallback(s,u),r.id=s}const o=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!o||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const o=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let i=0;i{this.io.clearTimeoutFn(o),n.apply(this,[null,...i])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:Qe.CONNECT,data:t})}):this.packet({type:Qe.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Qe.CONNECT:if(t.data&&t.data.sid){const o=t.data.sid;this.onconnect(o)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Qe.EVENT:case Qe.BINARY_EVENT:this.onevent(t);break;case Qe.ACK:case Qe.BINARY_ACK:this.onack(t);break;case Qe.DISCONNECT:this.ondisconnect();break;case Qe.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...o){r||(r=!0,n.packet({type:Qe.ACK,id:t,data:o}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Qe.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}ju.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};ju.prototype.reset=function(){this.attempts=0};ju.prototype.setMin=function(e){this.ms=e};ju.prototype.setMax=function(e){this.max=e};ju.prototype.setJitter=function(e){this.jitter=e};class o5 extends fn{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,Vm(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new ju({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const o=n.parser||zfe;this.encoder=new o.Encoder,this.decoder=new o.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new Pa(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const o=Oo(n,"open",function(){r.onopen(),t&&t()}),i=Oo(n,"error",s=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",s),t?t(s):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const s=this._timeout;s===0&&o();const u=this.setTimeoutFn(()=>{o(),n.close(),n.emit("error",new Error("timeout"))},s);this.opts.autoUnref&&u.unref(),this.subs.push(function(){clearTimeout(u)})}return this.subs.push(o),this.subs.push(i),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(Oo(t,"ping",this.onping.bind(this)),Oo(t,"data",this.ondata.bind(this)),Oo(t,"error",this.onerror.bind(this)),Oo(t,"close",this.onclose.bind(this)),Oo(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch{this.onclose("parse error")}}ondecoded(t){this.emitReserved("packet",t)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new bI(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(o=>{o?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",o)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Mc={};function d1(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=Lfe(e,t.path||"/socket.io"),r=n.source,o=n.id,i=n.path,s=Mc[o]&&i in Mc[o].nsps,u=t.forceNew||t["force new connection"]||t.multiplex===!1||s;let c;return u?c=new o5(r,t):(Mc[o]||(Mc[o]=new o5(r,t)),c=Mc[o]),n.query&&!t.query&&(t.query=n.queryKey),c.socket(n.path,t)}Object.assign(d1,{Manager:o5,Socket:bI,io:d1,connect:d1});let Lh;const Bfe=new Uint8Array(16);function $fe(){if(!Lh&&(Lh=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Lh))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Lh(Bfe)}const Tn=[];for(let e=0;e<256;++e)Tn.push((e+256).toString(16).slice(1));function Vfe(e,t=0){return(Tn[e[t+0]]+Tn[e[t+1]]+Tn[e[t+2]]+Tn[e[t+3]]+"-"+Tn[e[t+4]]+Tn[e[t+5]]+"-"+Tn[e[t+6]]+Tn[e[t+7]]+"-"+Tn[e[t+8]]+Tn[e[t+9]]+"-"+Tn[e[t+10]]+Tn[e[t+11]]+Tn[e[t+12]]+Tn[e[t+13]]+Tn[e[t+14]]+Tn[e[t+15]]).toLowerCase()}const Wfe=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),V7={randomUUID:Wfe};function Rc(e,t,n){if(V7.randomUUID&&!t&&!e)return V7.randomUUID();e=e||{};const r=e.random||(e.rng||$fe)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let o=0;o<16;++o)t[n+o]=r[o];return t}return Vfe(r)}var jfe=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,Hfe=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,Ufe=/[^-+\dA-Z]/g;function rr(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(W7[t]||t||W7.default);var o=t.slice(0,4);(o==="UTC:"||o==="GMT:")&&(t=t.slice(4),n=!0,o==="GMT:"&&(r=!0));var i=function(){return n?"getUTC":"get"},s=function(){return e[i()+"Date"]()},u=function(){return e[i()+"Day"]()},c=function(){return e[i()+"Month"]()},d=function(){return e[i()+"FullYear"]()},f=function(){return e[i()+"Hours"]()},h=function(){return e[i()+"Minutes"]()},m=function(){return e[i()+"Seconds"]()},g=function(){return e[i()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},w=function(){return Gfe(e)},k=function(){return Zfe(e)},S={d:function(){return s()},dd:function(){return Rr(s())},ddd:function(){return gr.dayNames[u()]},DDD:function(){return j7({y:d(),m:c(),d:s(),_:i(),dayName:gr.dayNames[u()],short:!0})},dddd:function(){return gr.dayNames[u()+7]},DDDD:function(){return j7({y:d(),m:c(),d:s(),_:i(),dayName:gr.dayNames[u()+7]})},m:function(){return c()+1},mm:function(){return Rr(c()+1)},mmm:function(){return gr.monthNames[c()]},mmmm:function(){return gr.monthNames[c()+12]},yy:function(){return String(d()).slice(2)},yyyy:function(){return Rr(d(),4)},h:function(){return f()%12||12},hh:function(){return Rr(f()%12||12)},H:function(){return f()},HH:function(){return Rr(f())},M:function(){return h()},MM:function(){return Rr(h())},s:function(){return m()},ss:function(){return Rr(m())},l:function(){return Rr(g(),3)},L:function(){return Rr(Math.floor(g()/10))},t:function(){return f()<12?gr.timeNames[0]:gr.timeNames[1]},tt:function(){return f()<12?gr.timeNames[2]:gr.timeNames[3]},T:function(){return f()<12?gr.timeNames[4]:gr.timeNames[5]},TT:function(){return f()<12?gr.timeNames[6]:gr.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":Kfe(e)},o:function(){return(b()>0?"-":"+")+Rr(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+Rr(Math.floor(Math.abs(b())/60),2)+":"+Rr(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][s()%10>3?0:(s()%100-s()%10!=10)*s()%10]},W:function(){return w()},WW:function(){return Rr(w())},N:function(){return k()}};return t.replace(jfe,function(x){return x in S?S[x]():x.slice(1,x.length-1)})}var W7={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},gr={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},Rr=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},j7=function(t){var n=t.y,r=t.m,o=t.d,i=t._,s=t.dayName,u=t.short,c=u===void 0?!1:u,d=new Date,f=new Date;f.setDate(f[i+"Date"]()-1);var h=new Date;h.setDate(h[i+"Date"]()+1);var m=function(){return d[i+"Date"]()},g=function(){return d[i+"Month"]()},b=function(){return d[i+"FullYear"]()},w=function(){return f[i+"Date"]()},k=function(){return f[i+"Month"]()},S=function(){return f[i+"FullYear"]()},x=function(){return h[i+"Date"]()},_=function(){return h[i+"Month"]()},L=function(){return h[i+"FullYear"]()};return b()===n&&g()===r&&m()===o?c?"Tdy":"Today":S()===n&&k()===r&&w()===o?c?"Ysd":"Yesterday":L()===n&&_()===r&&x()===o?c?"Tmw":"Tomorrow":s},Gfe=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var o=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-o);var i=(n-r)/(864e5*7);return 1+Math.floor(i)},Zfe=function(t){var n=t.getDay();return n===0&&(n=7),n},Kfe=function(t){return(String(t).match(Hfe)||[""]).pop().replace(Ufe,"").replace(/GMT\+0000/g,"UTC")};const i5=sr("socketio/generateImage"),qfe=sr("socketio/runESRGAN"),Yfe=sr("socketio/runGFPGAN"),Xfe=sr("socketio/deleteImage"),xI=sr("socketio/requestImages"),Qfe=sr("socketio/requestNewImages"),Jfe=sr("socketio/cancelProcessing"),epe=sr("socketio/uploadInitialImage");sr("socketio/uploadMaskImage");const tpe=sr("socketio/requestSystemConfig"),npe=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(I7(!0)),t(O7("Connected")),n().gallery.latest_mtime?t(Qfe()):t(xI())}catch(r){console.error(r)}},onDisconnect:()=>{try{t(I7(!1)),t(O7("Disconnected")),t(nr({timestamp:rr(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{url:o,mtime:i,metadata:s}=r,u=Rc();t(_h({uuid:u,url:o,mtime:i,metadata:s})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image generated: ${o}`}))}catch(o){console.error(o)}},onIntermediateResult:r=>{try{const o=Rc(),{url:i,metadata:s,mtime:u}=r;t(Bde({uuid:o,url:i,mtime:u,metadata:s})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Intermediate image generated: ${i}`}))}catch(o){console.error(o)}},onPostprocessingResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(_h({uuid:Rc(),url:o,mtime:s,metadata:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Postprocessed: ${o}`}))}catch(o){console.error(o)}},onGFPGANResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(_h({uuid:Rc(),url:o,mtime:s,metadata:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Fixed faces: ${o}`}))}catch(o){console.error(o)}},onProgressUpdate:r=>{try{t(l1(!0)),t(Ude(r))}catch(o){console.error(o)}},onError:r=>{const{message:o,additionalData:i}=r;try{t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Server error: ${o}`,level:"error"})),t(qde()),t(A7())}catch(s){console.error(s)}},onGalleryImages:r=>{const{images:o,areMoreImagesAvailable:i}=r,s=o.map(u=>{const{url:c,metadata:d,mtime:f}=u;return{uuid:Rc(),url:c,mtime:f,metadata:d}});t(Fde({images:s,areMoreImagesAvailable:i})),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Loaded ${o.length} images`}))},onProcessingCanceled:()=>{t(Kde());const{intermediateImage:r}=n().gallery;r&&(t(_h(r)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`})),t(A7())),t(nr({timestamp:rr(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:o,uuid:i}=r;t(Dde(i));const{initialImagePath:s,maskPath:u}=n().options;s===o&&t(Au("")),u===o&&t(J4("")),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image deleted: ${o}`}))},onInitialImageUploaded:r=>{const{url:o}=r;t(Au(o)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Initial image uploaded: ${o}`}))},onMaskImageUploaded:r=>{const{url:o}=r;t(J4(o)),t(nr({timestamp:rr(new Date,"isoDateTime"),message:`Mask image uploaded: ${o}`}))},onSystemConfig:r=>{t(Gde(r))}}},rpe=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],ope=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],ipe=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],ape=[{key:"2x",value:2},{key:"4x",value:4}],n6=0,r6=4294967295,wI=(e,t)=>Math.floor(Math.random()*(t-e+1)+e),spe=(e,t)=>{const{prompt:n,iterations:r,steps:o,cfgScale:i,threshold:s,perlin:u,height:c,width:d,sampler:f,seed:h,seamless:m,hiresFix:g,shouldUseInitImage:b,img2imgStrength:w,initialImagePath:k,maskPath:S,shouldFitToWidthHeight:x,shouldGenerateVariations:_,variationAmount:L,seedWeights:T,shouldRunESRGAN:R,upscalingLevel:N,upscalingStrength:F,shouldRunGFPGAN:G,gfpganStrength:W,shouldRandomizeSeed:J}=e,{shouldDisplayInProgress:Ee}=t,he={prompt:n,iterations:r,steps:o,cfg_scale:i,threshold:s,perlin:u,height:c,width:d,sampler_name:f,seed:h,seamless:m,hires_fix:g,progress_images:Ee};he.seed=J?wI(n6,r6):h,b&&(he.init_img=k,he.strength=w,he.fit=x,S&&(he.init_mask=S)),_?(he.variation_amount=L,T&&(he.with_variations=Sde(T))):he.variation_amount=0;let me=!1,ce=!1;return R&&(me={level:N,strength:F}),G&&(ce={strength:W}),{generationParameters:he,esrganParameters:me,gfpganParameters:ce}};var z2=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function F2(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function SI(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function lpe(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,o=!0,i=0;i=0&&Dt.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&Dt.splice(0,Dt.length),(t===93||t===224)&&(t=91),t in Mn){Mn[t]=!1;for(var r in Xa)Xa[r]===t&&(Br[r]=!1)}}function hpe(e){if(typeof e>"u")Object.keys(sn).forEach(function(s){return delete sn[s]});else if(Array.isArray(e))e.forEach(function(s){s.key&&B2(s)});else if(typeof e=="object")e.key&&B2(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?SI(Xa,d):[];sn[m]=sn[m].filter(function(b){var w=o?b.method===o:!0;return!(w&&b.scope===r&&lpe(b.mods,g))})}})};function U7(e,t,n,r){if(t.element===r){var o;if(t.scope===n||t.scope==="all"){o=t.mods.length>0;for(var i in Mn)Object.prototype.hasOwnProperty.call(Mn,i)&&(!Mn[i]&&t.mods.indexOf(+i)>-1||Mn[i]&&t.mods.indexOf(+i)===-1)&&(o=!1);(t.mods.length===0&&!Mn[16]&&!Mn[18]&&!Mn[17]&&!Mn[91]||o||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function G7(e,t){var n=sn["*"],r=e.keyCode||e.which||e.charCode;if(!!Br.filter.call(this,e)){if((r===93||r===224)&&(r=91),Dt.indexOf(r)===-1&&r!==229&&Dt.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var w=a5[b];e[b]&&Dt.indexOf(w)===-1?Dt.push(w):!e[b]&&Dt.indexOf(w)>-1?Dt.splice(Dt.indexOf(w),1):b==="metaKey"&&e[b]&&Dt.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(Dt=Dt.slice(Dt.indexOf(w))))}),r in Mn){Mn[r]=!0;for(var o in Xa)Xa[o]===r&&(Br[o]=!0);if(!n)return}for(var i in Mn)Object.prototype.hasOwnProperty.call(Mn,i)&&(Mn[i]=e[a5[i]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(Dt.indexOf(17)===-1&&Dt.push(17),Dt.indexOf(18)===-1&&Dt.push(18),Mn[17]=!0,Mn[18]=!0);var s=of();if(n)for(var u=0;u-1}function Br(e,t,n){Dt=[];var r=CI(e),o=[],i="all",s=document,u=0,c=!1,d=!0,f="+",h=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(i=t.scope),t.element&&(s=t.element),t.keyup&&(c=t.keyup),t.keydown!==void 0&&(d=t.keydown),t.capture!==void 0&&(h=t.capture),typeof t.splitKey=="string"&&(f=t.splitKey)),typeof t=="string"&&(i=t);u1&&(o=SI(Xa,e)),e=e[e.length-1],e=e==="*"?"*":Wm(e),e in sn||(sn[e]=[]),sn[e].push({keyup:c,keydown:d,scope:i,mods:o,shortcut:r[u],method:n,key:r[u],splitKey:f,element:s});typeof s<"u"&&!mpe(s)&&window&&(kI.push(s),F2(s,"keydown",function(m){G7(m,s)},h),H7||(H7=!0,F2(window,"focus",function(){Dt=[]},h)),F2(s,"keyup",function(m){G7(m,s),ppe(m)},h))}function gpe(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(sn).forEach(function(n){var r=sn[n].find(function(o){return o.scope===t&&o.shortcut===e});r&&r.method&&r.method()})}var $2={setScope:EI,getScope:of,deleteScope:fpe,getPressedKeyCodes:upe,isPressed:dpe,filter:cpe,trigger:gpe,unbind:hpe,keyMap:o6,modifier:Xa,modifierMap:a5};for(var V2 in $2)Object.prototype.hasOwnProperty.call($2,V2)&&(Br[V2]=$2[V2]);if(typeof window<"u"){var vpe=window.hotkeys;Br.noConflict=function(e){return e&&window.hotkeys===Br&&(window.hotkeys=vpe),Br},window.hotkeys=Br}Br.filter=function(){return!0};var LI=function(t,n){var r=t.target,o=r&&r.tagName;return Boolean(o&&n&&n.includes(o))},ype=function(t){return LI(t,["INPUT","TEXTAREA","SELECT"])};function rn(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var o=n||{},i=o.enableOnTags,s=o.filter,u=o.keyup,c=o.keydown,d=o.filterPreventDefault,f=d===void 0?!0:d,h=o.enabled,m=h===void 0?!0:h,g=o.enableOnContentEditable,b=g===void 0?!1:g,w=C.exports.useRef(null),k=C.exports.useCallback(function(S,x){var _,L;return s&&!s(S)?!f:ype(S)&&!LI(S,i)||(_=S.target)!=null&&_.isContentEditable&&!b?!0:w.current===null||document.activeElement===w.current||(L=w.current)!=null&&L.contains(document.activeElement)?(t(S,x),!0):!1},r?[w,i,s].concat(r):[w,i,s]);return C.exports.useEffect(function(){if(!m){Br.unbind(e,k);return}return u&&c!==!0&&(n.keydown=!1),Br(e,n||{},k),function(){return Br.unbind(e,k)}},[k,e,m]),w}Br.isPressed;function bpe(){return q("div",{className:"work-in-progress inpainting-work-in-progress",children:[v("h1",{children:"Inpainting"}),v("p",{children:"Inpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}function xpe(){return q("div",{className:"work-in-progress nodes-work-in-progress",children:[v("h1",{children:"Nodes"}),v("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function wpe(){return q("div",{className:"work-in-progress outpainting-work-in-progress",children:[v("h1",{children:"Outpainting"}),v("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const Spe=()=>q("div",{className:"work-in-progress post-processing-work-in-progress",children:[v("h1",{children:"Post Processing"}),v("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image tab. A dedicated UI will be released soon."}),v("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen, High Resolution Fixing and more."})]}),Cpe=Nu({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),_pe=Nu({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),kpe=Nu({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),Epe=Nu({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),Lpe=Nu({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),Ppe=Nu({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:v("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var No=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(No||{});const Ape={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher values will apply a stronger corrective pressure on outputs, resulting in more appealing faces (with less respect for accuracy of the original subject).",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},Xs=e=>{const{label:t,isDisabled:n=!1,fontSize:r="md",size:o="md",width:i="auto",...s}=e;return v(ns,{isDisabled:n,width:i,children:q(Pt,{justifyContent:"space-between",alignItems:"center",children:[t&&v(Gs,{fontSize:r,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",children:t}),v(Lm,{size:o,className:"switch-button",...s})]})})};function PI(){const e=Ce(o=>o.system.isGFPGANAvailable),t=Ce(o=>o.options.shouldRunGFPGAN),n=je();return q(Pt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Restore Face"}),v(Xs,{isDisabled:!e,isChecked:t,onChange:o=>n(Ade(o.target.checked))})]})}const Z7=/^-?(0\.)?\.?$/,bi=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:o=!0,fontSize:i="1rem",size:s="sm",width:u,textAlign:c,isInvalid:d,value:f,onChange:h,min:m,max:g,isInteger:b=!0,...w}=e,[k,S]=C.exports.useState(String(f));C.exports.useEffect(()=>{!k.match(Z7)&&f!==Number(k)&&S(String(f))},[f,k]);const x=L=>{S(L),L.match(Z7)||h(b?Math.floor(Number(L)):Number(L))},_=L=>{const T=rf.clamp(b?Math.floor(Number(L.target.value)):Number(L.target.value),m,g);S(String(T)),h(T)};return q(ns,{isDisabled:r,isInvalid:d,className:`number-input ${n}`,children:[t&&v(Gs,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"number-input-label",children:t}),q(TA,{size:s,...w,className:"number-input-field",value:k,keepWithinRange:!0,clampValueOnBlur:!1,onChange:x,onBlur:_,children:[v(IA,{fontSize:i,className:"number-input-entry",width:u,textAlign:c}),q("div",{className:"number-input-stepper",style:o?{display:"block"}:{display:"none"},children:[v(RA,{className:"number-input-stepper-button"}),v(MA,{className:"number-input-stepper-button"})]})]})]})},Tpe=qn(e=>e.options,e=>({gfpganStrength:e.gfpganStrength}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),Ipe=qn(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),i6=()=>{const e=je(),{gfpganStrength:t}=Ce(Tpe),{isGFPGANAvailable:n}=Ce(Ipe);return v(Pt,{direction:"column",gap:2,children:v(bi,{isDisabled:!n,label:"Strength",step:.05,min:0,max:1,onChange:o=>e(Y4(o)),value:t,width:"90px",isInteger:!1})})};function Ope(){const e=je(),t=Ce(r=>r.options.shouldFitToWidthHeight);return v(Xs,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(XT(r.target.checked))})}function Mpe(e){const{label:t="Strength",styleClass:n}=e,r=Ce(s=>s.options.img2imgStrength),o=je();return v(bi,{label:t,step:.01,min:.01,max:.99,onChange:s=>o(YT(s)),value:r,width:"90px",isInteger:!1,styleClass:n})}function Rpe(){const e=je(),t=Ce(r=>r.options.shouldRandomizeSeed);return v(Xs,{label:"Randomize Seed",isChecked:t,onChange:r=>e(Ide(r.target.checked))})}function Npe(){const e=Ce(i=>i.options.seed),t=Ce(i=>i.options.shouldRandomizeSeed),n=Ce(i=>i.options.shouldGenerateVariations),r=je(),o=i=>r(Of(i));return v(bi,{label:"Seed",step:1,precision:0,flexGrow:1,min:n6,max:r6,isDisabled:t,isInvalid:e<0&&n,onChange:o,value:e,width:"10rem"})}function Dpe(){const e=je(),t=Ce(r=>r.options.shouldRandomizeSeed);return v(mi,{size:"sm",isDisabled:t,onClick:()=>e(Of(wI(n6,r6))),children:v("p",{children:"Shuffle"})})}function zpe(){const e=je(),t=Ce(r=>r.options.threshold);return v(bi,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e(kde(r)),value:t,isInteger:!1})}function Fpe(){const e=je(),t=Ce(r=>r.options.perlin);return v(bi,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(Ede(r)),value:t,isInteger:!1})}const AI=()=>q(Pt,{gap:2,direction:"column",children:[v(Rpe,{}),q(Pt,{gap:2,children:[v(Npe,{}),v(Dpe,{})]}),v(Pt,{gap:2,children:v(zpe,{})}),v(Pt,{gap:2,children:v(Fpe,{})})]});function TI(){const e=Ce(o=>o.system.isESRGANAvailable),t=Ce(o=>o.options.shouldRunESRGAN),n=je();return q(Pt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Upscale"}),v(Xs,{isDisabled:!e,isChecked:t,onChange:o=>n(Tde(o.target.checked))})]})}const jm=e=>{const{label:t,isDisabled:n,validValues:r,size:o="sm",fontSize:i="md",styleClass:s,...u}=e;return q(ns,{isDisabled:n,className:`iai-select ${s}`,children:[v(Gs,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"iai-select-label",children:t}),v(FA,{fontSize:i,size:o,...u,className:"iai-select-picker",children:r.map(c=>typeof c=="string"||typeof c=="number"?v("option",{value:c,className:"iai-select-option",children:c},c):v("option",{value:c.value,children:c.key},c.value))})]})},Bpe=qn(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),$pe=qn(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),a6=()=>{const e=je(),{upscalingLevel:t,upscalingStrength:n}=Ce(Bpe),{isESRGANAvailable:r}=Ce($pe);return q("div",{className:"upscale-options",children:[v(jm,{isDisabled:!r,label:"Scale",value:t,onChange:s=>e(X4(Number(s.target.value))),validValues:ape}),v(bi,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:s=>e(Q4(s)),value:n,isInteger:!1})]})};function Vpe(){const e=Ce(r=>r.options.shouldGenerateVariations),t=je();return v(Xs,{isChecked:e,width:"auto",onChange:r=>t(Lde(r.target.checked))})}function II(){return q(Pt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Variations"}),v(Vpe,{})]})}function Wpe(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:o="1rem",width:i,isInvalid:s,...u}=e;return q(ns,{className:`input ${n}`,isInvalid:s,isDisabled:r,flexGrow:1,children:[v(Gs,{fontSize:o,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),v(tb,{...u,className:"input-entry",size:"sm",width:i})]})}function jpe(){const e=Ce(o=>o.options.seedWeights),t=Ce(o=>o.options.shouldGenerateVariations),n=je(),r=o=>n(QT(o.target.value));return v(Wpe,{label:"Seed Weights",value:e,isInvalid:t&&!(Jb(e)||e===""),isDisabled:!t,onChange:r})}function Hpe(){const e=Ce(o=>o.options.variationAmount),t=Ce(o=>o.options.shouldGenerateVariations),n=je();return v(bi,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:o=>n(Pde(o)),isInteger:!1})}const OI=()=>q(Pt,{gap:2,direction:"column",children:[v(Hpe,{}),v(jpe,{})]});function MI(){const e=Ce(r=>r.options.showAdvancedOptions),t=je();return q("div",{className:"advanced_options_checker",children:[v("input",{type:"checkbox",name:"advanced_options",id:"",onChange:r=>t(Ode(r.target.checked)),checked:e}),v("label",{htmlFor:"advanced_options",children:"Advanced Options"})]})}function Upe(){const e=je(),t=Ce(r=>r.options.cfgScale);return v(bi,{label:"CFG Scale",step:.5,min:1,max:30,onChange:r=>e(HT(r)),value:t,width:s6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}function Gpe(){const e=Ce(r=>r.options.height),t=je();return v(jm,{label:"Height",value:e,flexGrow:1,onChange:r=>t(UT(Number(r.target.value))),validValues:ipe,fontSize:Hu,styleClass:"main-option-block"})}function Zpe(){const e=je(),t=Ce(r=>r.options.iterations);return v(bi,{label:"Images",step:1,min:1,max:9999,onChange:r=>e(_de(r)),value:t,width:s6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center"})}function Kpe(){const e=Ce(r=>r.options.sampler),t=je();return v(jm,{label:"Sampler",value:e,onChange:r=>t(ZT(r.target.value)),validValues:rpe,fontSize:Hu,styleClass:"main-option-block"})}function qpe(){const e=je(),t=Ce(r=>r.options.steps);return v(bi,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(jT(r)),value:t,width:s6,fontSize:Hu,styleClass:"main-option-block",textAlign:"center"})}function Ype(){const e=Ce(r=>r.options.width),t=je();return v(jm,{label:"Width",value:e,flexGrow:1,onChange:r=>t(GT(Number(r.target.value))),validValues:ope,fontSize:Hu,styleClass:"main-option-block"})}const Hu="0.9rem",s6="auto";function RI(){return v("div",{className:"main-options",children:q("div",{className:"main-options-list",children:[q("div",{className:"main-options-row",children:[v(Zpe,{}),v(qpe,{}),v(Upe,{})]}),q("div",{className:"main-options-row",children:[v(Ype,{}),v(Gpe,{}),v(Kpe,{})]})]})})}var NI={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},K7=X.createContext&&X.createContext(NI),ja=globalThis&&globalThis.__assign||function(){return ja=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),uhe=({children:e,feature:t})=>{const n=Ce(lhe),{text:r}=Ape[t];return n?q(Pb,{trigger:"hover",children:[v(Ob,{children:v(po,{children:e})}),q(Ib,{className:"guide-popover-content",maxWidth:"400px",onClick:o=>o.preventDefault(),cursor:"initial",children:[v(Ab,{className:"guide-popover-arrow"}),v("div",{className:"guide-popover-guide-content",children:r})]})]}):v(yn,{})},che=ue(({feature:e,icon:t=zI},n)=>v(uhe,{feature:e,children:v(po,{ref:n,children:v(Kr,{as:t})})}));function dhe(e){const{header:t,feature:n,options:r}=e;return q(ZL,{className:"advanced-settings-item",children:[v("h2",{children:q(UL,{className:"advanced-settings-header",children:[t,v(che,{feature:n}),v(GL,{})]})}),v(KL,{className:"advanced-settings-panel",children:r})]})}const BI=e=>{const{accordionInfo:t}=e,n=Ce(s=>s.system.openAccordions),r=je();return v(qL,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:s=>r(Hde(s)),className:"advanced-settings",children:(()=>{const s=[];return t&&Object.keys(t).forEach(u=>{s.push(v(dhe,{header:t[u].header,feature:t[u].feature,options:t[u].options},u))}),s})()})},fhe=()=>{const e=je(),t=Ce(r=>r.options.hiresFix);return v(Pt,{gap:2,direction:"column",children:v(Xs,{label:"High Res Optimization",fontSize:"md",isChecked:t,onChange:r=>e(qT(r.target.checked))})})},phe=()=>{const e=je(),t=Ce(r=>r.options.seamless);return v(Pt,{gap:2,direction:"column",children:v(Xs,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(KT(r.target.checked))})})},$I=()=>q(Pt,{gap:2,direction:"column",children:[v(phe,{}),v(fhe,{})]}),Uc=e=>{const{label:t,tooltip:n="",size:r="sm",...o}=e;return v(Rn,{label:n,children:v(mi,{size:r,...o,children:t})})},Y7=qn(e=>e.options,e=>({prompt:e.prompt,shouldGenerateVariations:e.shouldGenerateVariations,seedWeights:e.seedWeights,maskPath:e.maskPath,initialImagePath:e.initialImagePath,seed:e.seed,activeTab:e.activeTab}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),l6=qn(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),VI=()=>{const{prompt:e}=Ce(Y7),{shouldGenerateVariations:t,seedWeights:n,maskPath:r,initialImagePath:o,seed:i,activeTab:s}=Ce(Y7),{isProcessing:u,isConnected:c}=Ce(l6);return C.exports.useMemo(()=>!(!e||Boolean(e.match(/^[\s\r\n]+$/))||e&&!o&&s===1||r&&!o||u||!c||t&&(!(Jb(n)||n==="")||i===-1)),[e,r,o,u,c,t,n,i,s])};function hhe(){const e=je(),t=VI();return v(Uc,{label:"Invoke","aria-label":"Invoke",type:"submit",isDisabled:!t,onClick:()=>{e(i5())},className:"invoke-btn"})}const ws=e=>{const{tooltip:t="",tooltipPlacement:n="bottom",onClick:r,...o}=e;return v(Rn,{label:t,hasArrow:!0,placement:n,children:v(un,{...o,cursor:r?"pointer":"unset",onClick:r})})};function mhe(){const e=je(),{isProcessing:t,isConnected:n}=Ce(l6),r=()=>e(Jfe());return rn("shift+x",()=>{(n||t)&&r()},[n,t]),v(ws,{icon:v(she,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!n||!t,onClick:r,className:"cancel-btn"})}const WI=()=>q("div",{className:"process-buttons",children:[v(hhe,{}),v(mhe,{})]}),ghe=qn(e=>e.options,e=>({prompt:e.prompt}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),jI=()=>{const e=C.exports.useRef(null),{prompt:t}=Ce(ghe),{isProcessing:n}=Ce(l6),r=je(),o=VI(),i=u=>{r(WT(u.target.value))};rn("ctrl+enter",()=>{o&&r(i5())},[o]),rn("alt+a",()=>{e.current?.focus()},[]);const s=u=>{u.key==="Enter"&&u.shiftKey===!1&&o&&(u.preventDefault(),r(i5()))};return v("div",{className:"prompt-bar",children:v(ns,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),isDisabled:n,children:v(ZA,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:i,onKeyDown:s,resize:"vertical",height:30,ref:e})})})};function vhe(){const e=Ce(n=>n.options.showAdvancedOptions),t={seed:{header:v(po,{flex:"1",textAlign:"left",children:"Seed"}),feature:No.SEED,options:v(AI,{})},variations:{header:v(II,{}),feature:No.VARIATIONS,options:v(OI,{})},face_restore:{header:v(PI,{}),feature:No.FACE_CORRECTION,options:v(i6,{})},upscale:{header:v(TI,{}),feature:No.UPSCALE,options:v(a6,{})},other:{header:v(po,{flex:"1",textAlign:"left",children:"Other"}),feature:No.OTHER,options:v($I,{})}};return q("div",{className:"image-to-image-panel",children:[v(jI,{}),v(WI,{}),v(RI,{}),v(Mpe,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),v(Ope,{}),v(MI,{}),e?v(BI,{accordionInfo:t}):null]})}function yhe(e){return St({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function bhe(e){return St({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function xhe(e){return St({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function whe(e){return St({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function She(e){return St({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function Che(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function _he(e){return St({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function khe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function Ehe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function Lhe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function Phe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function Ahe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function The(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function Ihe(e){return St({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function Ohe(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}var Mhe=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Mf(e,t){var n=Rhe(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function Rhe(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),o=Mhe.get(r);o&&Object.defineProperty(e,"type",{value:o,writable:!1,configurable:!1,enumerable:!0})}return e}var Nhe=[".DS_Store","Thumbs.db"];function Dhe(e){return zu(this,void 0,void 0,function(){return Fu(this,function(t){return b0(e)&&zhe(e.dataTransfer)?[2,Vhe(e.dataTransfer,e.type)]:Fhe(e)?[2,Bhe(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,$he(e)]:[2,[]]})})}function zhe(e){return b0(e)}function Fhe(e){return b0(e)&&b0(e.target)}function b0(e){return typeof e=="object"&&e!==null}function Bhe(e){return s5(e.target.files).map(function(t){return Mf(t)})}function $he(e){return zu(this,void 0,void 0,function(){var t;return Fu(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Mf(r)})]}})})}function Vhe(e,t){return zu(this,void 0,void 0,function(){var n,r;return Fu(this,function(o){switch(o.label){case 0:return e.items?(n=s5(e.items).filter(function(i){return i.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(Whe))]):[3,2];case 1:return r=o.sent(),[2,X7(HI(r))];case 2:return[2,X7(s5(e.files).map(function(i){return Mf(i)}))]}})})}function X7(e){return e.filter(function(t){return Nhe.indexOf(t.name)===-1})}function s5(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,nC(n)];if(e.sizen)return[!1,nC(n)]}return[!0,null]}function Ss(e){return e!=null}function o1e(e){var t=e.files,n=e.accept,r=e.minSize,o=e.maxSize,i=e.multiple,s=e.maxFiles,u=e.validator;return!i&&t.length>1||i&&s>=1&&t.length>s?!1:t.every(function(c){var d=KI(c,n),f=af(d,1),h=f[0],m=qI(c,r,o),g=af(m,1),b=g[0],w=u?u(c):null;return h&&b&&!w})}function x0(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Ah(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function oC(e){e.preventDefault()}function i1e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function a1e(e){return e.indexOf("Edge/")!==-1}function s1e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return i1e(e)||a1e(e)}function Ko(){for(var e=arguments.length,t=new Array(e),n=0;n1?o-1:0),s=1;se.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function _1e(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var u6=C.exports.forwardRef(function(e,t){var n=e.children,r=w0(e,p1e),o=eO(r),i=o.open,s=w0(o,h1e);return C.exports.useImperativeHandle(t,function(){return{open:i}},[i]),v(C.exports.Fragment,{children:n(Wt(Wt({},s),{},{open:i}))})});u6.displayName="Dropzone";var JI={disabled:!1,getFilesFromEvent:Dhe,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};u6.defaultProps=JI;u6.propTypes={children:wt.exports.func,accept:wt.exports.objectOf(wt.exports.arrayOf(wt.exports.string)),multiple:wt.exports.bool,preventDropOnDocument:wt.exports.bool,noClick:wt.exports.bool,noKeyboard:wt.exports.bool,noDrag:wt.exports.bool,noDragEventsBubbling:wt.exports.bool,minSize:wt.exports.number,maxSize:wt.exports.number,maxFiles:wt.exports.number,disabled:wt.exports.bool,getFilesFromEvent:wt.exports.func,onFileDialogCancel:wt.exports.func,onFileDialogOpen:wt.exports.func,useFsAccessApi:wt.exports.bool,autoFocus:wt.exports.bool,onDragEnter:wt.exports.func,onDragLeave:wt.exports.func,onDragOver:wt.exports.func,onDrop:wt.exports.func,onDropAccepted:wt.exports.func,onDropRejected:wt.exports.func,onError:wt.exports.func,validator:wt.exports.func};var d5={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function eO(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=Wt(Wt({},JI),e),n=t.accept,r=t.disabled,o=t.getFilesFromEvent,i=t.maxSize,s=t.minSize,u=t.multiple,c=t.maxFiles,d=t.onDragEnter,f=t.onDragLeave,h=t.onDragOver,m=t.onDrop,g=t.onDropAccepted,b=t.onDropRejected,w=t.onFileDialogCancel,k=t.onFileDialogOpen,S=t.useFsAccessApi,x=t.autoFocus,_=t.preventDropOnDocument,L=t.noClick,T=t.noKeyboard,R=t.noDrag,N=t.noDragEventsBubbling,F=t.onError,G=t.validator,W=C.exports.useMemo(function(){return c1e(n)},[n]),J=C.exports.useMemo(function(){return u1e(n)},[n]),Ee=C.exports.useMemo(function(){return typeof k=="function"?k:aC},[k]),he=C.exports.useMemo(function(){return typeof w=="function"?w:aC},[w]),me=C.exports.useRef(null),ce=C.exports.useRef(null),ge=C.exports.useReducer(k1e,d5),ne=W2(ge,2),j=ne[0],Y=ne[1],K=j.isFocused,O=j.isFileDialogActive,H=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&S&&l1e()),se=function(){!H.current&&O&&setTimeout(function(){if(ce.current){var Le=ce.current.files;Le.length||(Y({type:"closeDialog"}),he())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",se,!1),function(){window.removeEventListener("focus",se,!1)}},[ce,O,he,H]);var de=C.exports.useRef([]),ye=function(Le){me.current&&me.current.contains(Le.target)||(Le.preventDefault(),de.current=[])};C.exports.useEffect(function(){return _&&(document.addEventListener("dragover",oC,!1),document.addEventListener("drop",ye,!1)),function(){_&&(document.removeEventListener("dragover",oC),document.removeEventListener("drop",ye))}},[me,_]),C.exports.useEffect(function(){return!r&&x&&me.current&&me.current.focus(),function(){}},[me,x,r]);var be=C.exports.useCallback(function(pe){F?F(pe):console.error(pe)},[F]),Pe=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe),de.current=[].concat(v1e(de.current),[pe.target]),Ah(pe)&&Promise.resolve(o(pe)).then(function(Le){if(!(x0(pe)&&!N)){var ft=Le.length,ut=ft>0&&o1e({files:Le,accept:W,minSize:s,maxSize:i,multiple:u,maxFiles:c,validator:G}),ie=ft>0&&!ut;Y({isDragAccept:ut,isDragReject:ie,isDragActive:!0,type:"setDraggedFiles"}),d&&d(pe)}}).catch(function(Le){return be(Le)})},[o,d,be,N,W,s,i,u,c,G]),fe=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe);var Le=Ah(pe);if(Le&&pe.dataTransfer)try{pe.dataTransfer.dropEffect="copy"}catch{}return Le&&h&&h(pe),!1},[h,N]),_e=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe);var Le=de.current.filter(function(ut){return me.current&&me.current.contains(ut)}),ft=Le.indexOf(pe.target);ft!==-1&&Le.splice(ft,1),de.current=Le,!(Le.length>0)&&(Y({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Ah(pe)&&f&&f(pe))},[me,f,N]),De=C.exports.useCallback(function(pe,Le){var ft=[],ut=[];pe.forEach(function(ie){var Ge=KI(ie,W),Et=W2(Ge,2),En=Et[0],Fn=Et[1],Lr=qI(ie,s,i),$o=W2(Lr,2),xi=$o[0],Yn=$o[1],qr=G?G(ie):null;if(En&&xi&&!qr)ft.push(ie);else{var os=[Fn,Yn];qr&&(os=os.concat(qr)),ut.push({file:ie,errors:os.filter(function(Qs){return Qs})})}}),(!u&&ft.length>1||u&&c>=1&&ft.length>c)&&(ft.forEach(function(ie){ut.push({file:ie,errors:[r1e]})}),ft.splice(0)),Y({acceptedFiles:ft,fileRejections:ut,type:"setFiles"}),m&&m(ft,ut,Le),ut.length>0&&b&&b(ut,Le),ft.length>0&&g&&g(ft,Le)},[Y,u,W,s,i,c,m,g,b,G]),st=C.exports.useCallback(function(pe){pe.preventDefault(),pe.persist(),lt(pe),de.current=[],Ah(pe)&&Promise.resolve(o(pe)).then(function(Le){x0(pe)&&!N||De(Le,pe)}).catch(function(Le){return be(Le)}),Y({type:"reset"})},[o,De,be,N]),It=C.exports.useCallback(function(){if(H.current){Y({type:"openDialog"}),Ee();var pe={multiple:u,types:J};window.showOpenFilePicker(pe).then(function(Le){return o(Le)}).then(function(Le){De(Le,null),Y({type:"closeDialog"})}).catch(function(Le){d1e(Le)?(he(Le),Y({type:"closeDialog"})):f1e(Le)?(H.current=!1,ce.current?(ce.current.value=null,ce.current.click()):be(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):be(Le)});return}ce.current&&(Y({type:"openDialog"}),Ee(),ce.current.value=null,ce.current.click())},[Y,Ee,he,S,De,be,J,u]),bn=C.exports.useCallback(function(pe){!me.current||!me.current.isEqualNode(pe.target)||(pe.key===" "||pe.key==="Enter"||pe.keyCode===32||pe.keyCode===13)&&(pe.preventDefault(),It())},[me,It]),xe=C.exports.useCallback(function(){Y({type:"focus"})},[]),Ie=C.exports.useCallback(function(){Y({type:"blur"})},[]),tt=C.exports.useCallback(function(){L||(s1e()?setTimeout(It,0):It())},[L,It]),ze=function(Le){return r?null:Le},$t=function(Le){return T?null:ze(Le)},xn=function(Le){return R?null:ze(Le)},lt=function(Le){N&&Le.stopPropagation()},Ct=C.exports.useMemo(function(){return function(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Le=pe.refKey,ft=Le===void 0?"ref":Le,ut=pe.role,ie=pe.onKeyDown,Ge=pe.onFocus,Et=pe.onBlur,En=pe.onClick,Fn=pe.onDragEnter,Lr=pe.onDragOver,$o=pe.onDragLeave,xi=pe.onDrop,Yn=w0(pe,m1e);return Wt(Wt(c5({onKeyDown:$t(Ko(ie,bn)),onFocus:$t(Ko(Ge,xe)),onBlur:$t(Ko(Et,Ie)),onClick:ze(Ko(En,tt)),onDragEnter:xn(Ko(Fn,Pe)),onDragOver:xn(Ko(Lr,fe)),onDragLeave:xn(Ko($o,_e)),onDrop:xn(Ko(xi,st)),role:typeof ut=="string"&&ut!==""?ut:"presentation"},ft,me),!r&&!T?{tabIndex:0}:{}),Yn)}},[me,bn,xe,Ie,tt,Pe,fe,_e,st,T,R,r]),Jt=C.exports.useCallback(function(pe){pe.stopPropagation()},[]),Gt=C.exports.useMemo(function(){return function(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Le=pe.refKey,ft=Le===void 0?"ref":Le,ut=pe.onChange,ie=pe.onClick,Ge=w0(pe,g1e),Et=c5({accept:W,multiple:u,type:"file",style:{display:"none"},onChange:ze(Ko(ut,st)),onClick:ze(Ko(ie,Jt)),tabIndex:-1},ft,ce);return Wt(Wt({},Et),Ge)}},[ce,n,u,st,r]);return Wt(Wt({},j),{},{isFocused:K&&!r,getRootProps:Ct,getInputProps:Gt,rootRef:me,inputRef:ce,open:ze(It)})}function k1e(e,t){switch(t.type){case"focus":return Wt(Wt({},e),{},{isFocused:!0});case"blur":return Wt(Wt({},e),{},{isFocused:!1});case"openDialog":return Wt(Wt({},d5),{},{isFileDialogActive:!0});case"closeDialog":return Wt(Wt({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return Wt(Wt({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return Wt(Wt({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return Wt({},d5);default:return e}}function aC(){}const E1e=({children:e,fileAcceptedCallback:t,fileRejectionCallback:n,styleClass:r})=>{const o=C.exports.useCallback((d,f)=>{f.forEach(h=>{n(h)}),d.forEach(h=>{t(h)})},[t,n]),{getRootProps:i,getInputProps:s,open:u}=eO({onDrop:o,accept:{"image/jpeg":[".jpg",".jpeg",".png"]}}),c=d=>{d.stopPropagation(),u()};return q(po,{...i(),flexGrow:3,className:`${r}`,children:[v("input",{...s({multiple:!1})}),C.exports.cloneElement(e,{onClick:c})]})};function L1e(e){const{label:t,icon:n,dispatcher:r,styleClass:o,onMouseOver:i,OnMouseout:s}=e,u=fT(),c=je(),d=C.exports.useCallback(h=>c(r(h)),[c,r]),f=C.exports.useCallback(h=>{const m=h.errors.reduce((g,b)=>g+` -`+b.message,"");u({title:"Upload failed",description:m,status:"error",isClosable:!0})},[u]);return v(E1e,{fileAcceptedCallback:d,fileRejectionCallback:f,styleClass:o,children:v(mi,{size:"sm",fontSize:"md",fontWeight:"normal",onMouseOver:i,onMouseOut:s,leftIcon:n,width:"100%",children:t||null})})}const P1e=qn(e=>e.system,e=>e.shouldConfirmOnDelete),tO=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:o,onClose:i}=o0(),s=je(),u=Ce(P1e),c=C.exports.useRef(null),d=m=>{m.stopPropagation(),u?o():f()},f=()=>{s(Xfe(e)),i()};rn("del",()=>{u?o():f()},[e,u]);const h=m=>s(oI(!m.target.checked));return q(yn,{children:[C.exports.cloneElement(t,{onClick:d,ref:n}),v(Dte,{isOpen:r,leastDestructiveRef:c,onClose:i,children:v(Xd,{children:q(zte,{children:[v(Eb,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),v(l0,{children:q(Pt,{direction:"column",gap:5,children:[v(zr,{children:"Are you sure? You can't undo this action afterwards."}),v(ns,{children:q(Pt,{alignItems:"center",children:[v(Gs,{mb:0,children:"Don't ask me again"}),v(Lm,{checked:!u,onChange:h})]})})]})}),q(kb,{children:[v(mi,{ref:c,onClick:i,children:"Cancel"}),v(mi,{colorScheme:"red",onClick:f,ml:3,children:"Delete"})]})]})})})]})}),sC=({title:e="Popup",styleClass:t,delay:n=50,popoverOptions:r,actionButton:o,children:i})=>q(Pb,{trigger:"hover",closeDelay:n,children:[v(Ob,{children:v(po,{children:i})}),q(Ib,{className:`popover-content ${t}`,children:[v(Ab,{className:"popover-arrow"}),v(NA,{className:"popover-header",children:e}),q("div",{className:"popover-options",children:[r||null,o]})]})]}),A1e=qn(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isGFPGANAvailable:e.isGFPGANAvailable,isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),nO=({image:e})=>{const t=je(),n=Ce(S=>S.options.shouldShowImageDetails),r=fT(),o=Ce(S=>S.gallery.intermediateImage),i=Ce(S=>S.options.upscalingLevel),s=Ce(S=>S.options.gfpganStrength),{isProcessing:u,isConnected:c,isGFPGANAvailable:d,isESRGANAvailable:f}=Ce(A1e),h=()=>{t(Au(e.url)),t(Bi(1))};rn("shift+i",()=>{e?(h(),r({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):r({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[e]);const m=()=>t(JT(e.metadata));rn("a",()=>{["txt2img","img2img"].includes(e?.metadata?.image?.type)?(m(),r({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):r({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const g=()=>t(Of(e.metadata.image.seed));rn("s",()=>{e?.metadata?.image?.seed?(g(),r({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):r({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const b=()=>t(qfe(e));rn("u",()=>{f&&Boolean(!o)&&c&&!u&&i?b():r({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[e,f,o,c,u,i]);const w=()=>t(Yfe(e));rn("r",()=>{d&&Boolean(!o)&&c&&!u&&s?w():r({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[e,d,o,c,u,s]);const k=()=>t(Mde(!n));return rn("i",()=>{e?k():r({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[e,n]),q("div",{className:"current-image-options",children:[v(ws,{icon:v(ihe,{}),tooltip:"Send To Image To Image","aria-label":"Send To Image To Image",onClick:h}),v(Uc,{label:"Use All",isDisabled:!["txt2img","img2img"].includes(e?.metadata?.image?.type),onClick:m}),v(Uc,{label:"Use Seed",isDisabled:!e?.metadata?.image?.seed,onClick:g}),v(sC,{title:"Restore Faces",popoverOptions:v(i6,{}),actionButton:v(Uc,{label:"Restore Faces",isDisabled:!d||Boolean(o)||!(c&&!u)||!s,onClick:w}),children:v(ws,{icon:v(ehe,{}),"aria-label":"Restore Faces"})}),v(sC,{title:"Upscale",styleClass:"upscale-popover",popoverOptions:v(a6,{}),actionButton:v(Uc,{label:"Upscale Image",isDisabled:!f||Boolean(o)||!(c&&!u)||!i,onClick:b}),children:v(ws,{icon:v(rhe,{}),"aria-label":"Upscale"})}),v(ws,{icon:v(the,{}),tooltip:"Details","aria-label":"Details",onClick:k}),v(tO,{image:e,children:v(ws,{icon:v(Jpe,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:Boolean(o)})})]})},T1e=qn(e=>e.gallery,e=>{const t=e.images.findIndex(r=>r.uuid===e?.currentImage?.uuid),n=e.images.length;return{isOnFirstImage:t===0,isOnLastImage:!isNaN(t)&&t===n-1}},{memoizeOptions:{resultEqualityCheck:rf.isEqual}});function rO(e){const{imageToDisplay:t}=e,n=je(),{isOnFirstImage:r,isOnLastImage:o}=Ce(T1e),i=Ce(m=>m.options.shouldShowImageDetails),[s,u]=C.exports.useState(!1),c=()=>{u(!0)},d=()=>{u(!1)},f=()=>{n(nI())},h=()=>{n(tI())};return q("div",{className:"current-image-preview",children:[v(ym,{src:t.url,fit:"contain",maxWidth:"100%",maxHeight:"100%"}),!i&&q("div",{className:"current-image-next-prev-buttons",children:[v("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:c,onMouseOut:d,children:s&&!r&&v(un,{"aria-label":"Previous image",icon:v(whe,{className:"next-prev-button"}),variant:"unstyled",onClick:f})}),v("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:c,onMouseOut:d,children:s&&!o&&v(un,{"aria-label":"Next image",icon:v(She,{className:"next-prev-button"}),variant:"unstyled",onClick:h})})]})]})}var lC={path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},oO=ue((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:u,__css:c,...d}=e,f=Qt("chakra-icon",u),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??lC.viewBox;if(n&&typeof n!="string")return X.createElement(oe.svg,{as:n,...m,...d});const b=s??lC.path;return X.createElement(oe.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});oO.displayName="Icon";function Te(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=ue((u,c)=>v(oO,{ref:c,viewBox:t,...o,...u,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}Te({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});Te({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});Te({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});Te({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});Te({displayName:"SunIcon",path:q("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[v("circle",{cx:"12",cy:"12",r:"5"}),v("path",{d:"M12 1v2"}),v("path",{d:"M12 21v2"}),v("path",{d:"M4.22 4.22l1.42 1.42"}),v("path",{d:"M18.36 18.36l1.42 1.42"}),v("path",{d:"M1 12h2"}),v("path",{d:"M21 12h2"}),v("path",{d:"M4.22 19.78l1.42-1.42"}),v("path",{d:"M18.36 5.64l1.42-1.42"})]})});Te({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});Te({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:v("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});Te({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});Te({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});Te({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});Te({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});Te({displayName:"ViewIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),v("circle",{cx:"12",cy:"12",r:"2"})]})});Te({displayName:"ViewOffIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),v("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});Te({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});Te({displayName:"DeleteIcon",path:v("g",{fill:"currentColor",children:v("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});Te({displayName:"RepeatIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),v("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});Te({displayName:"RepeatClockIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),v("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});Te({displayName:"EditIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),v("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});Te({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});Te({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});Te({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});Te({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});Te({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});Te({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});Te({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});Te({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});Te({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var iO=Te({displayName:"ExternalLinkIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),v("path",{d:"M15 3h6v6"}),v("path",{d:"M10 14L21 3"})]})});Te({displayName:"LinkIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),v("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});Te({displayName:"PlusSquareIcon",path:q("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),v("path",{d:"M12 8v8"}),v("path",{d:"M8 12h8"})]})});Te({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});Te({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});Te({displayName:"TimeIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),v("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});Te({displayName:"ArrowRightIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),v("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});Te({displayName:"ArrowLeftIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),v("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});Te({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});Te({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});Te({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});Te({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});Te({displayName:"EmailIcon",path:q("g",{fill:"currentColor",children:[v("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),v("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});Te({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});Te({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});Te({displayName:"SpinnerIcon",path:q(yn,{children:[v("defs",{children:q("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[v("stop",{stopColor:"currentColor",offset:"0%"}),v("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),q("g",{transform:"translate(2)",fill:"none",children:[v("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),v("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),v("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});Te({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});Te({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:v("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});Te({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});Te({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});Te({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});Te({displayName:"InfoOutlineIcon",path:q("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[v("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),v("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),v("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});Te({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});Te({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});Te({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});Te({displayName:"QuestionOutlineIcon",path:q("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});Te({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});Te({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});Te({viewBox:"0 0 14 14",path:v("g",{fill:"currentColor",children:v("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});Te({displayName:"MinusIcon",path:v("g",{fill:"currentColor",children:v("rect",{height:"4",width:"20",x:"2",y:"10"})})});Te({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function aO(e){return St({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const Kt=({label:e,value:t,onClick:n,isLink:r,labelPosition:o})=>q(Pt,{gap:2,children:[n&&v(Rn,{label:`Recall ${e}`,children:v(un,{"aria-label":"Use this parameter",icon:v(aO,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),q(Pt,{direction:o?"column":"row",children:[q(zr,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?q(au,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",v(iO,{mx:"2px"})]}):v(zr,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),I1e=(e,t)=>e.image.uuid===t.image.uuid,sO=C.exports.memo(({image:e,styleClass:t})=>{const n=je(),r=e?.metadata?.image||{},{type:o,postprocessing:i,sampler:s,prompt:u,seed:c,variations:d,steps:f,cfg_scale:h,seamless:m,hires_fix:g,width:b,height:w,strength:k,fit:S,init_image_path:x,mask_image_path:_,orig_path:L,scale:T}=r,R=JSON.stringify(r,null,2);return v("div",{className:`image-metadata-viewer ${t}`,children:q(Pt,{gap:1,direction:"column",width:"100%",children:[q(Pt,{gap:2,children:[v(zr,{fontWeight:"semibold",children:"File:"}),q(au,{href:e.url,isExternal:!0,children:[e.url,v(iO,{mx:"2px"})]})]}),Object.keys(r).length>0?q(yn,{children:[o&&v(Kt,{label:"Generation type",value:o}),["esrgan","gfpgan"].includes(o)&&v(Kt,{label:"Original image",value:L}),o==="gfpgan"&&k!==void 0&&v(Kt,{label:"Fix faces strength",value:k,onClick:()=>n(Y4(k))}),o==="esrgan"&&T!==void 0&&v(Kt,{label:"Upscaling scale",value:T,onClick:()=>n(X4(T))}),o==="esrgan"&&k!==void 0&&v(Kt,{label:"Upscaling strength",value:k,onClick:()=>n(Q4(k))}),u&&v(Kt,{label:"Prompt",labelPosition:"top",value:K4(u),onClick:()=>n(WT(u))}),c!==void 0&&v(Kt,{label:"Seed",value:c,onClick:()=>n(Of(c))}),s&&v(Kt,{label:"Sampler",value:s,onClick:()=>n(ZT(s))}),f&&v(Kt,{label:"Steps",value:f,onClick:()=>n(jT(f))}),h!==void 0&&v(Kt,{label:"CFG scale",value:h,onClick:()=>n(HT(h))}),d&&d.length>0&&v(Kt,{label:"Seed-weight pairs",value:q4(d),onClick:()=>n(QT(q4(d)))}),m&&v(Kt,{label:"Seamless",value:m,onClick:()=>n(KT(m))}),g&&v(Kt,{label:"High Resolution Optimization",value:g,onClick:()=>n(qT(g))}),b&&v(Kt,{label:"Width",value:b,onClick:()=>n(GT(b))}),w&&v(Kt,{label:"Height",value:w,onClick:()=>n(UT(w))}),x&&v(Kt,{label:"Initial image",value:x,isLink:!0,onClick:()=>n(Au(x))}),_&&v(Kt,{label:"Mask image",value:_,isLink:!0,onClick:()=>n(J4(_))}),o==="img2img"&&k&&v(Kt,{label:"Image to image strength",value:k,onClick:()=>n(YT(k))}),S&&v(Kt,{label:"Image to image fit",value:S,onClick:()=>n(XT(S))}),i&&i.length>0&&q(yn,{children:[v(rb,{size:"sm",children:"Postprocessing"}),i.map((N,F)=>{if(N.type==="esrgan"){const{scale:G,strength:W}=N;return q(Pt,{pl:"2rem",gap:1,direction:"column",children:[v(zr,{size:"md",children:`${F+1}: Upscale (ESRGAN)`}),v(Kt,{label:"Scale",value:G,onClick:()=>n(X4(G))}),v(Kt,{label:"Strength",value:W,onClick:()=>n(Q4(W))})]},F)}else if(N.type==="gfpgan"){const{strength:G}=N;return q(Pt,{pl:"2rem",gap:1,direction:"column",children:[v(zr,{size:"md",children:`${F+1}: Face restoration (GFPGAN)`}),v(Kt,{label:"Strength",value:G,onClick:()=>n(Y4(G))})]},F)}})]}),q(Pt,{gap:2,direction:"column",children:[q(Pt,{gap:2,children:[v(Rn,{label:"Copy metadata JSON",children:v(un,{"aria-label":"Copy metadata JSON",icon:v(khe,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(R)})}),v(zr,{fontWeight:"semibold",children:"Metadata JSON:"})]}),v("div",{className:"image-json-viewer",children:v("pre",{children:R})})]})]}):v(yP,{width:"100%",pt:10,children:v(zr,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},I1e);function uC(){const e=Ce(r=>r.options.initialImagePath),t=je();return q("div",{className:"init-image-preview",children:[q("div",{className:"init-image-preview-header",children:[v("h1",{children:"Initial Image"}),v(un,{isDisabled:!e,size:"sm","aria-label":"Reset Initial Image",onClick:r=>{r.stopPropagation(),t(Au(null))},icon:v(FI,{})})]}),e&&v("div",{className:"init-image-image",children:v(ym,{fit:"contain",src:e,rounded:"md"})})]})}function O1e(){const e=Ce(i=>i.options.initialImagePath),{currentImage:t,intermediateImage:n}=Ce(i=>i.gallery),r=Ce(i=>i.options.shouldShowImageDetails),o=n||t;return v("div",{className:"image-to-image-display",style:o?{gridAutoRows:"max-content auto"}:{gridAutoRows:"auto"},children:e?v(yn,{children:o?q(yn,{children:[v(nO,{image:o}),q("div",{className:"image-to-image-dual-preview-container",children:[q("div",{className:"image-to-image-dual-preview",children:[v(uC,{}),v("div",{className:"image-to-image-current-image-display",children:v(rO,{imageToDisplay:o})})]}),r&&v(sO,{image:o,styleClass:"img2img-metadata"})]})]}):v("div",{className:"image-to-image-single-preview",children:v(uC,{})})}):v("div",{className:"upload-image",children:v(L1e,{label:"Upload or Drop Image Here",icon:v(Ohe,{}),styleClass:"image-to-image-upload-btn",dispatcher:epe})})})}var M1e=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,o){r.__proto__=o}||function(r,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(r[i]=o[i])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),an=globalThis&&globalThis.__assign||function(){return an=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof o>"u"?void 0:Number(o),minWidth:typeof i>"u"?void 0:Number(i),minHeight:typeof s>"u"?void 0:Number(s)}},$1e=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],hC="__resizable_base__",lO=function(e){D1e(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var o=r.parentNode;if(!o)return null;var i=r.window.document.createElement("div");return i.style.width="100%",i.style.height="100%",i.style.position="absolute",i.style.transform="scale(0, 0)",i.style.left="0",i.style.flex="0 0 100%",i.classList?i.classList.add(hC):i.className+=hC,o.appendChild(i),i},r.removeBase=function(o){var i=r.parentNode;!i||i.removeChild(o)},r.ref=function(o){o&&(r.resizable=o)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||z1e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var o=this.resizable.offsetWidth,i=this.resizable.offsetHeight,s=this.resizable.style.position;s!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:o,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:i,this.resizable.style.position=s}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,o=function(u){if(typeof n.state[u]>"u"||n.state[u]==="auto")return"auto";if(n.propsSize&&n.propsSize[u]&&n.propsSize[u].toString().endsWith("%")){if(n.state[u].toString().endsWith("%"))return n.state[u].toString();var c=n.getParentSize(),d=Number(n.state[u].toString().replace("px","")),f=d/c[u]*100;return f+"%"}return j2(n.state[u])},i=r&&typeof r.width<"u"&&!this.state.isResizing?j2(r.width):o("width"),s=r&&typeof r.height<"u"&&!this.state.isResizing?j2(r.height):o("height");return{width:i,height:s}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,o=this.parentNode.style.flexWrap;o!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var i={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=o),this.removeBase(n),i},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var o=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof o>"u"||o==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var o=this.props.boundsByDirection,i=this.state.direction,s=o&&Tl("left",i),u=o&&Tl("top",i),c,d;if(this.props.bounds==="parent"){var f=this.parentNode;f&&(c=s?this.resizableRight-this.parentLeft:f.offsetWidth+(this.parentLeft-this.resizableLeft),d=u?this.resizableBottom-this.parentTop:f.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(c=s?this.resizableRight:this.window.innerWidth-this.resizableLeft,d=u?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(c=s?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),d=u?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return c&&Number.isFinite(c)&&(n=n&&n"u"?10:i.width,h=typeof o.width>"u"||o.width<0?n:o.width,m=typeof i.height>"u"?10:i.height,g=typeof o.height>"u"||o.height<0?r:o.height,b=c||0,w=d||0;if(u){var k=(m-b)*this.ratio+w,S=(g-b)*this.ratio+w,x=(f-w)/this.ratio+b,_=(h-w)/this.ratio+b,L=Math.max(f,k),T=Math.min(h,S),R=Math.max(m,x),N=Math.min(g,_);n=Ih(n,L,T),r=Ih(r,R,N)}else n=Ih(n,f,h),r=Ih(r,m,g);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var o=this.props.bounds.getBoundingClientRect();this.targetLeft=o.left,this.targetTop=o.top}if(this.resizable){var i=this.resizable.getBoundingClientRect(),s=i.left,u=i.top,c=i.right,d=i.bottom;this.resizableLeft=s,this.resizableRight=c,this.resizableTop=u,this.resizableBottom=d}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var o=0,i=0;if(n.nativeEvent&&F1e(n.nativeEvent)?(o=n.nativeEvent.clientX,i=n.nativeEvent.clientY):n.nativeEvent&&Oh(n.nativeEvent)&&(o=n.nativeEvent.touches[0].clientX,i=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var s=this.props.onResizeStart(n,r,this.resizable);if(s===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var u,c=this.window.getComputedStyle(this.resizable);if(c.flexBasis!=="auto"){var d=this.parentNode;if(d){var f=this.window.getComputedStyle(d).flexDirection;this.flexDir=f.startsWith("row")?"row":"column",u=c.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var h={original:{x:o,y:i,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:Xo(Xo({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:u};this.setState(h)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&Oh(n))try{n.preventDefault(),n.stopPropagation()}catch{}var o=this.props,i=o.maxWidth,s=o.maxHeight,u=o.minWidth,c=o.minHeight,d=Oh(n)?n.touches[0].clientX:n.clientX,f=Oh(n)?n.touches[0].clientY:n.clientY,h=this.state,m=h.direction,g=h.original,b=h.width,w=h.height,k=this.getParentSize(),S=B1e(k,this.window.innerWidth,this.window.innerHeight,i,s,u,c);i=S.maxWidth,s=S.maxHeight,u=S.minWidth,c=S.minHeight;var x=this.calculateNewSizeFromDirection(d,f),_=x.newHeight,L=x.newWidth,T=this.calculateNewMaxFromBoundary(i,s);this.props.snap&&this.props.snap.x&&(L=pC(L,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(_=pC(_,this.props.snap.y,this.props.snapGap));var R=this.calculateNewSizeFromAspectRatio(L,_,{width:T.maxWidth,height:T.maxHeight},{width:u,height:c});if(L=R.newWidth,_=R.newHeight,this.props.grid){var N=fC(L,this.props.grid[0]),F=fC(_,this.props.grid[1]),G=this.props.snapGap||0;L=G===0||Math.abs(N-L)<=G?N:L,_=G===0||Math.abs(F-_)<=G?F:_}var W={width:L-g.width,height:_-g.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var J=L/k.width*100;L=J+"%"}else if(b.endsWith("vw")){var Ee=L/this.window.innerWidth*100;L=Ee+"vw"}else if(b.endsWith("vh")){var he=L/this.window.innerHeight*100;L=he+"vh"}}if(w&&typeof w=="string"){if(w.endsWith("%")){var J=_/k.height*100;_=J+"%"}else if(w.endsWith("vw")){var Ee=_/this.window.innerWidth*100;_=Ee+"vw"}else if(w.endsWith("vh")){var he=_/this.window.innerHeight*100;_=he+"vh"}}var me={width:this.createSizeForCssProperty(L,"width"),height:this.createSizeForCssProperty(_,"height")};this.flexDir==="row"?me.flexBasis=me.width:this.flexDir==="column"&&(me.flexBasis=me.height),Iu.exports.flushSync(function(){r.setState(me)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,W)}},t.prototype.onMouseUp=function(n){var r=this.state,o=r.isResizing,i=r.direction,s=r.original;if(!(!o||!this.resizable)){var u={width:this.size.width-s.width,height:this.size.height-s.height};this.props.onResizeStop&&this.props.onResizeStop(n,i,this.resizable,u),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:Xo(Xo({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,o=r.enable,i=r.handleStyles,s=r.handleClasses,u=r.handleWrapperStyle,c=r.handleWrapperClass,d=r.handleComponent;if(!o)return null;var f=Object.keys(o).map(function(h){return o[h]!==!1?v(N1e,{direction:h,onResizeStart:n.onResizeStart,replaceStyles:i&&i[h],className:s&&s[h],children:d&&d[h]?d[h]:null},h):null});return v("div",{className:c,style:u,children:f})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(s,u){return $1e.indexOf(u)!==-1||(s[u]=n.props[u]),s},{}),o=Xo(Xo(Xo({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(o.flexBasis=this.state.flexBasis);var i=this.props.as||"div";return q(i,{...Xo({ref:this.ref,style:o,className:this.props.className},r),children:[this.state.isResizing&&v("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function V1e(e,t){if(e==null)return{};var n=W1e(e,t),r,o;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function W1e(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}function mC(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Nc(e){for(var t=1;t{this.reCalculateColumnCount()})}reCalculateColumnCount(){const t=window&&window.innerWidth||1/0;let n=this.props.breakpointCols;typeof n!="object"&&(n={default:parseInt(n)||H2});let r=1/0,o=n.default||H2;for(let i in n){const s=parseInt(i);s>0&&t<=s&&s"u"&&(s="my-masonry-grid_column"));const u=Nc(Nc(Nc({},t),n),{},{style:Nc(Nc({},n.style),{},{width:i}),className:s});return o.map((c,d)=>C.exports.createElement("div",{...u,key:d},c))}logDeprecated(t){console.error("[Masonry]",t)}render(){const t=this.props,{children:n,breakpointCols:r,columnClassName:o,columnAttrs:i,column:s,className:u}=t,c=V1e(t,["children","breakpointCols","columnClassName","columnAttrs","column","className"]);let d=u;return typeof u!="string"&&(this.logDeprecated('The property "className" requires a string'),typeof u>"u"&&(d="my-masonry-grid")),v("div",{...c,className:d,children:this.renderColumns()})}}uO.defaultProps=H1e;const U1e=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,G1e=C.exports.memo(e=>{const[t,n]=C.exports.useState(!1),r=je(),o=Ce(k=>k.options.activeTab),{image:i,isSelected:s}=e,{url:u,uuid:c,metadata:d}=i,f=()=>n(!0),h=()=>n(!1),m=k=>{k.stopPropagation(),r(JT(d))},g=k=>{k.stopPropagation(),r(Of(i.metadata.image.seed))},b=k=>{k.stopPropagation(),r(Au(i.url)),o!==1&&r(Bi(1))};return q(po,{position:"relative",className:"hoverable-image",onMouseOver:f,onMouseOut:h,children:[v(ym,{objectFit:"cover",rounded:"md",src:u,loading:"lazy",className:"hoverable-image-image"}),v("div",{className:"hoverable-image-content",onClick:()=>r(zde(i)),children:s&&v(Kr,{width:"50%",height:"50%",as:Che,className:"hoverable-image-check"})}),t&&q("div",{className:"hoverable-image-icons",children:[v(Rn,{label:"Delete image",hasArrow:!0,children:v(tO,{image:i,children:v(un,{colorScheme:"red","aria-label":"Delete image",icon:v(Ihe,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14})})}),["txt2img","img2img"].includes(i?.metadata?.image?.type)&&v(Rn,{label:"Use All Parameters",hasArrow:!0,children:v(un,{"aria-label":"Use All Parameters",icon:v(aO,{}),size:"xs",fontSize:18,variant:"imageHoverIconButton",onClickCapture:m})}),i?.metadata?.image?.seed!==void 0&&v(Rn,{label:"Use Seed",hasArrow:!0,children:v(un,{"aria-label":"Use Seed",icon:v(Ahe,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:g})}),v(Rn,{label:"Send To Image To Image",hasArrow:!0,children:v(un,{"aria-label":"Send To Image To Image",icon:v(Ehe,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:b})})]})]},c)},U1e);function cO(){const{images:e,currentImageUuid:t,areMoreImagesAvailable:n}=Ce(m=>m.gallery),r=Ce(m=>m.options.shouldShowGallery),o=Ce(m=>m.options.activeTab),i=je(),[s,u]=C.exports.useState(),c=m=>{u(Math.floor((window.innerWidth-m.x)/120))},d=()=>{i(P7(!r))},f=()=>{i(P7(!1))},h=()=>{i(xI())};return rn("g",()=>{d()},[r]),rn("left",()=>{i(nI())},[]),rn("right",()=>{i(tI())},[]),q("div",{className:"image-gallery-area",children:[!r&&v(ws,{tooltip:"Show Gallery",tooltipPlacement:"top","aria-label":"Show Gallery",onClick:d,className:"image-gallery-popup-btn",children:v(q7,{})}),r&&q(lO,{defaultSize:{width:"300",height:"100%"},minWidth:"300",maxWidth:o==1?"300":"600",className:"image-gallery-popup",onResize:c,children:[q("div",{className:"image-gallery-header",children:[v("h1",{children:"Your Invocations"}),v(un,{size:"sm","aria-label":"Close Gallery",onClick:f,className:"image-gallery-close-btn",icon:v(FI,{})})]}),q("div",{className:"image-gallery-container",children:[e.length?v(uO,{className:"masonry-grid",columnClassName:"masonry-grid_column",breakpointCols:s,children:e.map(m=>{const{uuid:g}=m;return v(G1e,{image:m,isSelected:t===g},g)})}):q("div",{className:"image-gallery-container-placeholder",children:[v(q7,{}),v("p",{children:"No Images In Gallery"})]}),v(mi,{onClick:h,isDisabled:!n,className:"image-gallery-load-more-btn",children:n?"Load More":"All Images Loaded"})]})]})]})}function Z1e(){const e=Ce(t=>t.options.shouldShowGallery);return q("div",{className:"image-to-image-workarea",children:[v(vhe,{}),q("div",{className:"image-to-image-display-area",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(O1e,{}),v(cO,{})]})]})}function K1e(){const e=Ce(n=>n.options.showAdvancedOptions),t={seed:{header:v(po,{flex:"1",textAlign:"left",children:"Seed"}),feature:No.SEED,options:v(AI,{})},variations:{header:v(II,{}),feature:No.VARIATIONS,options:v(OI,{})},face_restore:{header:v(PI,{}),feature:No.FACE_CORRECTION,options:v(i6,{})},upscale:{header:v(TI,{}),feature:No.UPSCALE,options:v(a6,{})},other:{header:v(po,{flex:"1",textAlign:"left",children:"Other"}),feature:No.OTHER,options:v($I,{})}};return q("div",{className:"text-to-image-panel",children:[v(jI,{}),v(WI,{}),v(RI,{}),v(MI,{}),e?v(BI,{accordionInfo:t}):null]})}const q1e=()=>{const{currentImage:e,intermediateImage:t}=Ce(o=>o.gallery),n=Ce(o=>o.options.shouldShowImageDetails),r=t||e;return r?q("div",{className:"current-image-display",children:[v("div",{className:"current-image-tools",children:v(nO,{image:r})}),v(rO,{imageToDisplay:r}),n&&v(sO,{image:r,styleClass:"current-image-metadata"})]}):v("div",{className:"current-image-display-placeholder",children:v(ahe,{})})};function Y1e(){const e=Ce(t=>t.options.shouldShowGallery);return q("div",{className:"text-to-image-workarea",children:[v(K1e,{}),q("div",{className:"text-to-image-display",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(q1e,{}),v(cO,{})]})]})}const Ol={txt2img:{title:v(Ppe,{fill:"black",boxSize:"2.5rem"}),panel:v(Y1e,{}),tooltip:"Text To Image"},img2img:{title:v(Cpe,{fill:"black",boxSize:"2.5rem"}),panel:v(Z1e,{}),tooltip:"Image To Image"},inpainting:{title:v(_pe,{fill:"black",boxSize:"2.5rem"}),panel:v(bpe,{}),tooltip:"Inpainting"},outpainting:{title:v(Epe,{fill:"black",boxSize:"2.5rem"}),panel:v(wpe,{}),tooltip:"Outpainting"},nodes:{title:v(kpe,{fill:"black",boxSize:"2.5rem"}),panel:v(xpe,{}),tooltip:"Nodes"},postprocess:{title:v(Lpe,{fill:"black",boxSize:"2.5rem"}),panel:v(Spe,{}),tooltip:"Post Processing"}},X1e=rf.map(Ol,(e,t)=>t);function Q1e(){const e=Ce(o=>o.options.activeTab),t=je();rn("1",()=>{t(Bi(0))}),rn("2",()=>{t(Bi(1))}),rn("3",()=>{t(Bi(2))}),rn("4",()=>{t(Bi(3))}),rn("5",()=>{t(Bi(4))}),rn("6",()=>{t(Bi(5))});const n=()=>{const o=[];return Object.keys(Ol).forEach(i=>{o.push(v(Rn,{hasArrow:!0,label:Ol[i].tooltip,placement:"right",children:v(GA,{children:Ol[i].title})},i))}),o},r=()=>{const o=[];return Object.keys(Ol).forEach(i=>{o.push(v(HA,{className:"app-tabs-panel",children:Ol[i].panel},i))}),o};return q(jA,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:o=>{t(Bi(o))},children:[v("div",{className:"app-tabs-list",children:n()}),v(UA,{className:"app-tabs-panels",children:r()})]})}const J1e=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:()=>{n(l1(!0));const o={...r().options};X1e[o.activeTab]==="txt2img"&&(o.shouldUseInitImage=!1);const{generationParameters:i,esrganParameters:s,gfpganParameters:u}=spe(o,r().system);t.emit("generateImage",i,s,u),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...i,...s,...u})}`}))},emitRunESRGAN:o=>{n(l1(!0));const{upscalingLevel:i,upscalingStrength:s}=r().options,u={upscale:[i,s]};t.emit("runPostprocessing",o,{type:"esrgan",...u}),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:o.url,...u})}`}))},emitRunGFPGAN:o=>{n(l1(!0));const{gfpganStrength:i}=r().options,s={gfpgan_strength:i};t.emit("runPostprocessing",o,{type:"gfpgan",...s}),n(nr({timestamp:rr(new Date,"isoDateTime"),message:`GFPGAN fix faces requested: ${JSON.stringify({file:o.url,...s})}`}))},emitDeleteImage:o=>{const{url:i,uuid:s}=o;t.emit("deleteImage",i,s)},emitRequestImages:()=>{const{earliest_mtime:o}=r().gallery;t.emit("requestImages",o)},emitRequestNewImages:()=>{const{latest_mtime:o}=r().gallery;t.emit("requestLatestImages",o)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadInitialImage:o=>{t.emit("uploadInitialImage",o,o.name)},emitUploadMaskImage:o=>{t.emit("uploadMaskImage",o,o.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")}}},e0e=()=>{const{hostname:e,port:t}=new URL(window.location.href),n=d1(`http://${e}:${t}`,{timeout:6e4});let r=!1;return i=>s=>u=>{const{onConnect:c,onDisconnect:d,onError:f,onPostprocessingResult:h,onGenerationResult:m,onIntermediateResult:g,onProgressUpdate:b,onGalleryImages:w,onProcessingCanceled:k,onImageDeleted:S,onInitialImageUploaded:x,onMaskImageUploaded:_,onSystemConfig:L}=npe(i),{emitGenerateImage:T,emitRunESRGAN:R,emitRunGFPGAN:N,emitDeleteImage:F,emitRequestImages:G,emitRequestNewImages:W,emitCancelProcessing:J,emitUploadInitialImage:Ee,emitUploadMaskImage:he,emitRequestSystemConfig:me}=J1e(i,n);switch(r||(n.on("connect",()=>c()),n.on("disconnect",()=>d()),n.on("error",ce=>f(ce)),n.on("generationResult",ce=>m(ce)),n.on("postprocessingResult",ce=>h(ce)),n.on("intermediateResult",ce=>g(ce)),n.on("progressUpdate",ce=>b(ce)),n.on("galleryImages",ce=>w(ce)),n.on("processingCanceled",()=>{k()}),n.on("imageDeleted",ce=>{S(ce)}),n.on("initialImageUploaded",ce=>{x(ce)}),n.on("maskImageUploaded",ce=>{_(ce)}),n.on("systemConfig",ce=>{L(ce)}),r=!0),u.type){case"socketio/generateImage":{T();break}case"socketio/runESRGAN":{R(u.payload);break}case"socketio/runGFPGAN":{N(u.payload);break}case"socketio/deleteImage":{F(u.payload);break}case"socketio/requestImages":{G();break}case"socketio/requestNewImages":{W();break}case"socketio/cancelProcessing":{J();break}case"socketio/uploadInitialImage":{Ee(u.payload);break}case"socketio/uploadMaskImage":{he(u.payload);break}case"socketio/requestSystemConfig":{me();break}}s(u)}},t0e={key:"root",storage:Qb,blacklist:["gallery","system"]},n0e={key:"system",storage:Qb,blacklist:["isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},r0e=xT({options:Rde,gallery:$de,system:FT(n0e,Yde)}),o0e=FT(t0e,r0e),dO=ace({reducer:o0e,middleware:e=>e({serializableCheck:!1}).concat(e0e())}),je=Uce,Ce=Rce;function f1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?f1=function(n){return typeof n}:f1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},f1(e)}function i0e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gC(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),pO=()=>v(Pt,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:v(gm,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),u0e=qn(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),c0e=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=Ce(u0e),o=t?Math.round(t*100/n):0;return v(DA,{height:"4px",value:o,isIndeterminate:e&&!r,className:"progress-bar"})},d0e="/assets/logo.13003d72.png";function f0e(e){const{title:t,hotkey:n,description:r}=e;return q("div",{className:"hotkey-modal-item",children:[q("div",{className:"hotkey-info",children:[v("p",{className:"hotkey-title",children:t}),r&&v("p",{className:"hotkey-description",children:r})]}),v("div",{className:"hotkey-key",children:n})]})}function p0e({children:e}){const{isOpen:t,onOpen:n,onClose:r}=o0(),o=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send the current image to Image to Image module",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Previous Image",desc:"Display the previous image in the gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in the gallery",hotkey:"Arrow right"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],i=()=>{const s=[];return o.forEach((u,c)=>{s.push(v(f0e,{title:u.title,description:u.desc,hotkey:u.hotkey},c))}),s};return q(yn,{children:[C.exports.cloneElement(e,{onClick:n}),q(Eu,{isOpen:t,onClose:r,children:[v(Xd,{}),q(Yd,{className:"hotkeys-modal",children:[v(_b,{}),v("h1",{children:"Keyboard Shorcuts"}),v("div",{className:"hotkeys-modal-items",children:i()})]})]})]})}function U2({settingTitle:e,isChecked:t,dispatcher:n}){const r=je();return q(ns,{className:"settings-modal-item",children:[v(Gs,{marginBottom:1,children:e}),v(Lm,{isChecked:t,onChange:o=>r(n(o.target.checked))})]})}const h0e=qn(e=>e.system,e=>{const{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}=e;return{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}},{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),m0e=({children:e})=>{const{isOpen:t,onOpen:n,onClose:r}=o0(),{isOpen:o,onOpen:i,onClose:s}=o0(),{shouldDisplayInProgress:u,shouldConfirmOnDelete:c,shouldDisplayGuides:d}=Ce(h0e),f=()=>{hO.purge().then(()=>{r(),i()})};return q(yn,{children:[C.exports.cloneElement(e,{onClick:n}),q(Eu,{isOpen:t,onClose:r,children:[v(Xd,{}),q(Yd,{className:"settings-modal",children:[v(Eb,{className:"settings-modal-header",children:"Settings"}),v(_b,{}),q(l0,{className:"settings-modal-content",children:[q("div",{className:"settings-modal-items",children:[v(U2,{settingTitle:"Display In-Progress Images (slower)",isChecked:u,dispatcher:jde}),v(U2,{settingTitle:"Confirm on Delete",isChecked:c,dispatcher:oI}),v(U2,{settingTitle:"Display Help Icons",isChecked:d,dispatcher:Zde})]}),q("div",{className:"settings-modal-reset",children:[v(rb,{size:"md",children:"Reset Web UI"}),v(zr,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),v(zr,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."}),v(mi,{colorScheme:"red",onClick:f,children:"Reset Web UI"})]})]}),v(kb,{children:v(mi,{onClick:r,children:"Close"})})]})]}),q(Eu,{closeOnOverlayClick:!1,isOpen:o,onClose:s,isCentered:!0,children:[v(Xd,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),v(Yd,{children:v(l0,{pb:6,pt:6,children:v(Pt,{justifyContent:"center",children:v(zr,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},g0e=qn(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),v0e=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:o,hasError:i,wasErrorSeen:s}=Ce(g0e),u=je();let c;e&&!i?c="status-good":c="status-bad";let d=o;return["generating","preparing","saving image","restoring faces","upscaling"].includes(d.toLowerCase())&&(c="status-working"),d&&t&&r>1&&(d+=` (${n}/${r})`),v(Rn,{label:i&&!s?"Click to clear, check logs for details":void 0,children:v(zr,{cursor:i&&!s?"pointer":"initial",onClick:()=>{(i||!s)&&u(iI())},className:`status ${c}`,children:d})})},y0e=()=>{const{colorMode:e,toggleColorMode:t}=u3();rn("shift+d",()=>{t()},[e,t]);const n=e=="light"?v(Phe,{}):v(The,{}),r=e=="light"?18:20;return q("div",{className:"site-header",children:[q("div",{className:"site-header-left-side",children:[v("img",{src:d0e,alt:"invoke-ai-logo"}),q("h1",{children:["invoke ",v("strong",{children:"ai"})]})]}),q("div",{className:"site-header-right-side",children:[v(v0e,{}),v(m0e,{children:v(un,{"aria-label":"Settings",variant:"link",fontSize:24,size:"sm",icon:v(nhe,{})})}),v(p0e,{children:v(un,{"aria-label":"Hotkeys",variant:"link",fontSize:24,size:"sm",icon:v(ohe,{})})}),v(Rn,{hasArrow:!0,label:"Report Bug",placement:"bottom",children:v(un,{"aria-label":"Link to Github Issues",variant:"link",fontSize:23,size:"sm",icon:v(au,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:v(zI,{})})})}),v(Rn,{hasArrow:!0,label:"Github",placement:"bottom",children:v(un,{"aria-label":"Link to Github Repo",variant:"link",fontSize:20,size:"sm",icon:v(au,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:v(bhe,{})})})}),v(Rn,{hasArrow:!0,label:"Discord",placement:"bottom",children:v(un,{"aria-label":"Link to Discord Server",variant:"link",fontSize:20,size:"sm",icon:v(au,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:v(yhe,{})})})}),v(Rn,{hasArrow:!0,label:"Theme",placement:"bottom",children:v(un,{"aria-label":"Toggle Dark Mode",onClick:t,variant:"link",size:"sm",fontSize:r,icon:n})})]})]})},b0e=qn(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),x0e=qn(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Kn.exports.isEqual}}),w0e=()=>{const e=je(),t=Ce(b0e),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:o}=Ce(x0e),[i,s]=C.exports.useState(!0),u=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{u.current!==null&&i&&(u.current.scrollTop=u.current.scrollHeight)},[i,t,n]);const c=()=>{e(iI()),e(T7(!n))};return rn("`",()=>{e(T7(!n))},[n]),q(yn,{children:[n&&v(lO,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0},maxHeight:"90vh",children:v("div",{className:"console",ref:u,children:t.map((d,f)=>{const{timestamp:h,message:m,level:g}=d;return q("div",{className:`console-entry console-${g}-color`,children:[q("p",{className:"console-timestamp",children:[h,":"]}),v("p",{className:"console-message",children:m})]},f)})})}),n&&v(Rn,{hasArrow:!0,label:i?"Autoscroll On":"Autoscroll Off",children:v(un,{className:`console-autoscroll-icon-button ${i&&"autoscroll-enabled"}`,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:v(xhe,{}),onClick:()=>s(!i)})}),v(Rn,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:v(un,{className:`console-toggle-icon-button ${(r||!o)&&"error-seen"}`,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?v(Lhe,{}):v(_he,{}),onClick:c})})]})};function S0e(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(o=>o)};(!{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}S0e();const C0e=()=>{const e=je(),[t,n]=C.exports.useState(!1);return C.exports.useEffect(()=>{e(tpe()),n(!0)},[e]),t?q("div",{className:"App",children:[v(c0e,{}),q("div",{className:"app-content",children:[v(y0e,{}),v(Q1e,{})]}),v("div",{className:"app-console",children:v(w0e,{})})]}):v(pO,{})};const hO=dde(dO);G2.createRoot(document.getElementById("root")).render(v(X.StrictMode,{children:v(Wce,{store:dO,children:v(fO,{loading:v(pO,{}),persistor:hO,children:q(Eue,{theme:vC,children:[v(_V,{initialColorMode:vC.config.initialColorMode}),v(C0e,{})]})})})})); diff --git a/frontend/dist/assets/index.ea68b5f5.js b/frontend/dist/assets/index.ea68b5f5.js new file mode 100644 index 0000000000..a57198b700 --- /dev/null +++ b/frontend/dist/assets/index.ea68b5f5.js @@ -0,0 +1,483 @@ +function FB(e,t){for(var n=0;nr[o]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const s of i.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&r(s)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerpolicy&&(i.referrerPolicy=o.referrerpolicy),o.crossorigin==="use-credentials"?i.credentials="include":o.crossorigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();var qi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function VB(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},Xe={};/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var bf=Symbol.for("react.element"),WB=Symbol.for("react.portal"),jB=Symbol.for("react.fragment"),HB=Symbol.for("react.strict_mode"),UB=Symbol.for("react.profiler"),GB=Symbol.for("react.provider"),ZB=Symbol.for("react.context"),KB=Symbol.for("react.forward_ref"),qB=Symbol.for("react.suspense"),YB=Symbol.for("react.memo"),XB=Symbol.for("react.lazy"),N9=Symbol.iterator;function QB(e){return e===null||typeof e!="object"?null:(e=N9&&e[N9]||e["@@iterator"],typeof e=="function"?e:null)}var QC={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},JC=Object.assign,ek={};function Bu(e,t,n){this.props=e,this.context=t,this.refs=ek,this.updater=n||QC}Bu.prototype.isReactComponent={};Bu.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};Bu.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function tk(){}tk.prototype=Bu.prototype;function D4(e,t,n){this.props=e,this.context=t,this.refs=ek,this.updater=n||QC}var z4=D4.prototype=new tk;z4.constructor=D4;JC(z4,Bu.prototype);z4.isPureReactComponent=!0;var D9=Array.isArray,nk=Object.prototype.hasOwnProperty,$4={current:null},rk={key:!0,ref:!0,__self:!0,__source:!0};function ok(e,t,n){var r,o={},i=null,s=null;if(t!=null)for(r in t.ref!==void 0&&(s=t.ref),t.key!==void 0&&(i=""+t.key),t)nk.call(t,r)&&!rk.hasOwnProperty(r)&&(o[r]=t[r]);var l=arguments.length-2;if(l===1)o.children=n;else if(1>>1,U=H[R];if(0>>1;Ro(be,q))Seo(Te,be)?(H[R]=Te,H[Se]=q,R=Se):(H[R]=be,H[fe]=q,R=fe);else if(Seo(Te,q))H[R]=Te,H[Se]=q,R=Se;else break e}}return Q}function o(H,Q){var q=H.sortIndex-Q.sortIndex;return q!==0?q:H.id-Q.id}if(typeof performance=="object"&&typeof performance.now=="function"){var i=performance;e.unstable_now=function(){return i.now()}}else{var s=Date,l=s.now();e.unstable_now=function(){return s.now()-l}}var c=[],d=[],f=1,h=null,m=3,g=!1,b=!1,S=!1,_=typeof setTimeout=="function"?setTimeout:null,w=typeof clearTimeout=="function"?clearTimeout:null,x=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function k(H){for(var Q=n(d);Q!==null;){if(Q.callback===null)r(d);else if(Q.startTime<=H)r(d),Q.sortIndex=Q.expirationTime,t(c,Q);else break;Q=n(d)}}function L(H){if(S=!1,k(H),!b)if(n(c)!==null)b=!0,ve(A);else{var Q=n(d);Q!==null&&oe(L,Q.startTime-H)}}function A(H,Q){b=!1,S&&(S=!1,w($),$=-1),g=!0;var q=m;try{for(k(Q),h=n(c);h!==null&&(!(h.expirationTime>Q)||H&&!te());){var R=h.callback;if(typeof R=="function"){h.callback=null,m=h.priorityLevel;var U=R(h.expirationTime<=Q);Q=e.unstable_now(),typeof U=="function"?h.callback=U:h===n(c)&&r(c),k(Q)}else r(c);h=n(c)}if(h!==null)var ue=!0;else{var fe=n(d);fe!==null&&oe(L,fe.startTime-Q),ue=!1}return ue}finally{h=null,m=q,g=!1}}var M=!1,N=null,$=-1,Z=5,j=-1;function te(){return!(e.unstable_now()-jH||125R?(H.sortIndex=q,t(d,H),n(c)===null&&H===n(d)&&(S?(w($),$=-1):S=!0,oe(L,q-R))):(H.sortIndex=U,t(c,H),b||g||(b=!0,ve(A))),H},e.unstable_shouldYield=te,e.unstable_wrapCallback=function(H){var Q=m;return function(){var q=m;m=Q;try{return H.apply(this,arguments)}finally{m=q}}}})(ak);(function(e){e.exports=ak})(ik);/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var sk=C.exports,Zr=ik.exports;function ce(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),fy=Object.prototype.hasOwnProperty,rF=/^[: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]*$/,B9={},F9={};function oF(e){return fy.call(F9,e)?!0:fy.call(B9,e)?!1:rF.test(e)?F9[e]=!0:(B9[e]=!0,!1)}function iF(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function aF(e,t,n,r){if(t===null||typeof t>"u"||iF(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function hr(e,t,n,r,o,i,s){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=s}var Wn={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Wn[e]=new hr(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Wn[t]=new hr(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){Wn[e]=new hr(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Wn[e]=new hr(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Wn[e]=new hr(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){Wn[e]=new hr(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){Wn[e]=new hr(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){Wn[e]=new hr(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){Wn[e]=new hr(e,5,!1,e.toLowerCase(),null,!1,!1)});var F4=/[\-:]([a-z])/g;function V4(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(F4,V4);Wn[t]=new hr(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(F4,V4);Wn[t]=new hr(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(F4,V4);Wn[t]=new hr(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){Wn[e]=new hr(e,1,!1,e.toLowerCase(),null,!1,!1)});Wn.xlinkHref=new hr("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){Wn[e]=new hr(e,1,!1,e.toLowerCase(),null,!0,!0)});function W4(e,t,n,r){var o=Wn.hasOwnProperty(t)?Wn[t]:null;(o!==null?o.type!==0:r||!(2l||o[s]!==i[l]){var c=` +`+o[s].replace(" at new "," at ");return e.displayName&&c.includes("")&&(c=c.replace("",e.displayName)),c}while(1<=s&&0<=l);break}}}finally{Hv=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Gc(e):""}function sF(e){switch(e.tag){case 5:return Gc(e.type);case 16:return Gc("Lazy");case 13:return Gc("Suspense");case 19:return Gc("SuspenseList");case 0:case 2:case 15:return e=Uv(e.type,!1),e;case 11:return e=Uv(e.type.render,!1),e;case 1:return e=Uv(e.type,!0),e;default:return""}}function gy(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case jl:return"Fragment";case Wl:return"Portal";case py:return"Profiler";case j4:return"StrictMode";case hy:return"Suspense";case my:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case ck:return(e.displayName||"Context")+".Consumer";case uk:return(e._context.displayName||"Context")+".Provider";case H4:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case U4:return t=e.displayName||null,t!==null?t:gy(e.type)||"Memo";case Ra:t=e._payload,e=e._init;try{return gy(e(t))}catch{}}return null}function lF(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return gy(t);case 8:return t===j4?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function es(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function fk(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function uF(e){var t=fk(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=""+s,i.call(this,s)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(s){r=""+s},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function th(e){e._valueTracker||(e._valueTracker=uF(e))}function pk(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=fk(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function T1(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function vy(e,t){var n=t.checked;return Yt({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function W9(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=es(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function hk(e,t){t=t.checked,t!=null&&W4(e,"checked",t,!1)}function yy(e,t){hk(e,t);var n=es(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?by(e,t.type,n):t.hasOwnProperty("defaultValue")&&by(e,t.type,es(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function j9(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function by(e,t,n){(t!=="number"||T1(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var Zc=Array.isArray;function iu(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o"+t.valueOf().toString()+"",t=nh.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Ld(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var nd={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},cF=["Webkit","ms","Moz","O"];Object.keys(nd).forEach(function(e){cF.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),nd[t]=nd[e]})});function yk(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||nd.hasOwnProperty(e)&&nd[e]?(""+t).trim():t+"px"}function bk(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,o=yk(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}var dF=Yt({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function wy(e,t){if(t){if(dF[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(ce(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(ce(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(ce(61))}if(t.style!=null&&typeof t.style!="object")throw Error(ce(62))}}function Cy(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){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 ky=null;function G4(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var _y=null,au=null,su=null;function G9(e){if(e=wf(e)){if(typeof _y!="function")throw Error(ce(280));var t=e.stateNode;t&&(t=V0(t),_y(e.stateNode,e.type,t))}}function Sk(e){au?su?su.push(e):su=[e]:au=e}function xk(){if(au){var e=au,t=su;if(su=au=null,G9(e),t)for(e=0;e>>=0,e===0?32:31-(wF(e)/CF|0)|0}var rh=64,oh=4194304;function Kc(e){switch(e&-e){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: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 e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function O1(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,o=e.suspendedLanes,i=e.pingedLanes,s=n&268435455;if(s!==0){var l=s&~o;l!==0?r=Kc(l):(i&=s,i!==0&&(r=Kc(i)))}else s=n&~o,s!==0?r=Kc(s):i!==0&&(r=Kc(i));if(r===0)return 0;if(t!==0&&t!==r&&(t&o)===0&&(o=r&-r,i=t&-t,o>=i||o===16&&(i&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function Sf(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Wo(t),e[t]=n}function LF(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=od),tx=String.fromCharCode(32),nx=!1;function Vk(e,t){switch(e){case"keyup":return tV.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Wk(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Hl=!1;function rV(e,t){switch(e){case"compositionend":return Wk(t);case"keypress":return t.which!==32?null:(nx=!0,tx);case"textInput":return e=t.data,e===tx&&nx?null:e;default:return null}}function oV(e,t){if(Hl)return e==="compositionend"||!eb&&Vk(e,t)?(e=Bk(),Yh=X4=Ba=null,Hl=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=ax(n)}}function Gk(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Gk(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Zk(){for(var e=window,t=T1();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=T1(e.document)}return t}function tb(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function pV(e){var t=Zk(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&Gk(n.ownerDocument.documentElement,n)){if(r!==null&&tb(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var o=n.textContent.length,i=Math.min(r.start,o);r=r.end===void 0?i:Math.min(r.end,o),!e.extend&&i>r&&(o=r,r=i,i=o),o=sx(n,i);var s=sx(n,r);o&&s&&(e.rangeCount!==1||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&(t=t.createRange(),t.setStart(o.node,o.offset),e.removeAllRanges(),i>r?(e.addRange(t),e.extend(s.node,s.offset)):(t.setEnd(s.node,s.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Ul=null,Iy=null,ad=null,Ry=!1;function lx(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Ry||Ul==null||Ul!==T1(r)||(r=Ul,"selectionStart"in r&&tb(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),ad&&Od(ad,r)||(ad=r,r=D1(Iy,"onSelect"),0Kl||(e.current=$y[Kl],$y[Kl]=null,Kl--)}function Ot(e,t){Kl++,$y[Kl]=e.current,e.current=t}var ts={},Qn=ls(ts),_r=ls(!1),js=ts;function wu(e,t){var n=e.type.contextTypes;if(!n)return ts;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o={},i;for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function Er(e){return e=e.childContextTypes,e!=null}function $1(){Bt(_r),Bt(Qn)}function mx(e,t,n){if(Qn.current!==ts)throw Error(ce(168));Ot(Qn,t),Ot(_r,n)}function n_(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var o in r)if(!(o in t))throw Error(ce(108,lF(e)||"Unknown",o));return Yt({},n,r)}function B1(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ts,js=Qn.current,Ot(Qn,e),Ot(_r,_r.current),!0}function gx(e,t,n){var r=e.stateNode;if(!r)throw Error(ce(169));n?(e=n_(e,t,js),r.__reactInternalMemoizedMergedChildContext=e,Bt(_r),Bt(Qn),Ot(Qn,e)):Bt(_r),Ot(_r,n)}var Ki=null,W0=!1,i2=!1;function r_(e){Ki===null?Ki=[e]:Ki.push(e)}function _V(e){W0=!0,r_(e)}function us(){if(!i2&&Ki!==null){i2=!0;var e=0,t=yt;try{var n=Ki;for(yt=1;e>=s,o-=s,Xi=1<<32-Wo(t)+o|n<$?(Z=N,N=null):Z=N.sibling;var j=m(w,N,k[$],L);if(j===null){N===null&&(N=Z);break}e&&N&&j.alternate===null&&t(w,N),x=i(j,x,$),M===null?A=j:M.sibling=j,M=j,N=Z}if($===k.length)return n(w,N),jt&&ks(w,$),A;if(N===null){for(;$$?(Z=N,N=null):Z=N.sibling;var te=m(w,N,j.value,L);if(te===null){N===null&&(N=Z);break}e&&N&&te.alternate===null&&t(w,N),x=i(te,x,$),M===null?A=te:M.sibling=te,M=te,N=Z}if(j.done)return n(w,N),jt&&ks(w,$),A;if(N===null){for(;!j.done;$++,j=k.next())j=h(w,j.value,L),j!==null&&(x=i(j,x,$),M===null?A=j:M.sibling=j,M=j);return jt&&ks(w,$),A}for(N=r(w,N);!j.done;$++,j=k.next())j=g(N,w,$,j.value,L),j!==null&&(e&&j.alternate!==null&&N.delete(j.key===null?$:j.key),x=i(j,x,$),M===null?A=j:M.sibling=j,M=j);return e&&N.forEach(function(Le){return t(w,Le)}),jt&&ks(w,$),A}function _(w,x,k,L){if(typeof k=="object"&&k!==null&&k.type===jl&&k.key===null&&(k=k.props.children),typeof k=="object"&&k!==null){switch(k.$$typeof){case eh:e:{for(var A=k.key,M=x;M!==null;){if(M.key===A){if(A=k.type,A===jl){if(M.tag===7){n(w,M.sibling),x=o(M,k.props.children),x.return=w,w=x;break e}}else if(M.elementType===A||typeof A=="object"&&A!==null&&A.$$typeof===Ra&&Cx(A)===M.type){n(w,M.sibling),x=o(M,k.props),x.ref=Oc(w,M,k),x.return=w,w=x;break e}n(w,M);break}else t(w,M);M=M.sibling}k.type===jl?(x=$s(k.props.children,w.mode,L,k.key),x.return=w,w=x):(L=o1(k.type,k.key,k.props,null,w.mode,L),L.ref=Oc(w,x,k),L.return=w,w=L)}return s(w);case Wl:e:{for(M=k.key;x!==null;){if(x.key===M)if(x.tag===4&&x.stateNode.containerInfo===k.containerInfo&&x.stateNode.implementation===k.implementation){n(w,x.sibling),x=o(x,k.children||[]),x.return=w,w=x;break e}else{n(w,x);break}else t(w,x);x=x.sibling}x=p2(k,w.mode,L),x.return=w,w=x}return s(w);case Ra:return M=k._init,_(w,x,M(k._payload),L)}if(Zc(k))return b(w,x,k,L);if(Pc(k))return S(w,x,k,L);dh(w,k)}return typeof k=="string"&&k!==""||typeof k=="number"?(k=""+k,x!==null&&x.tag===6?(n(w,x.sibling),x=o(x,k),x.return=w,w=x):(n(w,x),x=f2(k,w.mode,L),x.return=w,w=x),s(w)):n(w,x)}return _}var ku=d_(!0),f_=d_(!1),Cf={},fi=ls(Cf),zd=ls(Cf),$d=ls(Cf);function Os(e){if(e===Cf)throw Error(ce(174));return e}function cb(e,t){switch(Ot($d,t),Ot(zd,e),Ot(fi,Cf),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:xy(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=xy(t,e)}Bt(fi),Ot(fi,t)}function _u(){Bt(fi),Bt(zd),Bt($d)}function p_(e){Os($d.current);var t=Os(fi.current),n=xy(t,e.type);t!==n&&(Ot(zd,e),Ot(fi,n))}function db(e){zd.current===e&&(Bt(fi),Bt(zd))}var Kt=ls(0);function U1(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var a2=[];function fb(){for(var e=0;en?n:4,e(!0);var r=s2.transition;s2.transition={};try{e(!1),t()}finally{yt=n,s2.transition=r}}function T_(){return vo().memoizedState}function TV(e,t,n){var r=Xa(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},A_(e))I_(t,n);else if(n=s_(e,t,n,r),n!==null){var o=dr();jo(n,e,r,o),R_(n,t,r)}}function AV(e,t,n){var r=Xa(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(A_(e))I_(t,o);else{var i=e.alternate;if(e.lanes===0&&(i===null||i.lanes===0)&&(i=t.lastRenderedReducer,i!==null))try{var s=t.lastRenderedState,l=i(s,n);if(o.hasEagerState=!0,o.eagerState=l,Uo(l,s)){var c=t.interleaved;c===null?(o.next=o,lb(t)):(o.next=c.next,c.next=o),t.interleaved=o;return}}catch{}finally{}n=s_(e,t,o,r),n!==null&&(o=dr(),jo(n,e,r,o),R_(n,t,r))}}function A_(e){var t=e.alternate;return e===qt||t!==null&&t===qt}function I_(e,t){sd=G1=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function R_(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,K4(e,n)}}var Z1={readContext:go,useCallback:Gn,useContext:Gn,useEffect:Gn,useImperativeHandle:Gn,useInsertionEffect:Gn,useLayoutEffect:Gn,useMemo:Gn,useReducer:Gn,useRef:Gn,useState:Gn,useDebugValue:Gn,useDeferredValue:Gn,useTransition:Gn,useMutableSource:Gn,useSyncExternalStore:Gn,useId:Gn,unstable_isNewReconciler:!1},IV={readContext:go,useCallback:function(e,t){return ni().memoizedState=[e,t===void 0?null:t],e},useContext:go,useEffect:_x,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,e1(4194308,4,k_.bind(null,t,e),n)},useLayoutEffect:function(e,t){return e1(4194308,4,e,t)},useInsertionEffect:function(e,t){return e1(4,2,e,t)},useMemo:function(e,t){var n=ni();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=ni();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=TV.bind(null,qt,e),[r.memoizedState,e]},useRef:function(e){var t=ni();return e={current:e},t.memoizedState=e},useState:kx,useDebugValue:vb,useDeferredValue:function(e){return ni().memoizedState=e},useTransition:function(){var e=kx(!1),t=e[0];return e=PV.bind(null,e[1]),ni().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=qt,o=ni();if(jt){if(n===void 0)throw Error(ce(407));n=n()}else{if(n=t(),Pn===null)throw Error(ce(349));(Us&30)!==0||g_(r,t,n)}o.memoizedState=n;var i={value:n,getSnapshot:t};return o.queue=i,_x(y_.bind(null,r,i,e),[e]),r.flags|=2048,Vd(9,v_.bind(null,r,i,n,t),void 0,null),n},useId:function(){var e=ni(),t=Pn.identifierPrefix;if(jt){var n=Qi,r=Xi;n=(r&~(1<<32-Wo(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Bd++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),n==="select"&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[si]=t,e[Dd]=r,V_(e,t,!1,!1),t.stateNode=e;e:{switch(s=Cy(n,r),n){case"dialog":Dt("cancel",e),Dt("close",e),o=r;break;case"iframe":case"object":case"embed":Dt("load",e),o=r;break;case"video":case"audio":for(o=0;oLu&&(t.flags|=128,r=!0,Mc(i,!1),t.lanes=4194304)}else{if(!r)if(e=U1(s),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),Mc(i,!0),i.tail===null&&i.tailMode==="hidden"&&!s.alternate&&!jt)return Zn(t),null}else 2*sn()-i.renderingStartTime>Lu&&n!==1073741824&&(t.flags|=128,r=!0,Mc(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(n=i.last,n!==null?n.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(t=i.tail,i.rendering=t,i.tail=t.sibling,i.renderingStartTime=sn(),t.sibling=null,n=Kt.current,Ot(Kt,r?n&1|2:n&1),t):(Zn(t),null);case 22:case 23:return Cb(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(Vr&1073741824)!==0&&(Zn(t),t.subtreeFlags&6&&(t.flags|=8192)):Zn(t),null;case 24:return null;case 25:return null}throw Error(ce(156,t.tag))}function BV(e,t){switch(rb(t),t.tag){case 1:return Er(t.type)&&$1(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return _u(),Bt(_r),Bt(Qn),fb(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return db(t),null;case 13:if(Bt(Kt),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(ce(340));Cu()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Bt(Kt),null;case 4:return _u(),null;case 10:return sb(t.type._context),null;case 22:case 23:return Cb(),null;case 24:return null;default:return null}}var ph=!1,Yn=!1,FV=typeof WeakSet=="function"?WeakSet:Set,Ee=null;function Ql(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){en(e,t,r)}else n.current=null}function Yy(e,t,n){try{n()}catch(r){en(e,t,r)}}var Mx=!1;function VV(e,t){if(Oy=M1,e=Zk(),tb(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var o=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{n.nodeType,i.nodeType}catch{n=null;break e}var s=0,l=-1,c=-1,d=0,f=0,h=e,m=null;t:for(;;){for(var g;h!==n||o!==0&&h.nodeType!==3||(l=s+o),h!==i||r!==0&&h.nodeType!==3||(c=s+r),h.nodeType===3&&(s+=h.nodeValue.length),(g=h.firstChild)!==null;)m=h,h=g;for(;;){if(h===e)break t;if(m===n&&++d===o&&(l=s),m===i&&++f===r&&(c=s),(g=h.nextSibling)!==null)break;h=m,m=h.parentNode}h=g}n=l===-1||c===-1?null:{start:l,end:c}}else n=null}n=n||{start:0,end:0}}else n=null;for(My={focusedElem:e,selectionRange:n},M1=!1,Ee=t;Ee!==null;)if(t=Ee,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,Ee=e;else for(;Ee!==null;){t=Ee;try{var b=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(b!==null){var S=b.memoizedProps,_=b.memoizedState,w=t.stateNode,x=w.getSnapshotBeforeUpdate(t.elementType===t.type?S:Do(t.type,S),_);w.__reactInternalSnapshotBeforeUpdate=x}break;case 3:var k=t.stateNode.containerInfo;k.nodeType===1?k.textContent="":k.nodeType===9&&k.documentElement&&k.removeChild(k.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(ce(163))}}catch(L){en(t,t.return,L)}if(e=t.sibling,e!==null){e.return=t.return,Ee=e;break}Ee=t.return}return b=Mx,Mx=!1,b}function ld(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var o=r=r.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,i!==void 0&&Yy(t,n,i)}o=o.next}while(o!==r)}}function U0(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Xy(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function H_(e){var t=e.alternate;t!==null&&(e.alternate=null,H_(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[si],delete t[Dd],delete t[zy],delete t[CV],delete t[kV])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function U_(e){return e.tag===5||e.tag===3||e.tag===4}function Nx(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||U_(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Qy(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=z1));else if(r!==4&&(e=e.child,e!==null))for(Qy(e,t,n),e=e.sibling;e!==null;)Qy(e,t,n),e=e.sibling}function Jy(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Jy(e,t,n),e=e.sibling;e!==null;)Jy(e,t,n),e=e.sibling}var zn=null,zo=!1;function ka(e,t,n){for(n=n.child;n!==null;)G_(e,t,n),n=n.sibling}function G_(e,t,n){if(di&&typeof di.onCommitFiberUnmount=="function")try{di.onCommitFiberUnmount(z0,n)}catch{}switch(n.tag){case 5:Yn||Ql(n,t);case 6:var r=zn,o=zo;zn=null,ka(e,t,n),zn=r,zo=o,zn!==null&&(zo?(e=zn,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):zn.removeChild(n.stateNode));break;case 18:zn!==null&&(zo?(e=zn,n=n.stateNode,e.nodeType===8?o2(e.parentNode,n):e.nodeType===1&&o2(e,n),Id(e)):o2(zn,n.stateNode));break;case 4:r=zn,o=zo,zn=n.stateNode.containerInfo,zo=!0,ka(e,t,n),zn=r,zo=o;break;case 0:case 11:case 14:case 15:if(!Yn&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){o=r=r.next;do{var i=o,s=i.destroy;i=i.tag,s!==void 0&&((i&2)!==0||(i&4)!==0)&&Yy(n,t,s),o=o.next}while(o!==r)}ka(e,t,n);break;case 1:if(!Yn&&(Ql(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(l){en(n,t,l)}ka(e,t,n);break;case 21:ka(e,t,n);break;case 22:n.mode&1?(Yn=(r=Yn)||n.memoizedState!==null,ka(e,t,n),Yn=r):ka(e,t,n);break;default:ka(e,t,n)}}function Dx(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new FV),t.forEach(function(r){var o=YV.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))})}}function Ao(e,t){var n=t.deletions;if(n!==null)for(var r=0;ro&&(o=s),r&=~i}if(r=o,r=sn()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*jV(r/1960))-r,10e?16:e,Fa===null)var r=!1;else{if(e=Fa,Fa=null,Y1=0,(nt&6)!==0)throw Error(ce(331));var o=nt;for(nt|=4,Ee=e.current;Ee!==null;){var i=Ee,s=i.child;if((Ee.flags&16)!==0){var l=i.deletions;if(l!==null){for(var c=0;csn()-xb?zs(e,0):Sb|=n),Lr(e,t)}function eE(e,t){t===0&&((e.mode&1)===0?t=1:(t=oh,oh<<=1,(oh&130023424)===0&&(oh=4194304)));var n=dr();e=ra(e,t),e!==null&&(Sf(e,t,n),Lr(e,n))}function qV(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),eE(e,n)}function YV(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;o!==null&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(ce(314))}r!==null&&r.delete(t),eE(e,n)}var tE;tE=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||_r.current)kr=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return kr=!1,zV(e,t,n);kr=(e.flags&131072)!==0}else kr=!1,jt&&(t.flags&1048576)!==0&&o_(t,V1,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;t1(e,t),e=t.pendingProps;var o=wu(t,Qn.current);uu(t,n),o=hb(null,t,r,e,o,n);var i=mb();return t.flags|=1,typeof o=="object"&&o!==null&&typeof o.render=="function"&&o.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Er(r)?(i=!0,B1(t)):i=!1,t.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,ub(t),o.updater=j0,t.stateNode=o,o._reactInternals=t,jy(t,r,e,n),t=Gy(null,t,r,!0,i,n)):(t.tag=0,jt&&i&&nb(t),cr(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(t1(e,t),e=t.pendingProps,o=r._init,r=o(r._payload),t.type=r,o=t.tag=QV(r),e=Do(r,e),o){case 0:t=Uy(null,t,r,e,n);break e;case 1:t=Ix(null,t,r,e,n);break e;case 11:t=Tx(null,t,r,e,n);break e;case 14:t=Ax(null,t,r,Do(r.type,e),n);break e}throw Error(ce(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Do(r,o),Uy(e,t,r,o,n);case 1:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Do(r,o),Ix(e,t,r,o,n);case 3:e:{if($_(t),e===null)throw Error(ce(387));r=t.pendingProps,i=t.memoizedState,o=i.element,l_(e,t),H1(t,r,null,n);var s=t.memoizedState;if(r=s.element,i.isDehydrated)if(i={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=i,t.memoizedState=i,t.flags&256){o=Eu(Error(ce(423)),t),t=Rx(e,t,r,n,o);break e}else if(r!==o){o=Eu(Error(ce(424)),t),t=Rx(e,t,r,n,o);break e}else for(jr=Ka(t.stateNode.containerInfo.firstChild),Ur=t,jt=!0,Bo=null,n=f_(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(Cu(),r===o){t=oa(e,t,n);break e}cr(e,t,r,n)}t=t.child}return t;case 5:return p_(t),e===null&&Fy(t),r=t.type,o=t.pendingProps,i=e!==null?e.memoizedProps:null,s=o.children,Ny(r,o)?s=null:i!==null&&Ny(r,i)&&(t.flags|=32),z_(e,t),cr(e,t,s,n),t.child;case 6:return e===null&&Fy(t),null;case 13:return B_(e,t,n);case 4:return cb(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=ku(t,null,r,n):cr(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Do(r,o),Tx(e,t,r,o,n);case 7:return cr(e,t,t.pendingProps,n),t.child;case 8:return cr(e,t,t.pendingProps.children,n),t.child;case 12:return cr(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,i=t.memoizedProps,s=o.value,Ot(W1,r._currentValue),r._currentValue=s,i!==null)if(Uo(i.value,s)){if(i.children===o.children&&!_r.current){t=oa(e,t,n);break e}}else for(i=t.child,i!==null&&(i.return=t);i!==null;){var l=i.dependencies;if(l!==null){s=i.child;for(var c=l.firstContext;c!==null;){if(c.context===r){if(i.tag===1){c=ea(-1,n&-n),c.tag=2;var d=i.updateQueue;if(d!==null){d=d.shared;var f=d.pending;f===null?c.next=c:(c.next=f.next,f.next=c),d.pending=c}}i.lanes|=n,c=i.alternate,c!==null&&(c.lanes|=n),Vy(i.return,n,t),l.lanes|=n;break}c=c.next}}else if(i.tag===10)s=i.type===t.type?null:i.child;else if(i.tag===18){if(s=i.return,s===null)throw Error(ce(341));s.lanes|=n,l=s.alternate,l!==null&&(l.lanes|=n),Vy(s,n,t),s=i.sibling}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===t){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}cr(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,uu(t,n),o=go(o),r=r(o),t.flags|=1,cr(e,t,r,n),t.child;case 14:return r=t.type,o=Do(r,t.pendingProps),o=Do(r.type,o),Ax(e,t,r,o,n);case 15:return N_(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Do(r,o),t1(e,t),t.tag=1,Er(r)?(e=!0,B1(t)):e=!1,uu(t,n),c_(t,r,o),jy(t,r,o,n),Gy(null,t,r,!0,e,n);case 19:return F_(e,t,n);case 22:return D_(e,t,n)}throw Error(ce(156,t.tag))};function nE(e,t){return Pk(e,t)}function XV(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function po(e,t,n,r){return new XV(e,t,n,r)}function _b(e){return e=e.prototype,!(!e||!e.isReactComponent)}function QV(e){if(typeof e=="function")return _b(e)?1:0;if(e!=null){if(e=e.$$typeof,e===H4)return 11;if(e===U4)return 14}return 2}function Qa(e,t){var n=e.alternate;return n===null?(n=po(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function o1(e,t,n,r,o,i){var s=2;if(r=e,typeof e=="function")_b(e)&&(s=1);else if(typeof e=="string")s=5;else e:switch(e){case jl:return $s(n.children,o,i,t);case j4:s=8,o|=8;break;case py:return e=po(12,n,t,o|2),e.elementType=py,e.lanes=i,e;case hy:return e=po(13,n,t,o),e.elementType=hy,e.lanes=i,e;case my:return e=po(19,n,t,o),e.elementType=my,e.lanes=i,e;case dk:return Z0(n,o,i,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case uk:s=10;break e;case ck:s=9;break e;case H4:s=11;break e;case U4:s=14;break e;case Ra:s=16,r=null;break e}throw Error(ce(130,e==null?e:typeof e,""))}return t=po(s,n,t,o),t.elementType=e,t.type=r,t.lanes=i,t}function $s(e,t,n,r){return e=po(7,e,r,t),e.lanes=n,e}function Z0(e,t,n,r){return e=po(22,e,r,t),e.elementType=dk,e.lanes=n,e.stateNode={isHidden:!1},e}function f2(e,t,n){return e=po(6,e,null,t),e.lanes=n,e}function p2(e,t,n){return t=po(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function JV(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Zv(0),this.expirationTimes=Zv(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Zv(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Eb(e,t,n,r,o,i,s,l,c){return e=new JV(e,t,n,l,c),t===1?(t=1,i===!0&&(t|=8)):t=0,i=po(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},ub(i),e}function eW(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(n){console.error(n)}}t(),e.exports=Yr})(Fu);var Hx=Fu.exports;dy.createRoot=Hx.createRoot,dy.hydrateRoot=Hx.hydrateRoot;var pi=Boolean(globalThis?.document)?C.exports.useLayoutEffect:C.exports.useEffect,Q0={exports:{}},J0={};/** + * @license React + * react-jsx-runtime.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var iW=C.exports,aW=Symbol.for("react.element"),sW=Symbol.for("react.fragment"),lW=Object.prototype.hasOwnProperty,uW=iW.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,cW={key:!0,ref:!0,__self:!0,__source:!0};function aE(e,t,n){var r,o={},i=null,s=null;n!==void 0&&(i=""+n),t.key!==void 0&&(i=""+t.key),t.ref!==void 0&&(s=t.ref);for(r in t)lW.call(t,r)&&!cW.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)o[r]===void 0&&(o[r]=t[r]);return{$$typeof:aW,type:e,key:i,ref:s,props:o,_owner:uW.current}}J0.Fragment=sW;J0.jsx=aE;J0.jsxs=aE;(function(e){e.exports=J0})(Q0);const wn=Q0.exports.Fragment,v=Q0.exports.jsx,Y=Q0.exports.jsxs;var Ab=C.exports.createContext({});Ab.displayName="ColorModeContext";function Ib(){const e=C.exports.useContext(Ab);if(e===void 0)throw new Error("useColorMode must be used within a ColorModeProvider");return e}var gh={light:"chakra-ui-light",dark:"chakra-ui-dark"};function dW(e={}){const{preventTransition:t=!0}=e,n={setDataset:r=>{const o=t?n.preventTransition():void 0;document.documentElement.dataset.theme=r,document.documentElement.style.colorScheme=r,o?.()},setClassName(r){document.body.classList.add(r?gh.dark:gh.light),document.body.classList.remove(r?gh.light:gh.dark)},query(){return window.matchMedia("(prefers-color-scheme: dark)")},getSystemTheme(r){return n.query().matches??r==="dark"?"dark":"light"},addListener(r){const o=n.query(),i=s=>{r(s.matches?"dark":"light")};return typeof o.addListener=="function"?o.addListener(i):o.addEventListener("change",i),()=>{typeof o.removeListener=="function"?o.removeListener(i):o.removeEventListener("change",i)}},preventTransition(){const r=document.createElement("style");return r.appendChild(document.createTextNode("*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),document.head.appendChild(r),()=>{window.getComputedStyle(document.body),requestAnimationFrame(()=>{requestAnimationFrame(()=>{document.head.removeChild(r)})})}}};return n}var fW="chakra-ui-color-mode";function pW(e){return{ssr:!1,type:"localStorage",get(t){if(!globalThis?.document)return t;let n;try{n=localStorage.getItem(e)||t}catch{}return n||t},set(t){try{localStorage.setItem(e,t)}catch{}}}}var hW=pW(fW),Ux=()=>{};function Gx(e,t){return e.type==="cookie"&&e.ssr?e.get(t):t}function sE(e){const{value:t,children:n,options:{useSystemColorMode:r,initialColorMode:o,disableTransitionOnChange:i}={},colorModeManager:s=hW}=e,l=o==="dark"?"dark":"light",[c,d]=C.exports.useState(()=>Gx(s,l)),[f,h]=C.exports.useState(()=>Gx(s)),{getSystemTheme:m,setClassName:g,setDataset:b,addListener:S}=C.exports.useMemo(()=>dW({preventTransition:i}),[i]),_=o==="system"&&!c?f:c,w=C.exports.useCallback(L=>{const A=L==="system"?m():L;d(A),g(A==="dark"),b(A),s.set(A)},[s,m,g,b]);pi(()=>{o==="system"&&h(m())},[]),C.exports.useEffect(()=>{const L=s.get();if(L){w(L);return}if(o==="system"){w("system");return}w(l)},[s,l,o,w]);const x=C.exports.useCallback(()=>{w(_==="dark"?"light":"dark")},[_,w]);C.exports.useEffect(()=>{if(!!r)return S(w)},[r,S,w]);const k=C.exports.useMemo(()=>({colorMode:t??_,toggleColorMode:t?Ux:x,setColorMode:t?Ux:w}),[_,x,w,t]);return v(Ab.Provider,{value:k,children:n})}sE.displayName="ColorModeProvider";var mW=new Set(["dark","light","system"]);function gW(e){let t=e;return mW.has(t)||(t="light"),t}function vW(e={}){const{initialColorMode:t="light",type:n="localStorage",storageKey:r="chakra-ui-color-mode"}=e,o=gW(t),i=n==="cookie",s=`(function(){try{var a=function(o){var l="(prefers-color-scheme: dark)",v=window.matchMedia(l).matches?"dark":"light",e=o==="system"?v:o,d=document.documentElement,m=document.body,i="chakra-ui-light",n="chakra-ui-dark",s=e==="dark";return m.classList.add(s?n:i),m.classList.remove(s?i:n),d.style.colorScheme=e,d.dataset.theme=e,e},u=a,h="${o}",r="${r}",t=document.cookie.match(new RegExp("(^| )".concat(r,"=([^;]+)"))),c=t?t[2]:null;c?a(c):document.cookie="".concat(r,"=").concat(a(h),"; max-age=31536000; path=/")}catch(a){}})(); + `,l=`(function(){try{var a=function(c){var v="(prefers-color-scheme: dark)",h=window.matchMedia(v).matches?"dark":"light",r=c==="system"?h:c,o=document.documentElement,s=document.body,l="chakra-ui-light",d="chakra-ui-dark",i=r==="dark";return s.classList.add(i?d:l),s.classList.remove(i?l:d),o.style.colorScheme=r,o.dataset.theme=r,r},n=a,m="${o}",e="${r}",t=localStorage.getItem(e);t?a(t):localStorage.setItem(e,a(m))}catch(a){}})(); + `;return`!${i?s:l}`.trim()}function yW(e={}){return v("script",{id:"chakra-script",dangerouslySetInnerHTML:{__html:vW(e)}})}var o5={exports:{}};(function(e,t){var n=200,r="__lodash_hash_undefined__",o=800,i=16,s=9007199254740991,l="[object Arguments]",c="[object Array]",d="[object AsyncFunction]",f="[object Boolean]",h="[object Date]",m="[object Error]",g="[object Function]",b="[object GeneratorFunction]",S="[object Map]",_="[object Number]",w="[object Null]",x="[object Object]",k="[object Proxy]",L="[object RegExp]",A="[object Set]",M="[object String]",N="[object Undefined]",$="[object WeakMap]",Z="[object ArrayBuffer]",j="[object DataView]",te="[object Float32Array]",Le="[object Float64Array]",me="[object Int8Array]",ge="[object Int16Array]",de="[object Int32Array]",ve="[object Uint8Array]",oe="[object Uint8ClampedArray]",H="[object Uint16Array]",Q="[object Uint32Array]",q=/[\\^$.*+?()[\]{}|]/g,R=/^\[object .+?Constructor\]$/,U=/^(?:0|[1-9]\d*)$/,ue={};ue[te]=ue[Le]=ue[me]=ue[ge]=ue[de]=ue[ve]=ue[oe]=ue[H]=ue[Q]=!0,ue[l]=ue[c]=ue[Z]=ue[f]=ue[j]=ue[h]=ue[m]=ue[g]=ue[S]=ue[_]=ue[x]=ue[L]=ue[A]=ue[M]=ue[$]=!1;var fe=typeof qi=="object"&&qi&&qi.Object===Object&&qi,be=typeof self=="object"&&self&&self.Object===Object&&self,Se=fe||be||Function("return this")(),Te=t&&!t.nodeType&&t,pe=Te&&!0&&e&&!e.nodeType&&e,_e=pe&&pe.exports===Te,ze=_e&&fe.process,ct=function(){try{var I=pe&&pe.require&&pe.require("util").types;return I||ze&&ze.binding&&ze.binding("util")}catch{}}(),Nt=ct&&ct.isTypedArray;function Cn(I,z,G){switch(G.length){case 0:return I.call(z);case 1:return I.call(z,G[0]);case 2:return I.call(z,G[0],G[1]);case 3:return I.call(z,G[0],G[1],G[2])}return I.apply(z,G)}function xe(I,z){for(var G=-1,we=Array(I);++G-1}function gg(I,z){var G=this.__data__,we=Ai(G,I);return we<0?(++this.size,G.push([I,z])):G[we][1]=z,this}ko.prototype.clear=tc,ko.prototype.delete=hg,ko.prototype.get=nc,ko.prototype.has=mg,ko.prototype.set=gg;function pa(I){var z=-1,G=I==null?0:I.length;for(this.clear();++z1?G[Ke-1]:void 0,Ve=Ke>2?G[2]:void 0;for(gt=I.length>3&&typeof gt=="function"?(Ke--,gt):void 0,Ve&&rp(G[0],G[1],Ve)&&(gt=Ke<3?void 0:gt,Ke=1),z=Object(z);++we-1&&I%1==0&&I0){if(++z>=o)return arguments[0]}else z=0;return I.apply(void 0,arguments)}}function lp(I){if(I!=null){try{return rn.call(I)}catch{}try{return I+""}catch{}}return""}function pl(I,z){return I===z||I!==I&&z!==z}var uc=oc(function(){return arguments}())?oc:function(I){return ps(I)&&Xt.call(I,"callee")&&!Go.call(I,"callee")},cc=Array.isArray;function hl(I){return I!=null&&cp(I.length)&&!dc(I)}function Ng(I){return ps(I)&&hl(I)}var up=fs||$g;function dc(I){if(!_o(I))return!1;var z=ll(I);return z==g||z==b||z==d||z==k}function cp(I){return typeof I=="number"&&I>-1&&I%1==0&&I<=s}function _o(I){var z=typeof I;return I!=null&&(z=="object"||z=="function")}function ps(I){return I!=null&&typeof I=="object"}function Dg(I){if(!ps(I)||ll(I)!=x)return!1;var z=jn(I);if(z===null)return!0;var G=Xt.call(z,"constructor")&&z.constructor;return typeof G=="function"&&G instanceof G&&rn.call(G)==mt}var dp=Nt?Re(Nt):Kf;function zg(I){return Jf(I,fp(I))}function fp(I){return hl(I)?Lg(I,!0):Ag(I)}var Pt=ul(function(I,z,G,we){qf(I,z,G,we)});function Ct(I){return function(){return I}}function pp(I){return I}function $g(){return!1}e.exports=Pt})(o5,o5.exports);const ia=o5.exports;function ci(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function eu(e,...t){return bW(e)?e(...t):e}var bW=e=>typeof e=="function",SW=e=>/!(important)?$/.test(e),Zx=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,i5=(e,t)=>n=>{const r=String(t),o=SW(r),i=Zx(r),s=e?`${e}.${i}`:i;let l=ci(n.__cssMap)&&s in n.__cssMap?n.__cssMap[s].varRef:t;return l=Zx(l),o?`${l} !important`:l};function jd(e){const{scale:t,transform:n,compose:r}=e;return(i,s)=>{const l=i5(t,i)(s);let c=n?.(l,s)??l;return r&&(c=r(c,s)),c}}var vh=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Io(e,t){return n=>{const r={property:n,scale:e};return r.transform=jd({scale:e,transform:t}),r}}var xW=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function wW(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:xW(t),transform:n?jd({scale:n,compose:r}):r}}var lE=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function CW(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...lE].join(" ")}function kW(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...lE].join(" ")}var _W={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},EW={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function LW(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var PW={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},uE="& > :not(style) ~ :not(style)",TW={[uE]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},AW={[uE]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},a5={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},IW=new Set(Object.values(a5)),cE=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),RW=e=>e.trim();function OW(e,t){var n;if(e==null||cE.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:o,values:i}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!o||!i)return e;const s=o.includes("-gradient")?o:`${o}-gradient`,[l,...c]=i.split(",").map(RW).filter(Boolean);if(c?.length===0)return e;const d=l in a5?a5[l]:l;c.unshift(d);const f=c.map(h=>{if(IW.has(h))return h;const m=h.indexOf(" "),[g,b]=m!==-1?[h.substr(0,m),h.substr(m+1)]:[h],S=dE(b)?b:b&&b.split(" "),_=`colors.${g}`,w=_ in t.__cssMap?t.__cssMap[_].varRef:g;return S?[w,...Array.isArray(S)?S:[S]].join(" "):w});return`${s}(${f.join(", ")})`}var dE=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),MW=(e,t)=>OW(e,t??{});function NW(e){return/^var\(--.+\)$/.test(e)}var DW=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},Xo=e=>t=>`${e}(${t})`,et={filter(e){return e!=="auto"?e:_W},backdropFilter(e){return e!=="auto"?e:EW},ring(e){return LW(et.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?CW():e==="auto-gpu"?kW():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=DW(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(NW(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:MW,blur:Xo("blur"),opacity:Xo("opacity"),brightness:Xo("brightness"),contrast:Xo("contrast"),dropShadow:Xo("drop-shadow"),grayscale:Xo("grayscale"),hueRotate:Xo("hue-rotate"),invert:Xo("invert"),saturate:Xo("saturate"),sepia:Xo("sepia"),bgImage(e){return e==null||dE(e)||cE.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=PW[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},B={borderWidths:Io("borderWidths"),borderStyles:Io("borderStyles"),colors:Io("colors"),borders:Io("borders"),radii:Io("radii",et.px),space:Io("space",vh(et.vh,et.px)),spaceT:Io("space",vh(et.vh,et.px)),degreeT(e){return{property:e,transform:et.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:jd({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Io("sizes",vh(et.vh,et.px)),sizesT:Io("sizes",vh(et.vh,et.fraction)),shadows:Io("shadows"),logical:wW,blur:Io("blur",et.blur)},i1={background:B.colors("background"),backgroundColor:B.colors("backgroundColor"),backgroundImage:B.propT("backgroundImage",et.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:et.bgClip},bgSize:B.prop("backgroundSize"),bgPosition:B.prop("backgroundPosition"),bg:B.colors("background"),bgColor:B.colors("backgroundColor"),bgPos:B.prop("backgroundPosition"),bgRepeat:B.prop("backgroundRepeat"),bgAttachment:B.prop("backgroundAttachment"),bgGradient:B.propT("backgroundImage",et.gradient),bgClip:{transform:et.bgClip}};Object.assign(i1,{bgImage:i1.backgroundImage,bgImg:i1.backgroundImage});var at={border:B.borders("border"),borderWidth:B.borderWidths("borderWidth"),borderStyle:B.borderStyles("borderStyle"),borderColor:B.colors("borderColor"),borderRadius:B.radii("borderRadius"),borderTop:B.borders("borderTop"),borderBlockStart:B.borders("borderBlockStart"),borderTopLeftRadius:B.radii("borderTopLeftRadius"),borderStartStartRadius:B.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:B.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:B.radii("borderTopRightRadius"),borderStartEndRadius:B.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:B.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:B.borders("borderRight"),borderInlineEnd:B.borders("borderInlineEnd"),borderBottom:B.borders("borderBottom"),borderBlockEnd:B.borders("borderBlockEnd"),borderBottomLeftRadius:B.radii("borderBottomLeftRadius"),borderBottomRightRadius:B.radii("borderBottomRightRadius"),borderLeft:B.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:B.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:B.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:B.borders(["borderLeft","borderRight"]),borderInline:B.borders("borderInline"),borderY:B.borders(["borderTop","borderBottom"]),borderBlock:B.borders("borderBlock"),borderTopWidth:B.borderWidths("borderTopWidth"),borderBlockStartWidth:B.borderWidths("borderBlockStartWidth"),borderTopColor:B.colors("borderTopColor"),borderBlockStartColor:B.colors("borderBlockStartColor"),borderTopStyle:B.borderStyles("borderTopStyle"),borderBlockStartStyle:B.borderStyles("borderBlockStartStyle"),borderBottomWidth:B.borderWidths("borderBottomWidth"),borderBlockEndWidth:B.borderWidths("borderBlockEndWidth"),borderBottomColor:B.colors("borderBottomColor"),borderBlockEndColor:B.colors("borderBlockEndColor"),borderBottomStyle:B.borderStyles("borderBottomStyle"),borderBlockEndStyle:B.borderStyles("borderBlockEndStyle"),borderLeftWidth:B.borderWidths("borderLeftWidth"),borderInlineStartWidth:B.borderWidths("borderInlineStartWidth"),borderLeftColor:B.colors("borderLeftColor"),borderInlineStartColor:B.colors("borderInlineStartColor"),borderLeftStyle:B.borderStyles("borderLeftStyle"),borderInlineStartStyle:B.borderStyles("borderInlineStartStyle"),borderRightWidth:B.borderWidths("borderRightWidth"),borderInlineEndWidth:B.borderWidths("borderInlineEndWidth"),borderRightColor:B.colors("borderRightColor"),borderInlineEndColor:B.colors("borderInlineEndColor"),borderRightStyle:B.borderStyles("borderRightStyle"),borderInlineEndStyle:B.borderStyles("borderInlineEndStyle"),borderTopRadius:B.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:B.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:B.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:B.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(at,{rounded:at.borderRadius,roundedTop:at.borderTopRadius,roundedTopLeft:at.borderTopLeftRadius,roundedTopRight:at.borderTopRightRadius,roundedTopStart:at.borderStartStartRadius,roundedTopEnd:at.borderStartEndRadius,roundedBottom:at.borderBottomRadius,roundedBottomLeft:at.borderBottomLeftRadius,roundedBottomRight:at.borderBottomRightRadius,roundedBottomStart:at.borderEndStartRadius,roundedBottomEnd:at.borderEndEndRadius,roundedLeft:at.borderLeftRadius,roundedRight:at.borderRightRadius,roundedStart:at.borderInlineStartRadius,roundedEnd:at.borderInlineEndRadius,borderStart:at.borderInlineStart,borderEnd:at.borderInlineEnd,borderTopStartRadius:at.borderStartStartRadius,borderTopEndRadius:at.borderStartEndRadius,borderBottomStartRadius:at.borderEndStartRadius,borderBottomEndRadius:at.borderEndEndRadius,borderStartRadius:at.borderInlineStartRadius,borderEndRadius:at.borderInlineEndRadius,borderStartWidth:at.borderInlineStartWidth,borderEndWidth:at.borderInlineEndWidth,borderStartColor:at.borderInlineStartColor,borderEndColor:at.borderInlineEndColor,borderStartStyle:at.borderInlineStartStyle,borderEndStyle:at.borderInlineEndStyle});var zW={color:B.colors("color"),textColor:B.colors("color"),fill:B.colors("fill"),stroke:B.colors("stroke")},s5={boxShadow:B.shadows("boxShadow"),mixBlendMode:!0,blendMode:B.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:B.prop("backgroundBlendMode"),opacity:!0};Object.assign(s5,{shadow:s5.boxShadow});var $W={filter:{transform:et.filter},blur:B.blur("--chakra-blur"),brightness:B.propT("--chakra-brightness",et.brightness),contrast:B.propT("--chakra-contrast",et.contrast),hueRotate:B.degreeT("--chakra-hue-rotate"),invert:B.propT("--chakra-invert",et.invert),saturate:B.propT("--chakra-saturate",et.saturate),dropShadow:B.propT("--chakra-drop-shadow",et.dropShadow),backdropFilter:{transform:et.backdropFilter},backdropBlur:B.blur("--chakra-backdrop-blur"),backdropBrightness:B.propT("--chakra-backdrop-brightness",et.brightness),backdropContrast:B.propT("--chakra-backdrop-contrast",et.contrast),backdropHueRotate:B.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:B.propT("--chakra-backdrop-invert",et.invert),backdropSaturate:B.propT("--chakra-backdrop-saturate",et.saturate)},J1={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:et.flexDirection},experimental_spaceX:{static:TW,transform:jd({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:AW,transform:jd({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:B.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:B.space("gap"),rowGap:B.space("rowGap"),columnGap:B.space("columnGap")};Object.assign(J1,{flexDir:J1.flexDirection});var fE={gridGap:B.space("gridGap"),gridColumnGap:B.space("gridColumnGap"),gridRowGap:B.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},BW={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:et.outline},outlineOffset:!0,outlineColor:B.colors("outlineColor")},lo={width:B.sizesT("width"),inlineSize:B.sizesT("inlineSize"),height:B.sizes("height"),blockSize:B.sizes("blockSize"),boxSize:B.sizes(["width","height"]),minWidth:B.sizes("minWidth"),minInlineSize:B.sizes("minInlineSize"),minHeight:B.sizes("minHeight"),minBlockSize:B.sizes("minBlockSize"),maxWidth:B.sizes("maxWidth"),maxInlineSize:B.sizes("maxInlineSize"),maxHeight:B.sizes("maxHeight"),maxBlockSize:B.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:B.propT("float",et.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(lo,{w:lo.width,h:lo.height,minW:lo.minWidth,maxW:lo.maxWidth,minH:lo.minHeight,maxH:lo.maxHeight,overscroll:lo.overscrollBehavior,overscrollX:lo.overscrollBehaviorX,overscrollY:lo.overscrollBehaviorY});var FW={listStyleType:!0,listStylePosition:!0,listStylePos:B.prop("listStylePosition"),listStyleImage:!0,listStyleImg:B.prop("listStyleImage")};function VW(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const l=t.get(r);if(l.has(o))return l.get(o);const c=e(r,o,i,s);return l.set(o,c),c}},jW=WW(VW),HW={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},UW={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},h2=(e,t,n)=>{const r={},o=jW(e,t,{});for(const i in o)i in n&&n[i]!=null||(r[i]=o[i]);return r},GW={srOnly:{transform(e){return e===!0?HW:e==="focusable"?UW:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>h2(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>h2(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>h2(t,e,n)}},dd={position:!0,pos:B.prop("position"),zIndex:B.prop("zIndex","zIndices"),inset:B.spaceT("inset"),insetX:B.spaceT(["left","right"]),insetInline:B.spaceT("insetInline"),insetY:B.spaceT(["top","bottom"]),insetBlock:B.spaceT("insetBlock"),top:B.spaceT("top"),insetBlockStart:B.spaceT("insetBlockStart"),bottom:B.spaceT("bottom"),insetBlockEnd:B.spaceT("insetBlockEnd"),left:B.spaceT("left"),insetInlineStart:B.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:B.spaceT("right"),insetInlineEnd:B.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(dd,{insetStart:dd.insetInlineStart,insetEnd:dd.insetInlineEnd});var ZW={ring:{transform:et.ring},ringColor:B.colors("--chakra-ring-color"),ringOffset:B.prop("--chakra-ring-offset-width"),ringOffsetColor:B.colors("--chakra-ring-offset-color"),ringInset:B.prop("--chakra-ring-inset")},zt={margin:B.spaceT("margin"),marginTop:B.spaceT("marginTop"),marginBlockStart:B.spaceT("marginBlockStart"),marginRight:B.spaceT("marginRight"),marginInlineEnd:B.spaceT("marginInlineEnd"),marginBottom:B.spaceT("marginBottom"),marginBlockEnd:B.spaceT("marginBlockEnd"),marginLeft:B.spaceT("marginLeft"),marginInlineStart:B.spaceT("marginInlineStart"),marginX:B.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:B.spaceT("marginInline"),marginY:B.spaceT(["marginTop","marginBottom"]),marginBlock:B.spaceT("marginBlock"),padding:B.space("padding"),paddingTop:B.space("paddingTop"),paddingBlockStart:B.space("paddingBlockStart"),paddingRight:B.space("paddingRight"),paddingBottom:B.space("paddingBottom"),paddingBlockEnd:B.space("paddingBlockEnd"),paddingLeft:B.space("paddingLeft"),paddingInlineStart:B.space("paddingInlineStart"),paddingInlineEnd:B.space("paddingInlineEnd"),paddingX:B.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:B.space("paddingInline"),paddingY:B.space(["paddingTop","paddingBottom"]),paddingBlock:B.space("paddingBlock")};Object.assign(zt,{m:zt.margin,mt:zt.marginTop,mr:zt.marginRight,me:zt.marginInlineEnd,marginEnd:zt.marginInlineEnd,mb:zt.marginBottom,ml:zt.marginLeft,ms:zt.marginInlineStart,marginStart:zt.marginInlineStart,mx:zt.marginX,my:zt.marginY,p:zt.padding,pt:zt.paddingTop,py:zt.paddingY,px:zt.paddingX,pb:zt.paddingBottom,pl:zt.paddingLeft,ps:zt.paddingInlineStart,paddingStart:zt.paddingInlineStart,pr:zt.paddingRight,pe:zt.paddingInlineEnd,paddingEnd:zt.paddingInlineEnd});var KW={textDecorationColor:B.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:B.shadows("textShadow")},qW={clipPath:!0,transform:B.propT("transform",et.transform),transformOrigin:!0,translateX:B.spaceT("--chakra-translate-x"),translateY:B.spaceT("--chakra-translate-y"),skewX:B.degreeT("--chakra-skew-x"),skewY:B.degreeT("--chakra-skew-y"),scaleX:B.prop("--chakra-scale-x"),scaleY:B.prop("--chakra-scale-y"),scale:B.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:B.degreeT("--chakra-rotate")},YW={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:B.prop("transitionDuration","transition.duration"),transitionProperty:B.prop("transitionProperty","transition.property"),transitionTimingFunction:B.prop("transitionTimingFunction","transition.easing")},XW={fontFamily:B.prop("fontFamily","fonts"),fontSize:B.prop("fontSize","fontSizes",et.px),fontWeight:B.prop("fontWeight","fontWeights"),lineHeight:B.prop("lineHeight","lineHeights"),letterSpacing:B.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},QW={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:B.spaceT("scrollMargin"),scrollMarginTop:B.spaceT("scrollMarginTop"),scrollMarginBottom:B.spaceT("scrollMarginBottom"),scrollMarginLeft:B.spaceT("scrollMarginLeft"),scrollMarginRight:B.spaceT("scrollMarginRight"),scrollMarginX:B.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:B.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:B.spaceT("scrollPadding"),scrollPaddingTop:B.spaceT("scrollPaddingTop"),scrollPaddingBottom:B.spaceT("scrollPaddingBottom"),scrollPaddingLeft:B.spaceT("scrollPaddingLeft"),scrollPaddingRight:B.spaceT("scrollPaddingRight"),scrollPaddingX:B.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:B.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function pE(e){return ci(e)&&e.reference?e.reference:String(e)}var em=(e,...t)=>t.map(pE).join(` ${e} `).replace(/calc/g,""),Kx=(...e)=>`calc(${em("+",...e)})`,qx=(...e)=>`calc(${em("-",...e)})`,l5=(...e)=>`calc(${em("*",...e)})`,Yx=(...e)=>`calc(${em("/",...e)})`,Xx=e=>{const t=pE(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:l5(t,-1)},Ls=Object.assign(e=>({add:(...t)=>Ls(Kx(e,...t)),subtract:(...t)=>Ls(qx(e,...t)),multiply:(...t)=>Ls(l5(e,...t)),divide:(...t)=>Ls(Yx(e,...t)),negate:()=>Ls(Xx(e)),toString:()=>e.toString()}),{add:Kx,subtract:qx,multiply:l5,divide:Yx,negate:Xx});function JW(e,t="-"){return e.replace(/\s+/g,t)}function ej(e){const t=JW(e.toString());return nj(tj(t))}function tj(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function nj(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function rj(e,t=""){return[t,e].filter(Boolean).join("-")}function oj(e,t){return`var(${e}${t?`, ${t}`:""})`}function ij(e,t=""){return ej(`--${rj(e,t)}`)}function aj(e,t,n){const r=ij(e,n);return{variable:r,reference:oj(r,t)}}function sj(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function lj(e){const t=e==null?0:e.length;return t?e[t-1]:void 0}function uj(e){const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}}function u5(e){if(e==null)return e;const{unitless:t}=uj(e);return t||typeof e=="number"?`${e}px`:e}var hE=(e,t)=>parseInt(e[1],10)>parseInt(t[1],10)?1:-1,Rb=e=>Object.fromEntries(Object.entries(e).sort(hE));function Qx(e){const t=Rb(e);return Object.assign(Object.values(t),t)}function cj(e){const t=Object.keys(Rb(e));return new Set(t)}function Jx(e){if(!e)return e;e=u5(e)??e;const t=e.endsWith("px")?-1:-.0625;return typeof e=="number"?`${e+t}`:e.replace(/(\d+\.?\d*)/u,n=>`${parseFloat(n)+t}`)}function Yc(e,t){const n=["@media screen"];return e&&n.push("and",`(min-width: ${u5(e)})`),t&&n.push("and",`(max-width: ${u5(t)})`),n.join(" ")}function dj(e){if(!e)return null;e.base=e.base??"0px";const t=Qx(e),n=Object.entries(e).sort(hE).map(([i,s],l,c)=>{let[,d]=c[l+1]??[];return d=parseFloat(d)>0?Jx(d):void 0,{_minW:Jx(s),breakpoint:i,minW:s,maxW:d,maxWQuery:Yc(null,d),minWQuery:Yc(s),minMaxQuery:Yc(s,d)}}),r=cj(e),o=Array.from(r.values());return{keys:r,normalized:t,isResponsive(i){const s=Object.keys(i);return s.length>0&&s.every(l=>r.has(l))},asObject:Rb(e),asArray:Qx(e),details:n,media:[null,...t.map(i=>Yc(i)).slice(1)],toArrayValue(i){if(!sj(i))throw new Error("toArrayValue: value must be an object");const s=o.map(l=>i[l]??null);for(;lj(s)===null;)s.pop();return s},toObjectValue(i){if(!Array.isArray(i))throw new Error("toObjectValue: value must be an array");return i.reduce((s,l,c)=>{const d=o[c];return d!=null&&l!=null&&(s[d]=l),s},{})}}}var On={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},_a=e=>mE(t=>e(t,"&"),"[role=group]","[data-group]",".group"),Vi=e=>mE(t=>e(t,"~ &"),"[data-peer]",".peer"),mE=(e,...t)=>t.map(e).join(", "),tm={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:_a(On.hover),_peerHover:Vi(On.hover),_groupFocus:_a(On.focus),_peerFocus:Vi(On.focus),_groupFocusVisible:_a(On.focusVisible),_peerFocusVisible:Vi(On.focusVisible),_groupActive:_a(On.active),_peerActive:Vi(On.active),_groupDisabled:_a(On.disabled),_peerDisabled:Vi(On.disabled),_groupInvalid:_a(On.invalid),_peerInvalid:Vi(On.invalid),_groupChecked:_a(On.checked),_peerChecked:Vi(On.checked),_groupFocusWithin:_a(On.focusWithin),_peerFocusWithin:Vi(On.focusWithin),_peerPlaceholderShown:Vi(On.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},fj=Object.keys(tm);function ew(e,t){return aj(String(e).replace(/\./g,"-"),void 0,t)}function pj(e,t){let n={};const r={};for(const[o,i]of Object.entries(e)){const{isSemantic:s,value:l}=i,{variable:c,reference:d}=ew(o,t?.cssVarPrefix);if(!s){if(o.startsWith("space")){const m=o.split("."),[g,...b]=m,S=`${g}.-${b.join(".")}`,_=Ls.negate(l),w=Ls.negate(d);r[S]={value:_,var:c,varRef:w}}n[c]=l,r[o]={value:l,var:c,varRef:d};continue}const f=m=>{const b=[String(o).split(".")[0],m].join(".");if(!e[b])return m;const{reference:_}=ew(b,t?.cssVarPrefix);return _},h=ci(l)?l:{default:l};n=ia(n,Object.entries(h).reduce((m,[g,b])=>{var S;const _=f(b);if(g==="default")return m[c]=_,m;const w=((S=tm)==null?void 0:S[g])??g;return m[w]={[c]:_},m},{})),r[o]={value:d,var:c,varRef:d}}return{cssVars:n,cssMap:r}}function hj(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function mj(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var gj=["colors","borders","borderWidths","borderStyles","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","space","shadows","sizes","zIndices","transition","blur"];function vj(e){return mj(e,gj)}function yj(e){return e.semanticTokens}function bj(e){const{__cssMap:t,__cssVars:n,__breakpoints:r,...o}=e;return o}function Sj({tokens:e,semanticTokens:t}){const n=Object.entries(c5(e)??{}).map(([o,i])=>[o,{isSemantic:!1,value:i}]),r=Object.entries(c5(t,1)??{}).map(([o,i])=>[o,{isSemantic:!0,value:i}]);return Object.fromEntries([...n,...r])}function c5(e,t=1/0){return!ci(e)&&!Array.isArray(e)||!t?e:Object.entries(e).reduce((n,[r,o])=>(ci(o)||Array.isArray(o)?Object.entries(c5(o,t-1)).forEach(([i,s])=>{n[`${r}.${i}`]=s}):n[r]=o,n),{})}function xj(e){var t;const n=bj(e),r=vj(n),o=yj(n),i=Sj({tokens:r,semanticTokens:o}),s=(t=n.config)==null?void 0:t.cssVarPrefix,{cssMap:l,cssVars:c}=pj(i,{cssVarPrefix:s});return Object.assign(n,{__cssVars:{...{"--chakra-ring-inset":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-ring-offset-width":"0px","--chakra-ring-offset-color":"#fff","--chakra-ring-color":"rgba(66, 153, 225, 0.6)","--chakra-ring-offset-shadow":"0 0 #0000","--chakra-ring-shadow":"0 0 #0000","--chakra-space-x-reverse":"0","--chakra-space-y-reverse":"0"},...c},__cssMap:l,__breakpoints:dj(n.breakpoints)}),n}var Ob=ia({},i1,at,zW,J1,lo,$W,ZW,BW,fE,GW,dd,s5,zt,QW,XW,KW,qW,FW,YW),wj=Object.assign({},zt,lo,J1,fE,dd),Cj=Object.keys(wj),kj=[...Object.keys(Ob),...fj],_j={...Ob,...tm},Ej=e=>e in _j;function Lj(e){return/^var\(--.+\)$/.test(e)}var Pj=(e,t)=>e.startsWith("--")&&typeof t=="string"&&!Lj(t),Tj=(e,t)=>{if(t==null)return t;const n=l=>{var c,d;return(d=(c=e.__cssMap)==null?void 0:c[l])==null?void 0:d.varRef},r=l=>n(l)??l,o=t.split(",").map(l=>l.trim()),[i,s]=o;return t=n(i)??r(s)??r(t),t};function Aj(e){const{configs:t={},pseudos:n={},theme:r}=e;if(!r.__breakpoints)return()=>({});const{isResponsive:o,toArrayValue:i,media:s}=r.__breakpoints,l=(c,d=!1)=>{var f;const h=eu(c,r);let m={};for(let g in h){let b=eu(h[g],r);if(b==null)continue;if(Array.isArray(b)||ci(b)&&o(b)){let x=Array.isArray(b)?b:i(b);x=x.slice(0,s.length);for(let k=0;kt=>Aj({theme:t,pseudos:tm,configs:Ob})(e);function Ij(e,t){if(Array.isArray(e))return e;if(ci(e))return t(e);if(e!=null)return[e]}function Rj(e,t){for(let n=t+1;n{ia(d,{[k]:m?x[k]:{[w]:x[k]}})});continue}if(!g){m?ia(d,x):d[w]=x;continue}d[w]=x}}return d}}function Mj(e){return t=>{const{variant:n,size:r,theme:o}=t,i=Oj(o);return ia({},eu(e.baseStyle??{},t),i(e,"sizes",r,t),i(e,"variants",n,t))}}function Nj(e,t,n){var r,o;return((o=(r=e.__cssMap)==null?void 0:r[`${t}.${n}`])==null?void 0:o.varRef)??n}function St(e){return hj(e,["styleConfig","size","variant","colorScheme"])}function Dj(e){if(e.sheet)return e.sheet;for(var t=0;t0?wr(ju,--Ar):0,Pu--,fn===10&&(Pu=1,rm--),fn}function Gr(){return fn=Ar2||Ud(fn)>3?"":" "}function Kj(e,t){for(;--t&&Gr()&&!(fn<48||fn>102||fn>57&&fn<65||fn>70&&fn<97););return kf(e,a1()+(t<6&&hi()==32&&Gr()==32))}function f5(e){for(;Gr();)switch(fn){case e:return Ar;case 34:case 39:e!==34&&e!==39&&f5(fn);break;case 40:e===41&&f5(e);break;case 92:Gr();break}return Ar}function qj(e,t){for(;Gr()&&e+fn!==47+10;)if(e+fn===42+42&&hi()===47)break;return"/*"+kf(t,Ar-1)+"*"+nm(e===47?e:Gr())}function Yj(e){for(;!Ud(hi());)Gr();return kf(e,Ar)}function Xj(e){return wE(l1("",null,null,null,[""],e=xE(e),0,[0],e))}function l1(e,t,n,r,o,i,s,l,c){for(var d=0,f=0,h=s,m=0,g=0,b=0,S=1,_=1,w=1,x=0,k="",L=o,A=i,M=r,N=k;_;)switch(b=x,x=Gr()){case 40:if(b!=108&&N.charCodeAt(h-1)==58){d5(N+=ht(s1(x),"&","&\f"),"&\f")!=-1&&(w=-1);break}case 34:case 39:case 91:N+=s1(x);break;case 9:case 10:case 13:case 32:N+=Zj(b);break;case 92:N+=Kj(a1()-1,7);continue;case 47:switch(hi()){case 42:case 47:yh(Qj(qj(Gr(),a1()),t,n),c);break;default:N+="/"}break;case 123*S:l[d++]=ii(N)*w;case 125*S:case 59:case 0:switch(x){case 0:case 125:_=0;case 59+f:g>0&&ii(N)-h&&yh(g>32?nw(N+";",r,n,h-1):nw(ht(N," ","")+";",r,n,h-2),c);break;case 59:N+=";";default:if(yh(M=tw(N,t,n,d,f,o,l,k,L=[],A=[],h),i),x===123)if(f===0)l1(N,t,M,M,L,i,h,l,A);else switch(m){case 100:case 109:case 115:l1(e,M,M,r&&yh(tw(e,M,M,0,0,o,l,k,o,L=[],h),A),o,A,h,l,r?L:A);break;default:l1(N,M,M,M,[""],A,0,l,A)}}d=f=g=0,S=w=1,k=N="",h=s;break;case 58:h=1+ii(N),g=b;default:if(S<1){if(x==123)--S;else if(x==125&&S++==0&&Gj()==125)continue}switch(N+=nm(x),x*S){case 38:w=f>0?1:(N+="\f",-1);break;case 44:l[d++]=(ii(N)-1)*w,w=1;break;case 64:hi()===45&&(N+=s1(Gr())),m=hi(),f=h=ii(k=N+=Yj(a1())),x++;break;case 45:b===45&&ii(N)==2&&(S=0)}}return i}function tw(e,t,n,r,o,i,s,l,c,d,f){for(var h=o-1,m=o===0?i:[""],g=Db(m),b=0,S=0,_=0;b0?m[w]+" "+x:ht(x,/&\f/g,m[w])))&&(c[_++]=k);return om(e,t,n,o===0?Mb:l,c,d,f)}function Qj(e,t,n){return om(e,t,n,vE,nm(Uj()),Hd(e,2,-2),0)}function nw(e,t,n,r){return om(e,t,n,Nb,Hd(e,0,r),Hd(e,r+1,-1),r)}function CE(e,t){switch(Wj(e,t)){case 5103:return lt+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return lt+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return lt+e+e0+e+Kn+e+e;case 6828:case 4268:return lt+e+Kn+e+e;case 6165:return lt+e+Kn+"flex-"+e+e;case 5187:return lt+e+ht(e,/(\w+).+(:[^]+)/,lt+"box-$1$2"+Kn+"flex-$1$2")+e;case 5443:return lt+e+Kn+"flex-item-"+ht(e,/flex-|-self/,"")+e;case 4675:return lt+e+Kn+"flex-line-pack"+ht(e,/align-content|flex-|-self/,"")+e;case 5548:return lt+e+Kn+ht(e,"shrink","negative")+e;case 5292:return lt+e+Kn+ht(e,"basis","preferred-size")+e;case 6060:return lt+"box-"+ht(e,"-grow","")+lt+e+Kn+ht(e,"grow","positive")+e;case 4554:return lt+ht(e,/([^-])(transform)/g,"$1"+lt+"$2")+e;case 6187:return ht(ht(ht(e,/(zoom-|grab)/,lt+"$1"),/(image-set)/,lt+"$1"),e,"")+e;case 5495:case 3959:return ht(e,/(image-set\([^]*)/,lt+"$1$`$1");case 4968:return ht(ht(e,/(.+:)(flex-)?(.*)/,lt+"box-pack:$3"+Kn+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+lt+e+e;case 4095:case 3583:case 4068:case 2532:return ht(e,/(.+)-inline(.+)/,lt+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(ii(e)-1-t>6)switch(wr(e,t+1)){case 109:if(wr(e,t+4)!==45)break;case 102:return ht(e,/(.+:)(.+)-([^]+)/,"$1"+lt+"$2-$3$1"+e0+(wr(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~d5(e,"stretch")?CE(ht(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(wr(e,t+1)!==115)break;case 6444:switch(wr(e,ii(e)-3-(~d5(e,"!important")&&10))){case 107:return ht(e,":",":"+lt)+e;case 101:return ht(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+lt+(wr(e,14)===45?"inline-":"")+"box$3$1"+lt+"$2$3$1"+Kn+"$2box$3")+e}break;case 5936:switch(wr(e,t+11)){case 114:return lt+e+Kn+ht(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return lt+e+Kn+ht(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return lt+e+Kn+ht(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return lt+e+Kn+e+e}return e}function du(e,t){for(var n="",r=Db(e),o=0;o-1&&!e.return)switch(e.type){case Nb:e.return=CE(e.value,e.length);break;case yE:return du([Dc(e,{value:ht(e.value,"@","@"+lt)})],r);case Mb:if(e.length)return Hj(e.props,function(o){switch(jj(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return du([Dc(e,{props:[ht(o,/:(read-\w+)/,":"+e0+"$1")]})],r);case"::placeholder":return du([Dc(e,{props:[ht(o,/:(plac\w+)/,":"+lt+"input-$1")]}),Dc(e,{props:[ht(o,/:(plac\w+)/,":"+e0+"$1")]}),Dc(e,{props:[ht(o,/:(plac\w+)/,Kn+"input-$1")]})],r)}return""})}}var rw=function(t){var n=new WeakMap;return function(r){if(n.has(r))return n.get(r);var o=t(r);return n.set(r,o),o}};function kE(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var rH=function(t,n,r){for(var o=0,i=0;o=i,i=hi(),o===38&&i===12&&(n[r]=1),!Ud(i);)Gr();return kf(t,Ar)},oH=function(t,n){var r=-1,o=44;do switch(Ud(o)){case 0:o===38&&hi()===12&&(n[r]=1),t[r]+=rH(Ar-1,n,r);break;case 2:t[r]+=s1(o);break;case 4:if(o===44){t[++r]=hi()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=nm(o)}while(o=Gr());return t},iH=function(t,n){return wE(oH(xE(t),n))},ow=new WeakMap,aH=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,o=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!ow.get(r))&&!o){ow.set(t,!0);for(var i=[],s=iH(n,i),l=r.props,c=0,d=0;c=4;++r,o-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(o){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var SH={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},xH=/[A-Z]|^ms/g,wH=/_EMO_([^_]+?)_([^]*?)_EMO_/g,IE=function(t){return t.charCodeAt(1)===45},iw=function(t){return t!=null&&typeof t!="boolean"},m2=kE(function(e){return IE(e)?e:e.replace(xH,"-$&").toLowerCase()}),aw=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(wH,function(r,o,i){return ai={name:o,styles:i,next:ai},o})}return SH[t]!==1&&!IE(t)&&typeof n=="number"&&n!==0?n+"px":n};function Zd(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0)return n;switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return ai={name:n.name,styles:n.styles,next:ai},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)ai={name:r.name,styles:r.styles,next:ai},r=r.next;var o=n.styles+";";return o}return CH(e,t,n)}case"function":{if(e!==void 0){var i=ai,s=n(e);return ai=i,Zd(e,t,s)}break}}if(t==null)return n;var l=t[n];return l!==void 0?l:n}function CH(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o{t.includes(r)||(n[r]=e[r])}),n}function RH(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const l=t.get(r);if(l.has(o))return l.get(o);const c=e(r,o,i,s);return l.set(o,c),c}},DE=OH(RH);function zE(e,t){const n={};return Object.keys(e).forEach(r=>{const o=e[r];t(o,r,e)&&(n[r]=o)}),n}var $E=e=>zE(e,t=>t!=null);function Vb(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function gm(e){if(!Vb(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}function MH(e){var t;return Vb(e)?((t=Ef(e))==null?void 0:t.defaultView)??window:window}function Ef(e){return Vb(e)?e.ownerDocument??document:document}function NH(e){return e.view??window}function DH(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}var Lf=DH();function zH(e){const t=Ef(e);return t?.activeElement}function Wb(e,t){return e?e===t||e.contains(t):!1}var BE=e=>e.hasAttribute("tabindex"),$H=e=>BE(e)&&e.tabIndex===-1;function BH(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function FH(e){return gm(e)&&e.localName==="input"&&"select"in e}function FE(e){return(gm(e)?Ef(e):document).activeElement===e}function VE(e){return e.parentElement&&VE(e.parentElement)?!0:e.hidden}function VH(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function WE(e){if(!gm(e)||VE(e)||BH(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():VH(e)?!0:BE(e)}function WH(e){return e?gm(e)&&WE(e)&&!$H(e):!1}var jH=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],HH=jH.join(),UH=e=>e.offsetWidth>0&&e.offsetHeight>0;function GH(e){const t=Array.from(e.querySelectorAll(HH));return t.unshift(e),t.filter(n=>WE(n)&&UH(n))}function t0(e,...t){return tu(e)?e(...t):e}function ZH(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function KH(e){let t;return function(...r){return e&&(t=e.apply(this,r),e=null),t}}var qH=KH(e=>()=>{const{condition:t,message:n}=e;t&&AH&&console.warn(n)}),YH=(...e)=>t=>e.reduce((n,r)=>r(n),t);function n0(e,t={}){const{isActive:n=FE,nextTick:r,preventScroll:o=!0,selectTextIfInput:i=!0}=t;if(!e||n(e))return-1;function s(){if(!e){qH({condition:!0,message:"[chakra-ui]: can't call focus() on `null` or `undefined` element"});return}if(XH())e.focus({preventScroll:o});else if(e.focus(),o){const l=QH(e);JH(l)}if(i){if(FH(e))e.select();else if("setSelectionRange"in e){const l=e;l.setSelectionRange(l.value.length,l.value.length)}}}return r?requestAnimationFrame(s):(s(),-1)}var bh=null;function XH(){if(bh==null){bh=!1;try{document.createElement("div").focus({get preventScroll(){return bh=!0,!0}})}catch{}}return bh}function QH(e){const t=Ef(e),n=t.defaultView??window;let r=e.parentNode;const o=[],i=t.scrollingElement||t.documentElement;for(;r instanceof n.HTMLElement&&r!==i;)(r.offsetHeight{const n=NH(t),r=t instanceof n.MouseEvent;(!r||r&&t.button===0)&&e(t)}}var nU={pageX:0,pageY:0};function rU(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||nU;return{x:r[`${t}X`],y:r[`${t}Y`]}}function oU(e,t="page"){return{x:e[`${t}X`],y:e[`${t}Y`]}}function iU(e,t="page"){return{point:eU(e)?rU(e,t):oU(e,t)}}var aU=(e,t=!1)=>{const n=r=>e(r,iU(r));return t?tU(n):n},sU=()=>Lf&&window.onpointerdown===null,lU=()=>Lf&&window.ontouchstart===null,uU=()=>Lf&&window.onmousedown===null,cU={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},dU={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function fU(e){return sU()?e:lU()?dU[e]:uU()?cU[e]:e}Object.freeze(["base","sm","md","lg","xl","2xl"]);function pU(e){const{userAgent:t,vendor:n}=e,r=/(android)/i.test(t);switch(!0){case/CriOS/.test(t):return"Chrome for iOS";case/Edg\//.test(t):return"Edge";case(r&&/Silk\//.test(t)):return"Silk";case(/Chrome/.test(t)&&/Google Inc/.test(n)):return"Chrome";case/Firefox\/\d+\.\d+$/.test(t):return"Firefox";case r:return"AOSP";case/MSIE|Trident/.test(t):return"IE";case(/Safari/.test(e.userAgent)&&/Apple Computer/.test(t)):return"Safari";case/AppleWebKit/.test(t):return"WebKit";default:return null}}function hU(e){return Lf?pU(window.navigator)===e:!1}function mU(e={}){const{strict:t=!0,errorMessage:n="useContext: `context` is undefined. Seems you forgot to wrap component within the Provider",name:r}=e,o=C.exports.createContext(void 0);o.displayName=r;function i(){var s;const l=C.exports.useContext(o);if(!l&&t){const c=new Error(n);throw c.name="ContextError",(s=Error.captureStackTrace)==null||s.call(Error,c,i),c}return l}return[o.Provider,i,o]}var gU=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,vU=kE(function(e){return gU.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),yU=vU,bU=function(t){return t!=="theme"},uw=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?yU:bU},cw=function(t,n,r){var o;if(n){var i=n.shouldForwardProp;o=t.__emotion_forwardProp&&i?function(s){return t.__emotion_forwardProp(s)&&i(s)}:i}return typeof o!="function"&&r&&(o=t.__emotion_forwardProp),o},SU=function(t){var n=t.cache,r=t.serialized,o=t.isStringTag;return TE(n,r,o),_H(function(){return AE(n,r,o)}),null},xU=function e(t,n){var r=t.__emotion_real===t,o=r&&t.__emotion_base||t,i,s;n!==void 0&&(i=n.label,s=n.target);var l=cw(t,n,r),c=l||uw(o),d=!c("as");return function(){var f=arguments,h=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(i!==void 0&&h.push("label:"+i+";"),f[0]==null||f[0].raw===void 0)h.push.apply(h,f);else{h.push(f[0][0]);for(var m=f.length,g=1;g` or ``");return e}function jE(){const e=Ib(),t=vm();return{...e,theme:t}}function PU(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__breakpoints)==null?void 0:i.asArray)==null?void 0:s[o]};return r(t)??r(n)??n}function TU(e,t,n){if(t==null)return t;const r=o=>{var i,s;return(s=(i=e.__cssMap)==null?void 0:i[o])==null?void 0:s.value};return r(t)??r(n)??n}function AU(e,t,n){const r=Array.isArray(t)?t:[t],o=Array.isArray(n)?n:[n];return i=>{const s=o.filter(Boolean),l=r.map((c,d)=>{if(e==="breakpoints")return PU(i,c,s[d]??c);const f=`${e}.${c}`;return TU(i,f,s[d]??c)});return Array.isArray(t)?l:l[0]}}function IU(e){const{cssVarsRoot:t,theme:n,children:r}=e,o=C.exports.useMemo(()=>xj(n),[n]);return Y(PH,{theme:o,children:[v(RU,{root:t}),r]})}function RU({root:e=":host, :root"}){const t=[e,"[data-theme]"].join(",");return v(mm,{styles:n=>({[t]:n.__cssVars})})}mU({name:"StylesContext",errorMessage:"useStyles: `styles` is undefined. Seems you forgot to wrap the components in `` "});function OU(){const{colorMode:e}=Ib();return v(mm,{styles:t=>{const n=DE(t,"styles.global"),r=t0(n,{theme:t,colorMode:e});return r?gE(r)(t):void 0}})}var MU=new Set([...kj,"textStyle","layerStyle","apply","noOfLines","focusBorderColor","errorBorderColor","as","__css","css","sx"]),NU=new Set(["htmlWidth","htmlHeight","htmlSize"]);function DU(e){return NU.has(e)||!MU.has(e)}var zU=({baseStyle:e})=>t=>{const{theme:n,css:r,__css:o,sx:i,...s}=t,l=zE(s,(h,m)=>Ej(m)),c=t0(e,t),d=Object.assign({},o,c,$E(l),i),f=gE(d)(t.theme);return r?[f,r]:f};function g2(e,t){const{baseStyle:n,...r}=t??{};r.shouldForwardProp||(r.shouldForwardProp=DU);const o=zU({baseStyle:n});return p5(e,r)(o)}function le(e){return C.exports.forwardRef(e)}function HE(e,t={}){const{styleConfig:n,...r}=t,{theme:o,colorMode:i}=jE(),s=DE(o,`components.${e}`),l=n||s,c=ia({theme:o,colorMode:i},l?.defaultProps??{},$E(IH(r,["children"]))),d=C.exports.useRef({});if(l){const h=Mj(l)(c);LU(d.current,h)||(d.current=h)}return d.current}function mr(e,t={}){return HE(e,t)}function gr(e,t={}){return HE(e,t)}function $U(){const e=new Map;return new Proxy(g2,{apply(t,n,r){return g2(...r)},get(t,n){return e.has(n)||e.set(n,g2(n)),e.get(n)}})}var ee=$U();function BU(e,t){return`${e} returned \`undefined\`. Seems you forgot to wrap component within ${t}`}function Mt(e={}){const{name:t,strict:n=!0,hookName:r="useContext",providerName:o="Provider",errorMessage:i}=e,s=C.exports.createContext(void 0);s.displayName=t;function l(){var c;const d=C.exports.useContext(s);if(!d&&n){const f=new Error(i??BU(r,o));throw f.name="ContextError",(c=Error.captureStackTrace)==null||c.call(Error,f,l),f}return d}return[s.Provider,l,s]}function FU(e,t){if(e!=null){if(typeof e=="function"){e(t);return}try{e.current=t}catch{throw new Error(`Cannot assign value '${t}' to ref '${e}'`)}}}function tn(...e){return t=>{e.forEach(n=>{FU(n,t)})}}function VU(...e){return C.exports.useMemo(()=>tn(...e),e)}function dw(e){return e.sort((t,n)=>{const r=t.compareDocumentPosition(n);if(r&Node.DOCUMENT_POSITION_FOLLOWING||r&Node.DOCUMENT_POSITION_CONTAINED_BY)return-1;if(r&Node.DOCUMENT_POSITION_PRECEDING||r&Node.DOCUMENT_POSITION_CONTAINS)return 1;if(r&Node.DOCUMENT_POSITION_DISCONNECTED||r&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)throw Error("Cannot sort the given nodes.");return 0})}var WU=e=>typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE;function fw(e,t,n){let r=e+1;return n&&r>=t&&(r=0),r}function pw(e,t,n){let r=e-1;return n&&r<0&&(r=t),r}var h5=typeof window<"u"?C.exports.useLayoutEffect:C.exports.useEffect,r0=e=>e,jU=class{descendants=new Map;register=e=>{if(e!=null)return WU(e)?this.registerNode(e):t=>{this.registerNode(t,e)}};unregister=e=>{this.descendants.delete(e);const t=dw(Array.from(this.descendants.keys()));this.assignIndex(t)};destroy=()=>{this.descendants.clear()};assignIndex=e=>{this.descendants.forEach(t=>{const n=e.indexOf(t.node);t.index=n,t.node.dataset.index=t.index.toString()})};count=()=>this.descendants.size;enabledCount=()=>this.enabledValues().length;values=()=>Array.from(this.descendants.values()).sort((t,n)=>t.index-n.index);enabledValues=()=>this.values().filter(e=>!e.disabled);item=e=>{if(this.count()!==0)return this.values()[e]};enabledItem=e=>{if(this.enabledCount()!==0)return this.enabledValues()[e]};first=()=>this.item(0);firstEnabled=()=>this.enabledItem(0);last=()=>this.item(this.descendants.size-1);lastEnabled=()=>{const e=this.enabledValues().length-1;return this.enabledItem(e)};indexOf=e=>{var t;return e?((t=this.descendants.get(e))==null?void 0:t.index)??-1:-1};enabledIndexOf=e=>e==null?-1:this.enabledValues().findIndex(t=>t.node.isSameNode(e));next=(e,t=!0)=>{const n=fw(e,this.count(),t);return this.item(n)};nextEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=fw(r,this.enabledCount(),t);return this.enabledItem(o)};prev=(e,t=!0)=>{const n=pw(e,this.count()-1,t);return this.item(n)};prevEnabled=(e,t=!0)=>{const n=this.item(e);if(!n)return;const r=this.enabledIndexOf(n.node),o=pw(r,this.enabledCount()-1,t);return this.enabledItem(o)};registerNode=(e,t)=>{if(!e||this.descendants.has(e))return;const n=Array.from(this.descendants.keys()).concat(e),r=dw(n);t?.disabled&&(t.disabled=!!t.disabled);const o={node:e,index:-1,...t};this.descendants.set(e,o),this.assignIndex(r)}};function HU(){const e=C.exports.useRef(new jU);return h5(()=>()=>e.current.destroy()),e.current}var[UU,UE]=Mt({name:"DescendantsProvider",errorMessage:"useDescendantsContext must be used within DescendantsProvider"});function GU(e){const t=UE(),[n,r]=C.exports.useState(-1),o=C.exports.useRef(null);h5(()=>()=>{!o.current||t.unregister(o.current)},[]),h5(()=>{if(!o.current)return;const s=Number(o.current.dataset.index);n!=s&&!Number.isNaN(s)&&r(s)});const i=r0(e?t.register(e):t.register);return{descendants:t,index:n,enabledIndex:t.enabledIndexOf(o.current),register:tn(i,o)}}function GE(){return[r0(UU),()=>r0(UE()),()=>HU(),o=>GU(o)]}var _t=(...e)=>e.filter(Boolean).join(" "),hw={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},ZE=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??hw.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??hw.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});ZE.displayName="Icon";function Xn(e,t=[]){const n=C.exports.useRef(e);return C.exports.useEffect(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function KE(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:o=(m,g)=>m!==g}=e,i=Xn(r),s=Xn(o),[l,c]=C.exports.useState(n),d=t!==void 0,f=d?t:l,h=C.exports.useCallback(m=>{const b=typeof m=="function"?m(f):m;!s(f,b)||(d||c(b),i(b))},[d,i,f,s]);return[f,h]}const jb=C.exports.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),ym=C.exports.createContext({});function ZU(){return C.exports.useContext(ym).visualElement}const Hu=C.exports.createContext(null),Qs=typeof document<"u",o0=Qs?C.exports.useLayoutEffect:C.exports.useEffect,qE=C.exports.createContext({strict:!1});function KU(e,t,n,r){const o=ZU(),i=C.exports.useContext(qE),s=C.exports.useContext(Hu),l=C.exports.useContext(jb).reducedMotion,c=C.exports.useRef(void 0);r=r||i.renderer,!c.current&&r&&(c.current=r(e,{visualState:t,parent:o,props:n,presenceId:s?s.id:void 0,blockInitialAnimation:s?s.initial===!1:!1,reducedMotionConfig:l}));const d=c.current;return o0(()=>{d&&d.syncRender()}),C.exports.useEffect(()=>{d&&d.animationState&&d.animationState.animateChanges()}),o0(()=>()=>d&&d.notifyUnmount(),[]),d}function nu(e){return typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function qU(e,t,n){return C.exports.useCallback(r=>{r&&e.mount&&e.mount(r),t&&(r?t.mount(r):t.unmount()),n&&(typeof n=="function"?n(r):nu(n)&&(n.current=r))},[t])}function qd(e){return typeof e=="string"||Array.isArray(e)}function bm(e){return typeof e=="object"&&typeof e.start=="function"}const YU=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function Sm(e){return bm(e.animate)||YU.some(t=>qd(e[t]))}function YE(e){return Boolean(Sm(e)||e.variants)}function XU(e,t){if(Sm(e)){const{initial:n,animate:r}=e;return{initial:n===!1||qd(n)?n:void 0,animate:qd(r)?r:void 0}}return e.inherit!==!1?t:{}}function QU(e){const{initial:t,animate:n}=XU(e,C.exports.useContext(ym));return C.exports.useMemo(()=>({initial:t,animate:n}),[mw(t),mw(n)])}function mw(e){return Array.isArray(e)?e.join(" "):e}const Wi=e=>({isEnabled:t=>e.some(n=>!!t[n])}),Yd={measureLayout:Wi(["layout","layoutId","drag"]),animation:Wi(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:Wi(["exit"]),drag:Wi(["drag","dragControls"]),focus:Wi(["whileFocus"]),hover:Wi(["whileHover","onHoverStart","onHoverEnd"]),tap:Wi(["whileTap","onTap","onTapStart","onTapCancel"]),pan:Wi(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:Wi(["whileInView","onViewportEnter","onViewportLeave"])};function JU(e){for(const t in e)t==="projectionNodeConstructor"?Yd.projectionNodeConstructor=e[t]:Yd[t].Component=e[t]}function xm(e){const t=C.exports.useRef(null);return t.current===null&&(t.current=e()),t.current}const fd={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let eG=1;function tG(){return xm(()=>{if(fd.hasEverUpdated)return eG++})}const Hb=C.exports.createContext({});class nG extends X.Component{getSnapshotBeforeUpdate(){const{visualElement:t,props:n}=this.props;return t&&t.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const XE=C.exports.createContext({}),rG=Symbol.for("motionComponentSymbol");function oG({preloadedFeatures:e,createVisualElement:t,projectionNodeConstructor:n,useRender:r,useVisualState:o,Component:i}){e&&JU(e);function s(c,d){const f={...C.exports.useContext(jb),...c,layoutId:iG(c)},{isStatic:h}=f;let m=null;const g=QU(c),b=h?void 0:tG(),S=o(c,h);if(!h&&Qs){g.visualElement=KU(i,S,f,t);const _=C.exports.useContext(qE).strict,w=C.exports.useContext(XE);g.visualElement&&(m=g.visualElement.loadFeatures(f,_,e,b,n||Yd.projectionNodeConstructor,w))}return Y(nG,{visualElement:g.visualElement,props:f,children:[m,v(ym.Provider,{value:g,children:r(i,c,b,qU(S,g.visualElement,d),S,h,g.visualElement)})]})}const l=C.exports.forwardRef(s);return l[rG]=i,l}function iG({layoutId:e}){const t=C.exports.useContext(Hb).id;return t&&e!==void 0?t+"-"+e:e}function aG(e){function t(r,o={}){return oG(e(r,o))}if(typeof Proxy>"u")return t;const n=new Map;return new Proxy(t,{get:(r,o)=>(n.has(o)||n.set(o,t(o)),n.get(o))})}const sG=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","svg","switch","symbol","text","tspan","use","view"];function Ub(e){return typeof e!="string"||e.includes("-")?!1:!!(sG.indexOf(e)>-1||/[A-Z]/.test(e))}const i0={};function lG(e){Object.assign(i0,e)}const a0=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],Pf=new Set(a0);function QE(e,{layout:t,layoutId:n}){return Pf.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!i0[e]||e==="opacity")}const xi=e=>!!e?.getVelocity,uG={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},cG=(e,t)=>a0.indexOf(e)-a0.indexOf(t);function dG({transform:e,transformKeys:t},{enableHardwareAcceleration:n=!0,allowTransformNone:r=!0},o,i){let s="";t.sort(cG);for(const l of t)s+=`${uG[l]||l}(${e[l]}) `;return n&&!e.z&&(s+="translateZ(0)"),s=s.trim(),i?s=i(e,o?"":s):r&&o&&(s="none"),s}function JE(e){return e.startsWith("--")}const fG=(e,t)=>t&&typeof e=="number"?t.transform(e):e,eL=(e,t)=>n=>Math.max(Math.min(n,t),e),pd=e=>e%1?Number(e.toFixed(5)):e,Xd=/(-)?([\d]*\.?[\d])+/g,m5=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,pG=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function Tf(e){return typeof e=="string"}const Js={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},hd=Object.assign(Object.assign({},Js),{transform:eL(0,1)}),Sh=Object.assign(Object.assign({},Js),{default:1}),Af=e=>({test:t=>Tf(t)&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),Ta=Af("deg"),mi=Af("%"),De=Af("px"),hG=Af("vh"),mG=Af("vw"),gw=Object.assign(Object.assign({},mi),{parse:e=>mi.parse(e)/100,transform:e=>mi.transform(e*100)}),Gb=(e,t)=>n=>Boolean(Tf(n)&&pG.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),tL=(e,t,n)=>r=>{if(!Tf(r))return r;const[o,i,s,l]=r.match(Xd);return{[e]:parseFloat(o),[t]:parseFloat(i),[n]:parseFloat(s),alpha:l!==void 0?parseFloat(l):1}},Ms={test:Gb("hsl","hue"),parse:tL("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+mi.transform(pd(t))+", "+mi.transform(pd(n))+", "+pd(hd.transform(r))+")"},gG=eL(0,255),v2=Object.assign(Object.assign({},Js),{transform:e=>Math.round(gG(e))}),Va={test:Gb("rgb","red"),parse:tL("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+v2.transform(e)+", "+v2.transform(t)+", "+v2.transform(n)+", "+pd(hd.transform(r))+")"};function vG(e){let t="",n="",r="",o="";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),o=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),o=e.substr(4,1),t+=t,n+=n,r+=r,o+=o),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:o?parseInt(o,16)/255:1}}const g5={test:Gb("#"),parse:vG,transform:Va.transform},ur={test:e=>Va.test(e)||g5.test(e)||Ms.test(e),parse:e=>Va.test(e)?Va.parse(e):Ms.test(e)?Ms.parse(e):g5.parse(e),transform:e=>Tf(e)?e:e.hasOwnProperty("red")?Va.transform(e):Ms.transform(e)},nL="${c}",rL="${n}";function yG(e){var t,n,r,o;return isNaN(e)&&Tf(e)&&((n=(t=e.match(Xd))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((o=(r=e.match(m5))===null||r===void 0?void 0:r.length)!==null&&o!==void 0?o:0)>0}function oL(e){typeof e=="number"&&(e=`${e}`);const t=[];let n=0;const r=e.match(m5);r&&(n=r.length,e=e.replace(m5,nL),t.push(...r.map(ur.parse)));const o=e.match(Xd);return o&&(e=e.replace(Xd,rL),t.push(...o.map(Js.parse))),{values:t,numColors:n,tokenised:e}}function iL(e){return oL(e).values}function aL(e){const{values:t,numColors:n,tokenised:r}=oL(e),o=t.length;return i=>{let s=r;for(let l=0;ltypeof e=="number"?0:e;function SG(e){const t=iL(e);return aL(e)(t.map(bG))}const aa={test:yG,parse:iL,createTransformer:aL,getAnimatableNone:SG},xG=new Set(["brightness","contrast","saturate","opacity"]);function wG(e){let[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[r]=n.match(Xd)||[];if(!r)return e;const o=n.replace(r,"");let i=xG.has(t)?1:0;return r!==n&&(i*=100),t+"("+i+o+")"}const CG=/([a-z-]*)\(.*?\)/g,v5=Object.assign(Object.assign({},aa),{getAnimatableNone:e=>{const t=e.match(CG);return t?t.map(wG).join(" "):e}}),vw={...Js,transform:Math.round},sL={borderWidth:De,borderTopWidth:De,borderRightWidth:De,borderBottomWidth:De,borderLeftWidth:De,borderRadius:De,radius:De,borderTopLeftRadius:De,borderTopRightRadius:De,borderBottomRightRadius:De,borderBottomLeftRadius:De,width:De,maxWidth:De,height:De,maxHeight:De,size:De,top:De,right:De,bottom:De,left:De,padding:De,paddingTop:De,paddingRight:De,paddingBottom:De,paddingLeft:De,margin:De,marginTop:De,marginRight:De,marginBottom:De,marginLeft:De,rotate:Ta,rotateX:Ta,rotateY:Ta,rotateZ:Ta,scale:Sh,scaleX:Sh,scaleY:Sh,scaleZ:Sh,skew:Ta,skewX:Ta,skewY:Ta,distance:De,translateX:De,translateY:De,translateZ:De,x:De,y:De,z:De,perspective:De,transformPerspective:De,opacity:hd,originX:gw,originY:gw,originZ:De,zIndex:vw,fillOpacity:hd,strokeOpacity:hd,numOctaves:vw};function Zb(e,t,n,r){const{style:o,vars:i,transform:s,transformKeys:l,transformOrigin:c}=e;l.length=0;let d=!1,f=!1,h=!0;for(const m in t){const g=t[m];if(JE(m)){i[m]=g;continue}const b=sL[m],S=fG(g,b);if(Pf.has(m)){if(d=!0,s[m]=S,l.push(m),!h)continue;g!==(b.default||0)&&(h=!1)}else m.startsWith("origin")?(f=!0,c[m]=S):o[m]=S}if(d||r?o.transform=dG(e,n,h,r):!t.transform&&o.transform&&(o.transform="none"),f){const{originX:m="50%",originY:g="50%",originZ:b=0}=c;o.transformOrigin=`${m} ${g} ${b}`}}const Kb=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function lL(e,t,n){for(const r in t)!xi(t[r])&&!QE(r,n)&&(e[r]=t[r])}function kG({transformTemplate:e},t,n){return C.exports.useMemo(()=>{const r=Kb();return Zb(r,t,{enableHardwareAcceleration:!n},e),Object.assign({},r.vars,r.style)},[t])}function _G(e,t,n){const r=e.style||{},o={};return lL(o,r,e),Object.assign(o,kG(e,t,n)),e.transformValues?e.transformValues(o):o}function EG(e,t,n){const r={},o=_G(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout="none",o.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),r.style=o,r}const LG=["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"],PG=["whileTap","onTap","onTapStart","onTapCancel"],TG=["onPan","onPanStart","onPanSessionStart","onPanEnd"],AG=["whileInView","onViewportEnter","onViewportLeave","viewport"],IG=new Set(["initial","style","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll",...AG,...PG,...LG,...TG]);function s0(e){return IG.has(e)}let uL=e=>!s0(e);function RG(e){!e||(uL=t=>t.startsWith("on")?!s0(t):e(t))}try{RG(require("@emotion/is-prop-valid").default)}catch{}function OG(e,t,n){const r={};for(const o in e)(uL(o)||n===!0&&s0(o)||!t&&!s0(o)||e.draggable&&o.startsWith("onDrag"))&&(r[o]=e[o]);return r}function yw(e,t,n){return typeof e=="string"?e:De.transform(t+n*e)}function MG(e,t,n){const r=yw(t,e.x,e.width),o=yw(n,e.y,e.height);return`${r} ${o}`}const NG={offset:"stroke-dashoffset",array:"stroke-dasharray"},DG={offset:"strokeDashoffset",array:"strokeDasharray"};function zG(e,t,n=1,r=0,o=!0){e.pathLength=1;const i=o?NG:DG;e[i.offset]=De.transform(-r);const s=De.transform(t),l=De.transform(n);e[i.array]=`${s} ${l}`}function qb(e,{attrX:t,attrY:n,originX:r,originY:o,pathLength:i,pathSpacing:s=1,pathOffset:l=0,...c},d,f){Zb(e,c,d,f),e.attrs=e.style,e.style={};const{attrs:h,style:m,dimensions:g}=e;h.transform&&(g&&(m.transform=h.transform),delete h.transform),g&&(r!==void 0||o!==void 0||m.transform)&&(m.transformOrigin=MG(g,r!==void 0?r:.5,o!==void 0?o:.5)),t!==void 0&&(h.x=t),n!==void 0&&(h.y=n),i!==void 0&&zG(h,i,s,l,!1)}const cL=()=>({...Kb(),attrs:{}});function $G(e,t){const n=C.exports.useMemo(()=>{const r=cL();return qb(r,t,{enableHardwareAcceleration:!1},e.transformTemplate),{...r.attrs,style:{...r.style}}},[t]);if(e.style){const r={};lL(r,e.style,e),n.style={...r,...n.style}}return n}function BG(e=!1){return(n,r,o,i,{latestValues:s},l)=>{const d=(Ub(n)?$G:EG)(r,s,l),h={...OG(r,typeof n=="string",e),...d,ref:i};return o&&(h["data-projection-id"]=o),C.exports.createElement(n,h)}}const dL=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function fL(e,{style:t,vars:n},r,o){Object.assign(e.style,t,o&&o.getProjectionStyles(r));for(const i in n)e.style.setProperty(i,n[i])}const pL=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength"]);function hL(e,t,n,r){fL(e,t,void 0,r);for(const o in t.attrs)e.setAttribute(pL.has(o)?o:dL(o),t.attrs[o])}function Yb(e){const{style:t}=e,n={};for(const r in t)(xi(t[r])||QE(r,e))&&(n[r]=t[r]);return n}function mL(e){const t=Yb(e);for(const n in e)if(xi(e[n])){const r=n==="x"||n==="y"?"attr"+n.toUpperCase():n;t[r]=e[n]}return t}function gL(e,t,n,r={},o={}){return typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"&&(t=t(n!==void 0?n:e.custom,r,o)),t}const Qd=e=>Array.isArray(e),FG=e=>Boolean(e&&typeof e=="object"&&e.mix&&e.toValue),vL=e=>Qd(e)?e[e.length-1]||0:e;function c1(e){const t=xi(e)?e.get():e;return FG(t)?t.toValue():t}function VG({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:n},r,o,i){const s={latestValues:WG(r,o,i,e),renderState:t()};return n&&(s.mount=l=>n(r,l,s)),s}const yL=e=>(t,n)=>{const r=C.exports.useContext(ym),o=C.exports.useContext(Hu),i=()=>VG(e,t,r,o);return n?i():xm(i)};function WG(e,t,n,r){const o={},i=r(e);for(const m in i)o[m]=c1(i[m]);let{initial:s,animate:l}=e;const c=Sm(e),d=YE(e);t&&d&&!c&&e.inherit!==!1&&(s===void 0&&(s=t.initial),l===void 0&&(l=t.animate));let f=n?n.initial===!1:!1;f=f||s===!1;const h=f?l:s;return h&&typeof h!="boolean"&&!bm(h)&&(Array.isArray(h)?h:[h]).forEach(g=>{const b=gL(e,g);if(!b)return;const{transitionEnd:S,transition:_,...w}=b;for(const x in w){let k=w[x];if(Array.isArray(k)){const L=f?k.length-1:0;k=k[L]}k!==null&&(o[x]=k)}for(const x in S)o[x]=S[x]}),o}const jG={useVisualState:yL({scrapeMotionValuesFromProps:mL,createRenderState:cL,onMount:(e,t,{renderState:n,latestValues:r})=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}qb(n,r,{enableHardwareAcceleration:!1},e.transformTemplate),hL(t,n)}})},HG={useVisualState:yL({scrapeMotionValuesFromProps:Yb,createRenderState:Kb})};function UG(e,{forwardMotionProps:t=!1},n,r,o){return{...Ub(e)?jG:HG,preloadedFeatures:n,useRender:BG(t),createVisualElement:r,projectionNodeConstructor:o,Component:e}}var It;(function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"})(It||(It={}));function wm(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function y5(e,t,n,r){C.exports.useEffect(()=>{const o=e.current;if(n&&o)return wm(o,t,n,r)},[e,t,n,r])}function GG({whileFocus:e,visualElement:t}){const{animationState:n}=t,r=()=>{n&&n.setActive(It.Focus,!0)},o=()=>{n&&n.setActive(It.Focus,!1)};y5(t,"focus",e?r:void 0),y5(t,"blur",e?o:void 0)}function bL(e){return typeof PointerEvent<"u"&&e instanceof PointerEvent?e.pointerType==="mouse":e instanceof MouseEvent}function SL(e){return!!e.touches}function ZG(e){return t=>{const n=t instanceof MouseEvent;(!n||n&&t.button===0)&&e(t)}}const KG={pageX:0,pageY:0};function qG(e,t="page"){const r=e.touches[0]||e.changedTouches[0]||KG;return{x:r[t+"X"],y:r[t+"Y"]}}function YG(e,t="page"){return{x:e[t+"X"],y:e[t+"Y"]}}function Xb(e,t="page"){return{point:SL(e)?qG(e,t):YG(e,t)}}const xL=(e,t=!1)=>{const n=r=>e(r,Xb(r));return t?ZG(n):n},XG=()=>Qs&&window.onpointerdown===null,QG=()=>Qs&&window.ontouchstart===null,JG=()=>Qs&&window.onmousedown===null,eZ={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},tZ={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function wL(e){return XG()?e:QG()?tZ[e]:JG()?eZ[e]:e}function fu(e,t,n,r){return wm(e,wL(t),xL(n,t==="pointerdown"),r)}function l0(e,t,n,r){return y5(e,wL(t),n&&xL(n,t==="pointerdown"),r)}function CL(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const bw=CL("dragHorizontal"),Sw=CL("dragVertical");function kL(e){let t=!1;if(e==="y")t=Sw();else if(e==="x")t=bw();else{const n=bw(),r=Sw();n&&r?t=()=>{n(),r()}:(n&&n(),r&&r())}return t}function _L(){const e=kL(!0);return e?(e(),!1):!0}function xw(e,t,n){return(r,o)=>{!bL(r)||_L()||(e.animationState&&e.animationState.setActive(It.Hover,t),n&&n(r,o))}}function nZ({onHoverStart:e,onHoverEnd:t,whileHover:n,visualElement:r}){l0(r,"pointerenter",e||n?xw(r,!0,e):void 0,{passive:!e}),l0(r,"pointerleave",t||n?xw(r,!1,t):void 0,{passive:!t})}const EL=(e,t)=>t?e===t?!0:EL(e,t.parentElement):!1;function Qb(e){return C.exports.useEffect(()=>()=>e(),[])}var li=function(){return li=Object.assign||function(t){for(var n,r=1,o=arguments.length;r0&&i[i.length-1])&&(d[0]===6||d[0]===2)){n=0;continue}if(d[0]===3&&(!i||d[1]>i[0]&&d[1]0)&&!(o=r.next()).done;)i.push(o.value)}catch(l){s={error:l}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i}function b5(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;rMath.min(Math.max(n,e),t),y2=.001,oZ=.01,Cw=10,iZ=.05,aZ=1;function sZ({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let o,i;rZ(e<=Cw*1e3);let s=1-t;s=c0(iZ,aZ,s),e=c0(oZ,Cw,e/1e3),s<1?(o=d=>{const f=d*s,h=f*e,m=f-n,g=S5(d,s),b=Math.exp(-h);return y2-m/g*b},i=d=>{const h=d*s*e,m=h*n+n,g=Math.pow(s,2)*Math.pow(d,2)*e,b=Math.exp(-h),S=S5(Math.pow(d,2),s);return(-o(d)+y2>0?-1:1)*((m-g)*b)/S}):(o=d=>{const f=Math.exp(-d*e),h=(d-n)*e+1;return-y2+f*h},i=d=>{const f=Math.exp(-d*e),h=(n-d)*(e*e);return f*h});const l=5/e,c=uZ(o,i,l);if(e=e*1e3,isNaN(c))return{stiffness:100,damping:10,duration:e};{const d=Math.pow(c,2)*r;return{stiffness:d,damping:s*2*Math.sqrt(r*d),duration:e}}}const lZ=12;function uZ(e,t,n){let r=n;for(let o=1;oe[n]!==void 0)}function fZ(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!kw(e,dZ)&&kw(e,cZ)){const n=sZ(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function Jb(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:o}=e,i=Cm(e,["from","to","restSpeed","restDelta"]);const s={done:!1,value:t};let{stiffness:l,damping:c,mass:d,velocity:f,duration:h,isResolvedFromDuration:m}=fZ(i),g=_w,b=_w;function S(){const _=f?-(f/1e3):0,w=n-t,x=c/(2*Math.sqrt(l*d)),k=Math.sqrt(l/d)/1e3;if(o===void 0&&(o=Math.min(Math.abs(n-t)/100,.4)),x<1){const L=S5(k,x);g=A=>{const M=Math.exp(-x*k*A);return n-M*((_+x*k*w)/L*Math.sin(L*A)+w*Math.cos(L*A))},b=A=>{const M=Math.exp(-x*k*A);return x*k*M*(Math.sin(L*A)*(_+x*k*w)/L+w*Math.cos(L*A))-M*(Math.cos(L*A)*(_+x*k*w)-L*w*Math.sin(L*A))}}else if(x===1)g=L=>n-Math.exp(-k*L)*(w+(_+k*w)*L);else{const L=k*Math.sqrt(x*x-1);g=A=>{const M=Math.exp(-x*k*A),N=Math.min(L*A,300);return n-M*((_+x*k*w)*Math.sinh(N)+L*w*Math.cosh(N))/L}}}return S(),{next:_=>{const w=g(_);if(m)s.done=_>=h;else{const x=b(_)*1e3,k=Math.abs(x)<=r,L=Math.abs(n-w)<=o;s.done=k&&L}return s.value=s.done?n:w,s},flipTarget:()=>{f=-f,[t,n]=[n,t],S()}}}Jb.needsInterpolation=(e,t)=>typeof e=="string"||typeof t=="string";const _w=e=>0,Jd=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},nn=(e,t,n)=>-n*e+n*t+e;function b2(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function Ew({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let o=0,i=0,s=0;if(!t)o=i=s=n;else{const l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;o=b2(c,l,e+1/3),i=b2(c,l,e),s=b2(c,l,e-1/3)}return{red:Math.round(o*255),green:Math.round(i*255),blue:Math.round(s*255),alpha:r}}const pZ=(e,t,n)=>{const r=e*e,o=t*t;return Math.sqrt(Math.max(0,n*(o-r)+r))},hZ=[g5,Va,Ms],Lw=e=>hZ.find(t=>t.test(e)),LL=(e,t)=>{let n=Lw(e),r=Lw(t),o=n.parse(e),i=r.parse(t);n===Ms&&(o=Ew(o),n=Va),r===Ms&&(i=Ew(i),r=Va);const s=Object.assign({},o);return l=>{for(const c in s)c!=="alpha"&&(s[c]=pZ(o[c],i[c],l));return s.alpha=nn(o.alpha,i.alpha,l),n.transform(s)}},x5=e=>typeof e=="number",mZ=(e,t)=>n=>t(e(n)),km=(...e)=>e.reduce(mZ);function PL(e,t){return x5(e)?n=>nn(e,t,n):ur.test(e)?LL(e,t):AL(e,t)}const TL=(e,t)=>{const n=[...e],r=n.length,o=e.map((i,s)=>PL(i,t[s]));return i=>{for(let s=0;s{const n=Object.assign(Object.assign({},e),t),r={};for(const o in n)e[o]!==void 0&&t[o]!==void 0&&(r[o]=PL(e[o],t[o]));return o=>{for(const i in r)n[i]=r[i](o);return n}};function Pw(e){const t=aa.parse(e),n=t.length;let r=0,o=0,i=0;for(let s=0;s{const n=aa.createTransformer(t),r=Pw(e),o=Pw(t);return r.numHSL===o.numHSL&&r.numRGB===o.numRGB&&r.numNumbers>=o.numNumbers?km(TL(r.parsed,o.parsed),n):s=>`${s>0?t:e}`},vZ=(e,t)=>n=>nn(e,t,n);function yZ(e){if(typeof e=="number")return vZ;if(typeof e=="string")return ur.test(e)?LL:AL;if(Array.isArray(e))return TL;if(typeof e=="object")return gZ}function bZ(e,t,n){const r=[],o=n||yZ(e[0]),i=e.length-1;for(let s=0;sn(Jd(e,t,r))}function xZ(e,t){const n=e.length,r=n-1;return o=>{let i=0,s=!1;if(o<=e[0]?s=!0:o>=e[r]&&(i=r-1,s=!0),!s){let c=1;for(;co||c===r);c++);i=c-1}const l=Jd(e[i],e[i+1],o);return t[i](l)}}function IL(e,t,{clamp:n=!0,ease:r,mixer:o}={}){const i=e.length;u0(i===t.length),u0(!r||!Array.isArray(r)||r.length===i-1),e[0]>e[i-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const s=bZ(t,r,o),l=i===2?SZ(e,s):xZ(e,s);return n?c=>l(c0(e[0],e[i-1],c)):l}const _m=e=>t=>1-e(1-t),e3=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,wZ=e=>t=>Math.pow(t,e),RL=e=>t=>t*t*((e+1)*t-e),CZ=e=>{const t=RL(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},OL=1.525,kZ=4/11,_Z=8/11,EZ=9/10,t3=e=>e,n3=wZ(2),LZ=_m(n3),ML=e3(n3),NL=e=>1-Math.sin(Math.acos(e)),r3=_m(NL),PZ=e3(r3),o3=RL(OL),TZ=_m(o3),AZ=e3(o3),IZ=CZ(OL),RZ=4356/361,OZ=35442/1805,MZ=16061/1805,d0=e=>{if(e===1||e===0)return e;const t=e*e;return ee<.5?.5*(1-d0(1-e*2)):.5*d0(e*2-1)+.5;function zZ(e,t){return e.map(()=>t||ML).splice(0,e.length-1)}function $Z(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function BZ(e,t){return e.map(n=>n*t)}function d1({from:e=0,to:t=1,ease:n,offset:r,duration:o=300}){const i={done:!1,value:e},s=Array.isArray(t)?t:[e,t],l=BZ(r&&r.length===s.length?r:$Z(s),o);function c(){return IL(l,s,{ease:Array.isArray(n)?n:zZ(s,n)})}let d=c();return{next:f=>(i.value=d(f),i.done=f>=o,i),flipTarget:()=>{s.reverse(),d=c()}}}function FZ({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:o=.5,modifyTarget:i}){const s={done:!1,value:t};let l=n*e;const c=t+l,d=i===void 0?c:i(c);return d!==c&&(l=d-t),{next:f=>{const h=-l*Math.exp(-f/r);return s.done=!(h>o||h<-o),s.value=s.done?d:d+h,s},flipTarget:()=>{}}}const Tw={keyframes:d1,spring:Jb,decay:FZ};function VZ(e){if(Array.isArray(e.to))return d1;if(Tw[e.type])return Tw[e.type];const t=new Set(Object.keys(e));return t.has("ease")||t.has("duration")&&!t.has("dampingRatio")?d1:t.has("dampingRatio")||t.has("stiffness")||t.has("mass")||t.has("damping")||t.has("restSpeed")||t.has("restDelta")?Jb:d1}const DL=1/60*1e3,WZ=typeof performance<"u"?()=>performance.now():()=>Date.now(),zL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(WZ()),DL);function jZ(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,l={schedule:(c,d=!1,f=!1)=>{const h=f&&o,m=h?t:n;return d&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const d=n.indexOf(c);d!==-1&&n.splice(d,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=jZ(()=>ef=!0),e),{}),UZ=If.reduce((e,t)=>{const n=Em[t];return e[t]=(r,o=!1,i=!1)=>(ef||KZ(),n.schedule(r,o,i)),e},{}),GZ=If.reduce((e,t)=>(e[t]=Em[t].cancel,e),{});If.reduce((e,t)=>(e[t]=()=>Em[t].process(pu),e),{});const ZZ=e=>Em[e].process(pu),$L=e=>{ef=!1,pu.delta=w5?DL:Math.max(Math.min(e-pu.timestamp,HZ),1),pu.timestamp=e,C5=!0,If.forEach(ZZ),C5=!1,ef&&(w5=!1,zL($L))},KZ=()=>{ef=!0,w5=!0,C5||zL($L)},qZ=()=>pu;function BL(e,t,n=0){return e-t-n}function YZ(e,t,n=0,r=!0){return r?BL(t+-e,t,n):t-(e-t)+n}function XZ(e,t,n,r){return r?e>=t+n:e<=-n}const QZ=e=>{const t=({delta:n})=>e(n);return{start:()=>UZ.update(t,!0),stop:()=>GZ.update(t)}};function FL(e){var t,n,{from:r,autoplay:o=!0,driver:i=QZ,elapsed:s=0,repeat:l=0,repeatType:c="loop",repeatDelay:d=0,onPlay:f,onStop:h,onComplete:m,onRepeat:g,onUpdate:b}=e,S=Cm(e,["from","autoplay","driver","elapsed","repeat","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","onUpdate"]);let{to:_}=S,w,x=0,k=S.duration,L,A=!1,M=!0,N;const $=VZ(S);!((n=(t=$).needsInterpolation)===null||n===void 0)&&n.call(t,r,_)&&(N=IL([0,100],[r,_],{clamp:!1}),r=0,_=100);const Z=$(Object.assign(Object.assign({},S),{from:r,to:_}));function j(){x++,c==="reverse"?(M=x%2===0,s=YZ(s,k,d,M)):(s=BL(s,k,d),c==="mirror"&&Z.flipTarget()),A=!1,g&&g()}function te(){w.stop(),m&&m()}function Le(ge){if(M||(ge=-ge),s+=ge,!A){const de=Z.next(Math.max(0,s));L=de.value,N&&(L=N(L)),A=M?de.done:s<=0}b?.(L),A&&(x===0&&(k??(k=s)),x{h?.(),w.stop()}}}function VL(e,t){return t?e*(1e3/t):0}function JZ({from:e=0,velocity:t=0,min:n,max:r,power:o=.8,timeConstant:i=750,bounceStiffness:s=500,bounceDamping:l=10,restDelta:c=1,modifyTarget:d,driver:f,onUpdate:h,onComplete:m,onStop:g}){let b;function S(k){return n!==void 0&&kr}function _(k){return n===void 0?r:r===void 0||Math.abs(n-k){var A;h?.(L),(A=k.onUpdate)===null||A===void 0||A.call(k,L)},onComplete:m,onStop:g}))}function x(k){w(Object.assign({type:"spring",stiffness:s,damping:l,restDelta:c},k))}if(S(e))x({from:e,velocity:t,to:_(e)});else{let k=o*t+e;typeof d<"u"&&(k=d(k));const L=_(k),A=L===n?-1:1;let M,N;const $=Z=>{M=N,N=Z,t=VL(Z-M,qZ().delta),(A===1&&Z>L||A===-1&&Zb?.stop()}}const k5=e=>e.hasOwnProperty("x")&&e.hasOwnProperty("y"),Aw=e=>k5(e)&&e.hasOwnProperty("z"),xh=(e,t)=>Math.abs(e-t);function i3(e,t){if(x5(e)&&x5(t))return xh(e,t);if(k5(e)&&k5(t)){const n=xh(e.x,t.x),r=xh(e.y,t.y),o=Aw(e)&&Aw(t)?xh(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(o,2))}}const WL=(e,t)=>1-3*t+3*e,jL=(e,t)=>3*t-6*e,HL=e=>3*e,f0=(e,t,n)=>((WL(t,n)*e+jL(t,n))*e+HL(t))*e,UL=(e,t,n)=>3*WL(t,n)*e*e+2*jL(t,n)*e+HL(t),eK=1e-7,tK=10;function nK(e,t,n,r,o){let i,s,l=0;do s=t+(n-t)/2,i=f0(s,r,o)-e,i>0?n=s:t=s;while(Math.abs(i)>eK&&++l=oK?iK(s,h,e,n):m===0?h:nK(s,l,l+wh,e,n)}return s=>s===0||s===1?s:f0(i(s),t,r)}function sK({onTap:e,onTapStart:t,onTapCancel:n,whileTap:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(!1),l=C.exports.useRef(null),c={passive:!(t||e||n||g)};function d(){l.current&&l.current(),l.current=null}function f(){return d(),s.current=!1,o.animationState&&o.animationState.setActive(It.Tap,!1),!_L()}function h(b,S){!f()||(EL(o.getInstance(),b.target)?e&&e(b,S):n&&n(b,S))}function m(b,S){!f()||n&&n(b,S)}function g(b,S){d(),!s.current&&(s.current=!0,l.current=km(fu(window,"pointerup",h,c),fu(window,"pointercancel",m,c)),o.animationState&&o.animationState.setActive(It.Tap,!0),t&&t(b,S))}l0(o,"pointerdown",i?g:void 0,c),Qb(d)}const lK="production",GL=typeof process>"u"||process.env===void 0?lK:"production",Iw=new Set;function ZL(e,t,n){e||Iw.has(t)||(console.warn(t),n&&console.warn(n),Iw.add(t))}const _5=new WeakMap,S2=new WeakMap,uK=e=>{const t=_5.get(e.target);t&&t(e)},cK=e=>{e.forEach(uK)};function dK({root:e,...t}){const n=e||document;S2.has(n)||S2.set(n,{});const r=S2.get(n),o=JSON.stringify(t);return r[o]||(r[o]=new IntersectionObserver(cK,{root:e,...t})),r[o]}function fK(e,t,n){const r=dK(t);return _5.set(e,n),r.observe(e),()=>{_5.delete(e),r.unobserve(e)}}function pK({visualElement:e,whileInView:t,onViewportEnter:n,onViewportLeave:r,viewport:o={}}){const i=C.exports.useRef({hasEnteredView:!1,isInView:!1});let s=Boolean(t||n||r);o.once&&i.current.hasEnteredView&&(s=!1),(typeof IntersectionObserver>"u"?gK:mK)(s,i.current,e,o)}const hK={some:0,all:1};function mK(e,t,n,{root:r,margin:o,amount:i="some",once:s}){C.exports.useEffect(()=>{if(!e)return;const l={root:r?.current,rootMargin:o,threshold:typeof i=="number"?i:hK[i]},c=d=>{const{isIntersecting:f}=d;if(t.isInView===f||(t.isInView=f,s&&!f&&t.hasEnteredView))return;f&&(t.hasEnteredView=!0),n.animationState&&n.animationState.setActive(It.InView,f);const h=n.getProps(),m=f?h.onViewportEnter:h.onViewportLeave;m&&m(d)};return fK(n.getInstance(),l,c)},[e,r,o,i])}function gK(e,t,n,{fallback:r=!0}){C.exports.useEffect(()=>{!e||!r||(GL!=="production"&&ZL(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{t.hasEnteredView=!0;const{onViewportEnter:o}=n.getProps();o&&o(null),n.animationState&&n.animationState.setActive(It.InView,!0)}))},[e])}const Wa=e=>t=>(e(t),null),vK={inView:Wa(pK),tap:Wa(sK),focus:Wa(GG),hover:Wa(nZ)};function a3(){const e=C.exports.useContext(Hu);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:r}=e,o=C.exports.useId();return C.exports.useEffect(()=>r(o),[]),!t&&n?[!1,()=>n&&n(o)]:[!0]}function yK(){return bK(C.exports.useContext(Hu))}function bK(e){return e===null?!0:e.isPresent}function KL(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;re*1e3,SK={linear:t3,easeIn:n3,easeInOut:ML,easeOut:LZ,circIn:NL,circInOut:PZ,circOut:r3,backIn:o3,backInOut:AZ,backOut:TZ,anticipate:IZ,bounceIn:NZ,bounceInOut:DZ,bounceOut:d0},Rw=e=>{if(Array.isArray(e)){u0(e.length===4);const[t,n,r,o]=e;return aK(t,n,r,o)}else if(typeof e=="string")return SK[e];return e},xK=e=>Array.isArray(e)&&typeof e[0]!="number",Ow=(e,t)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&aa.test(t)&&!t.startsWith("url(")),ws=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),Ch=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),x2=()=>({type:"keyframes",ease:"linear",duration:.3}),wK=e=>({type:"keyframes",duration:.8,values:e}),Mw={x:ws,y:ws,z:ws,rotate:ws,rotateX:ws,rotateY:ws,rotateZ:ws,scaleX:Ch,scaleY:Ch,scale:Ch,opacity:x2,backgroundColor:x2,color:x2,default:Ch},CK=(e,t)=>{let n;return Qd(t)?n=wK:n=Mw[e]||Mw.default,{to:t,...n(t)}},kK={...sL,color:ur,backgroundColor:ur,outlineColor:ur,fill:ur,stroke:ur,borderColor:ur,borderTopColor:ur,borderRightColor:ur,borderBottomColor:ur,borderLeftColor:ur,filter:v5,WebkitFilter:v5},s3=e=>kK[e];function l3(e,t){var n;let r=s3(e);return r!==v5&&(r=aa),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}const _K={current:!1};function EK({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:o,repeat:i,repeatType:s,repeatDelay:l,from:c,...d}){return!!Object.keys(d).length}function LK({ease:e,times:t,yoyo:n,flip:r,loop:o,...i}){const s={...i};return t&&(s.offset=t),i.duration&&(s.duration=p0(i.duration)),i.repeatDelay&&(s.repeatDelay=p0(i.repeatDelay)),e&&(s.ease=xK(e)?e.map(Rw):Rw(e)),i.type==="tween"&&(s.type="keyframes"),(n||o||r)&&(n?s.repeatType="reverse":o?s.repeatType="loop":r&&(s.repeatType="mirror"),s.repeat=o||n||r||i.repeat),i.type!=="spring"&&(s.type="keyframes"),s}function PK(e,t){var n,r;return(r=(n=(u3(e,t)||{}).delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function TK(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=[...e.to],e.to[0]=e.from),e}function AK(e,t,n){return Array.isArray(t.to)&&e.duration===void 0&&(e.duration=.8),TK(t),EK(e)||(e={...e,...CK(n,t.to)}),{...t,...LK(e)}}function IK(e,t,n,r,o){const i=u3(r,e)||{};let s=i.from!==void 0?i.from:t.get();const l=Ow(e,n);s==="none"&&l&&typeof n=="string"?s=l3(e,n):Nw(s)&&typeof n=="string"?s=Dw(n):!Array.isArray(n)&&Nw(n)&&typeof s=="string"&&(n=Dw(s));const c=Ow(e,s);function d(){const h={from:s,to:n,velocity:t.getVelocity(),onComplete:o,onUpdate:m=>t.set(m)};return i.type==="inertia"||i.type==="decay"?JZ({...h,...i}):FL({...AK(i,h,e),onUpdate:m=>{h.onUpdate(m),i.onUpdate&&i.onUpdate(m)},onComplete:()=>{h.onComplete(),i.onComplete&&i.onComplete()}})}function f(){const h=vL(n);return t.set(h),o(),i.onUpdate&&i.onUpdate(h),i.onComplete&&i.onComplete(),{stop:()=>{}}}return!c||!l||i.type===!1?f:d}function Nw(e){return e===0||typeof e=="string"&&parseFloat(e)===0&&e.indexOf(" ")===-1}function Dw(e){return typeof e=="number"?0:l3("",e)}function u3(e,t){return e[t]||e.default||e}function c3(e,t,n,r={}){return _K.current&&(r={type:!1}),t.start(o=>{let i,s;const l=IK(e,t,n,r,o),c=PK(r,e),d=()=>s=l();return c?i=window.setTimeout(d,p0(c)):d(),()=>{clearTimeout(i),s&&s.stop()}})}const RK=e=>/^\-?\d*\.?\d+$/.test(e),OK=e=>/^0[^.\s]+$/.test(e),qL=1/60*1e3,MK=typeof performance<"u"?()=>performance.now():()=>Date.now(),YL=typeof window<"u"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(MK()),qL);function NK(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,l={schedule:(c,d=!1,f=!1)=>{const h=f&&o,m=h?t:n;return d&&s.add(c),m.indexOf(c)===-1&&(m.push(c),h&&o&&(r=t.length)),c},cancel:c=>{const d=n.indexOf(c);d!==-1&&n.splice(d,1),s.delete(c)},process:c=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let d=0;d(e[t]=NK(()=>tf=!0),e),{}),gi=Rf.reduce((e,t)=>{const n=Lm[t];return e[t]=(r,o=!1,i=!1)=>(tf||$K(),n.schedule(r,o,i)),e},{}),nf=Rf.reduce((e,t)=>(e[t]=Lm[t].cancel,e),{}),w2=Rf.reduce((e,t)=>(e[t]=()=>Lm[t].process(hu),e),{}),zK=e=>Lm[e].process(hu),XL=e=>{tf=!1,hu.delta=E5?qL:Math.max(Math.min(e-hu.timestamp,DK),1),hu.timestamp=e,L5=!0,Rf.forEach(zK),L5=!1,tf&&(E5=!1,YL(XL))},$K=()=>{tf=!0,E5=!0,L5||YL(XL)},P5=()=>hu;function d3(e,t){e.indexOf(t)===-1&&e.push(t)}function f3(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class md{constructor(){this.subscriptions=[]}add(t){return d3(this.subscriptions,t),()=>f3(this.subscriptions,t)}notify(t,n,r){const o=this.subscriptions.length;if(!!o)if(o===1)this.subscriptions[0](t,n,r);else for(let i=0;i!isNaN(parseFloat(e));class FK{constructor(t){this.version="7.3.5",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new md,this.velocityUpdateSubscribers=new md,this.renderSubscribers=new md,this.canTrackVelocity=!1,this.updateAndNotify=(n,r=!0)=>{this.prev=this.current,this.current=n;const{delta:o,timestamp:i}=P5();this.lastUpdated!==i&&(this.timeDelta=o,this.lastUpdated=i,gi.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.updateSubscribers.notify(this.current),this.velocityUpdateSubscribers.getSize()&&this.velocityUpdateSubscribers.notify(this.getVelocity()),r&&this.renderSubscribers.notify(this.current)},this.scheduleVelocityCheck=()=>gi.postRender(this.velocityCheck),this.velocityCheck=({timestamp:n})=>{n!==this.lastUpdated&&(this.prev=this.current,this.velocityUpdateSubscribers.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=BK(this.current)}onChange(t){return this.updateSubscribers.add(t)}clearListeners(){this.updateSubscribers.clear()}onRenderRequest(t){return t(this.get()),this.renderSubscribers.add(t)}attach(t){this.passiveEffect=t}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?VL(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=t(n)}).then(()=>this.clearAnimation())}stop(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()}}function Tu(e){return new FK(e)}const QL=e=>t=>t.test(e),VK={test:e=>e==="auto",parse:e=>e},JL=[Js,De,mi,Ta,mG,hG,VK],zc=e=>JL.find(QL(e)),WK=[...JL,ur,aa],jK=e=>WK.find(QL(e));function HK(e){const t={};return e.forEachValue((n,r)=>t[r]=n.get()),t}function UK(e){const t={};return e.forEachValue((n,r)=>t[r]=n.getVelocity()),t}function Pm(e,t,n){const r=e.getProps();return gL(r,t,n!==void 0?n:r.custom,HK(e),UK(e))}function GK(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,Tu(n))}function ZK(e,t){const n=Pm(e,t);let{transitionEnd:r={},transition:o={},...i}=n?e.makeTargetAnimatable(n,!1):{};i={...i,...r};for(const s in i){const l=vL(i[s]);GK(e,s,l)}}function KK(e,t,n){var r,o;const i=Object.keys(t).filter(l=>!e.hasValue(l)),s=i.length;if(!!s)for(let l=0;lT5(e,i,n));r=Promise.all(o)}else if(typeof t=="string")r=T5(e,t,n);else{const o=typeof t=="function"?Pm(e,t,n.custom):t;r=eP(e,o,n)}return r.then(()=>e.notifyAnimationComplete(t))}function T5(e,t,n={}){var r;const o=Pm(e,t,n.custom);let{transition:i=e.getDefaultTransition()||{}}=o||{};n.transitionOverride&&(i=n.transitionOverride);const s=o?()=>eP(e,o,n):()=>Promise.resolve(),l=!((r=e.variantChildren)===null||r===void 0)&&r.size?(d=0)=>{const{delayChildren:f=0,staggerChildren:h,staggerDirection:m}=i;return QK(e,t,f+d,h,m,n)}:()=>Promise.resolve(),{when:c}=i;if(c){const[d,f]=c==="beforeChildren"?[s,l]:[l,s];return d().then(f)}else return Promise.all([s(),l(n.delay)])}function eP(e,t,{delay:n=0,transitionOverride:r,type:o}={}){var i;let{transition:s=e.getDefaultTransition(),transitionEnd:l,...c}=e.makeTargetAnimatable(t);const d=e.getValue("willChange");r&&(s=r);const f=[],h=o&&((i=e.animationState)===null||i===void 0?void 0:i.getState()[o]);for(const m in c){const g=e.getValue(m),b=c[m];if(!g||b===void 0||h&&eq(h,m))continue;let S={delay:n,...s};e.shouldReduceMotion&&Pf.has(m)&&(S={...S,type:!1,delay:0});let _=c3(m,g,b,S);h0(d)&&(d.add(m),_=_.then(()=>d.remove(m))),f.push(_)}return Promise.all(f).then(()=>{l&&ZK(e,l)})}function QK(e,t,n=0,r=0,o=1,i){const s=[],l=(e.variantChildren.size-1)*r,c=o===1?(d=0)=>d*r:(d=0)=>l-d*r;return Array.from(e.variantChildren).sort(JK).forEach((d,f)=>{s.push(T5(d,t,{...i,delay:n+c(f)}).then(()=>d.notifyAnimationComplete(t)))}),Promise.all(s)}function JK(e,t){return e.sortNodePosition(t)}function eq({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,r}const p3=[It.Animate,It.InView,It.Focus,It.Hover,It.Tap,It.Drag,It.Exit],tq=[...p3].reverse(),nq=p3.length;function rq(e){return t=>Promise.all(t.map(({animation:n,options:r})=>XK(e,n,r)))}function oq(e){let t=rq(e);const n=aq();let r=!0;const o=(c,d)=>{const f=Pm(e,d);if(f){const{transition:h,transitionEnd:m,...g}=f;c={...c,...g,...m}}return c};function i(c){t=c(e)}function s(c,d){var f;const h=e.getProps(),m=e.getVariantContext(!0)||{},g=[],b=new Set;let S={},_=1/0;for(let x=0;x_&&M;const te=Array.isArray(A)?A:[A];let Le=te.reduce(o,{});N===!1&&(Le={});const{prevResolvedValues:me={}}=L,ge={...me,...Le},de=ve=>{j=!0,b.delete(ve),L.needsAnimating[ve]=!0};for(const ve in ge){const oe=Le[ve],H=me[ve];S.hasOwnProperty(ve)||(oe!==H?Qd(oe)&&Qd(H)?!KL(oe,H)||Z?de(ve):L.protectedKeys[ve]=!0:oe!==void 0?de(ve):b.add(ve):oe!==void 0&&b.has(ve)?de(ve):L.protectedKeys[ve]=!0)}L.prevProp=A,L.prevResolvedValues=Le,L.isActive&&(S={...S,...Le}),r&&e.blockInitialAnimation&&(j=!1),j&&!$&&g.push(...te.map(ve=>({animation:ve,options:{type:k,...c}})))}if(b.size){const x={};b.forEach(k=>{const L=e.getBaseTarget(k);L!==void 0&&(x[k]=L)}),g.push({animation:x})}let w=Boolean(g.length);return r&&h.initial===!1&&!e.manuallyAnimateOnMount&&(w=!1),r=!1,w?t(g):Promise.resolve()}function l(c,d,f){var h;if(n[c].isActive===d)return Promise.resolve();(h=e.variantChildren)===null||h===void 0||h.forEach(g=>{var b;return(b=g.animationState)===null||b===void 0?void 0:b.setActive(c,d)}),n[c].isActive=d;const m=s(f,c);for(const g in n)n[g].protectedKeys={};return m}return{animateChanges:s,setActive:l,setAnimateFunction:i,getState:()=>n}}function iq(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!KL(t,e):!1}function Cs(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function aq(){return{[It.Animate]:Cs(!0),[It.InView]:Cs(),[It.Hover]:Cs(),[It.Tap]:Cs(),[It.Drag]:Cs(),[It.Focus]:Cs(),[It.Exit]:Cs()}}const sq={animation:Wa(({visualElement:e,animate:t})=>{e.animationState||(e.animationState=oq(e)),bm(t)&&C.exports.useEffect(()=>t.subscribe(e),[t])}),exit:Wa(e=>{const{custom:t,visualElement:n}=e,[r,o]=a3(),i=C.exports.useContext(Hu);C.exports.useEffect(()=>{n.isPresent=r;const s=n.animationState&&n.animationState.setActive(It.Exit,!r,{custom:i&&i.custom||t});s&&!r&&s.then(o)},[r])})};class tP{constructor(t,n,{transformPagePoint:r}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=k2(this.lastMoveEventInfo,this.history),f=this.startEvent!==null,h=i3(d.offset,{x:0,y:0})>=3;if(!f&&!h)return;const{point:m}=d,{timestamp:g}=P5();this.history.push({...m,timestamp:g});const{onStart:b,onMove:S}=this.handlers;f||(b&&b(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),S&&S(this.lastMoveEvent,d)},this.handlePointerMove=(d,f)=>{if(this.lastMoveEvent=d,this.lastMoveEventInfo=C2(f,this.transformPagePoint),bL(d)&&d.buttons===0){this.handlePointerUp(d,f);return}gi.update(this.updatePoint,!0)},this.handlePointerUp=(d,f)=>{this.end();const{onEnd:h,onSessionEnd:m}=this.handlers,g=k2(C2(f,this.transformPagePoint),this.history);this.startEvent&&h&&h(d,g),m&&m(d,g)},SL(t)&&t.touches.length>1)return;this.handlers=n,this.transformPagePoint=r;const o=Xb(t),i=C2(o,this.transformPagePoint),{point:s}=i,{timestamp:l}=P5();this.history=[{...s,timestamp:l}];const{onSessionStart:c}=n;c&&c(t,k2(i,this.history)),this.removeListeners=km(fu(window,"pointermove",this.handlePointerMove),fu(window,"pointerup",this.handlePointerUp),fu(window,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),nf.update(this.updatePoint)}}function C2(e,t){return t?{point:t(e.point)}:e}function zw(e,t){return{x:e.x-t.x,y:e.y-t.y}}function k2({point:e},t){return{point:e,delta:zw(e,nP(t)),offset:zw(e,lq(t)),velocity:uq(t,.1)}}function lq(e){return e[0]}function nP(e){return e[e.length-1]}function uq(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const o=nP(e);for(;n>=0&&(r=e[n],!(o.timestamp-r.timestamp>p0(t)));)n--;if(!r)return{x:0,y:0};const i=(o.timestamp-r.timestamp)/1e3;if(i===0)return{x:0,y:0};const s={x:(o.x-r.x)/i,y:(o.y-r.y)/i};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}function Kr(e){return e.max-e.min}function $w(e,t=0,n=.01){return i3(e,t)n&&(e=r?nn(n,e,r.max):Math.min(e,n)),e}function Ww(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function fq(e,{top:t,left:n,bottom:r,right:o}){return{x:Ww(e.x,n,o),y:Ww(e.y,t,r)}}function jw(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.minr?n=Jd(t.min,t.max-r,e.min):r>o&&(n=Jd(e.min,e.max-o,t.min)),c0(0,1,n)}function mq(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const A5=.35;function gq(e=A5){return e===!1?e=0:e===!0&&(e=A5),{x:Hw(e,"left","right"),y:Hw(e,"top","bottom")}}function Hw(e,t,n){return{min:Uw(e,t),max:Uw(e,n)}}function Uw(e,t){var n;return typeof e=="number"?e:(n=e[t])!==null&&n!==void 0?n:0}const Gw=()=>({translate:0,scale:1,origin:0,originPoint:0}),yd=()=>({x:Gw(),y:Gw()}),Zw=()=>({min:0,max:0}),Dn=()=>({x:Zw(),y:Zw()});function ri(e){return[e("x"),e("y")]}function rP({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function vq({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function yq(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function _2(e){return e===void 0||e===1}function oP({scale:e,scaleX:t,scaleY:n}){return!_2(e)||!_2(t)||!_2(n)}function Aa(e){return oP(e)||Kw(e.x)||Kw(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function Kw(e){return e&&e!=="0%"}function m0(e,t,n){const r=e-n,o=t*r;return n+o}function qw(e,t,n,r,o){return o!==void 0&&(e=m0(e,o,r)),m0(e,n,r)+t}function I5(e,t=0,n=1,r,o){e.min=qw(e.min,t,n,r,o),e.max=qw(e.max,t,n,r,o)}function iP(e,{x:t,y:n}){I5(e.x,t.translate,t.scale,t.originPoint),I5(e.y,n.translate,n.scale,n.originPoint)}function bq(e,t,n,r=!1){var o,i;const s=n.length;if(!s)return;t.x=t.y=1;let l,c;for(let d=0;d{this.stopAnimation(),n&&this.snapToCursor(Xb(l,"page").point)},o=(l,c)=>{var d;const{drag:f,dragPropagation:h,onDragStart:m}=this.getProps();f&&!h&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=kL(f),!this.openGlobalLock)||(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),ri(g=>{var b,S;let _=this.getAxisMotionValue(g).get()||0;if(mi.test(_)){const w=(S=(b=this.visualElement.projection)===null||b===void 0?void 0:b.layout)===null||S===void 0?void 0:S.actual[g];w&&(_=Kr(w)*(parseFloat(_)/100))}this.originPoint[g]=_}),m?.(l,c),(d=this.visualElement.animationState)===null||d===void 0||d.setActive(It.Drag,!0))},i=(l,c)=>{const{dragPropagation:d,dragDirectionLock:f,onDirectionLock:h,onDrag:m}=this.getProps();if(!d&&!this.openGlobalLock)return;const{offset:g}=c;if(f&&this.currentDirection===null){this.currentDirection=_q(g),this.currentDirection!==null&&h?.(this.currentDirection);return}this.updateAxis("x",c.point,g),this.updateAxis("y",c.point,g),this.visualElement.syncRender(),m?.(l,c)},s=(l,c)=>this.stop(l,c);this.panSession=new tP(t,{onSessionStart:r,onStart:o,onMove:i,onSessionEnd:s},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(t,n){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:o}=n;this.startAnimation(o);const{onDragEnd:i}=this.getProps();i?.(t,n)}cancel(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(It.Drag,!1)}updateAxis(t,n,r){const{drag:o}=this.getProps();if(!r||!kh(t,o,this.currentDirection))return;const i=this.getAxisMotionValue(t);let s=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(s=dq(s,this.constraints[t],this.elastic[t])),i.set(s)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),{layout:r}=this.visualElement.projection||{},o=this.constraints;t&&nu(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&r?this.constraints=fq(r.actual,t):this.constraints=!1,this.elastic=gq(n),o!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&ri(i=>{this.getAxisMotionValue(i)&&(this.constraints[i]=mq(r.actual[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!nu(t))return!1;const r=t.current,{projection:o}=this.visualElement;if(!o||!o.layout)return!1;const i=wq(r,o.root,this.visualElement.getTransformPagePoint());let s=pq(o.layout.actual,i);if(n){const l=n(vq(s));this.hasMutatedConstraints=!!l,l&&(s=rP(l))}return s}startAnimation(t){const{drag:n,dragMomentum:r,dragElastic:o,dragTransition:i,dragSnapToOrigin:s,onDragTransitionEnd:l}=this.getProps(),c=this.constraints||{},d=ri(f=>{var h;if(!kh(f,n,this.currentDirection))return;let m=(h=c?.[f])!==null&&h!==void 0?h:{};s&&(m={min:0,max:0});const g=o?200:1e6,b=o?40:1e7,S={type:"inertia",velocity:r?t[f]:0,bounceStiffness:g,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...i,...m};return this.startAxisValueAnimation(f,S)});return Promise.all(d).then(l)}startAxisValueAnimation(t,n){const r=this.getAxisMotionValue(t);return c3(t,r,0,n)}stopAnimation(){ri(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){var n,r;const o="_drag"+t.toUpperCase(),i=this.visualElement.getProps()[o];return i||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)}snapToCursor(t){ri(n=>{const{drag:r}=this.getProps();if(!kh(n,r,this.currentDirection))return;const{projection:o}=this.visualElement,i=this.getAxisMotionValue(n);if(o&&o.layout){const{min:s,max:l}=o.layout.actual[n];i.set(t[n]-nn(s,l,.5))}})}scalePositionWithinConstraints(){var t;const{drag:n,dragConstraints:r}=this.getProps(),{projection:o}=this.visualElement;if(!nu(r)||!o||!this.constraints)return;this.stopAnimation();const i={x:0,y:0};ri(l=>{const c=this.getAxisMotionValue(l);if(c){const d=c.get();i[l]=hq({min:d,max:d},this.constraints[l])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.getInstance().style.transform=s?s({},""):"none",(t=o.root)===null||t===void 0||t.updateScroll(),o.updateLayout(),this.resolveConstraints(),ri(l=>{if(!kh(l,n,null))return;const c=this.getAxisMotionValue(l),{min:d,max:f}=this.constraints[l];c.set(nn(d,f,i[l]))})}addListeners(){var t;Cq.set(this.visualElement,this);const n=this.visualElement.getInstance(),r=fu(n,"pointerdown",d=>{const{drag:f,dragListener:h=!0}=this.getProps();f&&h&&this.start(d)}),o=()=>{const{dragConstraints:d}=this.getProps();nu(d)&&(this.constraints=this.resolveRefConstraints())},{projection:i}=this.visualElement,s=i.addEventListener("measure",o);i&&!i.layout&&((t=i.root)===null||t===void 0||t.updateScroll(),i.updateLayout()),o();const l=wm(window,"resize",()=>this.scalePositionWithinConstraints()),c=i.addEventListener("didUpdate",({delta:d,hasLayoutChanged:f})=>{this.isDragging&&f&&(ri(h=>{const m=this.getAxisMotionValue(h);!m||(this.originPoint[h]+=d[h].translate,m.set(m.get()+d[h].translate))}),this.visualElement.syncRender())});return()=>{l(),r(),s(),c?.()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:r=!1,dragPropagation:o=!1,dragConstraints:i=!1,dragElastic:s=A5,dragMomentum:l=!0}=t;return{...t,drag:n,dragDirectionLock:r,dragPropagation:o,dragConstraints:i,dragElastic:s,dragMomentum:l}}}function kh(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function _q(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}function Eq(e){const{dragControls:t,visualElement:n}=e,r=xm(()=>new kq(n));C.exports.useEffect(()=>t&&t.subscribe(r),[r,t]),C.exports.useEffect(()=>r.addListeners(),[r])}function Lq({onPan:e,onPanStart:t,onPanEnd:n,onPanSessionStart:r,visualElement:o}){const i=e||t||n||r,s=C.exports.useRef(null),{transformPagePoint:l}=C.exports.useContext(jb),c={onSessionStart:r,onStart:t,onMove:e,onEnd:(f,h)=>{s.current=null,n&&n(f,h)}};C.exports.useEffect(()=>{s.current!==null&&s.current.updateHandlers(c)});function d(f){s.current=new tP(f,c,{transformPagePoint:l})}l0(o,"pointerdown",i&&d),Qb(()=>s.current&&s.current.end())}const Pq={pan:Wa(Lq),drag:Wa(Eq)},R5={current:null},sP={current:!1};function Tq(){if(sP.current=!0,!!Qs)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>R5.current=e.matches;e.addListener(t),t()}else R5.current=!1}const _h=["LayoutMeasure","BeforeLayoutMeasure","LayoutUpdate","ViewportBoxUpdate","Update","Render","AnimationComplete","LayoutAnimationComplete","AnimationStart","LayoutAnimationStart","SetAxisTarget","Unmount"];function Aq(){const e=_h.map(()=>new md),t={},n={clearAllListeners:()=>e.forEach(r=>r.clear()),updatePropListeners:r=>{_h.forEach(o=>{var i;const s="on"+o,l=r[s];(i=t[o])===null||i===void 0||i.call(t),l&&(t[o]=n[s](l))})}};return e.forEach((r,o)=>{n["on"+_h[o]]=i=>r.add(i),n["notify"+_h[o]]=(...i)=>r.notify(...i)}),n}function Iq(e,t,n){const{willChange:r}=t;for(const o in t){const i=t[o],s=n[o];if(xi(i))e.addValue(o,i),h0(r)&&r.add(o);else if(xi(s))e.addValue(o,Tu(i)),h0(r)&&r.remove(o);else if(s!==i)if(e.hasValue(o)){const l=e.getValue(o);!l.hasAnimated&&l.set(i)}else{const l=e.getStaticValue(o);e.addValue(o,Tu(l!==void 0?l:i))}}for(const o in n)t[o]===void 0&&e.removeValue(o);return t}const lP=Object.keys(Yd),Rq=lP.length,uP=({treeType:e="",build:t,getBaseTarget:n,makeTargetAnimatable:r,measureViewportBox:o,render:i,readValueFromInstance:s,removeValueFromRenderState:l,sortNodePosition:c,scrapeMotionValuesFromProps:d})=>({parent:f,props:h,presenceId:m,blockInitialAnimation:g,visualState:b,reducedMotionConfig:S},_={})=>{let w=!1;const{latestValues:x,renderState:k}=b;let L;const A=Aq(),M=new Map,N=new Map;let $={};const Z={...x};let j;function te(){!L||!w||(Le(),i(L,k,h.style,Q.projection))}function Le(){t(Q,k,x,_,h)}function me(){A.notifyUpdate(x)}function ge(q,R){const U=R.onChange(fe=>{x[q]=fe,h.onUpdate&&gi.update(me,!1,!0)}),ue=R.onRenderRequest(Q.scheduleRender);N.set(q,()=>{U(),ue()})}const{willChange:de,...ve}=d(h);for(const q in ve){const R=ve[q];x[q]!==void 0&&xi(R)&&(R.set(x[q],!1),h0(de)&&de.add(q))}const oe=Sm(h),H=YE(h),Q={treeType:e,current:null,depth:f?f.depth+1:0,parent:f,children:new Set,presenceId:m,shouldReduceMotion:null,variantChildren:H?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:Boolean(f?.isMounted()),blockInitialAnimation:g,isMounted:()=>Boolean(L),mount(q){w=!0,L=Q.current=q,Q.projection&&Q.projection.mount(q),H&&f&&!oe&&(j=f?.addVariantChild(Q)),M.forEach((R,U)=>ge(U,R)),sP.current||Tq(),Q.shouldReduceMotion=S==="never"?!1:S==="always"?!0:R5.current,f?.children.add(Q),Q.setProps(h)},unmount(){var q;(q=Q.projection)===null||q===void 0||q.unmount(),nf.update(me),nf.render(te),N.forEach(R=>R()),j?.(),f?.children.delete(Q),A.clearAllListeners(),L=void 0,w=!1},loadFeatures(q,R,U,ue,fe,be){const Se=[];for(let Te=0;TeQ.scheduleRender(),animationType:typeof pe=="string"?pe:"both",initialPromotionConfig:be,layoutScroll:ct})}return Se},addVariantChild(q){var R;const U=Q.getClosestVariantNode();if(U)return(R=U.variantChildren)===null||R===void 0||R.add(q),()=>U.variantChildren.delete(q)},sortNodePosition(q){return!c||e!==q.treeType?0:c(Q.getInstance(),q.getInstance())},getClosestVariantNode:()=>H?Q:f?.getClosestVariantNode(),getLayoutId:()=>h.layoutId,getInstance:()=>L,getStaticValue:q=>x[q],setStaticValue:(q,R)=>x[q]=R,getLatestValues:()=>x,setVisibility(q){Q.isVisible!==q&&(Q.isVisible=q,Q.scheduleRender())},makeTargetAnimatable(q,R=!0){return r(Q,q,h,R)},measureViewportBox(){return o(L,h)},addValue(q,R){Q.hasValue(q)&&Q.removeValue(q),M.set(q,R),x[q]=R.get(),ge(q,R)},removeValue(q){var R;M.delete(q),(R=N.get(q))===null||R===void 0||R(),N.delete(q),delete x[q],l(q,k)},hasValue:q=>M.has(q),getValue(q,R){let U=M.get(q);return U===void 0&&R!==void 0&&(U=Tu(R),Q.addValue(q,U)),U},forEachValue:q=>M.forEach(q),readValue:q=>x[q]!==void 0?x[q]:s(L,q,_),setBaseTarget(q,R){Z[q]=R},getBaseTarget(q){if(n){const R=n(h,q);if(R!==void 0&&!xi(R))return R}return Z[q]},...A,build(){return Le(),k},scheduleRender(){gi.render(te,!1,!0)},syncRender:te,setProps(q){(q.transformTemplate||h.transformTemplate)&&Q.scheduleRender(),h=q,A.updatePropListeners(q),$=Iq(Q,d(h),$)},getProps:()=>h,getVariant:q=>{var R;return(R=h.variants)===null||R===void 0?void 0:R[q]},getDefaultTransition:()=>h.transition,getTransformPagePoint:()=>h.transformPagePoint,getVariantContext(q=!1){if(q)return f?.getVariantContext();if(!oe){const U=f?.getVariantContext()||{};return h.initial!==void 0&&(U.initial=h.initial),U}const R={};for(let U=0;U{const i=o.get();if(!O5(i))return;const s=M5(i,r);s&&o.set(s)});for(const o in t){const i=t[o];if(!O5(i))continue;const s=M5(i,r);!s||(t[o]=s,n&&n[o]===void 0&&(n[o]=i))}return{target:t,transitionEnd:n}}const Dq=new Set(["width","height","top","left","right","bottom","x","y"]),fP=e=>Dq.has(e),zq=e=>Object.keys(e).some(fP),pP=(e,t)=>{e.set(t,!1),e.set(t)},Xw=e=>e===Js||e===De;var Qw;(function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"})(Qw||(Qw={}));const Jw=(e,t)=>parseFloat(e.split(", ")[t]),e8=(e,t)=>(n,{transform:r})=>{if(r==="none"||!r)return 0;const o=r.match(/^matrix3d\((.+)\)$/);if(o)return Jw(o[1],t);{const i=r.match(/^matrix\((.+)\)$/);return i?Jw(i[1],e):0}},$q=new Set(["x","y","z"]),Bq=a0.filter(e=>!$q.has(e));function Fq(e){const t=[];return Bq.forEach(n=>{const r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))}),t.length&&e.syncRender(),t}const t8={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:e8(4,13),y:e8(5,14)},Vq=(e,t,n)=>{const r=t.measureViewportBox(),o=t.getInstance(),i=getComputedStyle(o),{display:s}=i,l={};s==="none"&&t.setStaticValue("display",e.display||"block"),n.forEach(d=>{l[d]=t8[d](r,i)}),t.syncRender();const c=t.measureViewportBox();return n.forEach(d=>{const f=t.getValue(d);pP(f,l[d]),e[d]=t8[d](c,i)}),e},Wq=(e,t,n={},r={})=>{t={...t},r={...r};const o=Object.keys(t).filter(fP);let i=[],s=!1;const l=[];if(o.forEach(c=>{const d=e.getValue(c);if(!e.hasValue(c))return;let f=n[c],h=zc(f);const m=t[c];let g;if(Qd(m)){const b=m.length,S=m[0]===null?1:0;f=m[S],h=zc(f);for(let _=S;_=0?window.pageYOffset:null,d=Vq(t,e,l);return i.length&&i.forEach(([f,h])=>{e.getValue(f).set(h)}),e.syncRender(),Qs&&c!==null&&window.scrollTo({top:c}),{target:d,transitionEnd:r}}else return{target:t,transitionEnd:r}};function jq(e,t,n,r){return zq(t)?Wq(e,t,n,r):{target:t,transitionEnd:r}}const Hq=(e,t,n,r)=>{const o=Nq(e,t,r);return t=o.target,r=o.transitionEnd,jq(e,t,n,r)};function Uq(e){return window.getComputedStyle(e)}const hP={treeType:"dom",readValueFromInstance(e,t){if(Pf.has(t)){const n=s3(t);return n&&n.default||0}else{const n=Uq(e),r=(JE(t)?n.getPropertyValue(t):n[t])||0;return typeof r=="string"?r.trim():r}},sortNodePosition(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox(e,{transformPagePoint:t}){return aP(e,t)},resetTransform(e,t,n){const{transformTemplate:r}=n;t.style.transform=r?r({},""):"none",e.scheduleRender()},restoreTransform(e,t){e.style.transform=t.style.transform},removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]},makeTargetAnimatable(e,{transition:t,transitionEnd:n,...r},{transformValues:o},i=!0){let s=YK(r,t||{},e);if(o&&(n&&(n=o(n)),r&&(r=o(r)),s&&(s=o(s))),i){KK(e,r,s);const l=Hq(e,r,s,n);n=l.transitionEnd,r=l.target}return{transition:t,transitionEnd:n,...r}},scrapeMotionValuesFromProps:Yb,build(e,t,n,r,o){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?"visible":"hidden"),Zb(t,n,r,o.transformTemplate)},render:fL},Gq=uP(hP),Zq=uP({...hP,getBaseTarget(e,t){return e[t]},readValueFromInstance(e,t){var n;return Pf.has(t)?((n=s3(t))===null||n===void 0?void 0:n.default)||0:(t=pL.has(t)?t:dL(t),e.getAttribute(t))},scrapeMotionValuesFromProps:mL,build(e,t,n,r,o){qb(t,n,r,o.transformTemplate)},render:hL}),Kq=(e,t)=>Ub(e)?Zq(t,{enableHardwareAcceleration:!1}):Gq(t,{enableHardwareAcceleration:!0});function n8(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const $c={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(De.test(e))e=parseFloat(e);else return e;const n=n8(e,t.target.x),r=n8(e,t.target.y);return`${n}% ${r}%`}},r8="_$css",qq={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,o=e.includes("var("),i=[];o&&(e=e.replace(dP,g=>(i.push(g),r8)));const s=aa.parse(e);if(s.length>5)return r;const l=aa.createTransformer(e),c=typeof s[0]!="number"?1:0,d=n.x.scale*t.x,f=n.y.scale*t.y;s[0+c]/=d,s[1+c]/=f;const h=nn(d,f,.5);typeof s[2+c]=="number"&&(s[2+c]/=h),typeof s[3+c]=="number"&&(s[3+c]/=h);let m=l(s);if(o){let g=0;m=m.replace(r8,()=>{const b=i[g];return g++,b})}return m}};class Yq extends X.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r,layoutId:o}=this.props,{projection:i}=t;lG(Qq),i&&(n.group&&n.group.add(i),r&&r.register&&o&&r.register(i),i.root.didUpdate(),i.addEventListener("animationComplete",()=>{this.safeToRemove()}),i.setOptions({...i.options,onExitComplete:()=>this.safeToRemove()})),fd.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:r,drag:o,isPresent:i}=this.props,s=r.projection;return s&&(s.isPresent=i,o||t.layoutDependency!==n||n===void 0?s.willUpdate():this.safeToRemove(),t.isPresent!==i&&(i?s.promote():s.relegate()||gi.postRender(()=>{var l;!((l=s.getStack())===null||l===void 0)&&l.members.length||this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),!t.currentAnimation&&t.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:r}=this.props,{projection:o}=t;o&&(o.scheduleCheckAfterUnmount(),n?.group&&n.group.remove(o),r?.deregister&&r.deregister(o))}safeToRemove(){const{safeToRemove:t}=this.props;t?.()}render(){return null}}function Xq(e){const[t,n]=a3(),r=C.exports.useContext(Hb);return v(Yq,{...e,layoutGroup:r,switchLayoutGroup:C.exports.useContext(XE),isPresent:t,safeToRemove:n})}const Qq={borderRadius:{...$c,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:$c,borderTopRightRadius:$c,borderBottomLeftRadius:$c,borderBottomRightRadius:$c,boxShadow:qq},Jq={measureLayout:Xq};function eY(e,t,n={}){const r=xi(e)?e:Tu(e);return c3("",r,t,n),{stop:()=>r.stop(),isAnimating:()=>r.isAnimating()}}const mP=["TopLeft","TopRight","BottomLeft","BottomRight"],tY=mP.length,o8=e=>typeof e=="string"?parseFloat(e):e,i8=e=>typeof e=="number"||De.test(e);function nY(e,t,n,r,o,i){var s,l,c,d;o?(e.opacity=nn(0,(s=n.opacity)!==null&&s!==void 0?s:1,rY(r)),e.opacityExit=nn((l=t.opacity)!==null&&l!==void 0?l:1,0,oY(r))):i&&(e.opacity=nn((c=t.opacity)!==null&&c!==void 0?c:1,(d=n.opacity)!==null&&d!==void 0?d:1,r));for(let f=0;frt?1:n(Jd(e,t,r))}function s8(e,t){e.min=t.min,e.max=t.max}function Ro(e,t){s8(e.x,t.x),s8(e.y,t.y)}function l8(e,t,n,r,o){return e-=t,e=m0(e,1/n,r),o!==void 0&&(e=m0(e,1/o,r)),e}function iY(e,t=0,n=1,r=.5,o,i=e,s=e){if(mi.test(t)&&(t=parseFloat(t),t=nn(s.min,s.max,t/100)-s.min),typeof t!="number")return;let l=nn(i.min,i.max,r);e===i&&(l-=t),e.min=l8(e.min,t,n,l,o),e.max=l8(e.max,t,n,l,o)}function u8(e,t,[n,r,o],i,s){iY(e,t[n],t[r],t[o],t.scale,i,s)}const aY=["x","scaleX","originX"],sY=["y","scaleY","originY"];function c8(e,t,n,r){u8(e.x,t,aY,n?.x,r?.x),u8(e.y,t,sY,n?.y,r?.y)}function d8(e){return e.translate===0&&e.scale===1}function vP(e){return d8(e.x)&&d8(e.y)}function yP(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}function f8(e){return Kr(e.x)/Kr(e.y)}function lY(e,t,n=.01){return i3(e,t)<=n}class uY{constructor(){this.members=[]}add(t){d3(this.members,t),t.scheduleRender()}remove(t){if(f3(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(t){const n=this.members.findIndex(o=>t===o);if(n===0)return!1;let r;for(let o=n;o>=0;o--){const i=this.members[o];if(i.isPresent!==!1){r=i;break}}return r?(this.promote(r),!0):!1}promote(t,n){var r;const o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:i}=t.options;i===!1&&o.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var n,r,o,i,s;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(s=(o=t.resumingFrom)===null||o===void 0?void 0:(i=o.options).onExitComplete)===null||s===void 0||s.call(i)})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const cY="translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)";function p8(e,t,n){const r=e.x.translate/t.x,o=e.y.translate/t.y;let i=`translate3d(${r}px, ${o}px, 0) `;if(i+=`scale(${1/t.x}, ${1/t.y}) `,n){const{rotate:c,rotateX:d,rotateY:f}=n;c&&(i+=`rotate(${c}deg) `),d&&(i+=`rotateX(${d}deg) `),f&&(i+=`rotateY(${f}deg) `)}const s=e.x.scale*t.x,l=e.y.scale*t.y;return i+=`scale(${s}, ${l})`,i===cY?"none":i}const dY=(e,t)=>e.depth-t.depth;class fY{constructor(){this.children=[],this.isDirty=!1}add(t){d3(this.children,t),this.isDirty=!0}remove(t){f3(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(dY),this.isDirty=!1,this.children.forEach(t)}}const h8=["","X","Y","Z"],m8=1e3;function bP({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:o}){return class{constructor(s,l={},c=t?.()){this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach(yY),this.nodes.forEach(bY)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=s,this.latestValues=l,this.root=c?c.root||c:this,this.path=c?[...c.path,c]:[],this.parent=c,this.depth=c?c.depth+1:0,s&&this.root.registerPotentialNode(s,this);for(let d=0;dthis.root.updateBlockedByResize=!1;e(s,()=>{this.root.updateBlockedByResize=!0,clearTimeout(m),m=window.setTimeout(g,250),fd.hasAnimatedSinceResize&&(fd.hasAnimatedSinceResize=!1,this.nodes.forEach(vY))})}d&&this.root.registerSharedNode(d,this),this.options.animate!==!1&&h&&(d||f)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:g,hasRelativeTargetChanged:b,layout:S})=>{var _,w,x,k,L;if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const A=(w=(_=this.options.transition)!==null&&_!==void 0?_:h.getDefaultTransition())!==null&&w!==void 0?w:kY,{onLayoutAnimationStart:M,onLayoutAnimationComplete:N}=h.getProps(),$=!this.targetLayout||!yP(this.targetLayout,S)||b,Z=!g&&b;if(((x=this.resumeFrom)===null||x===void 0?void 0:x.instance)||Z||g&&($||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(m,Z);const j={...u3(A,"layout"),onPlay:M,onComplete:N};h.shouldReduceMotion&&(j.delay=0,j.type=!1),this.startAnimation(j)}else!g&&this.animationProgress===0&&this.finishAnimation(),this.isLead()&&((L=(k=this.options).onExitComplete)===null||L===void 0||L.call(k));this.targetLayout=S})}unmount(){var s,l;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(s=this.getStack())===null||s===void 0||s.remove(this),(l=this.parent)===null||l===void 0||l.children.delete(this),this.instance=void 0,nf.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var s;return this.isAnimationBlocked||((s=this.parent)===null||s===void 0?void 0:s.isTreeAnimationBlocked())||!1}startUpdate(){var s;this.isUpdateBlocked()||(this.isUpdating=!0,(s=this.nodes)===null||s===void 0||s.forEach(SY))}willUpdate(s=!0){var l,c,d;if(this.root.isUpdateBlocked()){(c=(l=this.options).onExitComplete)===null||c===void 0||c.call(l);return}if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let g=0;g{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){if(this.snapshot||!this.instance)return;const s=this.measure(),l=this.removeTransform(this.removeElementScroll(s));S8(l),this.snapshot={measured:s,layout:l,latestValues:{}}}updateLayout(){var s;if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let d=0;d{var x;const k=w/1e3;v8(m.x,s.x,k),v8(m.y,s.y,k),this.setTargetDelta(m),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&((x=this.relativeParent)===null||x===void 0?void 0:x.layout)&&(vd(g,this.layout.actual,this.relativeParent.layout.actual),wY(this.relativeTarget,this.relativeTargetOrigin,g,k)),b&&(this.animationValues=h,nY(h,f,this.latestValues,k,_,S)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=k},this.mixTargetDelta(0)}startAnimation(s){var l,c;this.notifyListeners("animationStart"),(l=this.currentAnimation)===null||l===void 0||l.stop(),this.resumingFrom&&((c=this.resumingFrom.currentAnimation)===null||c===void 0||c.stop()),this.pendingAnimation&&(nf.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=gi.update(()=>{fd.hasAnimatedSinceResize=!0,this.currentAnimation=eY(0,m8,{...s,onUpdate:d=>{var f;this.mixTargetDelta(d),(f=s.onUpdate)===null||f===void 0||f.call(s,d)},onComplete:()=>{var d;(d=s.onComplete)===null||d===void 0||d.call(s),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var s;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(s=this.getStack())===null||s===void 0||s.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var s;this.currentAnimation&&((s=this.mixTargetDelta)===null||s===void 0||s.call(this,m8),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const s=this.getLead();let{targetWithTransforms:l,target:c,layout:d,latestValues:f}=s;if(!(!l||!c||!d)){if(this!==s&&this.layout&&d&&SP(this.options.animationType,this.layout.actual,d.actual)){c=this.target||Dn();const h=Kr(this.layout.actual.x);c.x.min=s.target.x.min,c.x.max=c.x.min+h;const m=Kr(this.layout.actual.y);c.y.min=s.target.y.min,c.y.max=c.y.min+m}Ro(l,c),ru(l,f),gd(this.projectionDeltaWithTransform,this.layoutCorrected,l,f)}}registerSharedNode(s,l){var c,d,f;this.sharedNodes.has(s)||this.sharedNodes.set(s,new uY),this.sharedNodes.get(s).add(l),l.promote({transition:(c=l.options.initialPromotionConfig)===null||c===void 0?void 0:c.transition,preserveFollowOpacity:(f=(d=l.options.initialPromotionConfig)===null||d===void 0?void 0:d.shouldPreserveFollowOpacity)===null||f===void 0?void 0:f.call(d,l)})}isLead(){const s=this.getStack();return s?s.lead===this:!0}getLead(){var s;const{layoutId:l}=this.options;return l?((s=this.getStack())===null||s===void 0?void 0:s.lead)||this:this}getPrevLead(){var s;const{layoutId:l}=this.options;return l?(s=this.getStack())===null||s===void 0?void 0:s.prevLead:void 0}getStack(){const{layoutId:s}=this.options;if(s)return this.root.sharedNodes.get(s)}promote({needsReset:s,transition:l,preserveFollowOpacity:c}={}){const d=this.getStack();d&&d.promote(this,c),s&&(this.projectionDelta=void 0,this.needsReset=!0),l&&this.setOptions({transition:l})}relegate(){const s=this.getStack();return s?s.relegate(this):!1}resetRotation(){const{visualElement:s}=this.options;if(!s)return;let l=!1;const c={};for(let d=0;d{var l;return(l=s.currentAnimation)===null||l===void 0?void 0:l.stop()}),this.root.nodes.forEach(g8),this.root.sharedNodes.clear()}}}function pY(e){e.updateLayout()}function hY(e){var t,n,r;const o=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&o&&e.hasListeners("didUpdate")){const{actual:i,measured:s}=e.layout,{animationType:l}=e.options;l==="size"?ri(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=Kr(g);g.min=i[m].min,g.max=g.min+b}):SP(l,o.layout,i)&&ri(m=>{const g=o.isShared?o.measured[m]:o.layout[m],b=Kr(i[m]);g.max=g.min+b});const c=yd();gd(c,i,o.layout);const d=yd();o.isShared?gd(d,e.applyTransform(s,!0),o.measured):gd(d,i,o.layout);const f=!vP(c);let h=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){const{snapshot:m,layout:g}=e.relativeParent;if(m&&g){const b=Dn();vd(b,o.layout,m.layout);const S=Dn();vd(S,i,g.actual),yP(b,S)||(h=!0)}}e.notifyListeners("didUpdate",{layout:i,snapshot:o,delta:d,layoutDelta:c,hasLayoutChanged:f,hasRelativeTargetChanged:h})}else e.isLead()&&((r=(n=e.options).onExitComplete)===null||r===void 0||r.call(n));e.options.transition=void 0}function mY(e){e.clearSnapshot()}function g8(e){e.clearMeasurements()}function gY(e){const{visualElement:t}=e.options;t?.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function vY(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function yY(e){e.resolveTargetDelta()}function bY(e){e.calcProjection()}function SY(e){e.resetRotation()}function xY(e){e.removeLeadSnapshot()}function v8(e,t,n){e.translate=nn(t.translate,0,n),e.scale=nn(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function y8(e,t,n,r){e.min=nn(t.min,n.min,r),e.max=nn(t.max,n.max,r)}function wY(e,t,n,r){y8(e.x,t.x,n.x,r),y8(e.y,t.y,n.y,r)}function CY(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const kY={duration:.45,ease:[.4,0,.1,1]};function _Y(e,t){let n=e.root;for(let i=e.path.length-1;i>=0;i--)if(Boolean(e.path[i].instance)){n=e.path[i];break}const o=(n&&n!==e.root?n.instance:document).querySelector(`[data-projection-id="${t}"]`);o&&e.mount(o,!0)}function b8(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function S8(e){b8(e.x),b8(e.y)}function SP(e,t,n){return e==="position"||e==="preserve-aspect"&&!lY(f8(t),f8(n))}const EY=bP({attachResizeListener:(e,t)=>wm(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),E2={current:void 0},LY=bP({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!E2.current){const e=new EY(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),E2.current=e}return E2.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>Boolean(window.getComputedStyle(e).position==="fixed")}),PY={...sq,...vK,...Pq,...Jq},xo=aG((e,t)=>UG(e,t,PY,Kq,LY));function xP(){const e=C.exports.useRef(!1);return o0(()=>(e.current=!0,()=>{e.current=!1}),[]),e}function TY(){const e=xP(),[t,n]=C.exports.useState(0),r=C.exports.useCallback(()=>{e.current&&n(t+1)},[t]);return[C.exports.useCallback(()=>gi.postRender(r),[r]),t]}class AY extends C.exports.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function IY({children:e,isPresent:t}){const n=C.exports.useId(),r=C.exports.useRef(null),o=C.exports.useRef({width:0,height:0,top:0,left:0});return C.exports.useInsertionEffect(()=>{const{width:i,height:s,top:l,left:c}=o.current;if(t||!r.current||!i||!s)return;r.current.dataset.motionPopId=n;const d=document.createElement("style");return document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` + [data-motion-pop-id="${n}"] { + position: absolute !important; + width: ${i}px !important; + height: ${s}px !important; + top: ${l}px !important; + left: ${c}px !important; + } + `),()=>{document.head.removeChild(d)}},[t]),v(AY,{isPresent:t,childRef:r,sizeRef:o,children:C.exports.cloneElement(e,{ref:r})})}const L2=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:o,presenceAffectsLayout:i,mode:s})=>{const l=xm(RY),c=C.exports.useId(),d=C.exports.useMemo(()=>({id:c,initial:t,isPresent:n,custom:o,onExitComplete:f=>{l.set(f,!0);for(const h of l.values())if(!h)return;r&&r()},register:f=>(l.set(f,!1),()=>l.delete(f))}),i?void 0:[n]);return C.exports.useMemo(()=>{l.forEach((f,h)=>l.set(h,!1))},[n]),C.exports.useEffect(()=>{!n&&!l.size&&r&&r()},[n]),s==="popLayout"&&(e=v(IY,{isPresent:n,children:e})),v(Hu.Provider,{value:d,children:e})};function RY(){return new Map}const Fl=e=>e.key||"";function OY(e,t){e.forEach(n=>{const r=Fl(n);t.set(r,n)})}function MY(e){const t=[];return C.exports.Children.forEach(e,n=>{C.exports.isValidElement(n)&&t.push(n)}),t}const da=({children:e,custom:t,initial:n=!0,onExitComplete:r,exitBeforeEnter:o,presenceAffectsLayout:i=!0,mode:s="sync"})=>{o&&(s="wait",ZL(!1,"Replace exitBeforeEnter with mode='wait'"));let[l]=TY();const c=C.exports.useContext(Hb).forceRender;c&&(l=c);const d=xP(),f=MY(e);let h=f;const m=new Set,g=C.exports.useRef(h),b=C.exports.useRef(new Map).current,S=C.exports.useRef(!0);if(o0(()=>{S.current=!1,OY(f,b),g.current=h}),Qb(()=>{S.current=!0,b.clear(),m.clear()}),S.current)return v(wn,{children:h.map(k=>v(L2,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:i,mode:s,children:k},Fl(k)))});h=[...h];const _=g.current.map(Fl),w=f.map(Fl),x=_.length;for(let k=0;k{if(w.indexOf(k)!==-1)return;const L=b.get(k);if(!L)return;const A=_.indexOf(k),M=()=>{b.delete(k),m.delete(k);const N=g.current.findIndex($=>$.key===k);if(g.current.splice(N,1),!m.size){if(g.current=f,d.current===!1)return;l(),r&&r()}};h.splice(A,0,v(L2,{isPresent:!1,onExitComplete:M,custom:t,presenceAffectsLayout:i,mode:s,children:L},Fl(L)))}),h=h.map(k=>{const L=k.key;return m.has(L)?k:v(L2,{isPresent:!0,presenceAffectsLayout:i,mode:s,children:k},Fl(k))}),GL!=="production"&&s==="wait"&&h.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`),v(wn,{children:m.size?h:h.map(k=>C.exports.cloneElement(k))})};var Of=(...e)=>e.filter(Boolean).join(" ");function NY(){return!1}var DY=e=>{const{condition:t,message:n}=e;t&&NY()&&console.warn(n)},Ns={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]},Bc={scale:{enter:{scale:1},exit:{scale:.95}},fade:{enter:{opacity:1},exit:{opacity:0}},pushLeft:{enter:{x:"100%"},exit:{x:"-30%"}},pushRight:{enter:{x:"-100%"},exit:{x:"30%"}},pushUp:{enter:{y:"100%"},exit:{y:"-30%"}},pushDown:{enter:{y:"-100%"},exit:{y:"30%"}},slideLeft:{position:{left:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"-100%",y:0}},slideRight:{position:{right:0,top:0,bottom:0,width:"100%"},enter:{x:0,y:0},exit:{x:"100%",y:0}},slideUp:{position:{top:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"-100%"}},slideDown:{position:{bottom:0,left:0,right:0,maxWidth:"100vw"},enter:{x:0,y:0},exit:{x:0,y:"100%"}}};function N5(e){switch(e?.direction??"right"){case"right":return Bc.slideRight;case"left":return Bc.slideLeft;case"bottom":return Bc.slideDown;case"top":return Bc.slideUp;default:return Bc.slideRight}}var Bs={enter:{duration:.2,ease:Ns.easeOut},exit:{duration:.1,ease:Ns.easeIn}},Ho={enter:(e,t)=>({...e,delay:typeof t=="number"?t:t?.enter}),exit:(e,t)=>({...e,delay:typeof t=="number"?t:t?.exit})},zY=e=>e!=null&&parseInt(e.toString(),10)>0,x8={exit:{height:{duration:.2,ease:Ns.ease},opacity:{duration:.3,ease:Ns.ease}},enter:{height:{duration:.3,ease:Ns.ease},opacity:{duration:.4,ease:Ns.ease}}},$Y={exit:({animateOpacity:e,startingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:zY(t)?1:0},height:t,transitionEnd:r?.exit,transition:n?.exit??Ho.exit(x8.exit,o)}),enter:({animateOpacity:e,endingHeight:t,transition:n,transitionEnd:r,delay:o})=>({...e&&{opacity:1},height:t,transitionEnd:r?.enter,transition:n?.enter??Ho.enter(x8.enter,o)})},wP=C.exports.forwardRef((e,t)=>{const{in:n,unmountOnExit:r,animateOpacity:o=!0,startingHeight:i=0,endingHeight:s="auto",style:l,className:c,transition:d,transitionEnd:f,...h}=e,[m,g]=C.exports.useState(!1);C.exports.useEffect(()=>{const x=setTimeout(()=>{g(!0)});return()=>clearTimeout(x)},[]),DY({condition:Boolean(i>0&&r),message:"startingHeight and unmountOnExit are mutually exclusive. You can't use them together"});const b=parseFloat(i.toString())>0,S={startingHeight:i,endingHeight:s,animateOpacity:o,transition:m?d:{enter:{duration:0}},transitionEnd:{enter:f?.enter,exit:r?f?.exit:{...f?.exit,display:b?"block":"none"}}},_=r?n:!0,w=n||r?"enter":"exit";return v(da,{initial:!1,custom:S,children:_&&X.createElement(xo.div,{ref:t,...h,className:Of("chakra-collapse",c),style:{overflow:"hidden",display:"block",...l},custom:S,variants:$Y,initial:r?"exit":!1,animate:w,exit:"exit"})})});wP.displayName="Collapse";var BY={enter:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:1,transition:e?.enter??Ho.enter(Bs.enter,n),transitionEnd:t?.enter}),exit:({transition:e,transitionEnd:t,delay:n}={})=>({opacity:0,transition:e?.exit??Ho.exit(Bs.exit,n),transitionEnd:t?.exit})},CP={initial:"exit",animate:"enter",exit:"exit",variants:BY},FY=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,className:i,transition:s,transitionEnd:l,delay:c,...d}=t,f=o||r?"enter":"exit",h=r?o&&r:!0,m={transition:s,transitionEnd:l,delay:c};return v(da,{custom:m,children:h&&X.createElement(xo.div,{ref:n,className:Of("chakra-fade",i),custom:m,...CP,animate:f,...d})})});FY.displayName="Fade";var VY={exit:({reverse:e,initialScale:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,...e?{scale:t,transitionEnd:r?.exit}:{transitionEnd:{scale:t,...r?.exit}},transition:n?.exit??Ho.exit(Bs.exit,o)}),enter:({transitionEnd:e,transition:t,delay:n})=>({opacity:1,scale:1,transition:t?.enter??Ho.enter(Bs.enter,n),transitionEnd:e?.enter})},kP={initial:"exit",animate:"enter",exit:"exit",variants:VY},WY=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,initialScale:s=.95,className:l,transition:c,transitionEnd:d,delay:f,...h}=t,m=r?o&&r:!0,g=o||r?"enter":"exit",b={initialScale:s,reverse:i,transition:c,transitionEnd:d,delay:f};return v(da,{custom:b,children:m&&X.createElement(xo.div,{ref:n,className:Of("chakra-offset-slide",l),...kP,animate:g,custom:b,...h})})});WY.displayName="ScaleFade";var w8={exit:{duration:.15,ease:Ns.easeInOut},enter:{type:"spring",damping:25,stiffness:180}},jY={exit:({direction:e,transition:t,transitionEnd:n,delay:r})=>{const{exit:o}=N5({direction:e});return{...o,transition:t?.exit??Ho.exit(w8.exit,r),transitionEnd:n?.exit}},enter:({direction:e,transitionEnd:t,transition:n,delay:r})=>{const{enter:o}=N5({direction:e});return{...o,transition:n?.enter??Ho.enter(w8.enter,r),transitionEnd:t?.enter}}},_P=C.exports.forwardRef(function(t,n){const{direction:r="right",style:o,unmountOnExit:i,in:s,className:l,transition:c,transitionEnd:d,delay:f,...h}=t,m=N5({direction:r}),g=Object.assign({position:"fixed"},m.position,o),b=i?s&&i:!0,S=s||i?"enter":"exit",_={transitionEnd:d,transition:c,direction:r,delay:f};return v(da,{custom:_,children:b&&X.createElement(xo.div,{...h,ref:n,initial:"exit",className:Of("chakra-slide",l),animate:S,exit:"exit",custom:_,variants:jY,style:g})})});_P.displayName="Slide";var HY={initial:({offsetX:e,offsetY:t,transition:n,transitionEnd:r,delay:o})=>({opacity:0,x:e,y:t,transition:n?.exit??Ho.exit(Bs.exit,o),transitionEnd:r?.exit}),enter:({transition:e,transitionEnd:t,delay:n})=>({opacity:1,x:0,y:0,transition:e?.enter??Ho.enter(Bs.enter,n),transitionEnd:t?.enter}),exit:({offsetY:e,offsetX:t,transition:n,transitionEnd:r,reverse:o,delay:i})=>{const s={x:t,y:e};return{opacity:0,transition:n?.exit??Ho.exit(Bs.exit,i),...o?{...s,transitionEnd:r?.exit}:{transitionEnd:{...s,...r?.exit}}}}},D5={initial:"initial",animate:"enter",exit:"exit",variants:HY},UY=C.exports.forwardRef(function(t,n){const{unmountOnExit:r,in:o,reverse:i=!0,className:s,offsetX:l=0,offsetY:c=8,transition:d,transitionEnd:f,delay:h,...m}=t,g=r?o&&r:!0,b=o||r?"enter":"exit",S={offsetX:l,offsetY:c,reverse:i,transition:d,transitionEnd:f,delay:h};return v(da,{custom:S,children:g&&X.createElement(xo.div,{ref:n,className:Of("chakra-offset-slide",s),custom:S,...D5,animate:b,...m})})});UY.displayName="SlideFade";var Mf=(...e)=>e.filter(Boolean).join(" ");function GY(){return!1}var Tm=e=>{const{condition:t,message:n}=e;t&&GY()&&console.warn(n)};function P2(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[ZY,Am]=Mt({name:"AccordionStylesContext",hookName:"useAccordionStyles",providerName:""}),[KY,h3]=Mt({name:"AccordionItemContext",hookName:"useAccordionItemContext",providerName:""}),[qY,lge,YY,XY]=GE(),EP=le(function(t,n){const{getButtonProps:r}=h3(),o=r(t,n),i=Am(),s={display:"flex",alignItems:"center",width:"100%",outline:0,...i.button};return X.createElement(ee.button,{...o,className:Mf("chakra-accordion__button",t.className),__css:s})});EP.displayName="AccordionButton";function QY(e){const{onChange:t,defaultIndex:n,index:r,allowMultiple:o,allowToggle:i,...s}=e;tX(e),nX(e);const l=YY(),[c,d]=C.exports.useState(-1);C.exports.useEffect(()=>()=>{d(-1)},[]);const[f,h]=KE({value:r,defaultValue(){return o?n??[]:n??-1},onChange:t});return{index:f,setIndex:h,htmlProps:s,getAccordionItemProps:g=>{let b=!1;return g!==null&&(b=Array.isArray(f)?f.includes(g):f===g),{isOpen:b,onChange:_=>{if(g!==null)if(o&&Array.isArray(f)){const w=_?f.concat(g):f.filter(x=>x!==g);h(w)}else _?h(g):i&&h(-1)}}},focusedIndex:c,setFocusedIndex:d,descendants:l}}var[JY,m3]=Mt({name:"AccordionContext",hookName:"useAccordionContext",providerName:"Accordion"});function eX(e){const{isDisabled:t,isFocusable:n,id:r,...o}=e,{getAccordionItemProps:i,setFocusedIndex:s}=m3(),l=C.exports.useRef(null),c=C.exports.useId(),d=r??c,f=`accordion-button-${d}`,h=`accordion-panel-${d}`;rX(e);const{register:m,index:g,descendants:b}=XY({disabled:t&&!n}),{isOpen:S,onChange:_}=i(g===-1?null:g);oX({isOpen:S,isDisabled:t});const w=()=>{_?.(!0)},x=()=>{_?.(!1)},k=C.exports.useCallback(()=>{_?.(!S),s(g)},[g,s,S,_]),L=C.exports.useCallback($=>{const j={ArrowDown:()=>{const te=b.nextEnabled(g);te?.node.focus()},ArrowUp:()=>{const te=b.prevEnabled(g);te?.node.focus()},Home:()=>{const te=b.firstEnabled();te?.node.focus()},End:()=>{const te=b.lastEnabled();te?.node.focus()}}[$.key];j&&($.preventDefault(),j($))},[b,g]),A=C.exports.useCallback(()=>{s(g)},[s,g]),M=C.exports.useCallback(function(Z={},j=null){return{...Z,type:"button",ref:tn(m,l,j),id:f,disabled:!!t,"aria-expanded":!!S,"aria-controls":h,onClick:P2(Z.onClick,k),onFocus:P2(Z.onFocus,A),onKeyDown:P2(Z.onKeyDown,L)}},[f,t,S,k,A,L,h,m]),N=C.exports.useCallback(function(Z={},j=null){return{...Z,ref:j,role:"region",id:h,"aria-labelledby":f,hidden:!S}},[f,S,h]);return{isOpen:S,isDisabled:t,isFocusable:n,onOpen:w,onClose:x,getButtonProps:M,getPanelProps:N,htmlProps:o}}function tX(e){const t=e.index||e.defaultIndex,n=t==null&&!Array.isArray(t)&&e.allowMultiple;Tm({condition:!!n,message:`If 'allowMultiple' is passed, then 'index' or 'defaultIndex' must be an array. You passed: ${typeof t},`})}function nX(e){Tm({condition:!!(e.allowMultiple&&e.allowToggle),message:"If 'allowMultiple' is passed, 'allowToggle' will be ignored. Either remove 'allowToggle' or 'allowMultiple' depending on whether you want multiple accordions visible or not"})}function rX(e){Tm({condition:!!(e.isFocusable&&!e.isDisabled),message:`Using only 'isFocusable', this prop is reserved for situations where you pass 'isDisabled' but you still want the element to receive focus (A11y). Either remove it or pass 'isDisabled' as well. + `})}function oX(e){Tm({condition:e.isOpen&&!!e.isDisabled,message:"Cannot open a disabled accordion item"})}function LP(e){const{isOpen:t,isDisabled:n}=h3(),{reduceMotion:r}=m3(),o=Mf("chakra-accordion__icon",e.className),i=Am(),s={opacity:n?.4:1,transform:t?"rotate(-180deg)":void 0,transition:r?void 0:"transform 0.2s",transformOrigin:"center",...i.icon};return v(ZE,{viewBox:"0 0 24 24","aria-hidden":!0,className:o,__css:s,...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})})}LP.displayName="AccordionIcon";var PP=le(function(t,n){const{children:r,className:o}=t,{htmlProps:i,...s}=eX(t),c={...Am().container,overflowAnchor:"none"},d=C.exports.useMemo(()=>s,[s]);return X.createElement(KY,{value:d},X.createElement(ee.div,{ref:n,...i,className:Mf("chakra-accordion__item",o),__css:c},typeof r=="function"?r({isExpanded:!!s.isOpen,isDisabled:!!s.isDisabled}):r))});PP.displayName="AccordionItem";var TP=le(function(t,n){const{reduceMotion:r}=m3(),{getPanelProps:o,isOpen:i}=h3(),s=o(t,n),l=Mf("chakra-accordion__panel",t.className),c=Am();r||delete s.hidden;const d=X.createElement(ee.div,{...s,__css:c.panel,className:l});return r?d:v(wP,{in:i,children:d})});TP.displayName="AccordionPanel";var AP=le(function({children:t,reduceMotion:n,...r},o){const i=gr("Accordion",r),s=St(r),{htmlProps:l,descendants:c,...d}=QY(s),f=C.exports.useMemo(()=>({...d,reduceMotion:!!n}),[d,n]);return X.createElement(qY,{value:c},X.createElement(JY,{value:f},X.createElement(ZY,{value:i},X.createElement(ee.div,{ref:o,...l,className:Mf("chakra-accordion",r.className),__css:i.root},t))))});AP.displayName="Accordion";var C8={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},Im=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??C8.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??C8.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});Im.displayName="Icon";var iX=(...e)=>e.filter(Boolean).join(" "),aX=_f({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}}),Rm=le((e,t)=>{const n=mr("Spinner",e),{label:r="Loading...",thickness:o="2px",speed:i="0.45s",emptyColor:s="transparent",className:l,...c}=St(e),d=iX("chakra-spinner",l),f={display:"inline-block",borderColor:"currentColor",borderStyle:"solid",borderRadius:"99999px",borderWidth:o,borderBottomColor:s,borderLeftColor:s,animation:`${aX} ${i} linear infinite`,...n};return X.createElement(ee.div,{ref:t,__css:f,className:d,...c},r&&X.createElement(ee.span,{srOnly:!0},r))});Rm.displayName="Spinner";var Om=(...e)=>e.filter(Boolean).join(" ");function sX(e){return v(Im,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"})})}function lX(e){return v(Im,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"})})}function k8(e){return v(Im,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})}var[uX,cX]=Mt({name:"AlertContext",hookName:"useAlertContext",providerName:""}),[dX,g3]=Mt({name:"AlertStylesContext",hookName:"useAlertStyles",providerName:""}),IP={info:{icon:lX,colorScheme:"blue"},warning:{icon:k8,colorScheme:"orange"},success:{icon:sX,colorScheme:"green"},error:{icon:k8,colorScheme:"red"},loading:{icon:Rm,colorScheme:"blue"}};function fX(e){return IP[e].colorScheme}function pX(e){return IP[e].icon}var RP=le(function(t,n){const{status:r="info",addRole:o=!0,...i}=St(t),s=t.colorScheme??fX(r),l=gr("Alert",{...t,colorScheme:s}),c={width:"100%",display:"flex",alignItems:"center",position:"relative",overflow:"hidden",...l.container};return X.createElement(uX,{value:{status:r}},X.createElement(dX,{value:l},X.createElement(ee.div,{role:o?"alert":void 0,ref:n,...i,className:Om("chakra-alert",t.className),__css:c})))});RP.displayName="Alert";var OP=le(function(t,n){const r=g3(),o={display:"inline",...r.description};return X.createElement(ee.div,{ref:n,...t,className:Om("chakra-alert__desc",t.className),__css:o})});OP.displayName="AlertDescription";function MP(e){const{status:t}=cX(),n=pX(t),r=g3(),o=t==="loading"?r.spinner:r.icon;return X.createElement(ee.span,{display:"inherit",...e,className:Om("chakra-alert__icon",e.className),__css:o},e.children||v(n,{h:"100%",w:"100%"}))}MP.displayName="AlertIcon";var NP=le(function(t,n){const r=g3();return X.createElement(ee.div,{ref:n,...t,className:Om("chakra-alert__title",t.className),__css:r.title})});NP.displayName="AlertTitle";function hX(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function mX(e){const{loading:t,src:n,srcSet:r,onLoad:o,onError:i,crossOrigin:s,sizes:l,ignoreFallback:c}=e,[d,f]=C.exports.useState("pending");C.exports.useEffect(()=>{f(n?"loading":"pending")},[n]);const h=C.exports.useRef(),m=C.exports.useCallback(()=>{if(!n)return;g();const b=new Image;b.src=n,s&&(b.crossOrigin=s),r&&(b.srcset=r),l&&(b.sizes=l),t&&(b.loading=t),b.onload=S=>{g(),f("loaded"),o?.(S)},b.onerror=S=>{g(),f("failed"),i?.(S)},h.current=b},[n,s,r,l,o,i,t]),g=()=>{h.current&&(h.current.onload=null,h.current.onerror=null,h.current=null)};return pi(()=>{if(!c)return d==="loading"&&m(),()=>{g()}},[d,m,c]),c?"loaded":d}var gX=(e,t)=>e!=="loaded"&&t==="beforeLoadOrError"||e==="failed"&&t==="onError",g0=le(function(t,n){const{htmlWidth:r,htmlHeight:o,alt:i,...s}=t;return v("img",{width:r,height:o,ref:n,alt:i,...s})});g0.displayName="NativeImage";var Mm=le(function(t,n){const{fallbackSrc:r,fallback:o,src:i,srcSet:s,align:l,fit:c,loading:d,ignoreFallback:f,crossOrigin:h,fallbackStrategy:m="beforeLoadOrError",referrerPolicy:g,...b}=t,S=r!==void 0||o!==void 0,_=d!=null||f||!S,w=mX({...t,ignoreFallback:_}),x=gX(w,m),k={ref:n,objectFit:c,objectPosition:l,..._?b:hX(b,["onError","onLoad"])};return x?o||X.createElement(ee.img,{as:g0,className:"chakra-image__placeholder",src:r,...k}):X.createElement(ee.img,{as:g0,src:i,srcSet:s,crossOrigin:h,loading:d,referrerPolicy:g,className:"chakra-image",...k})});Mm.displayName="Image";le((e,t)=>X.createElement(ee.img,{ref:t,as:g0,className:"chakra-image",...e}));var vX=Object.create,DP=Object.defineProperty,yX=Object.getOwnPropertyDescriptor,zP=Object.getOwnPropertyNames,bX=Object.getPrototypeOf,SX=Object.prototype.hasOwnProperty,$P=(e,t)=>function(){return t||(0,e[zP(e)[0]])((t={exports:{}}).exports,t),t.exports},xX=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of zP(t))!SX.call(e,o)&&o!==n&&DP(e,o,{get:()=>t[o],enumerable:!(r=yX(t,o))||r.enumerable});return e},wX=(e,t,n)=>(n=e!=null?vX(bX(e)):{},xX(t||!e||!e.__esModule?DP(n,"default",{value:e,enumerable:!0}):n,e)),CX=$P({"../../node_modules/.pnpm/react@18.2.0/node_modules/react/cjs/react.production.min.js"(e){var t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),l=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),m=Symbol.iterator;function g(R){return R===null||typeof R!="object"?null:(R=m&&R[m]||R["@@iterator"],typeof R=="function"?R:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},S=Object.assign,_={};function w(R,U,ue){this.props=R,this.context=U,this.refs=_,this.updater=ue||b}w.prototype.isReactComponent={},w.prototype.setState=function(R,U){if(typeof R!="object"&&typeof R!="function"&&R!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,R,U,"setState")},w.prototype.forceUpdate=function(R){this.updater.enqueueForceUpdate(this,R,"forceUpdate")};function x(){}x.prototype=w.prototype;function k(R,U,ue){this.props=R,this.context=U,this.refs=_,this.updater=ue||b}var L=k.prototype=new x;L.constructor=k,S(L,w.prototype),L.isPureReactComponent=!0;var A=Array.isArray,M=Object.prototype.hasOwnProperty,N={current:null},$={key:!0,ref:!0,__self:!0,__source:!0};function Z(R,U,ue){var fe,be={},Se=null,Te=null;if(U!=null)for(fe in U.ref!==void 0&&(Te=U.ref),U.key!==void 0&&(Se=""+U.key),U)M.call(U,fe)&&!$.hasOwnProperty(fe)&&(be[fe]=U[fe]);var pe=arguments.length-2;if(pe===1)be.children=ue;else if(1(0,_8.isValidElement)(t))}/** + * @license React + * react.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + *//** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Dm=(...e)=>e.filter(Boolean).join(" "),E8=e=>e?"":void 0,[_X,EX]=Mt({strict:!1,name:"ButtonGroupContext"});function z5(e){const{children:t,className:n,...r}=e,o=C.exports.isValidElement(t)?C.exports.cloneElement(t,{"aria-hidden":!0,focusable:!1}):t,i=Dm("chakra-button__icon",n);return X.createElement(ee.span,{display:"inline-flex",alignSelf:"center",flexShrink:0,...r,className:i},o)}z5.displayName="ButtonIcon";function $5(e){const{label:t,placement:n,spacing:r="0.5rem",children:o=v(Rm,{color:"currentColor",width:"1em",height:"1em"}),className:i,__css:s,...l}=e,c=Dm("chakra-button__spinner",i),d=n==="start"?"marginEnd":"marginStart",f=C.exports.useMemo(()=>({display:"flex",alignItems:"center",position:t?"relative":"absolute",[d]:t?r:0,fontSize:"1em",lineHeight:"normal",...s}),[s,t,d,r]);return X.createElement(ee.div,{className:c,...l,__css:f},o)}$5.displayName="ButtonSpinner";function LX(e){const[t,n]=C.exports.useState(!e);return{ref:C.exports.useCallback(i=>{!i||n(i.tagName==="BUTTON")},[]),type:t?"button":void 0}}var wi=le((e,t)=>{const n=EX(),r=mr("Button",{...n,...e}),{isDisabled:o=n?.isDisabled,isLoading:i,isActive:s,children:l,leftIcon:c,rightIcon:d,loadingText:f,iconSpacing:h="0.5rem",type:m,spinner:g,spinnerPlacement:b="start",className:S,as:_,...w}=St(e),x=C.exports.useMemo(()=>{const M={...r?._focus,zIndex:1};return{display:"inline-flex",appearance:"none",alignItems:"center",justifyContent:"center",userSelect:"none",position:"relative",whiteSpace:"nowrap",verticalAlign:"middle",outline:"none",...r,...!!n&&{_focus:M}}},[r,n]),{ref:k,type:L}=LX(_),A={rightIcon:d,leftIcon:c,iconSpacing:h,children:l};return X.createElement(ee.button,{disabled:o||i,ref:VU(t,k),as:_,type:m??L,"data-active":E8(s),"data-loading":E8(i),__css:x,className:Dm("chakra-button",S),...w},i&&b==="start"&&v($5,{className:"chakra-button__spinner--start",label:f,placement:"start",spacing:h,children:g}),i?f||X.createElement(ee.span,{opacity:0},v(L8,{...A})):v(L8,{...A}),i&&b==="end"&&v($5,{className:"chakra-button__spinner--end",label:f,placement:"end",spacing:h,children:g}))});wi.displayName="Button";function L8(e){const{leftIcon:t,rightIcon:n,children:r,iconSpacing:o}=e;return Y(wn,{children:[t&&v(z5,{marginEnd:o,children:t}),r,n&&v(z5,{marginStart:o,children:n})]})}var PX=le(function(t,n){const{size:r,colorScheme:o,variant:i,className:s,spacing:l="0.5rem",isAttached:c,isDisabled:d,...f}=t,h=Dm("chakra-button__group",s),m=C.exports.useMemo(()=>({size:r,colorScheme:o,variant:i,isDisabled:d}),[r,o,i,d]);let g={display:"inline-flex"};return c?g={...g,"> *:first-of-type:not(:last-of-type)":{borderEndRadius:0},"> *:not(:first-of-type):not(:last-of-type)":{borderRadius:0},"> *:not(:first-of-type):last-of-type":{borderStartRadius:0}}:g={...g,"& > *:not(style) ~ *:not(style)":{marginStart:l}},X.createElement(_X,{value:m},X.createElement(ee.div,{ref:n,role:"group",__css:g,className:h,"data-attached":c?"":void 0,...f}))});PX.displayName="ButtonGroup";var pn=le((e,t)=>{const{icon:n,children:r,isRound:o,"aria-label":i,...s}=e,l=n||r,c=C.exports.isValidElement(l)?C.exports.cloneElement(l,{"aria-hidden":!0,focusable:!1}):null;return v(wi,{padding:"0",borderRadius:o?"full":void 0,ref:t,"aria-label":i,...s,children:c})});pn.displayName="IconButton";var P8={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},BP=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??P8.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??P8.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});BP.displayName="Icon";var Zu=(...e)=>e.filter(Boolean).join(" "),Eh=e=>e?"":void 0,T2=e=>e?!0:void 0;function T8(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[TX,FP]=Mt({name:"FormControlStylesContext",errorMessage:`useFormControlStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[AX,Ku]=Mt({strict:!1,name:"FormControlContext"});function IX(e){const{id:t,isRequired:n,isInvalid:r,isDisabled:o,isReadOnly:i,...s}=e,l=C.exports.useId(),c=t||`field-${l}`,d=`${c}-label`,f=`${c}-feedback`,h=`${c}-helptext`,[m,g]=C.exports.useState(!1),[b,S]=C.exports.useState(!1),[_,w]=C.exports.useState(!1),x=C.exports.useCallback((N={},$=null)=>({id:h,...N,ref:tn($,Z=>{!Z||S(!0)})}),[h]),k=C.exports.useCallback((N={},$=null)=>({...N,ref:$,"data-focus":Eh(_),"data-disabled":Eh(o),"data-invalid":Eh(r),"data-readonly":Eh(i),id:N.id??d,htmlFor:N.htmlFor??c}),[c,o,_,r,i,d]),L=C.exports.useCallback((N={},$=null)=>({id:f,...N,ref:tn($,Z=>{!Z||g(!0)}),"aria-live":"polite"}),[f]),A=C.exports.useCallback((N={},$=null)=>({...N,...s,ref:$,role:"group"}),[s]),M=C.exports.useCallback((N={},$=null)=>({...N,ref:$,role:"presentation","aria-hidden":!0,children:N.children||"*"}),[]);return{isRequired:!!n,isInvalid:!!r,isReadOnly:!!i,isDisabled:!!o,isFocused:!!_,onFocus:()=>w(!0),onBlur:()=>w(!1),hasFeedbackText:m,setHasFeedbackText:g,hasHelpText:b,setHasHelpText:S,id:c,labelId:d,feedbackId:f,helpTextId:h,htmlProps:s,getHelpTextProps:x,getErrorMessageProps:L,getRootProps:A,getLabelProps:k,getRequiredIndicatorProps:M}}var cs=le(function(t,n){const r=gr("Form",t),o=St(t),{getRootProps:i,htmlProps:s,...l}=IX(o),c=Zu("chakra-form-control",t.className);return X.createElement(AX,{value:l},X.createElement(TX,{value:r},X.createElement(ee.div,{...i({},n),className:c,__css:r.container})))});cs.displayName="FormControl";var RX=le(function(t,n){const r=Ku(),o=FP(),i=Zu("chakra-form__helper-text",t.className);return X.createElement(ee.div,{...r?.getHelpTextProps(t,n),__css:o.helperText,className:i})});RX.displayName="FormHelperText";function v3(e){const{isDisabled:t,isInvalid:n,isReadOnly:r,isRequired:o,...i}=y3(e);return{...i,disabled:t,readOnly:r,required:o,"aria-invalid":T2(n),"aria-required":T2(o),"aria-readonly":T2(r)}}function y3(e){const t=Ku(),{id:n,disabled:r,readOnly:o,required:i,isRequired:s,isInvalid:l,isReadOnly:c,isDisabled:d,onFocus:f,onBlur:h,...m}=e,g=e["aria-describedby"]?[e["aria-describedby"]]:[];return t?.hasFeedbackText&&t?.isInvalid&&g.push(t.feedbackId),t?.hasHelpText&&g.push(t.helpTextId),{...m,"aria-describedby":g.join(" ")||void 0,id:n??t?.id,isDisabled:r??d??t?.isDisabled,isReadOnly:o??c??t?.isReadOnly,isRequired:i??s??t?.isRequired,isInvalid:l??t?.isInvalid,onFocus:T8(t?.onFocus,f),onBlur:T8(t?.onBlur,h)}}var[OX,MX]=Mt({name:"FormErrorStylesContext",errorMessage:`useFormErrorStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),NX=le((e,t)=>{const n=gr("FormError",e),r=St(e),o=Ku();return o?.isInvalid?X.createElement(OX,{value:n},X.createElement(ee.div,{...o?.getErrorMessageProps(r,t),className:Zu("chakra-form__error-message",e.className),__css:{display:"flex",alignItems:"center",...n.text}})):null});NX.displayName="FormErrorMessage";var DX=le((e,t)=>{const n=MX(),r=Ku();if(!r?.isInvalid)return null;const o=Zu("chakra-form__error-icon",e.className);return v(BP,{ref:t,"aria-hidden":!0,...e,__css:n.icon,className:o,children:v("path",{fill:"currentColor",d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z"})})});DX.displayName="FormErrorIcon";var el=le(function(t,n){const r=mr("FormLabel",t),o=St(t),{className:i,children:s,requiredIndicator:l=v(VP,{}),optionalIndicator:c=null,...d}=o,f=Ku(),h=f?.getLabelProps(d,n)??{ref:n,...d};return X.createElement(ee.label,{...h,className:Zu("chakra-form__label",o.className),__css:{display:"block",textAlign:"start",...r}},s,f?.isRequired?l:c)});el.displayName="FormLabel";var VP=le(function(t,n){const r=Ku(),o=FP();if(!r?.isRequired)return null;const i=Zu("chakra-form__required-indicator",t.className);return X.createElement(ee.span,{...r?.getRequiredIndicatorProps(t,n),__css:o.requiredIndicator,className:i})});VP.displayName="RequiredIndicator";function v0(e,t){const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])}var b3={border:"0px",clip:"rect(0px, 0px, 0px, 0px)",height:"1px",width:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},zX=ee("span",{baseStyle:b3});zX.displayName="VisuallyHidden";var $X=ee("input",{baseStyle:b3});$X.displayName="VisuallyHiddenInput";var A8=!1,zm=null,Au=!1,B5=new Set,BX=typeof window<"u"&&window.navigator!=null?/^Mac/.test(window.navigator.platform):!1;function FX(e){return!(e.metaKey||!BX&&e.altKey||e.ctrlKey)}function S3(e,t){B5.forEach(n=>n(e,t))}function I8(e){Au=!0,FX(e)&&(zm="keyboard",S3("keyboard",e))}function Il(e){zm="pointer",(e.type==="mousedown"||e.type==="pointerdown")&&(Au=!0,S3("pointer",e))}function VX(e){e.target===window||e.target===document||(Au||(zm="keyboard",S3("keyboard",e)),Au=!1)}function WX(){Au=!1}function R8(){return zm!=="pointer"}function jX(){if(typeof window>"u"||A8)return;const{focus:e}=HTMLElement.prototype;HTMLElement.prototype.focus=function(...n){Au=!0,e.apply(this,n)},document.addEventListener("keydown",I8,!0),document.addEventListener("keyup",I8,!0),window.addEventListener("focus",VX,!0),window.addEventListener("blur",WX,!1),typeof PointerEvent<"u"?(document.addEventListener("pointerdown",Il,!0),document.addEventListener("pointermove",Il,!0),document.addEventListener("pointerup",Il,!0)):(document.addEventListener("mousedown",Il,!0),document.addEventListener("mousemove",Il,!0),document.addEventListener("mouseup",Il,!0)),A8=!0}function HX(e){jX(),e(R8());const t=()=>e(R8());return B5.add(t),()=>{B5.delete(t)}}var[uge,UX]=Mt({name:"CheckboxGroupContext",strict:!1}),GX=(...e)=>e.filter(Boolean).join(" "),ar=e=>e?"":void 0;function so(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function ZX(...e){return function(n){e.forEach(r=>{r?.(n)})}}function KX(e){const t=xo;return"custom"in t&&typeof t.custom=="function"?t.custom(e):t(e)}var WP=KX(ee.svg);function qX(e){return v(WP,{width:"1.2em",viewBox:"0 0 12 10",variants:{unchecked:{opacity:0,strokeDashoffset:16},checked:{opacity:1,strokeDashoffset:0,transition:{duration:.2}}},style:{fill:"none",strokeWidth:2,stroke:"currentColor",strokeDasharray:16},...e,children:v("polyline",{points:"1.5 6 4.5 9 10.5 1"})})}function YX(e){return v(WP,{width:"1.2em",viewBox:"0 0 24 24",variants:{unchecked:{scaleX:.65,opacity:0},checked:{scaleX:1,opacity:1,transition:{scaleX:{duration:0},opacity:{duration:.02}}}},style:{stroke:"currentColor",strokeWidth:4},...e,children:v("line",{x1:"21",x2:"3",y1:"12",y2:"12"})})}function XX({open:e,children:t}){return v(da,{initial:!1,children:e&&X.createElement(xo.div,{variants:{unchecked:{scale:.5},checked:{scale:1}},initial:"unchecked",animate:"checked",exit:"unchecked",style:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%"}},t)})}function QX(e){const{isIndeterminate:t,isChecked:n,...r}=e;return v(XX,{open:n||t,children:v(t?YX:qX,{...r})})}function JX(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function jP(e={}){const t=y3(e),{isDisabled:n,isReadOnly:r,isRequired:o,isInvalid:i,id:s,onBlur:l,onFocus:c,"aria-describedby":d}=t,{defaultChecked:f,isChecked:h,isFocusable:m,onChange:g,isIndeterminate:b,name:S,value:_,tabIndex:w=void 0,"aria-label":x,"aria-labelledby":k,"aria-invalid":L,...A}=e,M=JX(A,["isDisabled","isReadOnly","isRequired","isInvalid","id","onBlur","onFocus","aria-describedby"]),N=Xn(g),$=Xn(l),Z=Xn(c),[j,te]=C.exports.useState(!1),[Le,me]=C.exports.useState(!1),[ge,de]=C.exports.useState(!1),[ve,oe]=C.exports.useState(!1);C.exports.useEffect(()=>HX(te),[]);const H=C.exports.useRef(null),[Q,q]=C.exports.useState(!0),[R,U]=C.exports.useState(!!f),ue=h!==void 0,fe=ue?h:R,be=C.exports.useCallback(xe=>{if(r||n){xe.preventDefault();return}ue||U(fe?xe.target.checked:b?!0:xe.target.checked),N?.(xe)},[r,n,fe,ue,b,N]);pi(()=>{H.current&&(H.current.indeterminate=Boolean(b))},[b]),v0(()=>{n&&me(!1)},[n,me]),pi(()=>{const xe=H.current;!xe?.form||(xe.form.onreset=()=>{U(!!f)})},[]);const Se=n&&!m,Te=C.exports.useCallback(xe=>{xe.key===" "&&oe(!0)},[oe]),pe=C.exports.useCallback(xe=>{xe.key===" "&&oe(!1)},[oe]);pi(()=>{if(!H.current)return;H.current.checked!==fe&&U(H.current.checked)},[H.current]);const _e=C.exports.useCallback((xe={},Re=null)=>{const rt=$e=>{Le&&$e.preventDefault(),oe(!0)};return{...xe,ref:Re,"data-active":ar(ve),"data-hover":ar(ge),"data-checked":ar(fe),"data-focus":ar(Le),"data-focus-visible":ar(Le&&j),"data-indeterminate":ar(b),"data-disabled":ar(n),"data-invalid":ar(i),"data-readonly":ar(r),"aria-hidden":!0,onMouseDown:so(xe.onMouseDown,rt),onMouseUp:so(xe.onMouseUp,()=>oe(!1)),onMouseEnter:so(xe.onMouseEnter,()=>de(!0)),onMouseLeave:so(xe.onMouseLeave,()=>de(!1))}},[ve,fe,n,Le,j,ge,b,i,r]),ze=C.exports.useCallback((xe={},Re=null)=>({...M,...xe,ref:tn(Re,rt=>{!rt||q(rt.tagName==="LABEL")}),onClick:so(xe.onClick,()=>{var rt;Q||((rt=H.current)==null||rt.click(),requestAnimationFrame(()=>{var $e;($e=H.current)==null||$e.focus()}))}),"data-disabled":ar(n),"data-checked":ar(fe),"data-invalid":ar(i)}),[M,n,fe,i,Q]),ct=C.exports.useCallback((xe={},Re=null)=>({...xe,ref:tn(H,Re),type:"checkbox",name:S,value:_,id:s,tabIndex:w,onChange:so(xe.onChange,be),onBlur:so(xe.onBlur,$,()=>me(!1)),onFocus:so(xe.onFocus,Z,()=>me(!0)),onKeyDown:so(xe.onKeyDown,Te),onKeyUp:so(xe.onKeyUp,pe),required:o,checked:fe,disabled:Se,readOnly:r,"aria-label":x,"aria-labelledby":k,"aria-invalid":L?Boolean(L):i,"aria-describedby":d,"aria-disabled":n,style:b3}),[S,_,s,be,$,Z,Te,pe,o,fe,Se,r,x,k,L,i,d,n,w]),Nt=C.exports.useCallback((xe={},Re=null)=>({...xe,ref:Re,onMouseDown:so(xe.onMouseDown,O8),onTouchStart:so(xe.onTouchStart,O8),"data-disabled":ar(n),"data-checked":ar(fe),"data-invalid":ar(i)}),[fe,n,i]);return{state:{isInvalid:i,isFocused:Le,isChecked:fe,isActive:ve,isHovered:ge,isIndeterminate:b,isDisabled:n,isReadOnly:r,isRequired:o},getRootProps:ze,getCheckboxProps:_e,getInputProps:ct,getLabelProps:Nt,htmlProps:M}}function O8(e){e.preventDefault(),e.stopPropagation()}var eQ=ee("span",{baseStyle:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"top",userSelect:"none",flexShrink:0}}),tQ=ee("label",{baseStyle:{cursor:"pointer",display:"inline-flex",alignItems:"center",verticalAlign:"top",position:"relative"}}),nQ=le(function(t,n){const r=UX(),o={...r,...t},i=gr("Checkbox",o),s=St(t),{spacing:l="0.5rem",className:c,children:d,iconColor:f,iconSize:h,icon:m=v(QX,{}),isChecked:g,isDisabled:b=r?.isDisabled,onChange:S,inputProps:_,...w}=s;let x=g;r?.value&&s.value&&(x=r.value.includes(s.value));let k=S;r?.onChange&&s.value&&(k=ZX(r.onChange,S));const{state:L,getInputProps:A,getCheckboxProps:M,getLabelProps:N,getRootProps:$}=jP({...w,isDisabled:b,isChecked:x,onChange:k}),Z=C.exports.useMemo(()=>({opacity:L.isChecked||L.isIndeterminate?1:0,transform:L.isChecked||L.isIndeterminate?"scale(1)":"scale(0.95)",fontSize:h,color:f,...i.icon}),[f,h,L.isChecked,L.isIndeterminate,i.icon]),j=C.exports.cloneElement(m,{__css:Z,isIndeterminate:L.isIndeterminate,isChecked:L.isChecked});return Y(tQ,{__css:i.container,className:GX("chakra-checkbox",c),...$(),children:[v("input",{className:"chakra-checkbox__input",...A(_,n)}),v(eQ,{__css:i.control,className:"chakra-checkbox__control",...M(),children:j}),d&&X.createElement(ee.span,{className:"chakra-checkbox__label",...N(),__css:{marginStart:l,...i.label}},d)]})});nQ.displayName="Checkbox";var M8={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},HP=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??M8.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??M8.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});HP.displayName="Icon";function rQ(e){return v(HP,{focusable:"false","aria-hidden":!0,...e,children:v("path",{fill:"currentColor",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"})})}var $m=le(function(t,n){const r=mr("CloseButton",t),{children:o,isDisabled:i,__css:s,...l}=St(t),c={outline:0,display:"flex",alignItems:"center",justifyContent:"center",flexShrink:0};return X.createElement(ee.button,{type:"button","aria-label":"Close",ref:n,disabled:i,__css:{...c,...r,...s},...l},o||v(rQ,{width:"1em",height:"1em"}))});$m.displayName="CloseButton";function oQ(e){const t=parseFloat(e);return typeof t!="number"||Number.isNaN(t)?0:t}function UP(e,t){let n=oQ(e);const r=10**(t??10);return n=Math.round(n*r)/r,t?n.toFixed(t):n.toString()}function N8(e){if(!Number.isFinite(e))return 0;let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n+=1;return n}function iQ(e,t,n){return e==null?e:(nr==null?"":A2(r,i,n)??""),m=typeof o<"u",g=m?o:f,b=GP(Ia(g),i),S=n??b,_=C.exports.useCallback(j=>{j!==g&&(m||h(j.toString()),d?.(j.toString(),Ia(j)))},[d,m,g]),w=C.exports.useCallback(j=>{let te=j;return c&&(te=iQ(te,s,l)),UP(te,S)},[S,c,l,s]),x=C.exports.useCallback((j=i)=>{let te;g===""?te=Ia(j):te=Ia(g)+j,te=w(te),_(te)},[w,i,_,g]),k=C.exports.useCallback((j=i)=>{let te;g===""?te=Ia(-j):te=Ia(g)-j,te=w(te),_(te)},[w,i,_,g]),L=C.exports.useCallback(()=>{let j;r==null?j="":j=A2(r,i,n)??s,_(j)},[r,n,i,_,s]),A=C.exports.useCallback(j=>{const te=A2(j,i,S)??s;_(te)},[S,i,_,s]),M=Ia(g);return{isOutOfRange:M>l||Mv(mm,{styles:ZP}),lQ=()=>v(mm,{styles:` + html { + line-height: 1.5; + -webkit-text-size-adjust: 100%; + font-family: system-ui, sans-serif; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + -moz-osx-font-smoothing: grayscale; + touch-action: manipulation; + } + + body { + position: relative; + min-height: 100%; + font-feature-settings: 'kern'; + } + + *, + *::before, + *::after { + border-width: 0; + border-style: solid; + box-sizing: border-box; + } + + main { + display: block; + } + + hr { + border-top-width: 1px; + box-sizing: content-box; + height: 0; + overflow: visible; + } + + pre, + code, + kbd, + samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; + font-size: 1em; + } + + a { + background-color: transparent; + color: inherit; + text-decoration: inherit; + } + + abbr[title] { + border-bottom: none; + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + } + + b, + strong { + font-weight: bold; + } + + small { + font-size: 80%; + } + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + img { + border-style: none; + } + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; + font-size: 100%; + line-height: 1.15; + margin: 0; + } + + button, + input { + overflow: visible; + } + + button, + select { + text-transform: none; + } + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal; + } + + progress { + vertical-align: baseline; + } + + textarea { + overflow: auto; + } + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; + padding: 0; + } + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none !important; + } + + input[type="number"] { + -moz-appearance: textfield; + } + + [type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; + } + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none !important; + } + + ::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; + } + + details { + display: block; + } + + summary { + display: list-item; + } + + template { + display: none; + } + + [hidden] { + display: none !important; + } + + body, + blockquote, + dl, + dd, + h1, + h2, + h3, + h4, + h5, + h6, + hr, + figure, + p, + pre { + margin: 0; + } + + button { + background: transparent; + padding: 0; + } + + fieldset { + margin: 0; + padding: 0; + } + + ol, + ul { + margin: 0; + padding: 0; + } + + textarea { + resize: vertical; + } + + button, + [role="button"] { + cursor: pointer; + } + + button::-moz-focus-inner { + border: 0 !important; + } + + table { + border-collapse: collapse; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-size: inherit; + font-weight: inherit; + } + + button, + input, + optgroup, + select, + textarea { + padding: 0; + line-height: inherit; + color: inherit; + } + + img, + svg, + video, + canvas, + audio, + iframe, + embed, + object { + display: block; + } + + img, + video { + max-width: 100%; + height: auto; + } + + [data-js-focus-visible] :focus:not([data-focus-visible-added]):not([data-focus-visible-disabled]) { + outline: none; + box-shadow: none; + } + + select::-ms-expand { + display: none; + } + + ${ZP} + `});function F5(e,t,n,r){const o=Xn(n);return C.exports.useEffect(()=>{const i=typeof e=="function"?e():e??document;if(!(!n||!i))return i.addEventListener(t,o,r),()=>{i.removeEventListener(t,o,r)}},[t,e,r,o,n]),()=>{const i=typeof e=="function"?e():e??document;i?.removeEventListener(t,o,r)}}var uQ=Lf?C.exports.useLayoutEffect:C.exports.useEffect;function V5(e,t=[]){const n=C.exports.useRef(e);return uQ(()=>{n.current=e}),C.exports.useCallback((...r)=>{var o;return(o=n.current)==null?void 0:o.call(n,...r)},t)}function x3(e,t,n,r){const o=V5(t);return C.exports.useEffect(()=>{const i=t0(n)??document;if(!!t)return i.addEventListener(e,o,r),()=>{i.removeEventListener(e,o,r)}},[e,n,r,o,t]),()=>{(t0(n)??document).removeEventListener(e,o,r)}}function cQ(e){const{isOpen:t,ref:n}=e,[r,o]=C.exports.useState(t),[i,s]=C.exports.useState(!1);return C.exports.useEffect(()=>{i||(o(t),s(!0))},[t,i,r]),x3("animationend",()=>{o(t)},()=>n.current),{present:!(t?!1:!r),onComplete(){var c;const d=MH(n.current),f=new d.CustomEvent("animationend",{bubbles:!0});(c=n.current)==null||c.dispatchEvent(f)}}}function dQ(e,t){const n=e!==void 0;return[n,n&&typeof e<"u"?e:t]}function fQ(e,t){const n=C.exports.useId();return C.exports.useMemo(()=>e||[t,n].filter(Boolean).join("-"),[e,t,n])}function y0(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=V5(n),s=V5(t),[l,c]=C.exports.useState(e.defaultIsOpen||!1),[d,f]=dQ(r,l),h=fQ(o,"disclosure"),m=C.exports.useCallback(()=>{d||c(!1),s?.()},[d,s]),g=C.exports.useCallback(()=>{d||c(!0),i?.()},[d,i]),b=C.exports.useCallback(()=>{(f?m:g)()},[f,g,m]);return{isOpen:!!f,onOpen:g,onClose:m,onToggle:b,isControlled:d,getButtonProps:(S={})=>({...S,"aria-expanded":f,"aria-controls":h,onClick:ZH(S.onClick,b)}),getDisclosureProps:(S={})=>({...S,hidden:!f,id:h})}}var KP=(e,t)=>{const n=C.exports.useRef(!1),r=C.exports.useRef(!1);C.exports.useEffect(()=>{if(n.current&&r.current)return e();r.current=!0},t),C.exports.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[])};function pQ(e){const t=e.current;if(!t)return!1;const n=zH(t);return!n||Wb(t,n)?!1:!!WH(n)}function hQ(e,t){const{shouldFocus:n,visible:r,focusRef:o}=t,i=n&&!r;KP(()=>{if(!i||pQ(e))return;const s=o?.current||e.current;s&&n0(s,{nextTick:!0})},[i,e,o])}function mQ(e,t,n,r){return x3(fU(t),aU(n,t==="pointerdown"),e,r)}function gQ(e){const{ref:t,elements:n,enabled:r}=e,o=hU("Safari");mQ(()=>Ef(t.current),"pointerdown",s=>{if(!o||!r)return;const l=s.target,d=(n??[t]).some(f=>{const h=NE(f)?f.current:f;return Wb(h,l)});!FE(l)&&d&&(s.preventDefault(),n0(l))})}var vQ={preventScroll:!0,shouldFocus:!1};function yQ(e,t=vQ){const{focusRef:n,preventScroll:r,shouldFocus:o,visible:i}=t,s=NE(e)?e.current:e,l=o&&i,c=C.exports.useCallback(()=>{if(!(!s||!l)&&!Wb(s,document.activeElement))if(n?.current)n0(n.current,{preventScroll:r,nextTick:!0});else{const d=GH(s);d.length>0&&n0(d[0],{preventScroll:r,nextTick:!0})}},[l,r,s,n]);KP(()=>{c()},[c]),x3("transitionend",c,s)}var D8={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},Bm=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??D8.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??D8.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});Bm.displayName="Icon";function qu(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=le((l,c)=>v(Bm,{ref:c,viewBox:t,...o,...l,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}function w3(e){const t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}var C3=le(function(t,n){const{htmlSize:r,...o}=t,i=gr("Input",o),s=St(o),l=v3(s),c=_t("chakra-input",t.className);return X.createElement(ee.input,{size:r,...l,__css:i.field,ref:n,className:c})});C3.displayName="Input";C3.id="Input";var[bQ,qP]=Mt({name:"InputGroupStylesContext",errorMessage:`useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),SQ=le(function(t,n){const r=gr("Input",t),{children:o,className:i,...s}=St(t),l=_t("chakra-input__group",i),c={},d=Nm(o),f=r.field;d.forEach(m=>{!r||(f&&m.type.id==="InputLeftElement"&&(c.paddingStart=f.height??f.h),f&&m.type.id==="InputRightElement"&&(c.paddingEnd=f.height??f.h),m.type.id==="InputRightAddon"&&(c.borderEndRadius=0),m.type.id==="InputLeftAddon"&&(c.borderStartRadius=0))});const h=d.map(m=>{var g,b;const S=w3({size:((g=m.props)==null?void 0:g.size)||t.size,variant:((b=m.props)==null?void 0:b.variant)||t.variant});return m.type.id!=="Input"?C.exports.cloneElement(m,S):C.exports.cloneElement(m,Object.assign(S,c,m.props))});return X.createElement(ee.div,{className:l,ref:n,__css:{width:"100%",display:"flex",position:"relative"},...s},v(bQ,{value:r,children:h}))});SQ.displayName="InputGroup";var xQ={left:{marginEnd:"-1px",borderEndRadius:0,borderEndColor:"transparent"},right:{marginStart:"-1px",borderStartRadius:0,borderStartColor:"transparent"}},wQ=ee("div",{baseStyle:{flex:"0 0 auto",width:"auto",display:"flex",alignItems:"center",whiteSpace:"nowrap"}}),k3=le(function(t,n){const{placement:r="left",...o}=t,i=xQ[r]??{},s=qP();return v(wQ,{ref:n,...o,__css:{...s.addon,...i}})});k3.displayName="InputAddon";var YP=le(function(t,n){return v(k3,{ref:n,placement:"left",...t,className:_t("chakra-input__left-addon",t.className)})});YP.displayName="InputLeftAddon";YP.id="InputLeftAddon";var XP=le(function(t,n){return v(k3,{ref:n,placement:"right",...t,className:_t("chakra-input__right-addon",t.className)})});XP.displayName="InputRightAddon";XP.id="InputRightAddon";var CQ=ee("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",top:"0",zIndex:2}}),Fm=le(function(t,n){const{placement:r="left",...o}=t,i=qP(),s=i.field,c={[r==="left"?"insetStart":"insetEnd"]:"0",width:s?.height??s?.h,height:s?.height??s?.h,fontSize:s?.fontSize,...i.element};return v(CQ,{ref:n,__css:c,...o})});Fm.id="InputElement";Fm.displayName="InputElement";var QP=le(function(t,n){const{className:r,...o}=t,i=_t("chakra-input__left-element",r);return v(Fm,{ref:n,placement:"left",className:i,...o})});QP.id="InputLeftElement";QP.displayName="InputLeftElement";var JP=le(function(t,n){const{className:r,...o}=t,i=_t("chakra-input__right-element",r);return v(Fm,{ref:n,placement:"right",className:i,...o})});JP.id="InputRightElement";JP.displayName="InputRightElement";function kQ(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}Object.freeze(["base","sm","md","lg","xl","2xl"]);function ns(e,t){return Array.isArray(e)?e.map(n=>n===null?null:t(n)):kQ(e)?Object.keys(e).reduce((n,r)=>(n[r]=t(e[r]),n),{}):e!=null?t(e):null}var z8={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},eT=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??z8.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??z8.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});eT.displayName="Icon";var _Q=le(function(e,t){const{ratio:n=4/3,children:r,className:o,...i}=e,s=C.exports.Children.only(r),l=_t("chakra-aspect-ratio",o);return X.createElement(ee.div,{ref:t,position:"relative",className:l,_before:{height:0,content:'""',display:"block",paddingBottom:ns(n,c=>`${1/c*100}%`)},__css:{"& > *:not(style)":{overflow:"hidden",position:"absolute",top:"0",right:"0",bottom:"0",left:"0",display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},"& > img, & > video":{objectFit:"cover"}},...i},s)});_Q.displayName="AspectRatio";var EQ=le(function(t,n){const r=mr("Badge",t),{className:o,...i}=St(t);return X.createElement(ee.span,{ref:n,className:_t("chakra-badge",t.className),...i,__css:{display:"inline-block",whiteSpace:"nowrap",verticalAlign:"middle",...r}})});EQ.displayName="Badge";var yo=ee("div");yo.displayName="Box";var tT=le(function(t,n){const{size:r,centerContent:o=!0,...i}=t;return v(yo,{ref:n,boxSize:r,__css:{...o?{display:"flex",alignItems:"center",justifyContent:"center"}:{},flexShrink:0,flexGrow:0},...i})});tT.displayName="Square";var LQ=le(function(t,n){const{size:r,...o}=t;return v(tT,{size:r,ref:n,borderRadius:"9999px",...o})});LQ.displayName="Circle";var nT=ee("div",{baseStyle:{display:"flex",alignItems:"center",justifyContent:"center"}});nT.displayName="Center";var PQ={horizontal:{insetStart:"50%",transform:"translateX(-50%)"},vertical:{top:"50%",transform:"translateY(-50%)"},both:{insetStart:"50%",top:"50%",transform:"translate(-50%, -50%)"}};le(function(t,n){const{axis:r="both",...o}=t;return X.createElement(ee.div,{ref:n,__css:PQ[r],...o,position:"absolute"})});var TQ=le(function(t,n){const r=mr("Code",t),{className:o,...i}=St(t);return X.createElement(ee.code,{ref:n,className:_t("chakra-code",t.className),...i,__css:{display:"inline-block",...r}})});TQ.displayName="Code";var AQ=le(function(t,n){const{className:r,centerContent:o,...i}=St(t),s=mr("Container",t);return X.createElement(ee.div,{ref:n,className:_t("chakra-container",r),...i,__css:{...s,...o&&{display:"flex",flexDirection:"column",alignItems:"center"}}})});AQ.displayName="Container";var IQ=le(function(t,n){const{borderLeftWidth:r,borderBottomWidth:o,borderTopWidth:i,borderRightWidth:s,borderWidth:l,borderStyle:c,borderColor:d,...f}=mr("Divider",t),{className:h,orientation:m="horizontal",__css:g,...b}=St(t),S={vertical:{borderLeftWidth:r||s||l||"1px",height:"100%"},horizontal:{borderBottomWidth:o||i||l||"1px",width:"100%"}};return X.createElement(ee.hr,{ref:n,"aria-orientation":m,...b,__css:{...f,border:"0",borderColor:d,borderStyle:c,...S[m],...g},className:_t("chakra-divider",h)})});IQ.displayName="Divider";var Rt=le(function(t,n){const{direction:r,align:o,justify:i,wrap:s,basis:l,grow:c,shrink:d,...f}=t,h={display:"flex",flexDirection:r,alignItems:o,justifyContent:i,flexWrap:s,flexBasis:l,flexGrow:c,flexShrink:d};return X.createElement(ee.div,{ref:n,__css:h,...f})});Rt.displayName="Flex";var rT=le(function(t,n){const{templateAreas:r,gap:o,rowGap:i,columnGap:s,column:l,row:c,autoFlow:d,autoRows:f,templateRows:h,autoColumns:m,templateColumns:g,...b}=t,S={display:"grid",gridTemplateAreas:r,gridGap:o,gridRowGap:i,gridColumnGap:s,gridAutoColumns:m,gridColumn:l,gridRow:c,gridAutoFlow:d,gridAutoRows:f,gridTemplateRows:h,gridTemplateColumns:g};return X.createElement(ee.div,{ref:n,__css:S,...b})});rT.displayName="Grid";function $8(e){return ns(e,t=>t==="auto"?"auto":`span ${t}/span ${t}`)}var RQ=le(function(t,n){const{area:r,colSpan:o,colStart:i,colEnd:s,rowEnd:l,rowSpan:c,rowStart:d,...f}=t,h=w3({gridArea:r,gridColumn:$8(o),gridRow:$8(c),gridColumnStart:i,gridColumnEnd:s,gridRowStart:d,gridRowEnd:l});return X.createElement(ee.div,{ref:n,__css:h,...f})});RQ.displayName="GridItem";var _3=le(function(t,n){const r=mr("Heading",t),{className:o,...i}=St(t);return X.createElement(ee.h2,{ref:n,className:_t("chakra-heading",t.className),...i,__css:r})});_3.displayName="Heading";le(function(t,n){const r=mr("Mark",t),o=St(t);return v(yo,{ref:n,...o,as:"mark",__css:{bg:"transparent",whiteSpace:"nowrap",...r}})});var OQ=le(function(t,n){const r=mr("Kbd",t),{className:o,...i}=St(t);return X.createElement(ee.kbd,{ref:n,className:_t("chakra-kbd",o),...i,__css:{fontFamily:"mono",...r}})});OQ.displayName="Kbd";var mu=le(function(t,n){const r=mr("Link",t),{className:o,isExternal:i,...s}=St(t);return X.createElement(ee.a,{target:i?"_blank":void 0,rel:i?"noopener":void 0,ref:n,className:_t("chakra-link",o),...s,__css:r})});mu.displayName="Link";le(function(t,n){const{isExternal:r,target:o,rel:i,className:s,...l}=t;return X.createElement(ee.a,{...l,ref:n,className:_t("chakra-linkbox__overlay",s),rel:r?"noopener noreferrer":i,target:r?"_blank":o,__css:{position:"static","&::before":{content:"''",cursor:"inherit",display:"block",position:"absolute",top:0,left:0,zIndex:0,width:"100%",height:"100%"}}})});le(function(t,n){const{className:r,...o}=t;return X.createElement(ee.div,{ref:n,position:"relative",...o,className:_t("chakra-linkbox",r),__css:{"a[href]:not(.chakra-linkbox__overlay), abbr[title]":{position:"relative",zIndex:1}}})});var[MQ,oT]=Mt({name:"ListStylesContext",errorMessage:`useListStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),E3=le(function(t,n){const r=gr("List",t),{children:o,styleType:i="none",stylePosition:s,spacing:l,...c}=St(t),d=Nm(o),h=l?{["& > *:not(style) ~ *:not(style)"]:{mt:l}}:{};return X.createElement(MQ,{value:r},X.createElement(ee.ul,{ref:n,listStyleType:i,listStylePosition:s,role:"list",__css:{...r.container,...h},...c},d))});E3.displayName="List";var NQ=le((e,t)=>{const{as:n,...r}=e;return v(E3,{ref:t,as:"ol",styleType:"decimal",marginStart:"1em",...r})});NQ.displayName="OrderedList";var DQ=le(function(t,n){const{as:r,...o}=t;return v(E3,{ref:n,as:"ul",styleType:"initial",marginStart:"1em",...o})});DQ.displayName="UnorderedList";var zQ=le(function(t,n){const r=oT();return X.createElement(ee.li,{ref:n,...t,__css:r.item})});zQ.displayName="ListItem";var $Q=le(function(t,n){const r=oT();return v(eT,{ref:n,role:"presentation",...t,__css:r.icon})});$Q.displayName="ListIcon";var BQ=le(function(t,n){const{columns:r,spacingX:o,spacingY:i,spacing:s,minChildWidth:l,...c}=t,d=vm(),f=l?VQ(l,d):WQ(r);return v(rT,{ref:n,gap:s,columnGap:o,rowGap:i,templateColumns:f,...c})});BQ.displayName="SimpleGrid";function FQ(e){return typeof e=="number"?`${e}px`:e}function VQ(e,t){return ns(e,n=>{const r=AU("sizes",n,FQ(n))(t);return n===null?null:`repeat(auto-fit, minmax(${r}, 1fr))`})}function WQ(e){return ns(e,t=>t===null?null:`repeat(${t}, minmax(0, 1fr))`)}var jQ=ee("div",{baseStyle:{flex:1,justifySelf:"stretch",alignSelf:"stretch"}});jQ.displayName="Spacer";var W5="& > *:not(style) ~ *:not(style)";function HQ(e){const{spacing:t,direction:n}=e,r={column:{marginTop:t,marginEnd:0,marginBottom:0,marginStart:0},row:{marginTop:0,marginEnd:0,marginBottom:0,marginStart:t},"column-reverse":{marginTop:0,marginEnd:0,marginBottom:t,marginStart:0},"row-reverse":{marginTop:0,marginEnd:t,marginBottom:0,marginStart:0}};return{flexDirection:n,[W5]:ns(n,o=>r[o])}}function UQ(e){const{spacing:t,direction:n}=e,r={column:{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},"column-reverse":{my:t,mx:0,borderLeftWidth:0,borderBottomWidth:"1px"},row:{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0},"row-reverse":{mx:t,my:0,borderLeftWidth:"1px",borderBottomWidth:0}};return{"&":ns(n,o=>r[o])}}var iT=e=>X.createElement(ee.div,{className:"chakra-stack__item",...e,__css:{display:"inline-block",flex:"0 0 auto",minWidth:0,...e.__css}});iT.displayName="StackItem";var L3=le((e,t)=>{const{isInline:n,direction:r,align:o,justify:i,spacing:s="0.5rem",wrap:l,children:c,divider:d,className:f,shouldWrapChildren:h,...m}=e,g=n?"row":r??"column",b=C.exports.useMemo(()=>HQ({direction:g,spacing:s}),[g,s]),S=C.exports.useMemo(()=>UQ({spacing:s,direction:g}),[s,g]),_=!!d,w=!h&&!_,x=Nm(c),k=w?x:x.map((A,M)=>{const N=typeof A.key<"u"?A.key:M,$=M+1===x.length,j=h?v(iT,{children:A},N):A;if(!_)return j;const te=C.exports.cloneElement(d,{__css:S}),Le=$?null:te;return Y(C.exports.Fragment,{children:[j,Le]},N)}),L=_t("chakra-stack",f);return X.createElement(ee.div,{ref:t,display:"flex",alignItems:o,justifyContent:i,flexDirection:b.flexDirection,flexWrap:l,className:L,__css:_?{}:{[W5]:b[W5]},...m},k)});L3.displayName="Stack";var GQ=le((e,t)=>v(L3,{align:"center",...e,direction:"row",ref:t}));GQ.displayName="HStack";var ZQ=le((e,t)=>v(L3,{align:"center",...e,direction:"column",ref:t}));ZQ.displayName="VStack";var Wr=le(function(t,n){const r=mr("Text",t),{className:o,align:i,decoration:s,casing:l,...c}=St(t),d=w3({textAlign:t.align,textDecoration:t.decoration,textTransform:t.casing});return X.createElement(ee.p,{ref:n,className:_t("chakra-text",t.className),...d,...c,__css:r})});Wr.displayName="Text";function B8(e){return typeof e=="number"?`${e}px`:e}var KQ=le(function(t,n){const{spacing:r="0.5rem",spacingX:o,spacingY:i,children:s,justify:l,direction:c,align:d,className:f,shouldWrapChildren:h,...m}=t,g=C.exports.useMemo(()=>{const{spacingX:S=r,spacingY:_=r}={spacingX:o,spacingY:i};return{"--chakra-wrap-x-spacing":w=>ns(S,x=>B8(i5("space",x)(w))),"--chakra-wrap-y-spacing":w=>ns(_,x=>B8(i5("space",x)(w))),"--wrap-x-spacing":"calc(var(--chakra-wrap-x-spacing) / 2)","--wrap-y-spacing":"calc(var(--chakra-wrap-y-spacing) / 2)",display:"flex",flexWrap:"wrap",justifyContent:l,alignItems:d,flexDirection:c,listStyleType:"none",padding:"0",margin:"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)","& > *:not(style)":{margin:"var(--wrap-y-spacing) var(--wrap-x-spacing)"}}},[r,o,i,l,d,c]),b=h?C.exports.Children.map(s,(S,_)=>v(aT,{children:S},_)):s;return X.createElement(ee.div,{ref:n,className:_t("chakra-wrap",f),overflow:"hidden",...m},X.createElement(ee.ul,{className:"chakra-wrap__list",__css:g},b))});KQ.displayName="Wrap";var aT=le(function(t,n){const{className:r,...o}=t;return X.createElement(ee.li,{ref:n,__css:{display:"flex",alignItems:"flex-start"},className:_t("chakra-wrap__listitem",r),...o})});aT.displayName="WrapItem";var qQ={body:{classList:{add(){},remove(){}}},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}}},sT=qQ,Rl=()=>{},YQ={document:sT,navigator:{userAgent:""},CustomEvent:function(){return this},addEventListener:Rl,removeEventListener:Rl,getComputedStyle(){return{getPropertyValue(){return""}}},matchMedia(){return{matches:!1,addListener:Rl,removeListener:Rl}},requestAnimationFrame(e){return typeof setTimeout>"u"?(e(),null):setTimeout(e,0)},cancelAnimationFrame(e){typeof setTimeout>"u"||clearTimeout(e)},setTimeout:()=>0,clearTimeout:Rl,setInterval:()=>0,clearInterval:Rl},XQ=YQ,QQ={window:XQ,document:sT},lT=typeof window<"u"?{window,document}:QQ,uT=C.exports.createContext(lT);uT.displayName="EnvironmentContext";function cT(e){const{children:t,environment:n}=e,[r,o]=C.exports.useState(null),[i,s]=C.exports.useState(!1);C.exports.useEffect(()=>s(!0),[]);const l=C.exports.useMemo(()=>{if(n)return n;const c=r?.ownerDocument,d=r?.ownerDocument.defaultView;return c?{document:c,window:d}:lT},[r,n]);return Y(uT.Provider,{value:l,children:[t,!n&&i&&v("span",{id:"__chakra_env",hidden:!0,ref:c=>{C.exports.startTransition(()=>{c&&o(c)})}})]})}cT.displayName="EnvironmentProvider";var JQ=e=>e?"":void 0;function eJ(){const e=C.exports.useRef(new Map),t=e.current,n=C.exports.useCallback((o,i,s,l)=>{e.current.set(s,{type:i,el:o,options:l}),o.addEventListener(i,s,l)},[]),r=C.exports.useCallback((o,i,s,l)=>{o.removeEventListener(i,s,l),e.current.delete(s)},[]);return C.exports.useEffect(()=>()=>{t.forEach((o,i)=>{r(o.el,o.type,i,o.options)})},[r,t]),{add:n,remove:r}}function I2(e){const t=e.target,{tagName:n,isContentEditable:r}=t;return n!=="INPUT"&&n!=="TEXTAREA"&&r!==!0}function tJ(e={}){const{ref:t,isDisabled:n,isFocusable:r,clickOnEnter:o=!0,clickOnSpace:i=!0,onMouseDown:s,onMouseUp:l,onClick:c,onKeyDown:d,onKeyUp:f,tabIndex:h,onMouseOver:m,onMouseLeave:g,...b}=e,[S,_]=C.exports.useState(!0),[w,x]=C.exports.useState(!1),k=eJ(),L=oe=>{!oe||oe.tagName!=="BUTTON"&&_(!1)},A=S?h:h||0,M=n&&!r,N=C.exports.useCallback(oe=>{if(n){oe.stopPropagation(),oe.preventDefault();return}oe.currentTarget.focus(),c?.(oe)},[n,c]),$=C.exports.useCallback(oe=>{w&&I2(oe)&&(oe.preventDefault(),oe.stopPropagation(),x(!1),k.remove(document,"keyup",$,!1))},[w,k]),Z=C.exports.useCallback(oe=>{if(d?.(oe),n||oe.defaultPrevented||oe.metaKey||!I2(oe.nativeEvent)||S)return;const H=o&&oe.key==="Enter";i&&oe.key===" "&&(oe.preventDefault(),x(!0)),H&&(oe.preventDefault(),oe.currentTarget.click()),k.add(document,"keyup",$,!1)},[n,S,d,o,i,k,$]),j=C.exports.useCallback(oe=>{if(f?.(oe),n||oe.defaultPrevented||oe.metaKey||!I2(oe.nativeEvent)||S)return;i&&oe.key===" "&&(oe.preventDefault(),x(!1),oe.currentTarget.click())},[i,S,n,f]),te=C.exports.useCallback(oe=>{oe.button===0&&(x(!1),k.remove(document,"mouseup",te,!1))},[k]),Le=C.exports.useCallback(oe=>{if(oe.button!==0)return;if(n){oe.stopPropagation(),oe.preventDefault();return}S||x(!0),oe.currentTarget.focus({preventScroll:!0}),k.add(document,"mouseup",te,!1),s?.(oe)},[n,S,s,k,te]),me=C.exports.useCallback(oe=>{oe.button===0&&(S||x(!1),l?.(oe))},[l,S]),ge=C.exports.useCallback(oe=>{if(n){oe.preventDefault();return}m?.(oe)},[n,m]),de=C.exports.useCallback(oe=>{w&&(oe.preventDefault(),x(!1)),g?.(oe)},[w,g]),ve=tn(t,L);return S?{...b,ref:ve,type:"button","aria-disabled":M?void 0:n,disabled:M,onClick:N,onMouseDown:s,onMouseUp:l,onKeyUp:f,onKeyDown:d,onMouseOver:m,onMouseLeave:g}:{...b,ref:ve,role:"button","data-active":JQ(w),"aria-disabled":n?"true":void 0,tabIndex:M?void 0:A,onClick:N,onMouseDown:Le,onMouseUp:me,onKeyUp:j,onKeyDown:Z,onMouseOver:ge,onMouseLeave:de}}function nJ(e){return e!=null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function rJ(e){if(!nJ(e))return!1;const t=e.ownerDocument.defaultView??window;return e instanceof t.HTMLElement}var oJ=e=>e.hasAttribute("tabindex");function iJ(e){return Boolean(e.getAttribute("disabled"))===!0||Boolean(e.getAttribute("aria-disabled"))===!0}function dT(e){return e.parentElement&&dT(e.parentElement)?!0:e.hidden}function aJ(e){const t=e.getAttribute("contenteditable");return t!=="false"&&t!=null}function sJ(e){if(!rJ(e)||dT(e)||iJ(e))return!1;const{localName:t}=e;if(["input","select","textarea","button"].indexOf(t)>=0)return!0;const r={a:()=>e.hasAttribute("href"),audio:()=>e.hasAttribute("controls"),video:()=>e.hasAttribute("controls")};return t in r?r[t]():aJ(e)?!0:oJ(e)}var lJ=["input:not([disabled])","select:not([disabled])","textarea:not([disabled])","embed","iframe","object","a[href]","area[href]","button:not([disabled])","[tabindex]","audio[controls]","video[controls]","*[tabindex]:not([aria-disabled])","*[contenteditable]"],uJ=lJ.join(),cJ=e=>e.offsetWidth>0&&e.offsetHeight>0;function dJ(e){const t=Array.from(e.querySelectorAll(uJ));return t.unshift(e),t.filter(n=>sJ(n)&&cJ(n))}var Pr="top",bo="bottom",So="right",Tr="left",P3="auto",Nf=[Pr,bo,So,Tr],Iu="start",rf="end",fJ="clippingParents",fT="viewport",Fc="popper",pJ="reference",F8=Nf.reduce(function(e,t){return e.concat([t+"-"+Iu,t+"-"+rf])},[]),pT=[].concat(Nf,[P3]).reduce(function(e,t){return e.concat([t,t+"-"+Iu,t+"-"+rf])},[]),hJ="beforeRead",mJ="read",gJ="afterRead",vJ="beforeMain",yJ="main",bJ="afterMain",SJ="beforeWrite",xJ="write",wJ="afterWrite",CJ=[hJ,mJ,gJ,vJ,yJ,bJ,SJ,xJ,wJ];function Ci(e){return e?(e.nodeName||"").toLowerCase():null}function wo(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function Ks(e){var t=wo(e).Element;return e instanceof t||e instanceof Element}function mo(e){var t=wo(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function T3(e){if(typeof ShadowRoot>"u")return!1;var t=wo(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function kJ(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var r=t.styles[n]||{},o=t.attributes[n]||{},i=t.elements[n];!mo(i)||!Ci(i)||(Object.assign(i.style,r),Object.keys(o).forEach(function(s){var l=o[s];l===!1?i.removeAttribute(s):i.setAttribute(s,l===!0?"":l)}))})}function _J(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(r){var o=t.elements[r],i=t.attributes[r]||{},s=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:n[r]),l=s.reduce(function(c,d){return c[d]="",c},{});!mo(o)||!Ci(o)||(Object.assign(o.style,l),Object.keys(i).forEach(function(c){o.removeAttribute(c)}))})}}const EJ={name:"applyStyles",enabled:!0,phase:"write",fn:kJ,effect:_J,requires:["computeStyles"]};function vi(e){return e.split("-")[0]}var Fs=Math.max,b0=Math.min,Ru=Math.round;function j5(){var e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function hT(){return!/^((?!chrome|android).)*safari/i.test(j5())}function Ou(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!1);var r=e.getBoundingClientRect(),o=1,i=1;t&&mo(e)&&(o=e.offsetWidth>0&&Ru(r.width)/e.offsetWidth||1,i=e.offsetHeight>0&&Ru(r.height)/e.offsetHeight||1);var s=Ks(e)?wo(e):window,l=s.visualViewport,c=!hT()&&n,d=(r.left+(c&&l?l.offsetLeft:0))/o,f=(r.top+(c&&l?l.offsetTop:0))/i,h=r.width/o,m=r.height/i;return{width:h,height:m,top:f,right:d+h,bottom:f+m,left:d,x:d,y:f}}function A3(e){var t=Ou(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function mT(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&T3(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function sa(e){return wo(e).getComputedStyle(e)}function LJ(e){return["table","td","th"].indexOf(Ci(e))>=0}function ds(e){return((Ks(e)?e.ownerDocument:e.document)||window.document).documentElement}function Vm(e){return Ci(e)==="html"?e:e.assignedSlot||e.parentNode||(T3(e)?e.host:null)||ds(e)}function V8(e){return!mo(e)||sa(e).position==="fixed"?null:e.offsetParent}function PJ(e){var t=/firefox/i.test(j5()),n=/Trident/i.test(j5());if(n&&mo(e)){var r=sa(e);if(r.position==="fixed")return null}var o=Vm(e);for(T3(o)&&(o=o.host);mo(o)&&["html","body"].indexOf(Ci(o))<0;){var i=sa(o);if(i.transform!=="none"||i.perspective!=="none"||i.contain==="paint"||["transform","perspective"].indexOf(i.willChange)!==-1||t&&i.willChange==="filter"||t&&i.filter&&i.filter!=="none")return o;o=o.parentNode}return null}function Df(e){for(var t=wo(e),n=V8(e);n&&LJ(n)&&sa(n).position==="static";)n=V8(n);return n&&(Ci(n)==="html"||Ci(n)==="body"&&sa(n).position==="static")?t:n||PJ(e)||t}function I3(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function bd(e,t,n){return Fs(e,b0(t,n))}function TJ(e,t,n){var r=bd(e,t,n);return r>n?n:r}function gT(){return{top:0,right:0,bottom:0,left:0}}function vT(e){return Object.assign({},gT(),e)}function yT(e,t){return t.reduce(function(n,r){return n[r]=e,n},{})}var AJ=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,vT(typeof t!="number"?t:yT(t,Nf))};function IJ(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,s=n.modifiersData.popperOffsets,l=vi(n.placement),c=I3(l),d=[Tr,So].indexOf(l)>=0,f=d?"height":"width";if(!(!i||!s)){var h=AJ(o.padding,n),m=A3(i),g=c==="y"?Pr:Tr,b=c==="y"?bo:So,S=n.rects.reference[f]+n.rects.reference[c]-s[c]-n.rects.popper[f],_=s[c]-n.rects.reference[c],w=Df(i),x=w?c==="y"?w.clientHeight||0:w.clientWidth||0:0,k=S/2-_/2,L=h[g],A=x-m[f]-h[b],M=x/2-m[f]/2+k,N=bd(L,M,A),$=c;n.modifiersData[r]=(t={},t[$]=N,t.centerOffset=N-M,t)}}function RJ(e){var t=e.state,n=e.options,r=n.element,o=r===void 0?"[data-popper-arrow]":r;o!=null&&(typeof o=="string"&&(o=t.elements.popper.querySelector(o),!o)||!mT(t.elements.popper,o)||(t.elements.arrow=o))}const OJ={name:"arrow",enabled:!0,phase:"main",fn:IJ,effect:RJ,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Mu(e){return e.split("-")[1]}var MJ={top:"auto",right:"auto",bottom:"auto",left:"auto"};function NJ(e){var t=e.x,n=e.y,r=window,o=r.devicePixelRatio||1;return{x:Ru(t*o)/o||0,y:Ru(n*o)/o||0}}function W8(e){var t,n=e.popper,r=e.popperRect,o=e.placement,i=e.variation,s=e.offsets,l=e.position,c=e.gpuAcceleration,d=e.adaptive,f=e.roundOffsets,h=e.isFixed,m=s.x,g=m===void 0?0:m,b=s.y,S=b===void 0?0:b,_=typeof f=="function"?f({x:g,y:S}):{x:g,y:S};g=_.x,S=_.y;var w=s.hasOwnProperty("x"),x=s.hasOwnProperty("y"),k=Tr,L=Pr,A=window;if(d){var M=Df(n),N="clientHeight",$="clientWidth";if(M===wo(n)&&(M=ds(n),sa(M).position!=="static"&&l==="absolute"&&(N="scrollHeight",$="scrollWidth")),M=M,o===Pr||(o===Tr||o===So)&&i===rf){L=bo;var Z=h&&M===A&&A.visualViewport?A.visualViewport.height:M[N];S-=Z-r.height,S*=c?1:-1}if(o===Tr||(o===Pr||o===bo)&&i===rf){k=So;var j=h&&M===A&&A.visualViewport?A.visualViewport.width:M[$];g-=j-r.width,g*=c?1:-1}}var te=Object.assign({position:l},d&&MJ),Le=f===!0?NJ({x:g,y:S}):{x:g,y:S};if(g=Le.x,S=Le.y,c){var me;return Object.assign({},te,(me={},me[L]=x?"0":"",me[k]=w?"0":"",me.transform=(A.devicePixelRatio||1)<=1?"translate("+g+"px, "+S+"px)":"translate3d("+g+"px, "+S+"px, 0)",me))}return Object.assign({},te,(t={},t[L]=x?S+"px":"",t[k]=w?g+"px":"",t.transform="",t))}function DJ(e){var t=e.state,n=e.options,r=n.gpuAcceleration,o=r===void 0?!0:r,i=n.adaptive,s=i===void 0?!0:i,l=n.roundOffsets,c=l===void 0?!0:l,d={placement:vi(t.placement),variation:Mu(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,W8(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:s,roundOffsets:c})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,W8(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:c})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const zJ={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:DJ,data:{}};var Lh={passive:!0};function $J(e){var t=e.state,n=e.instance,r=e.options,o=r.scroll,i=o===void 0?!0:o,s=r.resize,l=s===void 0?!0:s,c=wo(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&d.forEach(function(f){f.addEventListener("scroll",n.update,Lh)}),l&&c.addEventListener("resize",n.update,Lh),function(){i&&d.forEach(function(f){f.removeEventListener("scroll",n.update,Lh)}),l&&c.removeEventListener("resize",n.update,Lh)}}const BJ={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:$J,data:{}};var FJ={left:"right",right:"left",bottom:"top",top:"bottom"};function p1(e){return e.replace(/left|right|bottom|top/g,function(t){return FJ[t]})}var VJ={start:"end",end:"start"};function j8(e){return e.replace(/start|end/g,function(t){return VJ[t]})}function R3(e){var t=wo(e),n=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:n,scrollTop:r}}function O3(e){return Ou(ds(e)).left+R3(e).scrollLeft}function WJ(e,t){var n=wo(e),r=ds(e),o=n.visualViewport,i=r.clientWidth,s=r.clientHeight,l=0,c=0;if(o){i=o.width,s=o.height;var d=hT();(d||!d&&t==="fixed")&&(l=o.offsetLeft,c=o.offsetTop)}return{width:i,height:s,x:l+O3(e),y:c}}function jJ(e){var t,n=ds(e),r=R3(e),o=(t=e.ownerDocument)==null?void 0:t.body,i=Fs(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=Fs(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),l=-r.scrollLeft+O3(e),c=-r.scrollTop;return sa(o||n).direction==="rtl"&&(l+=Fs(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:s,x:l,y:c}}function M3(e){var t=sa(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function bT(e){return["html","body","#document"].indexOf(Ci(e))>=0?e.ownerDocument.body:mo(e)&&M3(e)?e:bT(Vm(e))}function Sd(e,t){var n;t===void 0&&(t=[]);var r=bT(e),o=r===((n=e.ownerDocument)==null?void 0:n.body),i=wo(r),s=o?[i].concat(i.visualViewport||[],M3(r)?r:[]):r,l=t.concat(s);return o?l:l.concat(Sd(Vm(s)))}function H5(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function HJ(e,t){var n=Ou(e,!1,t==="fixed");return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}function H8(e,t,n){return t===fT?H5(WJ(e,n)):Ks(t)?HJ(t,n):H5(jJ(ds(e)))}function UJ(e){var t=Sd(Vm(e)),n=["absolute","fixed"].indexOf(sa(e).position)>=0,r=n&&mo(e)?Df(e):e;return Ks(r)?t.filter(function(o){return Ks(o)&&mT(o,r)&&Ci(o)!=="body"}):[]}function GJ(e,t,n,r){var o=t==="clippingParents"?UJ(e):[].concat(t),i=[].concat(o,[n]),s=i[0],l=i.reduce(function(c,d){var f=H8(e,d,r);return c.top=Fs(f.top,c.top),c.right=b0(f.right,c.right),c.bottom=b0(f.bottom,c.bottom),c.left=Fs(f.left,c.left),c},H8(e,s,r));return l.width=l.right-l.left,l.height=l.bottom-l.top,l.x=l.left,l.y=l.top,l}function ST(e){var t=e.reference,n=e.element,r=e.placement,o=r?vi(r):null,i=r?Mu(r):null,s=t.x+t.width/2-n.width/2,l=t.y+t.height/2-n.height/2,c;switch(o){case Pr:c={x:s,y:t.y-n.height};break;case bo:c={x:s,y:t.y+t.height};break;case So:c={x:t.x+t.width,y:l};break;case Tr:c={x:t.x-n.width,y:l};break;default:c={x:t.x,y:t.y}}var d=o?I3(o):null;if(d!=null){var f=d==="y"?"height":"width";switch(i){case Iu:c[d]=c[d]-(t[f]/2-n[f]/2);break;case rf:c[d]=c[d]+(t[f]/2-n[f]/2);break}}return c}function of(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=r===void 0?e.placement:r,i=n.strategy,s=i===void 0?e.strategy:i,l=n.boundary,c=l===void 0?fJ:l,d=n.rootBoundary,f=d===void 0?fT:d,h=n.elementContext,m=h===void 0?Fc:h,g=n.altBoundary,b=g===void 0?!1:g,S=n.padding,_=S===void 0?0:S,w=vT(typeof _!="number"?_:yT(_,Nf)),x=m===Fc?pJ:Fc,k=e.rects.popper,L=e.elements[b?x:m],A=GJ(Ks(L)?L:L.contextElement||ds(e.elements.popper),c,f,s),M=Ou(e.elements.reference),N=ST({reference:M,element:k,strategy:"absolute",placement:o}),$=H5(Object.assign({},k,N)),Z=m===Fc?$:M,j={top:A.top-Z.top+w.top,bottom:Z.bottom-A.bottom+w.bottom,left:A.left-Z.left+w.left,right:Z.right-A.right+w.right},te=e.modifiersData.offset;if(m===Fc&&te){var Le=te[o];Object.keys(j).forEach(function(me){var ge=[So,bo].indexOf(me)>=0?1:-1,de=[Pr,bo].indexOf(me)>=0?"y":"x";j[me]+=Le[de]*ge})}return j}function ZJ(e,t){t===void 0&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,s=n.padding,l=n.flipVariations,c=n.allowedAutoPlacements,d=c===void 0?pT:c,f=Mu(r),h=f?l?F8:F8.filter(function(b){return Mu(b)===f}):Nf,m=h.filter(function(b){return d.indexOf(b)>=0});m.length===0&&(m=h);var g=m.reduce(function(b,S){return b[S]=of(e,{placement:S,boundary:o,rootBoundary:i,padding:s})[vi(S)],b},{});return Object.keys(g).sort(function(b,S){return g[b]-g[S]})}function KJ(e){if(vi(e)===P3)return[];var t=p1(e);return[j8(e),t,j8(t)]}function qJ(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,l=s===void 0?!0:s,c=n.fallbackPlacements,d=n.padding,f=n.boundary,h=n.rootBoundary,m=n.altBoundary,g=n.flipVariations,b=g===void 0?!0:g,S=n.allowedAutoPlacements,_=t.options.placement,w=vi(_),x=w===_,k=c||(x||!b?[p1(_)]:KJ(_)),L=[_].concat(k).reduce(function(fe,be){return fe.concat(vi(be)===P3?ZJ(t,{placement:be,boundary:f,rootBoundary:h,padding:d,flipVariations:b,allowedAutoPlacements:S}):be)},[]),A=t.rects.reference,M=t.rects.popper,N=new Map,$=!0,Z=L[0],j=0;j=0,de=ge?"width":"height",ve=of(t,{placement:te,boundary:f,rootBoundary:h,altBoundary:m,padding:d}),oe=ge?me?So:Tr:me?bo:Pr;A[de]>M[de]&&(oe=p1(oe));var H=p1(oe),Q=[];if(i&&Q.push(ve[Le]<=0),l&&Q.push(ve[oe]<=0,ve[H]<=0),Q.every(function(fe){return fe})){Z=te,$=!1;break}N.set(te,Q)}if($)for(var q=b?3:1,R=function(be){var Se=L.find(function(Te){var pe=N.get(Te);if(pe)return pe.slice(0,be).every(function(_e){return _e})});if(Se)return Z=Se,"break"},U=q;U>0;U--){var ue=R(U);if(ue==="break")break}t.placement!==Z&&(t.modifiersData[r]._skip=!0,t.placement=Z,t.reset=!0)}}const YJ={name:"flip",enabled:!0,phase:"main",fn:qJ,requiresIfExists:["offset"],data:{_skip:!1}};function U8(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function G8(e){return[Pr,So,bo,Tr].some(function(t){return e[t]>=0})}function XJ(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,s=of(t,{elementContext:"reference"}),l=of(t,{altBoundary:!0}),c=U8(s,r),d=U8(l,o,i),f=G8(c),h=G8(d);t.modifiersData[n]={referenceClippingOffsets:c,popperEscapeOffsets:d,isReferenceHidden:f,hasPopperEscaped:h},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":f,"data-popper-escaped":h})}const QJ={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:XJ};function JJ(e,t,n){var r=vi(e),o=[Tr,Pr].indexOf(r)>=0?-1:1,i=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,s=i[0],l=i[1];return s=s||0,l=(l||0)*o,[Tr,So].indexOf(r)>=0?{x:l,y:s}:{x:s,y:l}}function eee(e){var t=e.state,n=e.options,r=e.name,o=n.offset,i=o===void 0?[0,0]:o,s=pT.reduce(function(f,h){return f[h]=JJ(h,t.rects,i),f},{}),l=s[t.placement],c=l.x,d=l.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=c,t.modifiersData.popperOffsets.y+=d),t.modifiersData[r]=s}const tee={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:eee};function nee(e){var t=e.state,n=e.name;t.modifiersData[n]=ST({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const ree={name:"popperOffsets",enabled:!0,phase:"read",fn:nee,data:{}};function oee(e){return e==="x"?"y":"x"}function iee(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,i=o===void 0?!0:o,s=n.altAxis,l=s===void 0?!1:s,c=n.boundary,d=n.rootBoundary,f=n.altBoundary,h=n.padding,m=n.tether,g=m===void 0?!0:m,b=n.tetherOffset,S=b===void 0?0:b,_=of(t,{boundary:c,rootBoundary:d,padding:h,altBoundary:f}),w=vi(t.placement),x=Mu(t.placement),k=!x,L=I3(w),A=oee(L),M=t.modifiersData.popperOffsets,N=t.rects.reference,$=t.rects.popper,Z=typeof S=="function"?S(Object.assign({},t.rects,{placement:t.placement})):S,j=typeof Z=="number"?{mainAxis:Z,altAxis:Z}:Object.assign({mainAxis:0,altAxis:0},Z),te=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,Le={x:0,y:0};if(!!M){if(i){var me,ge=L==="y"?Pr:Tr,de=L==="y"?bo:So,ve=L==="y"?"height":"width",oe=M[L],H=oe+_[ge],Q=oe-_[de],q=g?-$[ve]/2:0,R=x===Iu?N[ve]:$[ve],U=x===Iu?-$[ve]:-N[ve],ue=t.elements.arrow,fe=g&&ue?A3(ue):{width:0,height:0},be=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:gT(),Se=be[ge],Te=be[de],pe=bd(0,N[ve],fe[ve]),_e=k?N[ve]/2-q-pe-Se-j.mainAxis:R-pe-Se-j.mainAxis,ze=k?-N[ve]/2+q+pe+Te+j.mainAxis:U+pe+Te+j.mainAxis,ct=t.elements.arrow&&Df(t.elements.arrow),Nt=ct?L==="y"?ct.clientTop||0:ct.clientLeft||0:0,Cn=(me=te?.[L])!=null?me:0,xe=oe+_e-Cn-Nt,Re=oe+ze-Cn,rt=bd(g?b0(H,xe):H,oe,g?Fs(Q,Re):Q);M[L]=rt,Le[L]=rt-oe}if(l){var $e,Ut=L==="x"?Pr:Tr,kn=L==="x"?bo:So,dt=M[A],Lt=A==="y"?"height":"width",rn=dt+_[Ut],Xt=dt-_[kn],he=[Pr,Tr].indexOf(w)!==-1,Pe=($e=te?.[A])!=null?$e:0,mt=he?rn:dt-N[Lt]-$[Lt]-Pe+j.altAxis,ft=he?dt+N[Lt]+$[Lt]-Pe-j.altAxis:Xt,ae=g&&he?TJ(mt,dt,ft):bd(g?mt:rn,dt,g?ft:Xt);M[A]=ae,Le[A]=ae-dt}t.modifiersData[r]=Le}}const aee={name:"preventOverflow",enabled:!0,phase:"main",fn:iee,requiresIfExists:["offset"]};function see(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function lee(e){return e===wo(e)||!mo(e)?R3(e):see(e)}function uee(e){var t=e.getBoundingClientRect(),n=Ru(t.width)/e.offsetWidth||1,r=Ru(t.height)/e.offsetHeight||1;return n!==1||r!==1}function cee(e,t,n){n===void 0&&(n=!1);var r=mo(t),o=mo(t)&&uee(t),i=ds(t),s=Ou(e,o,n),l={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(r||!r&&!n)&&((Ci(t)!=="body"||M3(i))&&(l=lee(t)),mo(t)?(c=Ou(t,!0),c.x+=t.clientLeft,c.y+=t.clientTop):i&&(c.x=O3(i))),{x:s.left+l.scrollLeft-c.x,y:s.top+l.scrollTop-c.y,width:s.width,height:s.height}}function dee(e){var t=new Map,n=new Set,r=[];e.forEach(function(i){t.set(i.name,i)});function o(i){n.add(i.name);var s=[].concat(i.requires||[],i.requiresIfExists||[]);s.forEach(function(l){if(!n.has(l)){var c=t.get(l);c&&o(c)}}),r.push(i)}return e.forEach(function(i){n.has(i.name)||o(i)}),r}function fee(e){var t=dee(e);return CJ.reduce(function(n,r){return n.concat(t.filter(function(o){return o.phase===r}))},[])}function pee(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function hee(e){var t=e.reduce(function(n,r){var o=n[r.name];return n[r.name]=o?Object.assign({},o,r,{options:Object.assign({},o.options,r.options),data:Object.assign({},o.data,r.data)}):r,n},{});return Object.keys(t).map(function(n){return t[n]})}var Z8={placement:"bottom",modifiers:[],strategy:"absolute"};function K8(){for(var e=arguments.length,t=new Array(e),n=0;n({var:e,varRef:t?`var(${e}, ${t})`:`var(${e})`}),hn={arrowShadowColor:Ol("--popper-arrow-shadow-color"),arrowSize:Ol("--popper-arrow-size","8px"),arrowSizeHalf:Ol("--popper-arrow-size-half"),arrowBg:Ol("--popper-arrow-bg"),transformOrigin:Ol("--popper-transform-origin"),arrowOffset:Ol("--popper-arrow-offset")};function yee(e){if(e.includes("top"))return"1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("bottom"))return"-1px -1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("right"))return"-1px 1px 1px 0 var(--popper-arrow-shadow-color)";if(e.includes("left"))return"1px -1px 1px 0 var(--popper-arrow-shadow-color)"}var bee={top:"bottom center","top-start":"bottom left","top-end":"bottom right",bottom:"top center","bottom-start":"top left","bottom-end":"top right",left:"right center","left-start":"right top","left-end":"right bottom",right:"left center","right-start":"left top","right-end":"left bottom"},See=e=>bee[e],q8={scroll:!0,resize:!0};function xee(e){let t;return typeof e=="object"?t={enabled:!0,options:{...q8,...e}}:t={enabled:e,options:q8},t}var wee={name:"matchWidth",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:({state:e})=>{e.styles.popper.width=`${e.rects.reference.width}px`},effect:({state:e})=>()=>{const t=e.elements.reference;e.elements.popper.style.width=`${t.offsetWidth}px`}},Cee={name:"transformOrigin",enabled:!0,phase:"write",fn:({state:e})=>{Y8(e)},effect:({state:e})=>()=>{Y8(e)}},Y8=e=>{e.elements.popper.style.setProperty(hn.transformOrigin.var,See(e.placement))},kee={name:"positionArrow",enabled:!0,phase:"afterWrite",fn:({state:e})=>{_ee(e)}},_ee=e=>{var t;if(!e.placement)return;const n=Eee(e.placement);if(((t=e.elements)==null?void 0:t.arrow)&&n){Object.assign(e.elements.arrow.style,{[n.property]:n.value,width:hn.arrowSize.varRef,height:hn.arrowSize.varRef,zIndex:-1});const r={[hn.arrowSizeHalf.var]:`calc(${hn.arrowSize.varRef} / 2)`,[hn.arrowOffset.var]:`calc(${hn.arrowSizeHalf.varRef} * -1)`};for(const o in r)e.elements.arrow.style.setProperty(o,r[o])}},Eee=e=>{if(e.startsWith("top"))return{property:"bottom",value:hn.arrowOffset.varRef};if(e.startsWith("bottom"))return{property:"top",value:hn.arrowOffset.varRef};if(e.startsWith("left"))return{property:"right",value:hn.arrowOffset.varRef};if(e.startsWith("right"))return{property:"left",value:hn.arrowOffset.varRef}},Lee={name:"innerArrow",enabled:!0,phase:"main",requires:["arrow"],fn:({state:e})=>{X8(e)},effect:({state:e})=>()=>{X8(e)}},X8=e=>{if(!e.elements.arrow)return;const t=e.elements.arrow.querySelector("[data-popper-arrow-inner]");!t||Object.assign(t.style,{transform:"rotate(45deg)",background:hn.arrowBg.varRef,top:0,left:0,width:"100%",height:"100%",position:"absolute",zIndex:"inherit",boxShadow:yee(e.placement)})},Pee={"start-start":{ltr:"left-start",rtl:"right-start"},"start-end":{ltr:"left-end",rtl:"right-end"},"end-start":{ltr:"right-start",rtl:"left-start"},"end-end":{ltr:"right-end",rtl:"left-end"},start:{ltr:"left",rtl:"right"},end:{ltr:"right",rtl:"left"}},Tee={"auto-start":"auto-end","auto-end":"auto-start","top-start":"top-end","top-end":"top-start","bottom-start":"bottom-end","bottom-end":"bottom-start"};function Aee(e,t="ltr"){var n;const r=((n=Pee[e])==null?void 0:n[t])||e;return t==="ltr"?r:Tee[e]??r}function xT(e={}){const{enabled:t=!0,modifiers:n,placement:r="bottom",strategy:o="absolute",arrowPadding:i=8,eventListeners:s=!0,offset:l,gutter:c=8,flip:d=!0,boundary:f="clippingParents",preventOverflow:h=!0,matchWidth:m,direction:g="ltr"}=e,b=C.exports.useRef(null),S=C.exports.useRef(null),_=C.exports.useRef(null),w=Aee(r,g),x=C.exports.useRef(()=>{}),k=C.exports.useCallback(()=>{var j;!t||!b.current||!S.current||((j=x.current)==null||j.call(x),_.current=vee(b.current,S.current,{placement:w,modifiers:[Lee,kee,Cee,{...wee,enabled:!!m},{name:"eventListeners",...xee(s)},{name:"arrow",options:{padding:i}},{name:"offset",options:{offset:l??[0,c]}},{name:"flip",enabled:!!d,options:{padding:8}},{name:"preventOverflow",enabled:!!h,options:{boundary:f}},...n??[]],strategy:o}),_.current.forceUpdate(),x.current=_.current.destroy)},[w,t,n,m,s,i,l,c,d,h,f,o]);C.exports.useEffect(()=>()=>{var j;!b.current&&!S.current&&((j=_.current)==null||j.destroy(),_.current=null)},[]);const L=C.exports.useCallback(j=>{b.current=j,k()},[k]),A=C.exports.useCallback((j={},te=null)=>({...j,ref:tn(L,te)}),[L]),M=C.exports.useCallback(j=>{S.current=j,k()},[k]),N=C.exports.useCallback((j={},te=null)=>({...j,ref:tn(M,te),style:{...j.style,position:o,minWidth:m?void 0:"max-content",inset:"0 auto auto 0"}}),[o,M,m]),$=C.exports.useCallback((j={},te=null)=>{const{size:Le,shadowColor:me,bg:ge,style:de,...ve}=j;return{...ve,ref:te,"data-popper-arrow":"",style:Iee(j)}},[]),Z=C.exports.useCallback((j={},te=null)=>({...j,ref:te,"data-popper-arrow-inner":""}),[]);return{update(){var j;(j=_.current)==null||j.update()},forceUpdate(){var j;(j=_.current)==null||j.forceUpdate()},transformOrigin:hn.transformOrigin.varRef,referenceRef:L,popperRef:M,getPopperProps:N,getArrowProps:$,getArrowInnerProps:Z,getReferenceProps:A}}function Iee(e){const{size:t,shadowColor:n,bg:r,style:o}=e,i={...o,position:"absolute"};return t&&(i["--popper-arrow-size"]=t),n&&(i["--popper-arrow-shadow-color"]=n),r&&(i["--popper-arrow-bg"]=r),i}function wT(e={}){const{onClose:t,onOpen:n,isOpen:r,id:o}=e,i=Xn(n),s=Xn(t),[l,c]=C.exports.useState(e.defaultIsOpen||!1),d=r!==void 0?r:l,f=r!==void 0,h=o??`disclosure-${C.exports.useId()}`,m=C.exports.useCallback(()=>{f||c(!1),s?.()},[f,s]),g=C.exports.useCallback(()=>{f||c(!0),i?.()},[f,i]),b=C.exports.useCallback(()=>{d?m():g()},[d,g,m]);function S(w={}){return{...w,"aria-expanded":d,"aria-controls":h,onClick(x){var k;(k=w.onClick)==null||k.call(w,x),b()}}}function _(w={}){return{...w,hidden:!d,id:h}}return{isOpen:d,onOpen:g,onClose:m,onToggle:b,isControlled:f,getButtonProps:S,getDisclosureProps:_}}function CT(e){const{wasSelected:t,enabled:n,isSelected:r,mode:o="unmount"}=e;return!!(!n||r||o==="keepMounted"&&t)}var[Ree,Oee]=Mt({strict:!1,name:"PortalManagerContext"});function kT(e){const{children:t,zIndex:n}=e;return v(Ree,{value:{zIndex:n},children:t})}kT.displayName="PortalManager";var[_T,Mee]=Mt({strict:!1,name:"PortalContext"}),N3="chakra-portal",Nee=".chakra-portal",Dee=e=>v("div",{className:"chakra-portal-zIndex",style:{position:"absolute",zIndex:e.zIndex,top:0,left:0,right:0},children:e.children}),zee=e=>{const{appendToParentPortal:t,children:n}=e,[r,o]=C.exports.useState(null),i=C.exports.useRef(null),[,s]=C.exports.useState({});C.exports.useEffect(()=>s({}),[]);const l=Mee(),c=Oee();pi(()=>{if(!r)return;const f=r.ownerDocument,h=t?l??f.body:f.body;if(!h)return;i.current=f.createElement("div"),i.current.className=N3,h.appendChild(i.current),s({});const m=i.current;return()=>{h.contains(m)&&h.removeChild(m)}},[r]);const d=c?.zIndex?v(Dee,{zIndex:c?.zIndex,children:n}):n;return i.current?Fu.exports.createPortal(v(_T,{value:i.current,children:d}),i.current):v("span",{ref:f=>{f&&o(f)}})},$ee=e=>{const{children:t,containerRef:n,appendToParentPortal:r}=e,o=n.current,i=o??(typeof window<"u"?document.body:void 0),s=C.exports.useMemo(()=>{const c=o?.ownerDocument.createElement("div");return c&&(c.className=N3),c},[o]),[,l]=C.exports.useState({});return pi(()=>l({}),[]),pi(()=>{if(!(!s||!i))return i.appendChild(s),()=>{i.removeChild(s)}},[s,i]),i&&s?Fu.exports.createPortal(v(_T,{value:r?s:null,children:t}),s):null};function tl(e){const{containerRef:t,...n}=e;return t?v($ee,{containerRef:t,...n}):v(zee,{...n})}tl.defaultProps={appendToParentPortal:!0};tl.className=N3;tl.selector=Nee;tl.displayName="Portal";var Bee=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},Ml=new WeakMap,Ph=new WeakMap,Th={},R2=0,Fee=function(e,t,n,r){var o=Array.isArray(e)?e:[e];Th[n]||(Th[n]=new WeakMap);var i=Th[n],s=[],l=new Set,c=new Set(o),d=function(h){!h||l.has(h)||(l.add(h),d(h.parentNode))};o.forEach(d);var f=function(h){!h||c.has(h)||Array.prototype.forEach.call(h.children,function(m){if(l.has(m))f(m);else{var g=m.getAttribute(r),b=g!==null&&g!=="false",S=(Ml.get(m)||0)+1,_=(i.get(m)||0)+1;Ml.set(m,S),i.set(m,_),s.push(m),S===1&&b&&Ph.set(m,!0),_===1&&m.setAttribute(n,"true"),b||m.setAttribute(r,"true")}})};return f(t),l.clear(),R2++,function(){s.forEach(function(h){var m=Ml.get(h)-1,g=i.get(h)-1;Ml.set(h,m),i.set(h,g),m||(Ph.has(h)||h.removeAttribute(r),Ph.delete(h)),g||h.removeAttribute(n)}),R2--,R2||(Ml=new WeakMap,Ml=new WeakMap,Ph=new WeakMap,Th={})}},Vee=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=t||Bee(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live]"))),Fee(r,o,n,"aria-hidden")):function(){return null}};function Wee(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var kt={exports:{}},jee="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",Hee=jee,Uee=Hee;function ET(){}function LT(){}LT.resetWarningCache=ET;var Gee=function(){function e(r,o,i,s,l,c){if(c!==Uee){var d=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw d.name="Invariant Violation",d}}e.isRequired=e;function t(){return e}var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:LT,resetWarningCache:ET};return n.PropTypes=n,n};kt.exports=Gee();var U5="data-focus-lock",PT="data-focus-lock-disabled",Zee="data-no-focus-lock",Kee="data-autofocus-inside",qee="data-no-autofocus";function Yee(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function Xee(e,t){var n=C.exports.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}function TT(e,t){return Xee(t||null,function(n){return e.forEach(function(r){return Yee(r,n)})})}var O2={width:"1px",height:"0px",padding:0,overflow:"hidden",position:"fixed",top:"1px",left:"1px"};function AT(e){return e}function IT(e,t){t===void 0&&(t=AT);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(l){return l!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(l){return i(l)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var l=n;n=[],l.forEach(i),s=n}var c=function(){var f=s;s=[],f.forEach(i)},d=function(){return Promise.resolve().then(c)};d(),n={push:function(f){s.push(f),d()},filter:function(f){return s=s.filter(f),n}}}};return o}function D3(e,t){return t===void 0&&(t=AT),IT(e,t)}function RT(e){e===void 0&&(e={});var t=IT(null);return t.options=li({async:!0,ssr:!1},e),t}var OT=function(e){var t=e.sideCar,n=Cm(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return v(r,{...li({},n)})};OT.isSideCarExport=!0;function Qee(e,t){return e.useMedium(t),OT}var MT=D3({},function(e){var t=e.target,n=e.currentTarget;return{target:t,currentTarget:n}}),NT=D3(),Jee=D3(),ete=RT({async:!0}),tte=[],z3=C.exports.forwardRef(function(t,n){var r,o=C.exports.useState(),i=o[0],s=o[1],l=C.exports.useRef(),c=C.exports.useRef(!1),d=C.exports.useRef(null),f=t.children,h=t.disabled,m=t.noFocusGuards,g=t.persistentFocus,b=t.crossFrame,S=t.autoFocus;t.allowTextSelection;var _=t.group,w=t.className,x=t.whiteList,k=t.hasPositiveIndices,L=t.shards,A=L===void 0?tte:L,M=t.as,N=M===void 0?"div":M,$=t.lockProps,Z=$===void 0?{}:$,j=t.sideCar,te=t.returnFocus,Le=t.focusOptions,me=t.onActivation,ge=t.onDeactivation,de=C.exports.useState({}),ve=de[0],oe=C.exports.useCallback(function(){d.current=d.current||document&&document.activeElement,l.current&&me&&me(l.current),c.current=!0},[me]),H=C.exports.useCallback(function(){c.current=!1,ge&&ge(l.current)},[ge]);C.exports.useEffect(function(){h||(d.current=null)},[]);var Q=C.exports.useCallback(function(Te){var pe=d.current;if(pe&&pe.focus){var _e=typeof te=="function"?te(pe):te;if(_e){var ze=typeof _e=="object"?_e:void 0;d.current=null,Te?Promise.resolve().then(function(){return pe.focus(ze)}):pe.focus(ze)}}},[te]),q=C.exports.useCallback(function(Te){c.current&&MT.useMedium(Te)},[]),R=NT.useMedium,U=C.exports.useCallback(function(Te){l.current!==Te&&(l.current=Te,s(Te))},[]),ue=Gd((r={},r[PT]=h&&"disabled",r[U5]=_,r),Z),fe=m!==!0,be=fe&&m!=="tail",Se=TT([n,U]);return Y(wn,{children:[fe&&[v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:O2},"guard-first"),k?v("div",{"data-focus-guard":!0,tabIndex:h?-1:1,style:O2},"guard-nearest"):null],!h&&v(j,{id:ve,sideCar:ete,observed:i,disabled:h,persistentFocus:g,crossFrame:b,autoFocus:S,whiteList:x,shards:A,onActivation:oe,onDeactivation:H,returnFocus:Q,focusOptions:Le}),v(N,{ref:Se,...ue,className:w,onBlur:R,onFocus:q,children:f}),be&&v("div",{"data-focus-guard":!0,tabIndex:h?-1:0,style:O2})]})});z3.propTypes={};z3.defaultProps={children:void 0,disabled:!1,returnFocus:!1,focusOptions:void 0,noFocusGuards:!1,autoFocus:!0,persistentFocus:!1,crossFrame:!0,hasPositiveIndices:void 0,allowTextSelection:void 0,group:void 0,className:void 0,whiteList:void 0,shards:void 0,as:"div",lockProps:{},onActivation:void 0,onDeactivation:void 0};const DT=z3;function G5(e,t){return G5=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,o){return r.__proto__=o,r},G5(e,t)}function nte(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,G5(e,t)}function zT(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rte(e,t){function n(r){return r.displayName||r.name||"Component"}return function(o){var i=[],s;function l(){s=e(i.map(function(d){return d.props})),t(s)}var c=function(d){nte(f,d);function f(){return d.apply(this,arguments)||this}f.peek=function(){return s};var h=f.prototype;return h.componentDidMount=function(){i.push(this),l()},h.componentDidUpdate=function(){l()},h.componentWillUnmount=function(){var g=i.indexOf(this);i.splice(g,1),l()},h.render=function(){return v(o,{...this.props})},f}(C.exports.PureComponent);return zT(c,"displayName","SideEffect("+n(o)+")"),c}}var _i=function(e){for(var t=Array(e.length),n=0;n=0}).sort(dte)},fte=["button:enabled","select:enabled","textarea:enabled","input:enabled","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[tabindex]","[contenteditable]","[autofocus]"],B3=fte.join(","),pte="".concat(B3,", [data-focus-guard]"),GT=function(e,t){var n;return _i(((n=e.shadowRoot)===null||n===void 0?void 0:n.children)||e.children).reduce(function(r,o){return r.concat(o.matches(t?pte:B3)?[o]:[],GT(o))},[])},F3=function(e,t){return e.reduce(function(n,r){return n.concat(GT(r,t),r.parentNode?_i(r.parentNode.querySelectorAll(B3)).filter(function(o){return o===r}):[])},[])},hte=function(e){var t=e.querySelectorAll("[".concat(Kee,"]"));return _i(t).map(function(n){return F3([n])}).reduce(function(n,r){return n.concat(r)},[])},V3=function(e,t){return _i(e).filter(function(n){return FT(t,n)}).filter(function(n){return lte(n)})},Q8=function(e,t){return t===void 0&&(t=new Map),_i(e).filter(function(n){return VT(t,n)})},K5=function(e,t,n){return UT(V3(F3(e,n),t),!0,n)},J8=function(e,t){return UT(V3(F3(e),t),!1)},mte=function(e,t){return V3(hte(e),t)},af=function(e,t){return(e.shadowRoot?af(e.shadowRoot,t):Object.getPrototypeOf(e).contains.call(e,t))||_i(e.children).some(function(n){return af(n,t)})},gte=function(e){for(var t=new Set,n=e.length,r=0;r0&&t.add(o),(i&Node.DOCUMENT_POSITION_CONTAINS)>0&&t.add(r)}return e.filter(function(s,l){return!t.has(l)})},ZT=function(e){return e.parentNode?ZT(e.parentNode):e},W3=function(e){var t=Z5(e);return t.filter(Boolean).reduce(function(n,r){var o=r.getAttribute(U5);return n.push.apply(n,o?gte(_i(ZT(r).querySelectorAll("[".concat(U5,'="').concat(o,'"]:not([').concat(PT,'="disabled"])')))):[r]),n},[])},KT=function(e){return e.activeElement?e.activeElement.shadowRoot?KT(e.activeElement.shadowRoot):e.activeElement:void 0},j3=function(){return document.activeElement?document.activeElement.shadowRoot?KT(document.activeElement.shadowRoot):document.activeElement:void 0},vte=function(e){return e===document.activeElement},yte=function(e){return Boolean(_i(e.querySelectorAll("iframe")).some(function(t){return vte(t)}))},qT=function(e){var t=document&&j3();return!t||t.dataset&&t.dataset.focusGuard?!1:W3(e).some(function(n){return af(n,t)||yte(n)})},bte=function(){var e=document&&j3();return e?_i(document.querySelectorAll("[".concat(Zee,"]"))).some(function(t){return af(t,e)}):!1},Ste=function(e,t){return t.filter(HT).filter(function(n){return n.name===e.name}).filter(function(n){return n.checked})[0]||e},H3=function(e,t){return HT(e)&&e.name?Ste(e,t):e},xte=function(e){var t=new Set;return e.forEach(function(n){return t.add(H3(n,e))}),e.filter(function(n){return t.has(n)})},e7=function(e){return e[0]&&e.length>1?H3(e[0],e):e[0]},t7=function(e,t){return e.length>1?e.indexOf(H3(e[t],e)):t},YT="NEW_FOCUS",wte=function(e,t,n,r){var o=e.length,i=e[0],s=e[o-1],l=$3(n);if(!(n&&e.indexOf(n)>=0)){var c=n!==void 0?t.indexOf(n):-1,d=r?t.indexOf(r):c,f=r?e.indexOf(r):-1,h=c-d,m=t.indexOf(i),g=t.indexOf(s),b=xte(t),S=n!==void 0?b.indexOf(n):-1,_=S-(r?b.indexOf(r):c),w=t7(e,0),x=t7(e,o-1);if(c===-1||f===-1)return YT;if(!h&&f>=0)return f;if(c<=m&&l&&Math.abs(h)>1)return x;if(c>=g&&l&&Math.abs(h)>1)return w;if(h&&Math.abs(_)>1)return f;if(c<=m)return x;if(c>g)return w;if(h)return Math.abs(h)>1?f:(o+f+h)%o}},q5=function(e,t){return t===void 0&&(t=[]),t.push(e),e.parentNode&&q5(e.parentNode.host||e.parentNode,t),t},M2=function(e,t){for(var n=q5(e),r=q5(t),o=0;o=0)return i}return!1},XT=function(e,t,n){var r=Z5(e),o=Z5(t),i=r[0],s=!1;return o.filter(Boolean).forEach(function(l){s=M2(s||l,l)||s,n.filter(Boolean).forEach(function(c){var d=M2(i,c);d&&(!s||af(d,s)?s=d:s=M2(d,s))})}),s},Cte=function(e,t){return e.reduce(function(n,r){return n.concat(mte(r,t))},[])},kte=function(e){return function(t){var n;return t.autofocus||!!(!((n=WT(t))===null||n===void 0)&&n.autofocus)||e.indexOf(t)>=0}},_te=function(e,t){var n=new Map;return t.forEach(function(r){return n.set(r.node,r)}),e.map(function(r){return n.get(r)}).filter(cte)},Ete=function(e,t){var n=document&&j3(),r=W3(e).filter(S0),o=XT(n||e,e,r),i=new Map,s=J8(r,i),l=K5(r,i).filter(function(g){var b=g.node;return S0(b)});if(!(!l[0]&&(l=s,!l[0]))){var c=J8([o],i).map(function(g){var b=g.node;return b}),d=_te(c,l),f=d.map(function(g){var b=g.node;return b}),h=wte(f,c,n,t);if(h===YT){var m=Q8(s.map(function(g){var b=g.node;return b})).filter(kte(Cte(r,i)));return{node:m&&m.length?e7(m):e7(Q8(f))}}return h===void 0?h:d[h]}},Lte=function(e){var t=W3(e).filter(S0),n=XT(e,e,t),r=new Map,o=K5([n],r,!0),i=K5(t,r).filter(function(s){var l=s.node;return S0(l)}).map(function(s){var l=s.node;return l});return o.map(function(s){var l=s.node,c=s.index;return{node:l,index:c,lockItem:i.indexOf(l)>=0,guard:$3(l)}})},Pte=function(e,t){"focus"in e&&e.focus(t),"contentWindow"in e&&e.contentWindow&&e.contentWindow.focus()},N2=0,D2=!1,Tte=function(e,t,n){n===void 0&&(n={});var r=Ete(e,t);if(!D2&&r){if(N2>2){console.error("FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting"),D2=!0,setTimeout(function(){D2=!1},1);return}N2++,Pte(r.node,n.focusOptions),N2--}};const QT=Tte;function JT(e){var t=window,n=t.setImmediate;typeof n<"u"?n(e):setTimeout(e,1)}var Ate=function(){return document&&document.activeElement===document.body},Ite=function(){return Ate()||bte()},gu=null,ou=null,vu=null,sf=!1,Rte=function(){return!0},Ote=function(t){return(gu.whiteList||Rte)(t)},Mte=function(t,n){vu={observerNode:t,portaledElement:n}},Nte=function(t){return vu&&vu.portaledElement===t};function n7(e,t,n,r){var o=null,i=e;do{var s=r[i];if(s.guard)s.node.dataset.focusAutoGuard&&(o=s);else if(s.lockItem){if(i!==e)return;o=null}else break}while((i+=n)!==t);o&&(o.node.tabIndex=0)}var Dte=function(t){return t&&"current"in t?t.current:t},zte=function(t){return t?Boolean(sf):sf==="meanwhile"},$te=function e(t,n,r){return n&&(n.host===t&&(!n.activeElement||r.contains(n.activeElement))||n.parentNode&&e(t,n.parentNode,r))},Bte=function(t,n){return n.some(function(r){return $te(t,r,r)})},x0=function(){var t=!1;if(gu){var n=gu,r=n.observed,o=n.persistentFocus,i=n.autoFocus,s=n.shards,l=n.crossFrame,c=n.focusOptions,d=r||vu&&vu.portaledElement,f=document&&document.activeElement;if(d){var h=[d].concat(s.map(Dte).filter(Boolean));if((!f||Ote(f))&&(o||zte(l)||!Ite()||!ou&&i)&&(d&&!(qT(h)||f&&Bte(f,h)||Nte(f))&&(document&&!ou&&f&&!i?(f.blur&&f.blur(),document.body.focus()):(t=QT(h,ou,{focusOptions:c}),vu={})),sf=!1,ou=document&&document.activeElement),document){var m=document&&document.activeElement,g=Lte(h),b=g.map(function(S){var _=S.node;return _}).indexOf(m);b>-1&&(g.filter(function(S){var _=S.guard,w=S.node;return _&&w.dataset.focusAutoGuard}).forEach(function(S){var _=S.node;return _.removeAttribute("tabIndex")}),n7(b,g.length,1,g),n7(b,-1,-1,g))}}}return t},eA=function(t){x0()&&t&&(t.stopPropagation(),t.preventDefault())},U3=function(){return JT(x0)},Fte=function(t){var n=t.target,r=t.currentTarget;r.contains(n)||Mte(r,n)},Vte=function(){return null},tA=function(){sf="just",setTimeout(function(){sf="meanwhile"},0)},Wte=function(){document.addEventListener("focusin",eA),document.addEventListener("focusout",U3),window.addEventListener("blur",tA)},jte=function(){document.removeEventListener("focusin",eA),document.removeEventListener("focusout",U3),window.removeEventListener("blur",tA)};function Hte(e){return e.filter(function(t){var n=t.disabled;return!n})}function Ute(e){var t=e.slice(-1)[0];t&&!gu&&Wte();var n=gu,r=n&&t&&t.id===n.id;gu=t,n&&!r&&(n.onDeactivation(),e.filter(function(o){var i=o.id;return i===n.id}).length||n.returnFocus(!t)),t?(ou=null,(!r||n.observed!==t.observed)&&t.onActivation(),x0(),JT(x0)):(jte(),ou=null)}MT.assignSyncMedium(Fte);NT.assignMedium(U3);Jee.assignMedium(function(e){return e({moveFocusInside:QT,focusInside:qT})});const Gte=rte(Hte,Ute)(Vte);var nA=C.exports.forwardRef(function(t,n){return v(DT,{sideCar:Gte,ref:n,...t})}),rA=DT.propTypes||{};rA.sideCar;Wee(rA,["sideCar"]);nA.propTypes={};const Zte=nA;var oA=e=>{const{initialFocusRef:t,finalFocusRef:n,contentRef:r,restoreFocus:o,children:i,isDisabled:s,autoFocus:l,persistentFocus:c,lockFocusAcrossFrames:d}=e,f=C.exports.useCallback(()=>{t?.current?t.current.focus():r?.current&&dJ(r.current).length===0&&requestAnimationFrame(()=>{var b;(b=r.current)==null||b.focus()})},[t,r]),h=C.exports.useCallback(()=>{var g;(g=n?.current)==null||g.focus()},[n]);return v(Zte,{crossFrame:d,persistentFocus:c,autoFocus:l,disabled:s,onActivation:f,onDeactivation:h,returnFocus:o&&!n,children:i})};oA.displayName="FocusLock";var h1="right-scroll-bar-position",m1="width-before-scroll-bar",Kte="with-scroll-bars-hidden",qte="--removed-body-scroll-bar-size",iA=RT(),z2=function(){},Wm=C.exports.forwardRef(function(e,t){var n=C.exports.useRef(null),r=C.exports.useState({onScrollCapture:z2,onWheelCapture:z2,onTouchMoveCapture:z2}),o=r[0],i=r[1],s=e.forwardProps,l=e.children,c=e.className,d=e.removeScrollBar,f=e.enabled,h=e.shards,m=e.sideCar,g=e.noIsolation,b=e.inert,S=e.allowPinchZoom,_=e.as,w=_===void 0?"div":_,x=Cm(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noIsolation","inert","allowPinchZoom","as"]),k=m,L=TT([n,t]),A=li(li({},x),o);return Y(wn,{children:[f&&v(k,{sideCar:iA,removeScrollBar:d,shards:h,noIsolation:g,inert:b,setCallbacks:i,allowPinchZoom:!!S,lockRef:n}),s?C.exports.cloneElement(C.exports.Children.only(l),li(li({},A),{ref:L})):v(w,{...li({},A,{className:c,ref:L}),children:l})]})});Wm.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};Wm.classNames={fullWidth:m1,zeroRight:h1};var Yte=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function Xte(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=Yte();return t&&e.setAttribute("nonce",t),e}function Qte(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function Jte(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var ene=function(){var e=0,t=null;return{add:function(n){e==0&&(t=Xte())&&(Qte(t,n),Jte(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},tne=function(){var e=ene();return function(t,n){C.exports.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},aA=function(){var e=tne(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},nne={left:0,top:0,right:0,gap:0},$2=function(e){return parseInt(e||"",10)||0},rne=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],o=t[e==="padding"?"paddingRight":"marginRight"];return[$2(n),$2(r),$2(o)]},one=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return nne;var t=rne(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},ine=aA(),ane=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,l=e.gap;return n===void 0&&(n="margin"),` + .`.concat(Kte,` { + overflow: hidden `).concat(r,`; + padding-right: `).concat(l,"px ").concat(r,`; + } + body { + overflow: hidden `).concat(r,`; + overscroll-behavior: contain; + `).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&` + padding-left: `.concat(o,`px; + padding-top: `).concat(i,`px; + padding-right: `).concat(s,`px; + margin-left:0; + margin-top:0; + margin-right: `).concat(l,"px ").concat(r,`; + `),n==="padding"&&"padding-right: ".concat(l,"px ").concat(r,";")].filter(Boolean).join(""),` + } + + .`).concat(h1,` { + right: `).concat(l,"px ").concat(r,`; + } + + .`).concat(m1,` { + margin-right: `).concat(l,"px ").concat(r,`; + } + + .`).concat(h1," .").concat(h1,` { + right: 0 `).concat(r,`; + } + + .`).concat(m1," .").concat(m1,` { + margin-right: 0 `).concat(r,`; + } + + body { + `).concat(qte,": ").concat(l,`px; + } +`)},sne=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r,i=C.exports.useMemo(function(){return one(o)},[o]);return v(ine,{styles:ane(i,!t,o,n?"":"!important")})},Y5=!1;if(typeof window<"u")try{var Ah=Object.defineProperty({},"passive",{get:function(){return Y5=!0,!0}});window.addEventListener("test",Ah,Ah),window.removeEventListener("test",Ah,Ah)}catch{Y5=!1}var Nl=Y5?{passive:!1}:!1,lne=function(e){return e.tagName==="TEXTAREA"},sA=function(e,t){var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!lne(e)&&n[t]==="visible")},une=function(e){return sA(e,"overflowY")},cne=function(e){return sA(e,"overflowX")},r7=function(e,t){var n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var r=lA(e,n);if(r){var o=uA(e,n),i=o[1],s=o[2];if(i>s)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},dne=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},fne=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},lA=function(e,t){return e==="v"?une(t):cne(t)},uA=function(e,t){return e==="v"?dne(t):fne(t)},pne=function(e,t){return e==="h"&&t==="rtl"?-1:1},hne=function(e,t,n,r,o){var i=pne(e,window.getComputedStyle(t).direction),s=i*r,l=n.target,c=t.contains(l),d=!1,f=s>0,h=0,m=0;do{var g=uA(e,l),b=g[0],S=g[1],_=g[2],w=S-_-i*b;(b||w)&&lA(e,l)&&(h+=w,m+=b),l=l.parentNode}while(!c&&l!==document.body||c&&(t.contains(l)||t===l));return(f&&(o&&h===0||!o&&s>h)||!f&&(o&&m===0||!o&&-s>m))&&(d=!0),d},Ih=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},o7=function(e){return[e.deltaX,e.deltaY]},i7=function(e){return e&&"current"in e?e.current:e},mne=function(e,t){return e[0]===t[0]&&e[1]===t[1]},gne=function(e){return` + .block-interactivity-`.concat(e,` {pointer-events: none;} + .allow-interactivity-`).concat(e,` {pointer-events: all;} +`)},vne=0,Dl=[];function yne(e){var t=C.exports.useRef([]),n=C.exports.useRef([0,0]),r=C.exports.useRef(),o=C.exports.useState(vne++)[0],i=C.exports.useState(function(){return aA()})[0],s=C.exports.useRef(e);C.exports.useEffect(function(){s.current=e},[e]),C.exports.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var S=b5([e.lockRef.current],(e.shards||[]).map(i7),!0).filter(Boolean);return S.forEach(function(_){return _.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),S.forEach(function(_){return _.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var l=C.exports.useCallback(function(S,_){if("touches"in S&&S.touches.length===2)return!s.current.allowPinchZoom;var w=Ih(S),x=n.current,k="deltaX"in S?S.deltaX:x[0]-w[0],L="deltaY"in S?S.deltaY:x[1]-w[1],A,M=S.target,N=Math.abs(k)>Math.abs(L)?"h":"v";if("touches"in S&&N==="h"&&M.type==="range")return!1;var $=r7(N,M);if(!$)return!0;if($?A=N:(A=N==="v"?"h":"v",$=r7(N,M)),!$)return!1;if(!r.current&&"changedTouches"in S&&(k||L)&&(r.current=A),!A)return!0;var Z=r.current||A;return hne(Z,_,S,Z==="h"?k:L,!0)},[]),c=C.exports.useCallback(function(S){var _=S;if(!(!Dl.length||Dl[Dl.length-1]!==i)){var w="deltaY"in _?o7(_):Ih(_),x=t.current.filter(function(A){return A.name===_.type&&A.target===_.target&&mne(A.delta,w)})[0];if(x&&x.should){_.cancelable&&_.preventDefault();return}if(!x){var k=(s.current.shards||[]).map(i7).filter(Boolean).filter(function(A){return A.contains(_.target)}),L=k.length>0?l(_,k[0]):!s.current.noIsolation;L&&_.cancelable&&_.preventDefault()}}},[]),d=C.exports.useCallback(function(S,_,w,x){var k={name:S,delta:_,target:w,should:x};t.current.push(k),setTimeout(function(){t.current=t.current.filter(function(L){return L!==k})},1)},[]),f=C.exports.useCallback(function(S){n.current=Ih(S),r.current=void 0},[]),h=C.exports.useCallback(function(S){d(S.type,o7(S),S.target,l(S,e.lockRef.current))},[]),m=C.exports.useCallback(function(S){d(S.type,Ih(S),S.target,l(S,e.lockRef.current))},[]);C.exports.useEffect(function(){return Dl.push(i),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:m}),document.addEventListener("wheel",c,Nl),document.addEventListener("touchmove",c,Nl),document.addEventListener("touchstart",f,Nl),function(){Dl=Dl.filter(function(S){return S!==i}),document.removeEventListener("wheel",c,Nl),document.removeEventListener("touchmove",c,Nl),document.removeEventListener("touchstart",f,Nl)}},[]);var g=e.removeScrollBar,b=e.inert;return Y(wn,{children:[b?v(i,{styles:gne(o)}):null,g?v(sne,{gapMode:"margin"}):null]})}const bne=Qee(iA,yne);var cA=C.exports.forwardRef(function(e,t){return v(Wm,{...li({},e,{ref:t,sideCar:bne})})});cA.classNames=Wm.classNames;const Sne=cA;var nl=(...e)=>e.filter(Boolean).join(" ");function Xc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var xne=class{modals;constructor(){this.modals=[]}add(e){this.modals.push(e)}remove(e){this.modals=this.modals.filter(t=>t!==e)}isTopModal(e){return this.modals[this.modals.length-1]===e}},X5=new xne;function wne(e,t){C.exports.useEffect(()=>(t&&X5.add(e),()=>{X5.remove(e)}),[t,e])}function Cne(e){const{isOpen:t,onClose:n,id:r,closeOnOverlayClick:o=!0,closeOnEsc:i=!0,useInert:s=!0,onOverlayClick:l,onEsc:c}=e,d=C.exports.useRef(null),f=C.exports.useRef(null),[h,m,g]=_ne(r,"chakra-modal","chakra-modal--header","chakra-modal--body");kne(d,t&&s),wne(d,t);const b=C.exports.useRef(null),S=C.exports.useCallback($=>{b.current=$.target},[]),_=C.exports.useCallback($=>{$.key==="Escape"&&($.stopPropagation(),i&&n?.(),c?.())},[i,n,c]),[w,x]=C.exports.useState(!1),[k,L]=C.exports.useState(!1),A=C.exports.useCallback(($={},Z=null)=>({role:"dialog",...$,ref:tn(Z,d),id:h,tabIndex:-1,"aria-modal":!0,"aria-labelledby":w?m:void 0,"aria-describedby":k?g:void 0,onClick:Xc($.onClick,j=>j.stopPropagation())}),[g,k,h,m,w]),M=C.exports.useCallback($=>{$.stopPropagation(),b.current===$.target&&(!X5.isTopModal(d)||(o&&n?.(),l?.()))},[n,o,l]),N=C.exports.useCallback(($={},Z=null)=>({...$,ref:tn(Z,f),onClick:Xc($.onClick,M),onKeyDown:Xc($.onKeyDown,_),onMouseDown:Xc($.onMouseDown,S)}),[_,S,M]);return{isOpen:t,onClose:n,headerId:m,bodyId:g,setBodyMounted:L,setHeaderMounted:x,dialogRef:d,overlayRef:f,getDialogProps:A,getDialogContainerProps:N}}function kne(e,t){const n=e.current;C.exports.useEffect(()=>{if(!(!e.current||!t))return Vee(e.current)},[t,e,n])}function _ne(e,...t){const n=C.exports.useId(),r=e||n;return C.exports.useMemo(()=>t.map(o=>`${o}-${r}`),[r,t])}var[Ene,rl]=Mt({name:"ModalStylesContext",errorMessage:`useModalStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Lne,rs]=Mt({strict:!0,name:"ModalContext",errorMessage:"useModalContext: `context` is undefined. Seems you forgot to wrap modal components in ``"}),Nu=e=>{const{portalProps:t,children:n,autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:l,blockScrollOnMount:c,allowPinchZoom:d,preserveScrollBarGap:f,motionPreset:h,lockFocusAcrossFrames:m,onCloseComplete:g}=e,b=gr("Modal",e),_={...Cne(e),autoFocus:r,trapFocus:o,initialFocusRef:i,finalFocusRef:s,returnFocusOnClose:l,blockScrollOnMount:c,allowPinchZoom:d,preserveScrollBarGap:f,motionPreset:h,lockFocusAcrossFrames:m};return v(Lne,{value:_,children:v(Ene,{value:b,children:v(da,{onExitComplete:g,children:_.isOpen&&v(tl,{...t,children:n})})})})};Nu.defaultProps={lockFocusAcrossFrames:!0,returnFocusOnClose:!0,scrollBehavior:"outside",trapFocus:!0,autoFocus:!0,blockScrollOnMount:!0,allowPinchZoom:!1,motionPreset:"scale"};Nu.displayName="Modal";var w0=le((e,t)=>{const{className:n,...r}=e,{bodyId:o,setBodyMounted:i}=rs();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=nl("chakra-modal__body",n),l=rl();return X.createElement(ee.div,{ref:t,className:s,id:o,...r,__css:l.body})});w0.displayName="ModalBody";var G3=le((e,t)=>{const{onClick:n,className:r,...o}=e,{onClose:i}=rs(),s=nl("chakra-modal__close-btn",r),l=rl();return v($m,{ref:t,__css:l.closeButton,className:s,onClick:Xc(n,c=>{c.stopPropagation(),i()}),...o})});G3.displayName="ModalCloseButton";function dA(e){const{autoFocus:t,trapFocus:n,dialogRef:r,initialFocusRef:o,blockScrollOnMount:i,allowPinchZoom:s,finalFocusRef:l,returnFocusOnClose:c,preserveScrollBarGap:d,lockFocusAcrossFrames:f}=rs(),[h,m]=a3();return C.exports.useEffect(()=>{!h&&m&&setTimeout(m)},[h,m]),v(oA,{autoFocus:t,isDisabled:!n,initialFocusRef:o,finalFocusRef:l,restoreFocus:c,contentRef:r,lockFocusAcrossFrames:f,children:v(Sne,{removeScrollBar:!d,allowPinchZoom:s,enabled:i,forwardProps:!0,children:e.children})})}var Pne={slideInBottom:{...D5,custom:{offsetY:16,reverse:!0}},slideInRight:{...D5,custom:{offsetX:16,reverse:!0}},scale:{...kP,custom:{initialScale:.95,reverse:!0}},none:{}},Tne=ee(xo.section),fA=C.exports.forwardRef((e,t)=>{const{preset:n,...r}=e,o=Pne[n];return v(Tne,{ref:t,...o,...r})});fA.displayName="ModalTransition";var lf=le((e,t)=>{const{className:n,children:r,containerProps:o,...i}=e,{getDialogProps:s,getDialogContainerProps:l}=rs(),c=s(i,t),d=l(o),f=nl("chakra-modal__content",n),h=rl(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh","@supports(height: -webkit-fill-available)":{height:"-webkit-fill-available"},position:"fixed",left:0,top:0,...h.dialogContainer},{motionPreset:b}=rs();return X.createElement(dA,null,X.createElement(ee.div,{...d,className:"chakra-modal__content-container",tabIndex:-1,__css:g},v(fA,{preset:b,className:f,...c,__css:m,children:r})))});lf.displayName="ModalContent";var Z3=le((e,t)=>{const{className:n,...r}=e,o=nl("chakra-modal__footer",n),i=rl(),s={display:"flex",alignItems:"center",justifyContent:"flex-end",...i.footer};return X.createElement(ee.footer,{ref:t,...r,__css:s,className:o})});Z3.displayName="ModalFooter";var K3=le((e,t)=>{const{className:n,...r}=e,{headerId:o,setHeaderMounted:i}=rs();C.exports.useEffect(()=>(i(!0),()=>i(!1)),[i]);const s=nl("chakra-modal__header",n),l=rl(),c={flex:0,...l.header};return X.createElement(ee.header,{ref:t,className:s,id:o,...r,__css:c})});K3.displayName="ModalHeader";var Ane=ee(xo.div),uf=le((e,t)=>{const{className:n,transition:r,...o}=e,i=nl("chakra-modal__overlay",n),s=rl(),l={pos:"fixed",left:"0",top:"0",w:"100vw",h:"100vh",...s.overlay},{motionPreset:c}=rs();return v(Ane,{...c==="none"?{}:CP,__css:l,ref:t,className:i,...o})});uf.displayName="ModalOverlay";function Ine(e){const{leastDestructiveRef:t,...n}=e;return v(Nu,{...n,initialFocusRef:t})}var Rne=le((e,t)=>v(lf,{ref:t,role:"alertdialog",...e})),[cge,One]=Mt(),Mne=ee(_P),Nne=le((e,t)=>{const{className:n,children:r,...o}=e,{getDialogProps:i,getDialogContainerProps:s,isOpen:l}=rs(),c=i(o,t),d=s(),f=nl("chakra-modal__content",n),h=rl(),m={display:"flex",flexDirection:"column",position:"relative",width:"100%",outline:0,...h.dialog},g={display:"flex",width:"100vw",height:"100vh",position:"fixed",left:0,top:0,...h.dialogContainer},{placement:b}=One();return X.createElement(ee.div,{...d,className:"chakra-modal__content-container",__css:g},v(dA,{children:v(Mne,{direction:b,in:l,className:f,...c,__css:m,children:r})}))});Nne.displayName="DrawerContent";var a7={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},q3=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??a7.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??a7.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});q3.displayName="Icon";function Dne(e,t){const n=Xn(e);C.exports.useEffect(()=>{let r=null;const o=()=>n();return t!==null&&(r=window.setInterval(o,t)),()=>{r&&window.clearInterval(r)}},[t,n])}var pA=(...e)=>e.filter(Boolean).join(" "),B2=e=>e?!0:void 0;function Qo(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var zne=e=>v(q3,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z"})}),$ne=e=>v(q3,{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z"})});function s7(e,t,n,r){C.exports.useEffect(()=>{if(!e.current||!r)return;const o=e.current.ownerDocument.defaultView??window,i=Array.isArray(t)?t:[t],s=new o.MutationObserver(l=>{for(const c of l)c.type==="attributes"&&c.attributeName&&i.includes(c.attributeName)&&n(c)});return s.observe(e.current,{attributes:!0,attributeFilter:i}),()=>s.disconnect()})}var Bne=50,l7=300;function Fne(e,t){const[n,r]=C.exports.useState(!1),[o,i]=C.exports.useState(null),[s,l]=C.exports.useState(!0),c=C.exports.useRef(null),d=()=>clearTimeout(c.current);Dne(()=>{o==="increment"&&e(),o==="decrement"&&t()},n?Bne:null);const f=C.exports.useCallback(()=>{s&&e(),c.current=setTimeout(()=>{l(!1),r(!0),i("increment")},l7)},[e,s]),h=C.exports.useCallback(()=>{s&&t(),c.current=setTimeout(()=>{l(!1),r(!0),i("decrement")},l7)},[t,s]),m=C.exports.useCallback(()=>{l(!0),r(!1),d()},[]);return C.exports.useEffect(()=>()=>d(),[]),{up:f,down:h,stop:m,isSpinning:n}}var Vne=/^[Ee0-9+\-.]$/;function Wne(e){return Vne.test(e)}function jne(e,t){if(e.key==null)return!0;const n=e.ctrlKey||e.altKey||e.metaKey;return!(e.key.length===1)||n?!0:t(e.key)}function Hne(e={}){const{focusInputOnChange:t=!0,clampValueOnBlur:n=!0,keepWithinRange:r=!0,min:o=Number.MIN_SAFE_INTEGER,max:i=Number.MAX_SAFE_INTEGER,step:s=1,isReadOnly:l,isDisabled:c,isRequired:d,isInvalid:f,pattern:h="[0-9]*(.[0-9]+)?",inputMode:m="decimal",allowMouseWheel:g,id:b,onChange:S,precision:_,name:w,"aria-describedby":x,"aria-label":k,"aria-labelledby":L,onFocus:A,onBlur:M,onInvalid:N,getAriaValueText:$,isValidCharacter:Z,format:j,parse:te,...Le}=e,me=Xn(A),ge=Xn(M),de=Xn(N),ve=Xn(Z??Wne),oe=Xn($),H=aQ(e),{update:Q,increment:q,decrement:R}=H,[U,ue]=C.exports.useState(!1),fe=!(l||c),be=C.exports.useRef(null),Se=C.exports.useRef(null),Te=C.exports.useRef(null),pe=C.exports.useRef(null),_e=C.exports.useCallback(ae=>ae.split("").filter(ve).join(""),[ve]),ze=C.exports.useCallback(ae=>te?.(ae)??ae,[te]),ct=C.exports.useCallback(ae=>(j?.(ae)??ae).toString(),[j]);v0(()=>{(H.valueAsNumber>i||H.valueAsNumber{if(!be.current)return;if(be.current.value!=H.value){const Ze=ze(be.current.value);H.setValue(_e(Ze))}},[ze,_e]);const Nt=C.exports.useCallback((ae=s)=>{fe&&q(ae)},[q,fe,s]),Cn=C.exports.useCallback((ae=s)=>{fe&&R(ae)},[R,fe,s]),xe=Fne(Nt,Cn);s7(Te,"disabled",xe.stop,xe.isSpinning),s7(pe,"disabled",xe.stop,xe.isSpinning);const Re=C.exports.useCallback(ae=>{if(ae.nativeEvent.isComposing)return;const At=ze(ae.currentTarget.value);Q(_e(At)),Se.current={start:ae.currentTarget.selectionStart,end:ae.currentTarget.selectionEnd}},[Q,_e,ze]),rt=C.exports.useCallback(ae=>{var Ze;me?.(ae),Se.current&&(ae.target.selectionStart=Se.current.start??((Ze=ae.currentTarget.value)==null?void 0:Ze.length),ae.currentTarget.selectionEnd=Se.current.end??ae.currentTarget.selectionStart)},[me]),$e=C.exports.useCallback(ae=>{if(ae.nativeEvent.isComposing)return;jne(ae,ve)||ae.preventDefault();const Ze=Ut(ae)*s,At=ae.key,jn={ArrowUp:()=>Nt(Ze),ArrowDown:()=>Cn(Ze),Home:()=>Q(o),End:()=>Q(i)}[At];jn&&(ae.preventDefault(),jn(ae))},[ve,s,Nt,Cn,Q,o,i]),Ut=ae=>{let Ze=1;return(ae.metaKey||ae.ctrlKey)&&(Ze=.1),ae.shiftKey&&(Ze=10),Ze},kn=C.exports.useMemo(()=>{const ae=oe?.(H.value);if(ae!=null)return ae;const Ze=H.value.toString();return Ze||void 0},[H.value,oe]),dt=C.exports.useCallback(()=>{let ae=H.value;ae!==""&&(H.valueAsNumberi&&(ae=i),H.cast(ae))},[H,i,o]),Lt=C.exports.useCallback(()=>{ue(!1),n&&dt()},[n,ue,dt]),rn=C.exports.useCallback(()=>{t&&requestAnimationFrame(()=>{var ae;(ae=be.current)==null||ae.focus()})},[t]),Xt=C.exports.useCallback(ae=>{ae.preventDefault(),xe.up(),rn()},[rn,xe]),he=C.exports.useCallback(ae=>{ae.preventDefault(),xe.down(),rn()},[rn,xe]);F5(()=>be.current,"wheel",ae=>{var Ze;const An=(((Ze=be.current)==null?void 0:Ze.ownerDocument)??document).activeElement===be.current;if(!g||!An)return;ae.preventDefault();const jn=Ut(ae)*s,Rr=Math.sign(ae.deltaY);Rr===-1?Nt(jn):Rr===1&&Cn(jn)},{passive:!1});const Pe=C.exports.useCallback((ae={},Ze=null)=>{const At=c||r&&H.isAtMax;return{...ae,ref:tn(Ze,Te),role:"button",tabIndex:-1,onPointerDown:Qo(ae.onPointerDown,An=>{At||Xt(An)}),onPointerLeave:Qo(ae.onPointerLeave,xe.stop),onPointerUp:Qo(ae.onPointerUp,xe.stop),disabled:At,"aria-disabled":B2(At)}},[H.isAtMax,r,Xt,xe.stop,c]),mt=C.exports.useCallback((ae={},Ze=null)=>{const At=c||r&&H.isAtMin;return{...ae,ref:tn(Ze,pe),role:"button",tabIndex:-1,onPointerDown:Qo(ae.onPointerDown,An=>{At||he(An)}),onPointerLeave:Qo(ae.onPointerLeave,xe.stop),onPointerUp:Qo(ae.onPointerUp,xe.stop),disabled:At,"aria-disabled":B2(At)}},[H.isAtMin,r,he,xe.stop,c]),ft=C.exports.useCallback((ae={},Ze=null)=>({name:w,inputMode:m,type:"text",pattern:h,"aria-labelledby":L,"aria-label":k,"aria-describedby":x,id:b,disabled:c,...ae,readOnly:ae.readOnly??l,"aria-readonly":ae.readOnly??l,"aria-required":ae.required??d,required:ae.required??d,ref:tn(be,Ze),value:ct(H.value),role:"spinbutton","aria-valuemin":o,"aria-valuemax":i,"aria-valuenow":Number.isNaN(H.valueAsNumber)?void 0:H.valueAsNumber,"aria-invalid":B2(f??H.isOutOfRange),"aria-valuetext":kn,autoComplete:"off",autoCorrect:"off",onChange:Qo(ae.onChange,Re),onKeyDown:Qo(ae.onKeyDown,$e),onFocus:Qo(ae.onFocus,rt,()=>ue(!0)),onBlur:Qo(ae.onBlur,ge,Lt)}),[w,m,h,L,k,ct,x,b,c,d,l,f,H.value,H.valueAsNumber,H.isOutOfRange,o,i,kn,Re,$e,rt,ge,Lt]);return{value:ct(H.value),valueAsNumber:H.valueAsNumber,isFocused:U,isDisabled:c,isReadOnly:l,getIncrementButtonProps:Pe,getDecrementButtonProps:mt,getInputProps:ft,htmlProps:Le}}var[Une,jm]=Mt({name:"NumberInputStylesContext",errorMessage:`useNumberInputStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),[Gne,Y3]=Mt({name:"NumberInputContext",errorMessage:"useNumberInputContext: `context` is undefined. Seems you forgot to wrap number-input's components within "}),hA=le(function(t,n){const r=gr("NumberInput",t),o=St(t),i=y3(o),{htmlProps:s,...l}=Hne(i),c=C.exports.useMemo(()=>l,[l]);return X.createElement(Gne,{value:c},X.createElement(Une,{value:r},X.createElement(ee.div,{...s,ref:n,className:pA("chakra-numberinput",t.className),__css:{position:"relative",zIndex:0,...r.root}})))});hA.displayName="NumberInput";var Zne=le(function(t,n){const r=jm();return X.createElement(ee.div,{"aria-hidden":!0,ref:n,...t,__css:{display:"flex",flexDirection:"column",position:"absolute",top:"0",insetEnd:"0px",margin:"1px",height:"calc(100% - 2px)",zIndex:1,...r.stepperGroup}})});Zne.displayName="NumberInputStepper";var mA=le(function(t,n){const{getInputProps:r}=Y3(),o=r(t,n),i=jm();return X.createElement(ee.input,{...o,className:pA("chakra-numberinput__field",t.className),__css:{width:"100%",...i.field}})});mA.displayName="NumberInputField";var gA=ee("div",{baseStyle:{display:"flex",justifyContent:"center",alignItems:"center",flex:1,transitionProperty:"common",transitionDuration:"normal",userSelect:"none",cursor:"pointer",lineHeight:"normal"}}),vA=le(function(t,n){const r=jm(),{getDecrementButtonProps:o}=Y3(),i=o(t,n);return v(gA,{...i,__css:r.stepper,children:t.children??v(zne,{})})});vA.displayName="NumberDecrementStepper";var yA=le(function(t,n){const{getIncrementButtonProps:r}=Y3(),o=r(t,n),i=jm();return v(gA,{...o,__css:i.stepper,children:t.children??v($ne,{})})});yA.displayName="NumberIncrementStepper";var zf=(...e)=>e.filter(Boolean).join(" ");function Kne(e,...t){return qne(e)?e(...t):e}var qne=e=>typeof e=="function";function Jo(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}function Yne(...e){return function(n){e.forEach(r=>{r?.(n)})}}var[Xne,ol]=Mt({name:"PopoverContext",errorMessage:"usePopoverContext: `context` is undefined. Seems you forgot to wrap all popover components within ``"}),[Qne,$f]=Mt({name:"PopoverStylesContext",errorMessage:`usePopoverStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),zl={click:"click",hover:"hover"};function Jne(e={}){const{closeOnBlur:t=!0,closeOnEsc:n=!0,initialFocusRef:r,id:o,returnFocusOnClose:i=!0,autoFocus:s=!0,arrowSize:l,arrowShadowColor:c,trigger:d=zl.click,openDelay:f=200,closeDelay:h=200,isLazy:m,lazyBehavior:g="unmount",computePositionOnMount:b,...S}=e,{isOpen:_,onClose:w,onOpen:x,onToggle:k}=wT(e),L=C.exports.useRef(null),A=C.exports.useRef(null),M=C.exports.useRef(null),N=C.exports.useRef(!1),$=C.exports.useRef(!1);_&&($.current=!0);const[Z,j]=C.exports.useState(!1),[te,Le]=C.exports.useState(!1),me=C.exports.useId(),ge=o??me,[de,ve,oe,H]=["popover-trigger","popover-content","popover-header","popover-body"].map(Re=>`${Re}-${ge}`),{referenceRef:Q,getArrowProps:q,getPopperProps:R,getArrowInnerProps:U,forceUpdate:ue}=xT({...S,enabled:_||!!b}),fe=cQ({isOpen:_,ref:M});gQ({enabled:_,ref:A}),hQ(M,{focusRef:A,visible:_,shouldFocus:i&&d===zl.click}),yQ(M,{focusRef:r,visible:_,shouldFocus:s&&d===zl.click});const be=CT({wasSelected:$.current,enabled:m,mode:g,isSelected:fe.present}),Se=C.exports.useCallback((Re={},rt=null)=>{const $e={...Re,style:{...Re.style,transformOrigin:hn.transformOrigin.varRef,[hn.arrowSize.var]:l?`${l}px`:void 0,[hn.arrowShadowColor.var]:c},ref:tn(M,rt),children:be?Re.children:null,id:ve,tabIndex:-1,role:"dialog",onKeyDown:Jo(Re.onKeyDown,Ut=>{n&&Ut.key==="Escape"&&w()}),onBlur:Jo(Re.onBlur,Ut=>{const kn=u7(Ut),dt=F2(M.current,kn),Lt=F2(A.current,kn);_&&t&&(!dt&&!Lt)&&w()}),"aria-labelledby":Z?oe:void 0,"aria-describedby":te?H:void 0};return d===zl.hover&&($e.role="tooltip",$e.onMouseEnter=Jo(Re.onMouseEnter,()=>{N.current=!0}),$e.onMouseLeave=Jo(Re.onMouseLeave,Ut=>{Ut.nativeEvent.relatedTarget!==null&&(N.current=!1,setTimeout(w,h))})),$e},[be,ve,Z,oe,te,H,d,n,w,_,t,h,c,l]),Te=C.exports.useCallback((Re={},rt=null)=>R({...Re,style:{visibility:_?"visible":"hidden",...Re.style}},rt),[_,R]),pe=C.exports.useCallback((Re,rt=null)=>({...Re,ref:tn(rt,L,Q)}),[L,Q]),_e=C.exports.useRef(),ze=C.exports.useRef(),ct=C.exports.useCallback(Re=>{L.current==null&&Q(Re)},[Q]),Nt=C.exports.useCallback((Re={},rt=null)=>{const $e={...Re,ref:tn(A,rt,ct),id:de,"aria-haspopup":"dialog","aria-expanded":_,"aria-controls":ve};return d===zl.click&&($e.onClick=Jo(Re.onClick,k)),d===zl.hover&&($e.onFocus=Jo(Re.onFocus,()=>{_e.current===void 0&&x()}),$e.onBlur=Jo(Re.onBlur,Ut=>{const kn=u7(Ut),dt=!F2(M.current,kn);_&&t&&dt&&w()}),$e.onKeyDown=Jo(Re.onKeyDown,Ut=>{Ut.key==="Escape"&&w()}),$e.onMouseEnter=Jo(Re.onMouseEnter,()=>{N.current=!0,_e.current=window.setTimeout(x,f)}),$e.onMouseLeave=Jo(Re.onMouseLeave,()=>{N.current=!1,_e.current&&(clearTimeout(_e.current),_e.current=void 0),ze.current=window.setTimeout(()=>{N.current===!1&&w()},h)})),$e},[de,_,ve,d,ct,k,x,t,w,f,h]);C.exports.useEffect(()=>()=>{_e.current&&clearTimeout(_e.current),ze.current&&clearTimeout(ze.current)},[]);const Cn=C.exports.useCallback((Re={},rt=null)=>({...Re,id:oe,ref:tn(rt,$e=>{j(!!$e)})}),[oe]),xe=C.exports.useCallback((Re={},rt=null)=>({...Re,id:H,ref:tn(rt,$e=>{Le(!!$e)})}),[H]);return{forceUpdate:ue,isOpen:_,onAnimationComplete:fe.onComplete,onClose:w,getAnchorProps:pe,getArrowProps:q,getArrowInnerProps:U,getPopoverPositionerProps:Te,getPopoverProps:Se,getTriggerProps:Nt,getHeaderProps:Cn,getBodyProps:xe}}function F2(e,t){return e===t||e?.contains(t)}function u7(e){const t=e.currentTarget.ownerDocument.activeElement;return e.relatedTarget??t}function X3(e){const t=gr("Popover",e),{children:n,...r}=St(e),o=vm(),i=Jne({...r,direction:o.direction});return v(Xne,{value:i,children:v(Qne,{value:t,children:Kne(n,{isOpen:i.isOpen,onClose:i.onClose,forceUpdate:i.forceUpdate})})})}X3.displayName="Popover";function Q3(e){const{bg:t,bgColor:n,backgroundColor:r}=e,{getArrowProps:o,getArrowInnerProps:i}=ol(),s=$f(),l=t??n??r;return X.createElement(ee.div,{...o(),className:"chakra-popover__arrow-positioner"},X.createElement(ee.div,{className:zf("chakra-popover__arrow",e.className),...i(e),__css:{...s.arrow,"--popper-arrow-bg":l?`colors.${l}, ${l}`:void 0}}))}Q3.displayName="PopoverArrow";var ere=le(function(t,n){const{getBodyProps:r}=ol(),o=$f();return X.createElement(ee.div,{...r(t,n),className:zf("chakra-popover__body",t.className),__css:o.body})});ere.displayName="PopoverBody";var tre=le(function(t,n){const{onClose:r}=ol(),o=$f();return v($m,{size:"sm",onClick:r,className:zf("chakra-popover__close-btn",t.className),__css:o.closeButton,ref:n,...t})});tre.displayName="PopoverCloseButton";function nre(e){if(!!e)return{enter:{...e.enter,visibility:"visible"},exit:{...e.exit,transitionEnd:{visibility:"hidden"}}}}var rre={exit:{opacity:0,scale:.95,transition:{duration:.1,ease:[.4,0,1,1]}},enter:{scale:1,opacity:1,transition:{duration:.15,ease:[0,0,.2,1]}}},ore=xo(ee.section),J3=le(function(t,n){const{isOpen:r}=ol();return X.createElement(ore,{ref:n,variants:nre(t.variants),...t,initial:!1,animate:r?"enter":"exit"})});J3.defaultProps={variants:rre};J3.displayName="PopoverTransition";var e6=le(function(t,n){const{rootProps:r,...o}=t,{getPopoverProps:i,getPopoverPositionerProps:s,onAnimationComplete:l}=ol(),c=$f(),d={position:"relative",display:"flex",flexDirection:"column",...c.content};return X.createElement(ee.div,{...s(r),__css:c.popper,className:"chakra-popover__popper"},v(J3,{...i(o,n),onAnimationComplete:Yne(l,o.onAnimationComplete),className:zf("chakra-popover__content",t.className),__css:d}))});e6.displayName="PopoverContent";var bA=le(function(t,n){const{getHeaderProps:r}=ol(),o=$f();return X.createElement(ee.header,{...r(t,n),className:zf("chakra-popover__header",t.className),__css:o.header})});bA.displayName="PopoverHeader";function t6(e){const t=C.exports.Children.only(e.children),{getTriggerProps:n}=ol();return C.exports.cloneElement(t,n(t.props,t.ref))}t6.displayName="PopoverTrigger";function ire(e,t,n){return(e-t)*100/(n-t)}_f({"0%":{strokeDasharray:"1, 400",strokeDashoffset:"0"},"50%":{strokeDasharray:"400, 400",strokeDashoffset:"-100"},"100%":{strokeDasharray:"400, 400",strokeDashoffset:"-260"}});_f({"0%":{transform:"rotate(0deg)"},"100%":{transform:"rotate(360deg)"}});var are=_f({"0%":{left:"-40%"},"100%":{left:"100%"}}),sre=_f({from:{backgroundPosition:"1rem 0"},to:{backgroundPosition:"0 0"}});function lre(e){const{value:t=0,min:n,max:r,valueText:o,getValueText:i,isIndeterminate:s}=e,l=ire(t,n,r);return{bind:{"data-indeterminate":s?"":void 0,"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":s?void 0:t,"aria-valuetext":(()=>{if(t!=null)return typeof i=="function"?i(t,l):o})(),role:"progressbar"},percent:l,value:t}}var[ure,cre]=Mt({name:"ProgressStylesContext",errorMessage:`useProgressStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),dre=e=>{const{min:t,max:n,value:r,isIndeterminate:o,...i}=e,s=lre({value:r,min:t,max:n,isIndeterminate:o}),l=cre(),c={height:"100%",...l.filledTrack};return X.createElement(ee.div,{style:{width:`${s.percent}%`,...i.style},...s.bind,...i,__css:c})},SA=e=>{var t;const{value:n,min:r=0,max:o=100,hasStripe:i,isAnimated:s,children:l,borderRadius:c,isIndeterminate:d,"aria-label":f,"aria-labelledby":h,...m}=St(e),g=gr("Progress",e),b=c??((t=g.track)==null?void 0:t.borderRadius),S={animation:`${sre} 1s linear infinite`},x={...!d&&i&&s&&S,...d&&{position:"absolute",willChange:"left",minWidth:"50%",animation:`${are} 1s ease infinite normal none running`}},k={overflow:"hidden",position:"relative",...g.track};return X.createElement(ee.div,{borderRadius:b,__css:k,...m},Y(ure,{value:g,children:[v(dre,{"aria-label":f,"aria-labelledby":h,min:r,max:o,value:n,isIndeterminate:d,css:x,borderRadius:b}),l]}))};SA.displayName="Progress";var fre=ee("div",{baseStyle:{fontSize:"0.24em",top:"50%",left:"50%",width:"100%",textAlign:"center",position:"absolute",transform:"translate(-50%, -50%)"}});fre.displayName="CircularProgressLabel";var pre=(...e)=>e.filter(Boolean).join(" "),hre=e=>e?"":void 0;function mre(e,t){const n={},r={};for(const[o,i]of Object.entries(e))t.includes(o)?n[o]=i:r[o]=i;return[n,r]}var xA=le(function(t,n){const{children:r,placeholder:o,className:i,...s}=t;return X.createElement(ee.select,{...s,ref:n,className:pre("chakra-select",i)},o&&v("option",{value:"",children:o}),r)});xA.displayName="SelectField";var wA=le((e,t)=>{var n;const r=gr("Select",e),{rootProps:o,placeholder:i,icon:s,color:l,height:c,h:d,minH:f,minHeight:h,iconColor:m,iconSize:g,...b}=St(e),[S,_]=mre(b,Cj),w=v3(_),x={width:"100%",height:"fit-content",position:"relative",color:l},k={paddingEnd:"2rem",...r.field,_focus:{zIndex:"unset",...(n=r.field)==null?void 0:n._focus}};return X.createElement(ee.div,{className:"chakra-select__wrapper",__css:x,...S,...o},v(xA,{ref:t,height:d??c,minH:f??h,placeholder:i,...w,__css:k,children:e.children}),v(CA,{"data-disabled":hre(w.disabled),...(m||l)&&{color:m||l},__css:r.icon,...g&&{fontSize:g},children:s}))});wA.displayName="Select";var gre=e=>v("svg",{viewBox:"0 0 24 24",...e,children:v("path",{fill:"currentColor",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"})}),vre=ee("div",{baseStyle:{position:"absolute",display:"inline-flex",alignItems:"center",justifyContent:"center",pointerEvents:"none",top:"50%",transform:"translateY(-50%)"}}),CA=e=>{const{children:t=v(gre,{}),...n}=e,r=C.exports.cloneElement(t,{role:"presentation",className:"chakra-select__icon",focusable:!1,"aria-hidden":!0,style:{width:"1em",height:"1em",color:"currentColor"}});return v(vre,{...n,className:"chakra-select__icon-wrapper",children:C.exports.isValidElement(t)?r:null})};CA.displayName="SelectIcon";var yre=(...e)=>e.filter(Boolean).join(" "),c7=e=>e?"":void 0,Hm=le(function(t,n){const r=gr("Switch",t),{spacing:o="0.5rem",children:i,...s}=St(t),{state:l,getInputProps:c,getCheckboxProps:d,getRootProps:f,getLabelProps:h}=jP(s),m=C.exports.useMemo(()=>({display:"inline-block",position:"relative",verticalAlign:"middle",lineHeight:0,...r.container}),[r.container]),g=C.exports.useMemo(()=>({display:"inline-flex",flexShrink:0,justifyContent:"flex-start",boxSizing:"content-box",cursor:"pointer",...r.track}),[r.track]),b=C.exports.useMemo(()=>({userSelect:"none",marginStart:o,...r.label}),[o,r.label]);return X.createElement(ee.label,{...f(),className:yre("chakra-switch",t.className),__css:m},v("input",{className:"chakra-switch__input",...c({},n)}),X.createElement(ee.span,{...d(),className:"chakra-switch__track",__css:g},X.createElement(ee.span,{__css:r.thumb,className:"chakra-switch__thumb","data-checked":c7(l.isChecked),"data-hover":c7(l.isHovered)})),i&&X.createElement(ee.span,{className:"chakra-switch__label",...h(),__css:b},i))});Hm.displayName="Switch";var Yu=(...e)=>e.filter(Boolean).join(" ");function Q5(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var[bre,kA,Sre,xre]=GE();function wre(e){const{defaultIndex:t,onChange:n,index:r,isManual:o,isLazy:i,lazyBehavior:s="unmount",orientation:l="horizontal",direction:c="ltr",...d}=e,[f,h]=C.exports.useState(t??0),[m,g]=KE({defaultValue:t??0,value:r,onChange:n});C.exports.useEffect(()=>{r!=null&&h(r)},[r]);const b=Sre(),S=C.exports.useId();return{id:`tabs-${e.id??S}`,selectedIndex:m,focusedIndex:f,setSelectedIndex:g,setFocusedIndex:h,isManual:o,isLazy:i,lazyBehavior:s,orientation:l,descendants:b,direction:c,htmlProps:d}}var[Cre,Bf]=Mt({name:"TabsContext",errorMessage:"useTabsContext: `context` is undefined. Seems you forgot to wrap all tabs components within "});function kre(e){const{focusedIndex:t,orientation:n,direction:r}=Bf(),o=kA(),i=C.exports.useCallback(s=>{const l=()=>{var x;const k=o.nextEnabled(t);k&&((x=k.node)==null||x.focus())},c=()=>{var x;const k=o.prevEnabled(t);k&&((x=k.node)==null||x.focus())},d=()=>{var x;const k=o.firstEnabled();k&&((x=k.node)==null||x.focus())},f=()=>{var x;const k=o.lastEnabled();k&&((x=k.node)==null||x.focus())},h=n==="horizontal",m=n==="vertical",g=s.key,b=r==="ltr"?"ArrowLeft":"ArrowRight",S=r==="ltr"?"ArrowRight":"ArrowLeft",w={[b]:()=>h&&c(),[S]:()=>h&&l(),ArrowDown:()=>m&&l(),ArrowUp:()=>m&&c(),Home:d,End:f}[g];w&&(s.preventDefault(),w(s))},[o,t,n,r]);return{...e,role:"tablist","aria-orientation":n,onKeyDown:Q5(e.onKeyDown,i)}}function _re(e){const{isDisabled:t,isFocusable:n,...r}=e,{setSelectedIndex:o,isManual:i,id:s,setFocusedIndex:l,selectedIndex:c}=Bf(),{index:d,register:f}=xre({disabled:t&&!n}),h=d===c,m=()=>{o(d)},g=()=>{l(d),!i&&!(t&&n)&&o(d)},b=tJ({...r,ref:tn(f,e.ref),isDisabled:t,isFocusable:n,onClick:Q5(e.onClick,m)}),S="button";return{...b,id:_A(s,d),role:"tab",tabIndex:h?0:-1,type:S,"aria-selected":h,"aria-controls":EA(s,d),onFocus:t?void 0:Q5(e.onFocus,g)}}var[Ere,Lre]=Mt({});function Pre(e){const t=Bf(),{id:n,selectedIndex:r}=t,i=Nm(e.children).map((s,l)=>C.exports.createElement(Ere,{key:l,value:{isSelected:l===r,id:EA(n,l),tabId:_A(n,l),selectedIndex:r}},s));return{...e,children:i}}function Tre(e){const{children:t,...n}=e,{isLazy:r,lazyBehavior:o}=Bf(),{isSelected:i,id:s,tabId:l}=Lre(),c=C.exports.useRef(!1);i&&(c.current=!0);const d=CT({wasSelected:c.current,isSelected:i,enabled:r,mode:o});return{tabIndex:0,...n,children:d?t:null,role:"tabpanel","aria-labelledby":l,hidden:!i,id:s}}function Are(){const e=Bf(),t=kA(),{selectedIndex:n,orientation:r}=e,o=r==="horizontal",i=r==="vertical",[s,l]=C.exports.useState(()=>{if(o)return{left:0,width:0};if(i)return{top:0,height:0}}),[c,d]=C.exports.useState(!1);return pi(()=>{if(n==null)return;const f=t.item(n);if(f==null)return;o&&l({left:f.node.offsetLeft,width:f.node.offsetWidth}),i&&l({top:f.node.offsetTop,height:f.node.offsetHeight});const h=requestAnimationFrame(()=>{d(!0)});return()=>{h&&cancelAnimationFrame(h)}},[n,o,i,t]),{position:"absolute",transitionProperty:"left, right, top, bottom, height, width",transitionDuration:c?"200ms":"0ms",transitionTimingFunction:"cubic-bezier(0, 0, 0.2, 1)",...s}}function _A(e,t){return`${e}--tab-${t}`}function EA(e,t){return`${e}--tabpanel-${t}`}var[Ire,Ff]=Mt({name:"TabsStylesContext",errorMessage:`useTabsStyles returned is 'undefined'. Seems you forgot to wrap the components in "" `}),LA=le(function(t,n){const r=gr("Tabs",t),{children:o,className:i,...s}=St(t),{htmlProps:l,descendants:c,...d}=wre(s),f=C.exports.useMemo(()=>d,[d]),{isFitted:h,...m}=l;return X.createElement(bre,{value:c},X.createElement(Cre,{value:f},X.createElement(Ire,{value:r},X.createElement(ee.div,{className:Yu("chakra-tabs",i),ref:n,...m,__css:r.root},o))))});LA.displayName="Tabs";var Rre=le(function(t,n){const r=Are(),o={...t.style,...r},i=Ff();return X.createElement(ee.div,{ref:n,...t,className:Yu("chakra-tabs__tab-indicator",t.className),style:o,__css:i.indicator})});Rre.displayName="TabIndicator";var Ore=le(function(t,n){const r=kre({...t,ref:n}),o=Ff(),i={display:"flex",...o.tablist};return X.createElement(ee.div,{...r,className:Yu("chakra-tabs__tablist",t.className),__css:i})});Ore.displayName="TabList";var PA=le(function(t,n){const r=Tre({...t,ref:n}),o=Ff();return X.createElement(ee.div,{outline:"0",...r,className:Yu("chakra-tabs__tab-panel",t.className),__css:o.tabpanel})});PA.displayName="TabPanel";var TA=le(function(t,n){const r=Pre(t),o=Ff();return X.createElement(ee.div,{...r,width:"100%",ref:n,className:Yu("chakra-tabs__tab-panels",t.className),__css:o.tabpanels})});TA.displayName="TabPanels";var AA=le(function(t,n){const r=Ff(),o=_re({...t,ref:n}),i={outline:"0",display:"flex",alignItems:"center",justifyContent:"center",...r.tab};return X.createElement(ee.button,{...o,className:Yu("chakra-tabs__tab",t.className),__css:i})});AA.displayName="Tab";var Mre=(...e)=>e.filter(Boolean).join(" ");function Nre(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}var Dre=["h","minH","height","minHeight"],IA=le((e,t)=>{const n=mr("Textarea",e),{className:r,rows:o,...i}=St(e),s=v3(i),l=o?Nre(n,Dre):n;return X.createElement(ee.textarea,{ref:t,rows:o,...s,className:Mre("chakra-textarea",r),__css:l})});IA.displayName="Textarea";function bt(e,t={}){let n=!1;function r(){if(!n){n=!0;return}throw new Error("[anatomy] .part(...) should only be called once. Did you mean to use .extend(...) ?")}function o(...f){r();for(const h of f)t[h]=c(h);return bt(e,t)}function i(...f){for(const h of f)h in t||(t[h]=c(h));return bt(e,t)}function s(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.selector]))}function l(){return Object.fromEntries(Object.entries(t).map(([h,m])=>[h,m.className]))}function c(f){const g=`chakra-${(["container","root"].includes(f??"")?[e]:[e,f]).filter(Boolean).join("__")}`;return{className:g,selector:`.${g}`,toString:()=>f}}return{parts:o,toPart:c,extend:i,selectors:s,classnames:l,get keys(){return Object.keys(t)},__type:{}}}var zre=bt("accordion").parts("root","container","button","panel").extend("icon"),$re=bt("alert").parts("title","description","container").extend("icon","spinner"),Bre=bt("avatar").parts("label","badge","container").extend("excessLabel","group"),Fre=bt("breadcrumb").parts("link","item","container").extend("separator");bt("button").parts();var Vre=bt("checkbox").parts("control","icon","container").extend("label");bt("progress").parts("track","filledTrack").extend("label");var Wre=bt("drawer").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),jre=bt("editable").parts("preview","input","textarea"),Hre=bt("form").parts("container","requiredIndicator","helperText"),Ure=bt("formError").parts("text","icon"),Gre=bt("input").parts("addon","field","element"),Zre=bt("list").parts("container","item","icon"),Kre=bt("menu").parts("button","list","item").extend("groupTitle","command","divider"),qre=bt("modal").parts("overlay","dialogContainer","dialog").extend("header","closeButton","body","footer"),Yre=bt("numberinput").parts("root","field","stepperGroup","stepper");bt("pininput").parts("field");var Xre=bt("popover").parts("content","header","body","footer").extend("popper","arrow","closeButton"),Qre=bt("progress").parts("label","filledTrack","track"),Jre=bt("radio").parts("container","control","label"),eoe=bt("select").parts("field","icon"),toe=bt("slider").parts("container","track","thumb","filledTrack","mark"),noe=bt("stat").parts("container","label","helpText","number","icon"),roe=bt("switch").parts("container","track","thumb"),ooe=bt("table").parts("table","thead","tbody","tr","th","td","tfoot","caption"),ioe=bt("tabs").parts("root","tab","tablist","tabpanel","tabpanels","indicator"),aoe=bt("tag").parts("container","label","closeButton");function RA(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var soe=e=>/!(important)?$/.test(e),d7=e=>typeof e=="string"?e.replace(/!(important)?$/,"").trim():e,loe=(e,t)=>n=>{const r=String(t),o=soe(r),i=d7(r),s=e?`${e}.${i}`:i;let l=RA(n.__cssMap)&&s in n.__cssMap?n.__cssMap[s].varRef:t;return l=d7(l),o?`${l} !important`:l};function cf(e){const{scale:t,transform:n,compose:r}=e;return(i,s)=>{const l=loe(t,i)(s);let c=n?.(l,s)??l;return r&&(c=r(c,s)),c}}var Rh=(...e)=>t=>e.reduce((n,r)=>r(n),t);function Oo(e,t){return n=>{const r={property:n,scale:e};return r.transform=cf({scale:e,transform:t}),r}}var uoe=({rtl:e,ltr:t})=>n=>n.direction==="rtl"?e:t;function coe(e){const{property:t,scale:n,transform:r}=e;return{scale:n,property:uoe(t),transform:n?cf({scale:n,compose:r}):r}}var OA=["rotate(var(--chakra-rotate, 0))","scaleX(var(--chakra-scale-x, 1))","scaleY(var(--chakra-scale-y, 1))","skewX(var(--chakra-skew-x, 0))","skewY(var(--chakra-skew-y, 0))"];function doe(){return["translateX(var(--chakra-translate-x, 0))","translateY(var(--chakra-translate-y, 0))",...OA].join(" ")}function foe(){return["translate3d(var(--chakra-translate-x, 0), var(--chakra-translate-y, 0), 0)",...OA].join(" ")}var poe={"--chakra-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-sepia":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-drop-shadow":"var(--chakra-empty,/*!*/ /*!*/)",filter:["var(--chakra-blur)","var(--chakra-brightness)","var(--chakra-contrast)","var(--chakra-grayscale)","var(--chakra-hue-rotate)","var(--chakra-invert)","var(--chakra-saturate)","var(--chakra-sepia)","var(--chakra-drop-shadow)"].join(" ")},hoe={backdropFilter:["var(--chakra-backdrop-blur)","var(--chakra-backdrop-brightness)","var(--chakra-backdrop-contrast)","var(--chakra-backdrop-grayscale)","var(--chakra-backdrop-hue-rotate)","var(--chakra-backdrop-invert)","var(--chakra-backdrop-opacity)","var(--chakra-backdrop-saturate)","var(--chakra-backdrop-sepia)"].join(" "),"--chakra-backdrop-blur":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-brightness":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-contrast":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-grayscale":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-hue-rotate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-invert":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-opacity":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-saturate":"var(--chakra-empty,/*!*/ /*!*/)","--chakra-backdrop-sepia":"var(--chakra-empty,/*!*/ /*!*/)"};function moe(e){return{"--chakra-ring-offset-shadow":"var(--chakra-ring-inset) 0 0 0 var(--chakra-ring-offset-width) var(--chakra-ring-offset-color)","--chakra-ring-shadow":"var(--chakra-ring-inset) 0 0 0 calc(var(--chakra-ring-width) + var(--chakra-ring-offset-width)) var(--chakra-ring-color)","--chakra-ring-width":e,boxShadow:["var(--chakra-ring-offset-shadow)","var(--chakra-ring-shadow)","var(--chakra-shadow, 0 0 #0000)"].join(", ")}}var goe={"row-reverse":{space:"--chakra-space-x-reverse",divide:"--chakra-divide-x-reverse"},"column-reverse":{space:"--chakra-space-y-reverse",divide:"--chakra-divide-y-reverse"}},MA="& > :not(style) ~ :not(style)",voe={[MA]:{marginInlineStart:"calc(var(--chakra-space-x) * calc(1 - var(--chakra-space-x-reverse)))",marginInlineEnd:"calc(var(--chakra-space-x) * var(--chakra-space-x-reverse))"}},yoe={[MA]:{marginTop:"calc(var(--chakra-space-y) * calc(1 - var(--chakra-space-y-reverse)))",marginBottom:"calc(var(--chakra-space-y) * var(--chakra-space-y-reverse))"}},J5={"to-t":"to top","to-tr":"to top right","to-r":"to right","to-br":"to bottom right","to-b":"to bottom","to-bl":"to bottom left","to-l":"to left","to-tl":"to top left"},boe=new Set(Object.values(J5)),NA=new Set(["none","-moz-initial","inherit","initial","revert","unset"]),Soe=e=>e.trim();function xoe(e,t){var n;if(e==null||NA.has(e))return e;const r=/(?^[a-z-A-Z]+)\((?(.*))\)/g,{type:o,values:i}=((n=r.exec(e))==null?void 0:n.groups)??{};if(!o||!i)return e;const s=o.includes("-gradient")?o:`${o}-gradient`,[l,...c]=i.split(",").map(Soe).filter(Boolean);if(c?.length===0)return e;const d=l in J5?J5[l]:l;c.unshift(d);const f=c.map(h=>{if(boe.has(h))return h;const m=h.indexOf(" "),[g,b]=m!==-1?[h.substr(0,m),h.substr(m+1)]:[h],S=DA(b)?b:b&&b.split(" "),_=`colors.${g}`,w=_ in t.__cssMap?t.__cssMap[_].varRef:g;return S?[w,...Array.isArray(S)?S:[S]].join(" "):w});return`${s}(${f.join(", ")})`}var DA=e=>typeof e=="string"&&e.includes("(")&&e.includes(")"),woe=(e,t)=>xoe(e,t??{});function Coe(e){return/^var\(--.+\)$/.test(e)}var koe=e=>{const t=parseFloat(e.toString()),n=e.toString().replace(String(t),"");return{unitless:!n,value:t,unit:n}},ei=e=>t=>`${e}(${t})`,tt={filter(e){return e!=="auto"?e:poe},backdropFilter(e){return e!=="auto"?e:hoe},ring(e){return moe(tt.px(e))},bgClip(e){return e==="text"?{color:"transparent",backgroundClip:"text"}:{backgroundClip:e}},transform(e){return e==="auto"?doe():e==="auto-gpu"?foe():e},vh(e){return e==="$100vh"?"var(--chakra-vh)":e},px(e){if(e==null)return e;const{unitless:t}=koe(e);return t||typeof e=="number"?`${e}px`:e},fraction(e){return typeof e!="number"||e>1?e:`${e*100}%`},float(e,t){const n={left:"right",right:"left"};return t.direction==="rtl"?n[e]:e},degree(e){if(Coe(e)||e==null)return e;const t=typeof e=="string"&&!e.endsWith("deg");return typeof e=="number"||t?`${e}deg`:e},gradient:woe,blur:ei("blur"),opacity:ei("opacity"),brightness:ei("brightness"),contrast:ei("contrast"),dropShadow:ei("drop-shadow"),grayscale:ei("grayscale"),hueRotate:ei("hue-rotate"),invert:ei("invert"),saturate:ei("saturate"),sepia:ei("sepia"),bgImage(e){return e==null||DA(e)||NA.has(e)?e:`url(${e})`},outline(e){const t=String(e)==="0"||String(e)==="none";return e!==null&&t?{outline:"2px solid transparent",outlineOffset:"2px"}:{outline:e}},flexDirection(e){const{space:t,divide:n}=goe[e]??{},r={flexDirection:e};return t&&(r[t]=1),n&&(r[n]=1),r}},F={borderWidths:Oo("borderWidths"),borderStyles:Oo("borderStyles"),colors:Oo("colors"),borders:Oo("borders"),radii:Oo("radii",tt.px),space:Oo("space",Rh(tt.vh,tt.px)),spaceT:Oo("space",Rh(tt.vh,tt.px)),degreeT(e){return{property:e,transform:tt.degree}},prop(e,t,n){return{property:e,scale:t,...t&&{transform:cf({scale:t,transform:n})}}},propT(e,t){return{property:e,transform:t}},sizes:Oo("sizes",Rh(tt.vh,tt.px)),sizesT:Oo("sizes",Rh(tt.vh,tt.fraction)),shadows:Oo("shadows"),logical:coe,blur:Oo("blur",tt.blur)},g1={background:F.colors("background"),backgroundColor:F.colors("backgroundColor"),backgroundImage:F.propT("backgroundImage",tt.bgImage),backgroundSize:!0,backgroundPosition:!0,backgroundRepeat:!0,backgroundAttachment:!0,backgroundClip:{transform:tt.bgClip},bgSize:F.prop("backgroundSize"),bgPosition:F.prop("backgroundPosition"),bg:F.colors("background"),bgColor:F.colors("backgroundColor"),bgPos:F.prop("backgroundPosition"),bgRepeat:F.prop("backgroundRepeat"),bgAttachment:F.prop("backgroundAttachment"),bgGradient:F.propT("backgroundImage",tt.gradient),bgClip:{transform:tt.bgClip}};Object.assign(g1,{bgImage:g1.backgroundImage,bgImg:g1.backgroundImage});var st={border:F.borders("border"),borderWidth:F.borderWidths("borderWidth"),borderStyle:F.borderStyles("borderStyle"),borderColor:F.colors("borderColor"),borderRadius:F.radii("borderRadius"),borderTop:F.borders("borderTop"),borderBlockStart:F.borders("borderBlockStart"),borderTopLeftRadius:F.radii("borderTopLeftRadius"),borderStartStartRadius:F.logical({scale:"radii",property:{ltr:"borderTopLeftRadius",rtl:"borderTopRightRadius"}}),borderEndStartRadius:F.logical({scale:"radii",property:{ltr:"borderBottomLeftRadius",rtl:"borderBottomRightRadius"}}),borderTopRightRadius:F.radii("borderTopRightRadius"),borderStartEndRadius:F.logical({scale:"radii",property:{ltr:"borderTopRightRadius",rtl:"borderTopLeftRadius"}}),borderEndEndRadius:F.logical({scale:"radii",property:{ltr:"borderBottomRightRadius",rtl:"borderBottomLeftRadius"}}),borderRight:F.borders("borderRight"),borderInlineEnd:F.borders("borderInlineEnd"),borderBottom:F.borders("borderBottom"),borderBlockEnd:F.borders("borderBlockEnd"),borderBottomLeftRadius:F.radii("borderBottomLeftRadius"),borderBottomRightRadius:F.radii("borderBottomRightRadius"),borderLeft:F.borders("borderLeft"),borderInlineStart:{property:"borderInlineStart",scale:"borders"},borderInlineStartRadius:F.logical({scale:"radii",property:{ltr:["borderTopLeftRadius","borderBottomLeftRadius"],rtl:["borderTopRightRadius","borderBottomRightRadius"]}}),borderInlineEndRadius:F.logical({scale:"radii",property:{ltr:["borderTopRightRadius","borderBottomRightRadius"],rtl:["borderTopLeftRadius","borderBottomLeftRadius"]}}),borderX:F.borders(["borderLeft","borderRight"]),borderInline:F.borders("borderInline"),borderY:F.borders(["borderTop","borderBottom"]),borderBlock:F.borders("borderBlock"),borderTopWidth:F.borderWidths("borderTopWidth"),borderBlockStartWidth:F.borderWidths("borderBlockStartWidth"),borderTopColor:F.colors("borderTopColor"),borderBlockStartColor:F.colors("borderBlockStartColor"),borderTopStyle:F.borderStyles("borderTopStyle"),borderBlockStartStyle:F.borderStyles("borderBlockStartStyle"),borderBottomWidth:F.borderWidths("borderBottomWidth"),borderBlockEndWidth:F.borderWidths("borderBlockEndWidth"),borderBottomColor:F.colors("borderBottomColor"),borderBlockEndColor:F.colors("borderBlockEndColor"),borderBottomStyle:F.borderStyles("borderBottomStyle"),borderBlockEndStyle:F.borderStyles("borderBlockEndStyle"),borderLeftWidth:F.borderWidths("borderLeftWidth"),borderInlineStartWidth:F.borderWidths("borderInlineStartWidth"),borderLeftColor:F.colors("borderLeftColor"),borderInlineStartColor:F.colors("borderInlineStartColor"),borderLeftStyle:F.borderStyles("borderLeftStyle"),borderInlineStartStyle:F.borderStyles("borderInlineStartStyle"),borderRightWidth:F.borderWidths("borderRightWidth"),borderInlineEndWidth:F.borderWidths("borderInlineEndWidth"),borderRightColor:F.colors("borderRightColor"),borderInlineEndColor:F.colors("borderInlineEndColor"),borderRightStyle:F.borderStyles("borderRightStyle"),borderInlineEndStyle:F.borderStyles("borderInlineEndStyle"),borderTopRadius:F.radii(["borderTopLeftRadius","borderTopRightRadius"]),borderBottomRadius:F.radii(["borderBottomLeftRadius","borderBottomRightRadius"]),borderLeftRadius:F.radii(["borderTopLeftRadius","borderBottomLeftRadius"]),borderRightRadius:F.radii(["borderTopRightRadius","borderBottomRightRadius"])};Object.assign(st,{rounded:st.borderRadius,roundedTop:st.borderTopRadius,roundedTopLeft:st.borderTopLeftRadius,roundedTopRight:st.borderTopRightRadius,roundedTopStart:st.borderStartStartRadius,roundedTopEnd:st.borderStartEndRadius,roundedBottom:st.borderBottomRadius,roundedBottomLeft:st.borderBottomLeftRadius,roundedBottomRight:st.borderBottomRightRadius,roundedBottomStart:st.borderEndStartRadius,roundedBottomEnd:st.borderEndEndRadius,roundedLeft:st.borderLeftRadius,roundedRight:st.borderRightRadius,roundedStart:st.borderInlineStartRadius,roundedEnd:st.borderInlineEndRadius,borderStart:st.borderInlineStart,borderEnd:st.borderInlineEnd,borderTopStartRadius:st.borderStartStartRadius,borderTopEndRadius:st.borderStartEndRadius,borderBottomStartRadius:st.borderEndStartRadius,borderBottomEndRadius:st.borderEndEndRadius,borderStartRadius:st.borderInlineStartRadius,borderEndRadius:st.borderInlineEndRadius,borderStartWidth:st.borderInlineStartWidth,borderEndWidth:st.borderInlineEndWidth,borderStartColor:st.borderInlineStartColor,borderEndColor:st.borderInlineEndColor,borderStartStyle:st.borderInlineStartStyle,borderEndStyle:st.borderInlineEndStyle});var _oe={color:F.colors("color"),textColor:F.colors("color"),fill:F.colors("fill"),stroke:F.colors("stroke")},e4={boxShadow:F.shadows("boxShadow"),mixBlendMode:!0,blendMode:F.prop("mixBlendMode"),backgroundBlendMode:!0,bgBlendMode:F.prop("backgroundBlendMode"),opacity:!0};Object.assign(e4,{shadow:e4.boxShadow});var Eoe={filter:{transform:tt.filter},blur:F.blur("--chakra-blur"),brightness:F.propT("--chakra-brightness",tt.brightness),contrast:F.propT("--chakra-contrast",tt.contrast),hueRotate:F.degreeT("--chakra-hue-rotate"),invert:F.propT("--chakra-invert",tt.invert),saturate:F.propT("--chakra-saturate",tt.saturate),dropShadow:F.propT("--chakra-drop-shadow",tt.dropShadow),backdropFilter:{transform:tt.backdropFilter},backdropBlur:F.blur("--chakra-backdrop-blur"),backdropBrightness:F.propT("--chakra-backdrop-brightness",tt.brightness),backdropContrast:F.propT("--chakra-backdrop-contrast",tt.contrast),backdropHueRotate:F.degreeT("--chakra-backdrop-hue-rotate"),backdropInvert:F.propT("--chakra-backdrop-invert",tt.invert),backdropSaturate:F.propT("--chakra-backdrop-saturate",tt.saturate)},C0={alignItems:!0,alignContent:!0,justifyItems:!0,justifyContent:!0,flexWrap:!0,flexDirection:{transform:tt.flexDirection},experimental_spaceX:{static:voe,transform:cf({scale:"space",transform:e=>e!==null?{"--chakra-space-x":e}:null})},experimental_spaceY:{static:yoe,transform:cf({scale:"space",transform:e=>e!=null?{"--chakra-space-y":e}:null})},flex:!0,flexFlow:!0,flexGrow:!0,flexShrink:!0,flexBasis:F.sizes("flexBasis"),justifySelf:!0,alignSelf:!0,order:!0,placeItems:!0,placeContent:!0,placeSelf:!0,gap:F.space("gap"),rowGap:F.space("rowGap"),columnGap:F.space("columnGap")};Object.assign(C0,{flexDir:C0.flexDirection});var zA={gridGap:F.space("gridGap"),gridColumnGap:F.space("gridColumnGap"),gridRowGap:F.space("gridRowGap"),gridColumn:!0,gridRow:!0,gridAutoFlow:!0,gridAutoColumns:!0,gridColumnStart:!0,gridColumnEnd:!0,gridRowStart:!0,gridRowEnd:!0,gridAutoRows:!0,gridTemplate:!0,gridTemplateColumns:!0,gridTemplateRows:!0,gridTemplateAreas:!0,gridArea:!0},Loe={appearance:!0,cursor:!0,resize:!0,userSelect:!0,pointerEvents:!0,outline:{transform:tt.outline},outlineOffset:!0,outlineColor:F.colors("outlineColor")},uo={width:F.sizesT("width"),inlineSize:F.sizesT("inlineSize"),height:F.sizes("height"),blockSize:F.sizes("blockSize"),boxSize:F.sizes(["width","height"]),minWidth:F.sizes("minWidth"),minInlineSize:F.sizes("minInlineSize"),minHeight:F.sizes("minHeight"),minBlockSize:F.sizes("minBlockSize"),maxWidth:F.sizes("maxWidth"),maxInlineSize:F.sizes("maxInlineSize"),maxHeight:F.sizes("maxHeight"),maxBlockSize:F.sizes("maxBlockSize"),overflow:!0,overflowX:!0,overflowY:!0,overscrollBehavior:!0,overscrollBehaviorX:!0,overscrollBehaviorY:!0,display:!0,verticalAlign:!0,boxSizing:!0,boxDecorationBreak:!0,float:F.propT("float",tt.float),objectFit:!0,objectPosition:!0,visibility:!0,isolation:!0};Object.assign(uo,{w:uo.width,h:uo.height,minW:uo.minWidth,maxW:uo.maxWidth,minH:uo.minHeight,maxH:uo.maxHeight,overscroll:uo.overscrollBehavior,overscrollX:uo.overscrollBehaviorX,overscrollY:uo.overscrollBehaviorY});var Poe={listStyleType:!0,listStylePosition:!0,listStylePos:F.prop("listStylePosition"),listStyleImage:!0,listStyleImg:F.prop("listStyleImage")};function Toe(e,t,n,r){const o=typeof t=="string"?t.split("."):[t];for(r=0;r{const t=new WeakMap;return(r,o,i,s)=>{if(typeof r>"u")return e(r,o,i);t.has(r)||t.set(r,new Map);const l=t.get(r);if(l.has(o))return l.get(o);const c=e(r,o,i,s);return l.set(o,c),c}},Ioe=Aoe(Toe),Roe={border:"0px",clip:"rect(0, 0, 0, 0)",width:"1px",height:"1px",margin:"-1px",padding:"0px",overflow:"hidden",whiteSpace:"nowrap",position:"absolute"},Ooe={position:"static",width:"auto",height:"auto",clip:"auto",padding:"0",margin:"0",overflow:"visible",whiteSpace:"normal"},V2=(e,t,n)=>{const r={},o=Ioe(e,t,{});for(const i in o)i in n&&n[i]!=null||(r[i]=o[i]);return r},Moe={srOnly:{transform(e){return e===!0?Roe:e==="focusable"?Ooe:{}}},layerStyle:{processResult:!0,transform:(e,t,n)=>V2(t,`layerStyles.${e}`,n)},textStyle:{processResult:!0,transform:(e,t,n)=>V2(t,`textStyles.${e}`,n)},apply:{processResult:!0,transform:(e,t,n)=>V2(t,e,n)}},xd={position:!0,pos:F.prop("position"),zIndex:F.prop("zIndex","zIndices"),inset:F.spaceT("inset"),insetX:F.spaceT(["left","right"]),insetInline:F.spaceT("insetInline"),insetY:F.spaceT(["top","bottom"]),insetBlock:F.spaceT("insetBlock"),top:F.spaceT("top"),insetBlockStart:F.spaceT("insetBlockStart"),bottom:F.spaceT("bottom"),insetBlockEnd:F.spaceT("insetBlockEnd"),left:F.spaceT("left"),insetInlineStart:F.logical({scale:"space",property:{ltr:"left",rtl:"right"}}),right:F.spaceT("right"),insetInlineEnd:F.logical({scale:"space",property:{ltr:"right",rtl:"left"}})};Object.assign(xd,{insetStart:xd.insetInlineStart,insetEnd:xd.insetInlineEnd});var Noe={ring:{transform:tt.ring},ringColor:F.colors("--chakra-ring-color"),ringOffset:F.prop("--chakra-ring-offset-width"),ringOffsetColor:F.colors("--chakra-ring-offset-color"),ringInset:F.prop("--chakra-ring-inset")},$t={margin:F.spaceT("margin"),marginTop:F.spaceT("marginTop"),marginBlockStart:F.spaceT("marginBlockStart"),marginRight:F.spaceT("marginRight"),marginInlineEnd:F.spaceT("marginInlineEnd"),marginBottom:F.spaceT("marginBottom"),marginBlockEnd:F.spaceT("marginBlockEnd"),marginLeft:F.spaceT("marginLeft"),marginInlineStart:F.spaceT("marginInlineStart"),marginX:F.spaceT(["marginInlineStart","marginInlineEnd"]),marginInline:F.spaceT("marginInline"),marginY:F.spaceT(["marginTop","marginBottom"]),marginBlock:F.spaceT("marginBlock"),padding:F.space("padding"),paddingTop:F.space("paddingTop"),paddingBlockStart:F.space("paddingBlockStart"),paddingRight:F.space("paddingRight"),paddingBottom:F.space("paddingBottom"),paddingBlockEnd:F.space("paddingBlockEnd"),paddingLeft:F.space("paddingLeft"),paddingInlineStart:F.space("paddingInlineStart"),paddingInlineEnd:F.space("paddingInlineEnd"),paddingX:F.space(["paddingInlineStart","paddingInlineEnd"]),paddingInline:F.space("paddingInline"),paddingY:F.space(["paddingTop","paddingBottom"]),paddingBlock:F.space("paddingBlock")};Object.assign($t,{m:$t.margin,mt:$t.marginTop,mr:$t.marginRight,me:$t.marginInlineEnd,marginEnd:$t.marginInlineEnd,mb:$t.marginBottom,ml:$t.marginLeft,ms:$t.marginInlineStart,marginStart:$t.marginInlineStart,mx:$t.marginX,my:$t.marginY,p:$t.padding,pt:$t.paddingTop,py:$t.paddingY,px:$t.paddingX,pb:$t.paddingBottom,pl:$t.paddingLeft,ps:$t.paddingInlineStart,paddingStart:$t.paddingInlineStart,pr:$t.paddingRight,pe:$t.paddingInlineEnd,paddingEnd:$t.paddingInlineEnd});var Doe={textDecorationColor:F.colors("textDecorationColor"),textDecoration:!0,textDecor:{property:"textDecoration"},textDecorationLine:!0,textDecorationStyle:!0,textDecorationThickness:!0,textUnderlineOffset:!0,textShadow:F.shadows("textShadow")},zoe={clipPath:!0,transform:F.propT("transform",tt.transform),transformOrigin:!0,translateX:F.spaceT("--chakra-translate-x"),translateY:F.spaceT("--chakra-translate-y"),skewX:F.degreeT("--chakra-skew-x"),skewY:F.degreeT("--chakra-skew-y"),scaleX:F.prop("--chakra-scale-x"),scaleY:F.prop("--chakra-scale-y"),scale:F.prop(["--chakra-scale-x","--chakra-scale-y"]),rotate:F.degreeT("--chakra-rotate")},$oe={transition:!0,transitionDelay:!0,animation:!0,willChange:!0,transitionDuration:F.prop("transitionDuration","transition.duration"),transitionProperty:F.prop("transitionProperty","transition.property"),transitionTimingFunction:F.prop("transitionTimingFunction","transition.easing")},Boe={fontFamily:F.prop("fontFamily","fonts"),fontSize:F.prop("fontSize","fontSizes",tt.px),fontWeight:F.prop("fontWeight","fontWeights"),lineHeight:F.prop("lineHeight","lineHeights"),letterSpacing:F.prop("letterSpacing","letterSpacings"),textAlign:!0,fontStyle:!0,wordBreak:!0,overflowWrap:!0,textOverflow:!0,textTransform:!0,whiteSpace:!0,noOfLines:{static:{overflow:"hidden",textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:"var(--chakra-line-clamp)"},property:"--chakra-line-clamp"}},Foe={scrollBehavior:!0,scrollSnapAlign:!0,scrollSnapStop:!0,scrollSnapType:!0,scrollMargin:F.spaceT("scrollMargin"),scrollMarginTop:F.spaceT("scrollMarginTop"),scrollMarginBottom:F.spaceT("scrollMarginBottom"),scrollMarginLeft:F.spaceT("scrollMarginLeft"),scrollMarginRight:F.spaceT("scrollMarginRight"),scrollMarginX:F.spaceT(["scrollMarginLeft","scrollMarginRight"]),scrollMarginY:F.spaceT(["scrollMarginTop","scrollMarginBottom"]),scrollPadding:F.spaceT("scrollPadding"),scrollPaddingTop:F.spaceT("scrollPaddingTop"),scrollPaddingBottom:F.spaceT("scrollPaddingBottom"),scrollPaddingLeft:F.spaceT("scrollPaddingLeft"),scrollPaddingRight:F.spaceT("scrollPaddingRight"),scrollPaddingX:F.spaceT(["scrollPaddingLeft","scrollPaddingRight"]),scrollPaddingY:F.spaceT(["scrollPaddingTop","scrollPaddingBottom"])};function $A(e){return RA(e)&&e.reference?e.reference:String(e)}var Um=(e,...t)=>t.map($A).join(` ${e} `).replace(/calc/g,""),f7=(...e)=>`calc(${Um("+",...e)})`,p7=(...e)=>`calc(${Um("-",...e)})`,t4=(...e)=>`calc(${Um("*",...e)})`,h7=(...e)=>`calc(${Um("/",...e)})`,m7=e=>{const t=$A(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:t4(t,-1)},Vc=Object.assign(e=>({add:(...t)=>Vc(f7(e,...t)),subtract:(...t)=>Vc(p7(e,...t)),multiply:(...t)=>Vc(t4(e,...t)),divide:(...t)=>Vc(h7(e,...t)),negate:()=>Vc(m7(e)),toString:()=>e.toString()}),{add:f7,subtract:p7,multiply:t4,divide:h7,negate:m7});function Voe(e,t="-"){return e.replace(/\s+/g,t)}function Woe(e){const t=Voe(e.toString());return Hoe(joe(t))}function joe(e){return e.includes("\\.")?e:!Number.isInteger(parseFloat(e.toString()))?e.replace(".","\\."):e}function Hoe(e){return e.replace(/[!-,/:-@[-^`{-~]/g,"\\$&")}function Uoe(e,t=""){return[t,e].filter(Boolean).join("-")}function Goe(e,t){return`var(${e}${t?`, ${t}`:""})`}function Zoe(e,t=""){return Woe(`--${Uoe(e,t)}`)}function il(e,t,n){const r=Zoe(e,n);return{variable:r,reference:Goe(r,t)}}var Mn={hover:(e,t)=>`${e}:hover ${t}, ${e}[data-hover] ${t}`,focus:(e,t)=>`${e}:focus ${t}, ${e}[data-focus] ${t}`,focusVisible:(e,t)=>`${e}:focus-visible ${t}`,focusWithin:(e,t)=>`${e}:focus-within ${t}`,active:(e,t)=>`${e}:active ${t}, ${e}[data-active] ${t}`,disabled:(e,t)=>`${e}:disabled ${t}, ${e}[data-disabled] ${t}`,invalid:(e,t)=>`${e}:invalid ${t}, ${e}[data-invalid] ${t}`,checked:(e,t)=>`${e}:checked ${t}, ${e}[data-checked] ${t}`,indeterminate:(e,t)=>`${e}:indeterminate ${t}, ${e}[aria-checked=mixed] ${t}, ${e}[data-indeterminate] ${t}`,readOnly:(e,t)=>`${e}:read-only ${t}, ${e}[readonly] ${t}, ${e}[data-read-only] ${t}`,expanded:(e,t)=>`${e}:read-only ${t}, ${e}[aria-expanded=true] ${t}, ${e}[data-expanded] ${t}`,placeholderShown:(e,t)=>`${e}:placeholder-shown ${t}`},Ea=e=>BA(t=>e(t,"&"),"[role=group]","[data-group]",".group"),ji=e=>BA(t=>e(t,"~ &"),"[data-peer]",".peer"),BA=(e,...t)=>t.map(e).join(", "),FA={_hover:"&:hover, &[data-hover]",_active:"&:active, &[data-active]",_focus:"&:focus, &[data-focus]",_highlighted:"&[data-highlighted]",_focusWithin:"&:focus-within",_focusVisible:"&:focus-visible, &[data-focus-visible]",_disabled:"&:disabled, &[disabled], &[aria-disabled=true], &[data-disabled]",_readOnly:"&[aria-readonly=true], &[readonly], &[data-readonly]",_before:"&::before",_after:"&::after",_empty:"&:empty",_expanded:"&[aria-expanded=true], &[data-expanded]",_checked:"&[aria-checked=true], &[data-checked]",_grabbed:"&[aria-grabbed=true], &[data-grabbed]",_pressed:"&[aria-pressed=true], &[data-pressed]",_invalid:"&[aria-invalid=true], &[data-invalid]",_valid:"&[data-valid], &[data-state=valid]",_loading:"&[data-loading], &[aria-busy=true]",_selected:"&[aria-selected=true], &[data-selected]",_hidden:"&[hidden], &[data-hidden]",_autofill:"&:-webkit-autofill",_even:"&:nth-of-type(even)",_odd:"&:nth-of-type(odd)",_first:"&:first-of-type",_last:"&:last-of-type",_notFirst:"&:not(:first-of-type)",_notLast:"&:not(:last-of-type)",_visited:"&:visited",_activeLink:"&[aria-current=page]",_activeStep:"&[aria-current=step]",_indeterminate:"&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]",_groupHover:Ea(Mn.hover),_peerHover:ji(Mn.hover),_groupFocus:Ea(Mn.focus),_peerFocus:ji(Mn.focus),_groupFocusVisible:Ea(Mn.focusVisible),_peerFocusVisible:ji(Mn.focusVisible),_groupActive:Ea(Mn.active),_peerActive:ji(Mn.active),_groupDisabled:Ea(Mn.disabled),_peerDisabled:ji(Mn.disabled),_groupInvalid:Ea(Mn.invalid),_peerInvalid:ji(Mn.invalid),_groupChecked:Ea(Mn.checked),_peerChecked:ji(Mn.checked),_groupFocusWithin:Ea(Mn.focusWithin),_peerFocusWithin:ji(Mn.focusWithin),_peerPlaceholderShown:ji(Mn.placeholderShown),_placeholder:"&::placeholder",_placeholderShown:"&:placeholder-shown",_fullScreen:"&:fullscreen",_selection:"&::selection",_rtl:"[dir=rtl] &, &[dir=rtl]",_ltr:"[dir=ltr] &, &[dir=ltr]",_mediaDark:"@media (prefers-color-scheme: dark)",_mediaReduceMotion:"@media (prefers-reduced-motion: reduce)",_dark:".chakra-ui-dark &:not([data-theme]),[data-theme=dark] &:not([data-theme]),&[data-theme=dark]",_light:".chakra-ui-light &:not([data-theme]),[data-theme=light] &:not([data-theme]),&[data-theme=light]"},Koe=Object.keys(FA),VA=ia({},g1,st,_oe,C0,uo,Eoe,Noe,Loe,zA,Moe,xd,e4,$t,Foe,Boe,Doe,zoe,Poe,$oe);Object.assign({},$t,uo,C0,zA,xd);[...Object.keys(VA),...Koe];({...VA,...FA});function Ht(e){return{definePartsStyle(t){return t},defineMultiStyleConfig(t){return{parts:e,...t}}}}function Vn(e,t){qoe(e)&&(e="100%");var n=Yoe(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function Oh(e){return Math.min(1,Math.max(0,e))}function qoe(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function Yoe(e){return typeof e=="string"&&e.indexOf("%")!==-1}function WA(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function Mh(e){return e<=1?"".concat(Number(e)*100,"%"):e}function Ds(e){return e.length===1?"0"+e:String(e)}function Xoe(e,t,n){return{r:Vn(e,255)*255,g:Vn(t,255)*255,b:Vn(n,255)*255}}function g7(e,t,n){e=Vn(e,255),t=Vn(t,255),n=Vn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=0,l=(r+o)/2;if(r===o)s=0,i=0;else{var c=r-o;switch(s=l>.5?c/(2-r-o):c/(r+o),r){case e:i=(t-n)/c+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function Qoe(e,t,n){var r,o,i;if(e=Vn(e,360),t=Vn(t,100),n=Vn(n,100),t===0)o=n,i=n,r=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=W2(l,s,e+1/3),o=W2(l,s,e),i=W2(l,s,e-1/3)}return{r:r*255,g:o*255,b:i*255}}function v7(e,t,n){e=Vn(e,255),t=Vn(t,255),n=Vn(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),i=0,s=r,l=r-o,c=r===0?0:l/r;if(r===o)i=0;else{switch(r){case e:i=(t-n)/l+(t>16,g:(e&65280)>>8,b:e&255}}var n4={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function rie(e){var t={r:0,g:0,b:0},n=1,r=null,o=null,i=null,s=!1,l=!1;return typeof e=="string"&&(e=aie(e)),typeof e=="object"&&(Hi(e.r)&&Hi(e.g)&&Hi(e.b)?(t=Xoe(e.r,e.g,e.b),s=!0,l=String(e.r).substr(-1)==="%"?"prgb":"rgb"):Hi(e.h)&&Hi(e.s)&&Hi(e.v)?(r=Mh(e.s),o=Mh(e.v),t=Joe(e.h,r,o),s=!0,l="hsv"):Hi(e.h)&&Hi(e.s)&&Hi(e.l)&&(r=Mh(e.s),i=Mh(e.l),t=Qoe(e.h,r,i),s=!0,l="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=WA(n),{ok:s,format:e.format||l,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var oie="[-\\+]?\\d+%?",iie="[-\\+]?\\d*\\.\\d+%?",ja="(?:".concat(iie,")|(?:").concat(oie,")"),j2="[\\s|\\(]+(".concat(ja,")[,|\\s]+(").concat(ja,")[,|\\s]+(").concat(ja,")\\s*\\)?"),H2="[\\s|\\(]+(".concat(ja,")[,|\\s]+(").concat(ja,")[,|\\s]+(").concat(ja,")[,|\\s]+(").concat(ja,")\\s*\\)?"),No={CSS_UNIT:new RegExp(ja),rgb:new RegExp("rgb"+j2),rgba:new RegExp("rgba"+H2),hsl:new RegExp("hsl"+j2),hsla:new RegExp("hsla"+H2),hsv:new RegExp("hsv"+j2),hsva:new RegExp("hsva"+H2),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function aie(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(n4[e])e=n4[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=No.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=No.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=No.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=No.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=No.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=No.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=No.hex8.exec(e),n?{r:Fr(n[1]),g:Fr(n[2]),b:Fr(n[3]),a:b7(n[4]),format:t?"name":"hex8"}:(n=No.hex6.exec(e),n?{r:Fr(n[1]),g:Fr(n[2]),b:Fr(n[3]),format:t?"name":"hex"}:(n=No.hex4.exec(e),n?{r:Fr(n[1]+n[1]),g:Fr(n[2]+n[2]),b:Fr(n[3]+n[3]),a:b7(n[4]+n[4]),format:t?"name":"hex8"}:(n=No.hex3.exec(e),n?{r:Fr(n[1]+n[1]),g:Fr(n[2]+n[2]),b:Fr(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function Hi(e){return Boolean(No.CSS_UNIT.exec(String(e)))}var Vf=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=nie(t)),this.originalInput=t;var o=rie(t);this.originalInput=t,this.r=o.r,this.g=o.g,this.b=o.b,this.a=o.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:o.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=o.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,o,i=t.r/255,s=t.g/255,l=t.b/255;return i<=.03928?n=i/12.92:n=Math.pow((i+.055)/1.055,2.4),s<=.03928?r=s/12.92:r=Math.pow((s+.055)/1.055,2.4),l<=.03928?o=l/12.92:o=Math.pow((l+.055)/1.055,2.4),.2126*n+.7152*r+.0722*o},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=WA(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.toHsv=function(){var t=v7(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=v7(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=g7(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=g7(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),y7(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),eie(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(Vn(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(Vn(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+y7(this.r,this.g,this.b,!1),n=0,r=Object.entries(n4);n=0,i=!n&&o&&(t.startsWith("hex")||t==="name");return i?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=Oh(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=Oh(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=Oh(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=Oh(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),i=n/100,s={r:(o.r-r.r)*i+r.r,g:(o.g-r.g)*i+r.g,b:(o.b-r.b)*i+r.b,a:(o.a-r.a)*i+r.a};return new e(s)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),o=360/n,i=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,i.push(new e(r));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,i=n.v,s=[],l=1/t;t--;)s.push(new e({h:r,s:o,v:i})),i=(i+l)%1;return s},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb();return new e({r:r.r+(n.r-r.r)*n.a,g:r.g+(n.g-r.g)*n.a,b:r.b+(n.b-r.b)*n.a})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],i=360/t,s=1;sn.length;)e.count=null,e.seed&&(e.seed+=1),n.push(jA(e));return e.count=t,n}var r=sie(e.hue,e.seed),o=lie(r,e),i=uie(r,o,e),s={h:r,s:o,v:i};return e.alpha!==void 0&&(s.a=e.alpha),new Vf(s)}function sie(e,t){var n=die(e),r=k0(n,t);return r<0&&(r=360+r),r}function lie(e,t){if(t.hue==="monochrome")return 0;if(t.luminosity==="random")return k0([0,100],t.seed);var n=HA(e).saturationRange,r=n[0],o=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=o-10;break;case"light":o=55;break}return k0([r,o],t.seed)}function uie(e,t,n){var r=cie(e,t),o=100;switch(n.luminosity){case"dark":o=r+20;break;case"light":r=(o+r)/2;break;case"random":r=0,o=100;break}return k0([r,o],n.seed)}function cie(e,t){for(var n=HA(e).lowerBounds,r=0;r=o&&t<=s){var c=(l-i)/(s-o),d=i-c*o;return c*t+d}}return 0}function die(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if(typeof e=="string"){var n=GA.find(function(s){return s.name===e});if(n){var r=UA(n);if(r.hueRange)return r.hueRange}var o=new Vf(e);if(o.isValid){var i=o.toHsv().h;return[i,i]}}return[0,360]}function HA(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=GA;t=o.hueRange[0]&&e<=o.hueRange[1])return o}throw Error("Color not found")}function k0(e,t){if(t===void 0)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0;t=(t*9301+49297)%233280;var o=t/233280;return Math.floor(r+o*(n-r))}function UA(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],o=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,o]}}var GA=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}];function fie(e,t,n,r,o){for(t=t.split?t.split("."):t,r=0;rObject.keys(e).length===0,xn=(e,t,n)=>{const r=fie(e,`colors.${t}`,t),{isValid:o}=new Vf(r);return o?r:n},hie=e=>t=>{const n=xn(t,e);return new Vf(n).isDark()?"dark":"light"},mie=e=>t=>hie(e)(t)==="dark",Du=(e,t)=>n=>{const r=xn(n,e);return new Vf(r).setAlpha(t).toRgbString()};function S7(e="1rem",t="rgba(255, 255, 255, 0.15)"){return{backgroundImage:`linear-gradient( + 45deg, + ${t} 25%, + transparent 25%, + transparent 50%, + ${t} 50%, + ${t} 75%, + transparent 75%, + transparent + )`,backgroundSize:`${e} ${e}`}}function gie(e){const t=jA().toHexString();return!e||pie(e)?t:e.string&&e.colors?yie(e.string,e.colors):e.string&&!e.colors?vie(e.string):e.colors&&!e.string?bie(e.colors):t}function vie(e){let t=0;if(e.length===0)return t.toString();for(let r=0;r>r*8&255).toString(16)}`.substr(-2);return n}function yie(e,t){let n=0;if(e.length===0)return t[0];for(let r=0;rn.colorMode==="dark"?t:e}function n6(e){const{orientation:t,vertical:n,horizontal:r}=e;return t?t==="vertical"?n:r:{}}function Sie(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}function ZA(e){return Sie(e)&&e.reference?e.reference:String(e)}var Gm=(e,...t)=>t.map(ZA).join(` ${e} `).replace(/calc/g,""),x7=(...e)=>`calc(${Gm("+",...e)})`,w7=(...e)=>`calc(${Gm("-",...e)})`,r4=(...e)=>`calc(${Gm("*",...e)})`,C7=(...e)=>`calc(${Gm("/",...e)})`,k7=e=>{const t=ZA(e);return t!=null&&!Number.isNaN(parseFloat(t))?String(t).startsWith("-")?String(t).slice(1):`-${t}`:r4(t,-1)},Yi=Object.assign(e=>({add:(...t)=>Yi(x7(e,...t)),subtract:(...t)=>Yi(w7(e,...t)),multiply:(...t)=>Yi(r4(e,...t)),divide:(...t)=>Yi(C7(e,...t)),negate:()=>Yi(k7(e)),toString:()=>e.toString()}),{add:x7,subtract:w7,multiply:r4,divide:C7,negate:k7});function xie(e){return!Number.isInteger(parseFloat(e.toString()))}function wie(e,t="-"){return e.replace(/\s+/g,t)}function KA(e){const t=wie(e.toString());return t.includes("\\.")?e:xie(e)?t.replace(".","\\."):e}function Cie(e,t=""){return[t,KA(e)].filter(Boolean).join("-")}function kie(e,t){return`var(${KA(e)}${t?`, ${t}`:""})`}function _ie(e,t=""){return`--${Cie(e,t)}`}function Ir(e,t){const n=_ie(e,t?.prefix);return{variable:n,reference:kie(n,Eie(t?.fallback))}}function Eie(e){return typeof e=="string"?e:e?.reference}var{definePartsStyle:Lie,defineMultiStyleConfig:Pie}=Ht(zre.keys),Tie={borderTopWidth:"1px",borderColor:"inherit",_last:{borderBottomWidth:"1px"}},Aie={transitionProperty:"common",transitionDuration:"normal",fontSize:"md",_focusVisible:{boxShadow:"outline"},_hover:{bg:"blackAlpha.50"},_disabled:{opacity:.4,cursor:"not-allowed"},px:"4",py:"2"},Iie={pt:"2",px:"4",pb:"5"},Rie={fontSize:"1.25em"},Oie=Lie({container:Tie,button:Aie,panel:Iie,icon:Rie}),Mie=Pie({baseStyle:Oie}),{definePartsStyle:Wf,defineMultiStyleConfig:Nie}=Ht($re.keys),la=il("alert-fg"),jf=il("alert-bg"),Die=Wf({container:{bg:jf.reference,px:"4",py:"3"},title:{fontWeight:"bold",lineHeight:"6",marginEnd:"2"},description:{lineHeight:"6"},icon:{color:la.reference,flexShrink:0,marginEnd:"3",w:"5",h:"6"},spinner:{color:la.reference,flexShrink:0,marginEnd:"3",w:"5",h:"5"}});function r6(e){const{theme:t,colorScheme:n}=e,r=xn(t,`${n}.100`,n),o=Du(`${n}.200`,.16)(t);return ie(r,o)(e)}var zie=Wf(e=>{const{colorScheme:t}=e,n=ie(`${t}.500`,`${t}.200`)(e);return{container:{[jf.variable]:r6(e),[la.variable]:`colors.${n}`}}}),$ie=Wf(e=>{const{colorScheme:t}=e,n=ie(`${t}.500`,`${t}.200`)(e);return{container:{[jf.variable]:r6(e),[la.variable]:`colors.${n}`,paddingStart:"3",borderStartWidth:"4px",borderStartColor:la.reference}}}),Bie=Wf(e=>{const{colorScheme:t}=e,n=ie(`${t}.500`,`${t}.200`)(e);return{container:{[jf.variable]:r6(e),[la.variable]:`colors.${n}`,pt:"2",borderTopWidth:"4px",borderTopColor:la.reference}}}),Fie=Wf(e=>{const{colorScheme:t}=e,n=ie(`${t}.500`,`${t}.200`)(e),r=ie("white","gray.900")(e);return{container:{[jf.variable]:`colors.${n}`,[la.variable]:`colors.${r}`,color:la.reference}}}),Vie={subtle:zie,"left-accent":$ie,"top-accent":Bie,solid:Fie},Wie=Nie({baseStyle:Die,variants:Vie,defaultProps:{variant:"subtle",colorScheme:"blue"}}),qA={px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},jie={max:"max-content",min:"min-content",full:"100%","3xs":"14rem","2xs":"16rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem","8xl":"90rem",prose:"60ch"},Hie={sm:"640px",md:"768px",lg:"1024px",xl:"1280px"},Uie={...qA,...jie,container:Hie},YA=Uie,Gie=e=>typeof e=="function";function un(e,...t){return Gie(e)?e(...t):e}var{definePartsStyle:XA,defineMultiStyleConfig:Zie}=Ht(Bre.keys),Kie=e=>({borderRadius:"full",border:"0.2em solid",borderColor:ie("white","gray.800")(e)}),qie=e=>({bg:ie("gray.200","whiteAlpha.400")(e)}),Yie=e=>{const{name:t,theme:n}=e,r=t?gie({string:t}):"gray.400",o=mie(r)(n);let i="white";o||(i="gray.800");const s=ie("white","gray.800")(e);return{bg:r,color:i,borderColor:s,verticalAlign:"top"}},Xie=XA(e=>({badge:un(Kie,e),excessLabel:un(qie,e),container:un(Yie,e)}));function La(e){const t=e!=="100%"?YA[e]:void 0;return XA({container:{width:e,height:e,fontSize:`calc(${t??e} / 2.5)`},excessLabel:{width:e,height:e},label:{fontSize:`calc(${t??e} / 2.5)`,lineHeight:e!=="100%"?t??e:void 0}})}var Qie={"2xs":La(4),xs:La(6),sm:La(8),md:La(12),lg:La(16),xl:La(24),"2xl":La(32),full:La("100%")},Jie=Zie({baseStyle:Xie,sizes:Qie,defaultProps:{size:"md"}}),eae={px:1,textTransform:"uppercase",fontSize:"xs",borderRadius:"sm",fontWeight:"bold"},tae=e=>{const{colorScheme:t,theme:n}=e,r=Du(`${t}.500`,.6)(n);return{bg:ie(`${t}.500`,r)(e),color:ie("white","whiteAlpha.800")(e)}},nae=e=>{const{colorScheme:t,theme:n}=e,r=Du(`${t}.200`,.16)(n);return{bg:ie(`${t}.100`,r)(e),color:ie(`${t}.800`,`${t}.200`)(e)}},rae=e=>{const{colorScheme:t,theme:n}=e,r=Du(`${t}.200`,.8)(n),o=xn(n,`${t}.500`),i=ie(o,r)(e);return{color:i,boxShadow:`inset 0 0 0px 1px ${i}`}},oae={solid:tae,subtle:nae,outline:rae},wd={baseStyle:eae,variants:oae,defaultProps:{variant:"subtle",colorScheme:"gray"}},{defineMultiStyleConfig:iae,definePartsStyle:aae}=Ht(Fre.keys),sae={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},lae=aae({link:sae}),uae=iae({baseStyle:lae}),cae={lineHeight:"1.2",borderRadius:"md",fontWeight:"semibold",transitionProperty:"common",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{_disabled:{bg:"initial"}}},QA=e=>{const{colorScheme:t,theme:n}=e;if(t==="gray")return{color:ie("inherit","whiteAlpha.900")(e),_hover:{bg:ie("gray.100","whiteAlpha.200")(e)},_active:{bg:ie("gray.200","whiteAlpha.300")(e)}};const r=Du(`${t}.200`,.12)(n),o=Du(`${t}.200`,.24)(n);return{color:ie(`${t}.600`,`${t}.200`)(e),bg:"transparent",_hover:{bg:ie(`${t}.50`,r)(e)},_active:{bg:ie(`${t}.100`,o)(e)}}},dae=e=>{const{colorScheme:t}=e,n=ie("gray.200","whiteAlpha.300")(e);return{border:"1px solid",borderColor:t==="gray"?n:"currentColor",".chakra-button__group[data-attached] > &:not(:last-of-type)":{marginEnd:"-1px"},...un(QA,e)}},fae={yellow:{bg:"yellow.400",color:"black",hoverBg:"yellow.500",activeBg:"yellow.600"},cyan:{bg:"cyan.400",color:"black",hoverBg:"cyan.500",activeBg:"cyan.600"}},pae=e=>{const{colorScheme:t}=e;if(t==="gray"){const l=ie("gray.100","whiteAlpha.200")(e);return{bg:l,_hover:{bg:ie("gray.200","whiteAlpha.300")(e),_disabled:{bg:l}},_active:{bg:ie("gray.300","whiteAlpha.400")(e)}}}const{bg:n=`${t}.500`,color:r="white",hoverBg:o=`${t}.600`,activeBg:i=`${t}.700`}=fae[t]??{},s=ie(n,`${t}.200`)(e);return{bg:s,color:ie(r,"gray.800")(e),_hover:{bg:ie(o,`${t}.300`)(e),_disabled:{bg:s}},_active:{bg:ie(i,`${t}.400`)(e)}}},hae=e=>{const{colorScheme:t}=e;return{padding:0,height:"auto",lineHeight:"normal",verticalAlign:"baseline",color:ie(`${t}.500`,`${t}.200`)(e),_hover:{textDecoration:"underline",_disabled:{textDecoration:"none"}},_active:{color:ie(`${t}.700`,`${t}.500`)(e)}}},mae={bg:"none",color:"inherit",display:"inline",lineHeight:"inherit",m:"0",p:"0"},gae={ghost:QA,outline:dae,solid:pae,link:hae,unstyled:mae},vae={lg:{h:"12",minW:"12",fontSize:"lg",px:"6"},md:{h:"10",minW:"10",fontSize:"md",px:"4"},sm:{h:"8",minW:"8",fontSize:"sm",px:"3"},xs:{h:"6",minW:"6",fontSize:"xs",px:"2"}},yae={baseStyle:cae,variants:gae,sizes:vae,defaultProps:{variant:"solid",size:"md",colorScheme:"gray"}},{definePartsStyle:v1,defineMultiStyleConfig:bae}=Ht(Vre.keys),Cd=il("checkbox-size"),Sae=e=>{const{colorScheme:t}=e;return{w:Cd.reference,h:Cd.reference,transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"sm",borderColor:"inherit",color:"white",_checked:{bg:ie(`${t}.500`,`${t}.200`)(e),borderColor:ie(`${t}.500`,`${t}.200`)(e),color:ie("white","gray.900")(e),_hover:{bg:ie(`${t}.600`,`${t}.300`)(e),borderColor:ie(`${t}.600`,`${t}.300`)(e)},_disabled:{borderColor:ie("gray.200","transparent")(e),bg:ie("gray.200","whiteAlpha.300")(e),color:ie("gray.500","whiteAlpha.500")(e)}},_indeterminate:{bg:ie(`${t}.500`,`${t}.200`)(e),borderColor:ie(`${t}.500`,`${t}.200`)(e),color:ie("white","gray.900")(e)},_disabled:{bg:ie("gray.100","whiteAlpha.100")(e),borderColor:ie("gray.100","transparent")(e)},_focusVisible:{boxShadow:"outline"},_invalid:{borderColor:ie("red.500","red.300")(e)}}},xae={_disabled:{cursor:"not-allowed"}},wae={userSelect:"none",_disabled:{opacity:.4}},Cae={transitionProperty:"transform",transitionDuration:"normal"},kae=v1(e=>({icon:Cae,container:xae,control:un(Sae,e),label:wae})),_ae={sm:v1({control:{[Cd.variable]:"sizes.3"},label:{fontSize:"sm"},icon:{fontSize:"3xs"}}),md:v1({control:{[Cd.variable]:"sizes.4"},label:{fontSize:"md"},icon:{fontSize:"2xs"}}),lg:v1({control:{[Cd.variable]:"sizes.5"},label:{fontSize:"lg"},icon:{fontSize:"2xs"}})},_0=bae({baseStyle:kae,sizes:_ae,defaultProps:{size:"md",colorScheme:"blue"}}),kd=Ir("close-button-size"),Eae=e=>{const t=ie("blackAlpha.100","whiteAlpha.100")(e),n=ie("blackAlpha.200","whiteAlpha.200")(e);return{w:[kd.reference],h:[kd.reference],borderRadius:"md",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed",boxShadow:"none"},_hover:{bg:t},_active:{bg:n},_focusVisible:{boxShadow:"outline"}}},Lae={lg:{[kd.variable]:"sizes.10",fontSize:"md"},md:{[kd.variable]:"sizes.8",fontSize:"xs"},sm:{[kd.variable]:"sizes.6",fontSize:"2xs"}},Pae={baseStyle:Eae,sizes:Lae,defaultProps:{size:"md"}},{variants:Tae,defaultProps:Aae}=wd,Iae={fontFamily:"mono",fontSize:"sm",px:"0.2em",borderRadius:"sm"},Rae={baseStyle:Iae,variants:Tae,defaultProps:Aae},Oae={w:"100%",mx:"auto",maxW:"prose",px:"4"},Mae={baseStyle:Oae},Nae={opacity:.6,borderColor:"inherit"},Dae={borderStyle:"solid"},zae={borderStyle:"dashed"},$ae={solid:Dae,dashed:zae},Bae={baseStyle:Nae,variants:$ae,defaultProps:{variant:"solid"}},{definePartsStyle:o4,defineMultiStyleConfig:Fae}=Ht(Wre.keys);function $l(e){return o4(e==="full"?{dialog:{maxW:"100vw",h:"100vh"}}:{dialog:{maxW:e}})}var Vae={bg:"blackAlpha.600",zIndex:"overlay"},Wae={display:"flex",zIndex:"modal",justifyContent:"center"},jae=e=>{const{isFullHeight:t}=e;return{...t&&{height:"100vh"},zIndex:"modal",maxH:"100vh",bg:ie("white","gray.700")(e),color:"inherit",boxShadow:ie("lg","dark-lg")(e)}},Hae={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},Uae={position:"absolute",top:"2",insetEnd:"3"},Gae={px:"6",py:"2",flex:"1",overflow:"auto"},Zae={px:"6",py:"4"},Kae=o4(e=>({overlay:Vae,dialogContainer:Wae,dialog:un(jae,e),header:Hae,closeButton:Uae,body:Gae,footer:Zae})),qae={xs:$l("xs"),sm:$l("md"),md:$l("lg"),lg:$l("2xl"),xl:$l("4xl"),full:$l("full")},Yae=Fae({baseStyle:Kae,sizes:qae,defaultProps:{size:"xs"}}),{definePartsStyle:Xae,defineMultiStyleConfig:Qae}=Ht(jre.keys),Jae={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal"},ese={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},tse={borderRadius:"md",py:"1",transitionProperty:"common",transitionDuration:"normal",width:"full",_focusVisible:{boxShadow:"outline"},_placeholder:{opacity:.6}},nse=Xae({preview:Jae,input:ese,textarea:tse}),rse=Qae({baseStyle:nse}),{definePartsStyle:ose,defineMultiStyleConfig:ise}=Ht(Hre.keys),ase=e=>({marginStart:"1",color:ie("red.500","red.300")(e)}),sse=e=>({mt:"2",color:ie("gray.600","whiteAlpha.600")(e),lineHeight:"normal",fontSize:"sm"}),lse=ose(e=>({container:{width:"100%",position:"relative"},requiredIndicator:un(ase,e),helperText:un(sse,e)})),use=ise({baseStyle:lse}),{definePartsStyle:cse,defineMultiStyleConfig:dse}=Ht(Ure.keys),fse=e=>({color:ie("red.500","red.300")(e),mt:"2",fontSize:"sm",lineHeight:"normal"}),pse=e=>({marginEnd:"0.5em",color:ie("red.500","red.300")(e)}),hse=cse(e=>({text:un(fse,e),icon:un(pse,e)})),mse=dse({baseStyle:hse}),gse={fontSize:"md",marginEnd:"3",mb:"2",fontWeight:"medium",transitionProperty:"common",transitionDuration:"normal",opacity:1,_disabled:{opacity:.4}},vse={baseStyle:gse},yse={fontFamily:"heading",fontWeight:"bold"},bse={"4xl":{fontSize:["6xl",null,"7xl"],lineHeight:1},"3xl":{fontSize:["5xl",null,"6xl"],lineHeight:1},"2xl":{fontSize:["4xl",null,"5xl"],lineHeight:[1.2,null,1]},xl:{fontSize:["3xl",null,"4xl"],lineHeight:[1.33,null,1.2]},lg:{fontSize:["2xl",null,"3xl"],lineHeight:[1.33,null,1.2]},md:{fontSize:"xl",lineHeight:1.2},sm:{fontSize:"md",lineHeight:1.2},xs:{fontSize:"sm",lineHeight:1.2}},Sse={baseStyle:yse,sizes:bse,defaultProps:{size:"xl"}},{definePartsStyle:Ji,defineMultiStyleConfig:xse}=Ht(Gre.keys),wse=Ji({field:{width:"100%",minWidth:0,outline:0,position:"relative",appearance:"none",transitionProperty:"common",transitionDuration:"normal",_disabled:{opacity:.4,cursor:"not-allowed"}}}),Pa={lg:{fontSize:"lg",px:"4",h:"12",borderRadius:"md"},md:{fontSize:"md",px:"4",h:"10",borderRadius:"md"},sm:{fontSize:"sm",px:"3",h:"8",borderRadius:"sm"},xs:{fontSize:"xs",px:"2",h:"6",borderRadius:"sm"}},Cse={lg:Ji({field:Pa.lg,addon:Pa.lg}),md:Ji({field:Pa.md,addon:Pa.md}),sm:Ji({field:Pa.sm,addon:Pa.sm}),xs:Ji({field:Pa.xs,addon:Pa.xs})};function o6(e){const{focusBorderColor:t,errorBorderColor:n}=e;return{focusBorderColor:t||ie("blue.500","blue.300")(e),errorBorderColor:n||ie("red.500","red.300")(e)}}var kse=Ji(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=o6(e);return{field:{border:"1px solid",borderColor:"inherit",bg:"inherit",_hover:{borderColor:ie("gray.300","whiteAlpha.400")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:xn(t,r),boxShadow:`0 0 0 1px ${xn(t,r)}`},_focusVisible:{zIndex:1,borderColor:xn(t,n),boxShadow:`0 0 0 1px ${xn(t,n)}`}},addon:{border:"1px solid",borderColor:ie("inherit","whiteAlpha.50")(e),bg:ie("gray.100","whiteAlpha.300")(e)}}}),_se=Ji(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=o6(e);return{field:{border:"2px solid",borderColor:"transparent",bg:ie("gray.100","whiteAlpha.50")(e),_hover:{bg:ie("gray.200","whiteAlpha.100")(e)},_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:xn(t,r)},_focusVisible:{bg:"transparent",borderColor:xn(t,n)}},addon:{border:"2px solid",borderColor:"transparent",bg:ie("gray.100","whiteAlpha.50")(e)}}}),Ese=Ji(e=>{const{theme:t}=e,{focusBorderColor:n,errorBorderColor:r}=o6(e);return{field:{borderBottom:"1px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent",_readOnly:{boxShadow:"none !important",userSelect:"all"},_invalid:{borderColor:xn(t,r),boxShadow:`0px 1px 0px 0px ${xn(t,r)}`},_focusVisible:{borderColor:xn(t,n),boxShadow:`0px 1px 0px 0px ${xn(t,n)}`}},addon:{borderBottom:"2px solid",borderColor:"inherit",borderRadius:"0",px:"0",bg:"transparent"}}}),Lse=Ji({field:{bg:"transparent",px:"0",height:"auto"},addon:{bg:"transparent",px:"0",height:"auto"}}),Pse={outline:kse,filled:_se,flushed:Ese,unstyled:Lse},ut=xse({baseStyle:wse,sizes:Cse,variants:Pse,defaultProps:{size:"md",variant:"outline"}}),Tse=e=>({bg:ie("gray.100","whiteAlpha")(e),borderRadius:"md",borderWidth:"1px",borderBottomWidth:"3px",fontSize:"0.8em",fontWeight:"bold",lineHeight:"normal",px:"0.4em",whiteSpace:"nowrap"}),Ase={baseStyle:Tse},Ise={transitionProperty:"common",transitionDuration:"fast",transitionTimingFunction:"ease-out",cursor:"pointer",textDecoration:"none",outline:"none",color:"inherit",_hover:{textDecoration:"underline"},_focusVisible:{boxShadow:"outline"}},Rse={baseStyle:Ise},{defineMultiStyleConfig:Ose,definePartsStyle:Mse}=Ht(Zre.keys),Nse={marginEnd:"2",display:"inline",verticalAlign:"text-bottom"},Dse=Mse({icon:Nse}),zse=Ose({baseStyle:Dse}),{defineMultiStyleConfig:$se,definePartsStyle:Bse}=Ht(Kre.keys),Fse=e=>({bg:ie("#fff","gray.700")(e),boxShadow:ie("sm","dark-lg")(e),color:"inherit",minW:"3xs",py:"2",zIndex:1,borderRadius:"md",borderWidth:"1px"}),Vse=e=>({py:"1.5",px:"3",transitionProperty:"background",transitionDuration:"ultra-fast",transitionTimingFunction:"ease-in",_focus:{bg:ie("gray.100","whiteAlpha.100")(e)},_active:{bg:ie("gray.200","whiteAlpha.200")(e)},_expanded:{bg:ie("gray.100","whiteAlpha.100")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),Wse={mx:4,my:2,fontWeight:"semibold",fontSize:"sm"},jse={opacity:.6},Hse={border:0,borderBottom:"1px solid",borderColor:"inherit",my:"2",opacity:.6},Use={transitionProperty:"common",transitionDuration:"normal"},Gse=Bse(e=>({button:Use,list:un(Fse,e),item:un(Vse,e),groupTitle:Wse,command:jse,divider:Hse})),Zse=$se({baseStyle:Gse}),{defineMultiStyleConfig:Kse,definePartsStyle:i4}=Ht(qre.keys),qse={bg:"blackAlpha.600",zIndex:"modal"},Yse=e=>{const{isCentered:t,scrollBehavior:n}=e;return{display:"flex",zIndex:"modal",justifyContent:"center",alignItems:t?"center":"flex-start",overflow:n==="inside"?"hidden":"auto"}},Xse=e=>{const{scrollBehavior:t}=e;return{borderRadius:"md",bg:ie("white","gray.700")(e),color:"inherit",my:"16",zIndex:"modal",maxH:t==="inside"?"calc(100% - 7.5rem)":void 0,boxShadow:ie("lg","dark-lg")(e)}},Qse={px:"6",py:"4",fontSize:"xl",fontWeight:"semibold"},Jse={position:"absolute",top:"2",insetEnd:"3"},ele=e=>{const{scrollBehavior:t}=e;return{px:"6",py:"2",flex:"1",overflow:t==="inside"?"auto":void 0}},tle={px:"6",py:"4"},nle=i4(e=>({overlay:qse,dialogContainer:un(Yse,e),dialog:un(Xse,e),header:Qse,closeButton:Jse,body:un(ele,e),footer:tle}));function Mo(e){return i4(e==="full"?{dialog:{maxW:"100vw",minH:"$100vh",my:"0",borderRadius:"0"}}:{dialog:{maxW:e}})}var rle={xs:Mo("xs"),sm:Mo("sm"),md:Mo("md"),lg:Mo("lg"),xl:Mo("xl"),"2xl":Mo("2xl"),"3xl":Mo("3xl"),"4xl":Mo("4xl"),"5xl":Mo("5xl"),"6xl":Mo("6xl"),full:Mo("full")},ole=Kse({baseStyle:nle,sizes:rle,defaultProps:{size:"md"}}),ile={letterSpacings:{tighter:"-0.05em",tight:"-0.025em",normal:"0",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeights:{normal:"normal",none:1,shorter:1.25,short:1.375,base:1.5,tall:1.625,taller:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},fontWeights:{hairline:100,thin:200,light:300,normal:400,medium:500,semibold:600,bold:700,extrabold:800,black:900},fonts:{heading:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',body:'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',mono:'SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace'},fontSizes:{"3xs":"0.45rem","2xs":"0.625rem",xs:"0.75rem",sm:"0.875rem",md:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"}},JA=ile,{defineMultiStyleConfig:ale,definePartsStyle:eI}=Ht(Yre.keys),i6=Ir("number-input-stepper-width"),tI=Ir("number-input-input-padding"),sle=Yi(i6).add("0.5rem").toString(),lle={[i6.variable]:"sizes.6",[tI.variable]:sle},ule=e=>{var t;return((t=un(ut.baseStyle,e))==null?void 0:t.field)??{}},cle={width:[i6.reference]},dle=e=>({borderStart:"1px solid",borderStartColor:ie("inherit","whiteAlpha.300")(e),color:ie("inherit","whiteAlpha.800")(e),_active:{bg:ie("gray.200","whiteAlpha.300")(e)},_disabled:{opacity:.4,cursor:"not-allowed"}}),fle=eI(e=>({root:lle,field:ule,stepperGroup:cle,stepper:un(dle,e)??{}}));function Nh(e){var t,n;const r=(t=ut.sizes)==null?void 0:t[e],o={lg:"md",md:"md",sm:"sm",xs:"sm"},i=((n=r.field)==null?void 0:n.fontSize)??"md",s=JA.fontSizes[i];return eI({field:{...r.field,paddingInlineEnd:tI.reference,verticalAlign:"top"},stepper:{fontSize:Yi(s).multiply(.75).toString(),_first:{borderTopEndRadius:o[e]},_last:{borderBottomEndRadius:o[e],mt:"-1px",borderTopWidth:1}}})}var ple={xs:Nh("xs"),sm:Nh("sm"),md:Nh("md"),lg:Nh("lg")},hle=ale({baseStyle:fle,sizes:ple,variants:ut.variants,defaultProps:ut.defaultProps}),_7,mle={...(_7=ut.baseStyle)==null?void 0:_7.field,textAlign:"center"},gle={lg:{fontSize:"lg",w:12,h:12,borderRadius:"md"},md:{fontSize:"md",w:10,h:10,borderRadius:"md"},sm:{fontSize:"sm",w:8,h:8,borderRadius:"sm"},xs:{fontSize:"xs",w:6,h:6,borderRadius:"sm"}},E7,vle={outline:e=>{var t,n;return((n=un((t=ut.variants)==null?void 0:t.outline,e))==null?void 0:n.field)??{}},flushed:e=>{var t,n;return((n=un((t=ut.variants)==null?void 0:t.flushed,e))==null?void 0:n.field)??{}},filled:e=>{var t,n;return((n=un((t=ut.variants)==null?void 0:t.filled,e))==null?void 0:n.field)??{}},unstyled:((E7=ut.variants)==null?void 0:E7.unstyled.field)??{}},yle={baseStyle:mle,sizes:gle,variants:vle,defaultProps:ut.defaultProps},{defineMultiStyleConfig:ble,definePartsStyle:Sle}=Ht(Xre.keys),U2=Ir("popper-bg"),xle=Ir("popper-arrow-bg"),wle=Ir("popper-arrow-shadow-color"),Cle={zIndex:10},kle=e=>{const t=ie("white","gray.700")(e),n=ie("gray.200","whiteAlpha.300")(e);return{[U2.variable]:`colors.${t}`,bg:U2.reference,[xle.variable]:U2.reference,[wle.variable]:`colors.${n}`,width:"xs",border:"1px solid",borderColor:"inherit",borderRadius:"md",boxShadow:"sm",zIndex:"inherit",_focusVisible:{outline:0,boxShadow:"outline"}}},_le={px:3,py:2,borderBottomWidth:"1px"},Ele={px:3,py:2},Lle={px:3,py:2,borderTopWidth:"1px"},Ple={position:"absolute",borderRadius:"md",top:1,insetEnd:2,padding:2},Tle=Sle(e=>({popper:Cle,content:kle(e),header:_le,body:Ele,footer:Lle,closeButton:Ple})),Ale=ble({baseStyle:Tle}),{defineMultiStyleConfig:Ile,definePartsStyle:Qc}=Ht(Qre.keys),Rle=e=>{const{colorScheme:t,theme:n,isIndeterminate:r,hasStripe:o}=e,i=ie(S7(),S7("1rem","rgba(0,0,0,0.1)"))(e),s=ie(`${t}.500`,`${t}.200`)(e),l=`linear-gradient( + to right, + transparent 0%, + ${xn(n,s)} 50%, + transparent 100% + )`;return{...!r&&o&&i,...r?{bgImage:l}:{bgColor:s}}},Ole={lineHeight:"1",fontSize:"0.25em",fontWeight:"bold",color:"white"},Mle=e=>({bg:ie("gray.100","whiteAlpha.300")(e)}),Nle=e=>({transitionProperty:"common",transitionDuration:"slow",...Rle(e)}),Dle=Qc(e=>({label:Ole,filledTrack:Nle(e),track:Mle(e)})),zle={xs:Qc({track:{h:"1"}}),sm:Qc({track:{h:"2"}}),md:Qc({track:{h:"3"}}),lg:Qc({track:{h:"4"}})},$le=Ile({sizes:zle,baseStyle:Dle,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Ble,definePartsStyle:y1}=Ht(Jre.keys),Fle=e=>{var t;const n=(t=un(_0.baseStyle,e))==null?void 0:t.control;return{...n,borderRadius:"full",_checked:{...n?._checked,_before:{content:'""',display:"inline-block",pos:"relative",w:"50%",h:"50%",borderRadius:"50%",bg:"currentColor"}}}},Vle=y1(e=>{var t,n,r,o;return{label:(n=(t=_0).baseStyle)==null?void 0:n.call(t,e).label,container:(o=(r=_0).baseStyle)==null?void 0:o.call(r,e).container,control:Fle(e)}}),Wle={md:y1({control:{w:"4",h:"4"},label:{fontSize:"md"}}),lg:y1({control:{w:"5",h:"5"},label:{fontSize:"lg"}}),sm:y1({control:{width:"3",height:"3"},label:{fontSize:"sm"}})},jle=Ble({baseStyle:Vle,sizes:Wle,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Hle,definePartsStyle:Ule}=Ht(eoe.keys),Gle=e=>{var t;return{...(t=ut.baseStyle)==null?void 0:t.field,bg:ie("white","gray.700")(e),appearance:"none",paddingBottom:"1px",lineHeight:"normal","> option, > optgroup":{bg:ie("white","gray.700")(e)}}},Zle={width:"6",height:"100%",insetEnd:"2",position:"relative",color:"currentColor",fontSize:"xl",_disabled:{opacity:.5}},Kle=Ule(e=>({field:Gle(e),icon:Zle})),Dh={paddingInlineEnd:"8"},L7,P7,T7,A7,I7,R7,O7,M7,qle={lg:{...(L7=ut.sizes)==null?void 0:L7.lg,field:{...(P7=ut.sizes)==null?void 0:P7.lg.field,...Dh}},md:{...(T7=ut.sizes)==null?void 0:T7.md,field:{...(A7=ut.sizes)==null?void 0:A7.md.field,...Dh}},sm:{...(I7=ut.sizes)==null?void 0:I7.sm,field:{...(R7=ut.sizes)==null?void 0:R7.sm.field,...Dh}},xs:{...(O7=ut.sizes)==null?void 0:O7.xs,field:{...(M7=ut.sizes)==null?void 0:M7.sm.field,...Dh},icon:{insetEnd:"1"}}},Yle=Hle({baseStyle:Kle,sizes:qle,variants:ut.variants,defaultProps:ut.defaultProps}),Xle=il("skeleton-start-color"),Qle=il("skeleton-end-color"),Jle=e=>{const t=ie("gray.100","gray.800")(e),n=ie("gray.400","gray.600")(e),{startColor:r=t,endColor:o=n,theme:i}=e,s=xn(i,r),l=xn(i,o);return{[Xle.variable]:s,[Qle.variable]:l,opacity:.7,borderRadius:"2px",borderColor:s,background:l}},eue={baseStyle:Jle},tue=e=>({borderRadius:"md",fontWeight:"semibold",_focusVisible:{boxShadow:"outline",padding:"4",position:"fixed",top:"6",insetStart:"6",bg:ie("white","gray.700")(e)}}),nue={baseStyle:tue},{defineMultiStyleConfig:rue,definePartsStyle:Zm}=Ht(toe.keys),df=il("slider-thumb-size"),ff=il("slider-track-size"),oue=e=>{const{orientation:t}=e;return{display:"inline-block",position:"relative",cursor:"pointer",_disabled:{opacity:.6,cursor:"default",pointerEvents:"none"},...n6({orientation:t,vertical:{h:"100%"},horizontal:{w:"100%"}})}},iue=e=>({...n6({orientation:e.orientation,horizontal:{h:ff.reference},vertical:{w:ff.reference}}),overflow:"hidden",borderRadius:"sm",bg:ie("gray.200","whiteAlpha.200")(e),_disabled:{bg:ie("gray.300","whiteAlpha.300")(e)}}),aue=e=>{const{orientation:t}=e;return{...n6({orientation:t,vertical:{left:"50%",transform:"translateX(-50%)",_active:{transform:"translateX(-50%) scale(1.15)"}},horizontal:{top:"50%",transform:"translateY(-50%)",_active:{transform:"translateY(-50%) scale(1.15)"}}}),w:df.reference,h:df.reference,display:"flex",alignItems:"center",justifyContent:"center",position:"absolute",outline:0,zIndex:1,borderRadius:"full",bg:"white",boxShadow:"base",border:"1px solid",borderColor:"transparent",transitionProperty:"transform",transitionDuration:"normal",_focusVisible:{boxShadow:"outline"},_disabled:{bg:"gray.300"}}},sue=e=>{const{colorScheme:t}=e;return{width:"inherit",height:"inherit",bg:ie(`${t}.500`,`${t}.200`)(e)}},lue=Zm(e=>({container:oue(e),track:iue(e),thumb:aue(e),filledTrack:sue(e)})),uue=Zm({container:{[df.variable]:"sizes.4",[ff.variable]:"sizes.1"}}),cue=Zm({container:{[df.variable]:"sizes.3.5",[ff.variable]:"sizes.1"}}),due=Zm({container:{[df.variable]:"sizes.2.5",[ff.variable]:"sizes.0.5"}}),fue={lg:uue,md:cue,sm:due},pue=rue({baseStyle:lue,sizes:fue,defaultProps:{size:"md",colorScheme:"blue"}}),Ps=Ir("spinner-size"),hue={width:[Ps.reference],height:[Ps.reference]},mue={xs:{[Ps.variable]:"sizes.3"},sm:{[Ps.variable]:"sizes.4"},md:{[Ps.variable]:"sizes.6"},lg:{[Ps.variable]:"sizes.8"},xl:{[Ps.variable]:"sizes.12"}},gue={baseStyle:hue,sizes:mue,defaultProps:{size:"md"}},{defineMultiStyleConfig:vue,definePartsStyle:nI}=Ht(noe.keys),yue={fontWeight:"medium"},bue={opacity:.8,marginBottom:"2"},Sue={verticalAlign:"baseline",fontWeight:"semibold"},xue={marginEnd:1,w:"3.5",h:"3.5",verticalAlign:"middle"},wue=nI({container:{},label:yue,helpText:bue,number:Sue,icon:xue}),Cue={md:nI({label:{fontSize:"sm"},helpText:{fontSize:"sm"},number:{fontSize:"2xl"}})},kue=vue({baseStyle:wue,sizes:Cue,defaultProps:{size:"md"}}),{defineMultiStyleConfig:_ue,definePartsStyle:b1}=Ht(roe.keys),_d=Ir("switch-track-width"),Vs=Ir("switch-track-height"),G2=Ir("switch-track-diff"),Eue=Yi.subtract(_d,Vs),a4=Ir("switch-thumb-x"),Lue=e=>{const{colorScheme:t}=e;return{borderRadius:"full",p:"0.5",width:[_d.reference],height:[Vs.reference],transitionProperty:"common",transitionDuration:"fast",bg:ie("gray.300","whiteAlpha.400")(e),_focusVisible:{boxShadow:"outline"},_disabled:{opacity:.4,cursor:"not-allowed"},_checked:{bg:ie(`${t}.500`,`${t}.200`)(e)}}},Pue={bg:"white",transitionProperty:"transform",transitionDuration:"normal",borderRadius:"inherit",width:[Vs.reference],height:[Vs.reference],_checked:{transform:`translateX(${a4.reference})`}},Tue=b1(e=>({container:{[G2.variable]:Eue,[a4.variable]:G2.reference,_rtl:{[a4.variable]:Yi(G2).negate().toString()}},track:Lue(e),thumb:Pue})),Aue={sm:b1({container:{[_d.variable]:"1.375rem",[Vs.variable]:"sizes.3"}}),md:b1({container:{[_d.variable]:"1.875rem",[Vs.variable]:"sizes.4"}}),lg:b1({container:{[_d.variable]:"2.875rem",[Vs.variable]:"sizes.6"}})},Iue=_ue({baseStyle:Tue,sizes:Aue,defaultProps:{size:"md",colorScheme:"blue"}}),{defineMultiStyleConfig:Rue,definePartsStyle:yu}=Ht(ooe.keys),Oue=yu({table:{fontVariantNumeric:"lining-nums tabular-nums",borderCollapse:"collapse",width:"full"},th:{fontFamily:"heading",fontWeight:"bold",textTransform:"uppercase",letterSpacing:"wider",textAlign:"start"},td:{textAlign:"start"},caption:{mt:4,fontFamily:"heading",textAlign:"center",fontWeight:"medium"}}),E0={"&[data-is-numeric=true]":{textAlign:"end"}},Mue=yu(e=>{const{colorScheme:t}=e;return{th:{color:ie("gray.600","gray.400")(e),borderBottom:"1px",borderColor:ie(`${t}.100`,`${t}.700`)(e),...E0},td:{borderBottom:"1px",borderColor:ie(`${t}.100`,`${t}.700`)(e),...E0},caption:{color:ie("gray.600","gray.100")(e)},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Nue=yu(e=>{const{colorScheme:t}=e;return{th:{color:ie("gray.600","gray.400")(e),borderBottom:"1px",borderColor:ie(`${t}.100`,`${t}.700`)(e),...E0},td:{borderBottom:"1px",borderColor:ie(`${t}.100`,`${t}.700`)(e),...E0},caption:{color:ie("gray.600","gray.100")(e)},tbody:{tr:{"&:nth-of-type(odd)":{"th, td":{borderBottomWidth:"1px",borderColor:ie(`${t}.100`,`${t}.700`)(e)},td:{background:ie(`${t}.100`,`${t}.700`)(e)}}}},tfoot:{tr:{"&:last-of-type":{th:{borderBottomWidth:0}}}}}}),Due={simple:Mue,striped:Nue,unstyled:{}},zue={sm:yu({th:{px:"4",py:"1",lineHeight:"4",fontSize:"xs"},td:{px:"4",py:"2",fontSize:"sm",lineHeight:"4"},caption:{px:"4",py:"2",fontSize:"xs"}}),md:yu({th:{px:"6",py:"3",lineHeight:"4",fontSize:"xs"},td:{px:"6",py:"4",lineHeight:"5"},caption:{px:"6",py:"2",fontSize:"sm"}}),lg:yu({th:{px:"8",py:"4",lineHeight:"5",fontSize:"sm"},td:{px:"8",py:"5",lineHeight:"6"},caption:{px:"6",py:"2",fontSize:"md"}})},$ue=Rue({baseStyle:Oue,variants:Due,sizes:zue,defaultProps:{variant:"simple",size:"md",colorScheme:"gray"}}),{defineMultiStyleConfig:Bue,definePartsStyle:yi}=Ht(ioe.keys),Fue=e=>{const{orientation:t}=e;return{display:t==="vertical"?"flex":"block"}},Vue=e=>{const{isFitted:t}=e;return{flex:t?1:void 0,transitionProperty:"common",transitionDuration:"normal",_focusVisible:{zIndex:1,boxShadow:"outline"},_disabled:{cursor:"not-allowed",opacity:.4}}},Wue=e=>{const{align:t="start",orientation:n}=e;return{justifyContent:{end:"flex-end",center:"center",start:"flex-start"}[t],flexDirection:n==="vertical"?"column":"row"}},jue={p:4},Hue=yi(e=>({root:Fue(e),tab:Vue(e),tablist:Wue(e),tabpanel:jue})),Uue={sm:yi({tab:{py:1,px:4,fontSize:"sm"}}),md:yi({tab:{fontSize:"md",py:2,px:4}}),lg:yi({tab:{fontSize:"lg",py:3,px:4}})},Gue=yi(e=>{const{colorScheme:t,orientation:n}=e,r=n==="vertical",o=n==="vertical"?"borderStart":"borderBottom",i=r?"marginStart":"marginBottom";return{tablist:{[o]:"2px solid",borderColor:"inherit"},tab:{[o]:"2px solid",borderColor:"transparent",[i]:"-2px",_selected:{color:ie(`${t}.600`,`${t}.300`)(e),borderColor:"currentColor"},_active:{bg:ie("gray.200","whiteAlpha.300")(e)},_disabled:{_active:{bg:"none"}}}}}),Zue=yi(e=>{const{colorScheme:t}=e;return{tab:{borderTopRadius:"md",border:"1px solid",borderColor:"transparent",mb:"-1px",_selected:{color:ie(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderBottomColor:ie("white","gray.800")(e)}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),Kue=yi(e=>{const{colorScheme:t}=e;return{tab:{border:"1px solid",borderColor:"inherit",bg:ie("gray.50","whiteAlpha.50")(e),mb:"-1px",_notLast:{marginEnd:"-1px"},_selected:{bg:ie("#fff","gray.800")(e),color:ie(`${t}.600`,`${t}.300`)(e),borderColor:"inherit",borderTopColor:"currentColor",borderBottomColor:"transparent"}},tablist:{mb:"-1px",borderBottom:"1px solid",borderColor:"inherit"}}}),que=yi(e=>{const{colorScheme:t,theme:n}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:"gray.600",_selected:{color:xn(n,`${t}.700`),bg:xn(n,`${t}.100`)}}}}),Yue=yi(e=>{const{colorScheme:t}=e;return{tab:{borderRadius:"full",fontWeight:"semibold",color:ie("gray.600","inherit")(e),_selected:{color:ie("#fff","gray.800")(e),bg:ie(`${t}.600`,`${t}.300`)(e)}}}}),Xue=yi({}),Que={line:Gue,enclosed:Zue,"enclosed-colored":Kue,"soft-rounded":que,"solid-rounded":Yue,unstyled:Xue},Jue=Bue({baseStyle:Hue,sizes:Uue,variants:Que,defaultProps:{size:"md",variant:"line",colorScheme:"blue"}}),{defineMultiStyleConfig:ece,definePartsStyle:Ws}=Ht(aoe.keys),tce={fontWeight:"medium",lineHeight:1.2,outline:0,borderRadius:"md",_focusVisible:{boxShadow:"outline"}},nce={lineHeight:1.2,overflow:"visible"},rce={fontSize:"lg",w:"5",h:"5",transitionProperty:"common",transitionDuration:"normal",borderRadius:"full",marginStart:"1.5",marginEnd:"-1",opacity:.5,_disabled:{opacity:.4},_focusVisible:{boxShadow:"outline",bg:"rgba(0, 0, 0, 0.14)"},_hover:{opacity:.8},_active:{opacity:1}},oce=Ws({container:tce,label:nce,closeButton:rce}),ice={sm:Ws({container:{minH:"5",minW:"5",fontSize:"xs",px:"2"},closeButton:{marginEnd:"-2px",marginStart:"0.35rem"}}),md:Ws({container:{minH:"6",minW:"6",fontSize:"sm",px:"2"}}),lg:Ws({container:{minH:"8",minW:"8",fontSize:"md",px:"3"}})},ace={subtle:Ws(e=>{var t;return{container:(t=wd.variants)==null?void 0:t.subtle(e)}}),solid:Ws(e=>{var t;return{container:(t=wd.variants)==null?void 0:t.solid(e)}}),outline:Ws(e=>{var t;return{container:(t=wd.variants)==null?void 0:t.outline(e)}})},sce=ece({variants:ace,baseStyle:oce,sizes:ice,defaultProps:{size:"md",variant:"subtle",colorScheme:"gray"}}),N7,lce={...(N7=ut.baseStyle)==null?void 0:N7.field,paddingY:"2",minHeight:"20",lineHeight:"short",verticalAlign:"top"},D7,uce={outline:e=>{var t;return((t=ut.variants)==null?void 0:t.outline(e).field)??{}},flushed:e=>{var t;return((t=ut.variants)==null?void 0:t.flushed(e).field)??{}},filled:e=>{var t;return((t=ut.variants)==null?void 0:t.filled(e).field)??{}},unstyled:((D7=ut.variants)==null?void 0:D7.unstyled.field)??{}},z7,$7,B7,F7,cce={xs:((z7=ut.sizes)==null?void 0:z7.xs.field)??{},sm:(($7=ut.sizes)==null?void 0:$7.sm.field)??{},md:((B7=ut.sizes)==null?void 0:B7.md.field)??{},lg:((F7=ut.sizes)==null?void 0:F7.lg.field)??{}},dce={baseStyle:lce,sizes:cce,variants:uce,defaultProps:{size:"md",variant:"outline"}},Z2=Ir("tooltip-bg"),V7=Ir("tooltip-fg"),fce=Ir("popper-arrow-bg"),pce=e=>{const t=ie("gray.700","gray.300")(e),n=ie("whiteAlpha.900","gray.900")(e);return{bg:Z2.reference,color:V7.reference,[Z2.variable]:`colors.${t}`,[V7.variable]:`colors.${n}`,[fce.variable]:Z2.reference,px:"2",py:"0.5",borderRadius:"sm",fontWeight:"medium",fontSize:"sm",boxShadow:"md",maxW:"xs",zIndex:"tooltip"}},hce={baseStyle:pce},mce={Accordion:Mie,Alert:Wie,Avatar:Jie,Badge:wd,Breadcrumb:uae,Button:yae,Checkbox:_0,CloseButton:Pae,Code:Rae,Container:Mae,Divider:Bae,Drawer:Yae,Editable:rse,Form:use,FormError:mse,FormLabel:vse,Heading:Sse,Input:ut,Kbd:Ase,Link:Rse,List:zse,Menu:Zse,Modal:ole,NumberInput:hle,PinInput:yle,Popover:Ale,Progress:$le,Radio:jle,Select:Yle,Skeleton:eue,SkipLink:nue,Slider:pue,Spinner:gue,Stat:kue,Switch:Iue,Table:$ue,Tabs:Jue,Tag:sce,Textarea:dce,Tooltip:hce},gce={none:0,"1px":"1px solid","2px":"2px solid","4px":"4px solid","8px":"8px solid"},vce=gce,yce={base:"0em",sm:"30em",md:"48em",lg:"62em",xl:"80em","2xl":"96em"},bce=yce,Sce={transparent:"transparent",current:"currentColor",black:"#000000",white:"#FFFFFF",whiteAlpha:{50:"rgba(255, 255, 255, 0.04)",100:"rgba(255, 255, 255, 0.06)",200:"rgba(255, 255, 255, 0.08)",300:"rgba(255, 255, 255, 0.16)",400:"rgba(255, 255, 255, 0.24)",500:"rgba(255, 255, 255, 0.36)",600:"rgba(255, 255, 255, 0.48)",700:"rgba(255, 255, 255, 0.64)",800:"rgba(255, 255, 255, 0.80)",900:"rgba(255, 255, 255, 0.92)"},blackAlpha:{50:"rgba(0, 0, 0, 0.04)",100:"rgba(0, 0, 0, 0.06)",200:"rgba(0, 0, 0, 0.08)",300:"rgba(0, 0, 0, 0.16)",400:"rgba(0, 0, 0, 0.24)",500:"rgba(0, 0, 0, 0.36)",600:"rgba(0, 0, 0, 0.48)",700:"rgba(0, 0, 0, 0.64)",800:"rgba(0, 0, 0, 0.80)",900:"rgba(0, 0, 0, 0.92)"},gray:{50:"#F7FAFC",100:"#EDF2F7",200:"#E2E8F0",300:"#CBD5E0",400:"#A0AEC0",500:"#718096",600:"#4A5568",700:"#2D3748",800:"#1A202C",900:"#171923"},red:{50:"#FFF5F5",100:"#FED7D7",200:"#FEB2B2",300:"#FC8181",400:"#F56565",500:"#E53E3E",600:"#C53030",700:"#9B2C2C",800:"#822727",900:"#63171B"},orange:{50:"#FFFAF0",100:"#FEEBC8",200:"#FBD38D",300:"#F6AD55",400:"#ED8936",500:"#DD6B20",600:"#C05621",700:"#9C4221",800:"#7B341E",900:"#652B19"},yellow:{50:"#FFFFF0",100:"#FEFCBF",200:"#FAF089",300:"#F6E05E",400:"#ECC94B",500:"#D69E2E",600:"#B7791F",700:"#975A16",800:"#744210",900:"#5F370E"},green:{50:"#F0FFF4",100:"#C6F6D5",200:"#9AE6B4",300:"#68D391",400:"#48BB78",500:"#38A169",600:"#2F855A",700:"#276749",800:"#22543D",900:"#1C4532"},teal:{50:"#E6FFFA",100:"#B2F5EA",200:"#81E6D9",300:"#4FD1C5",400:"#38B2AC",500:"#319795",600:"#2C7A7B",700:"#285E61",800:"#234E52",900:"#1D4044"},blue:{50:"#ebf8ff",100:"#bee3f8",200:"#90cdf4",300:"#63b3ed",400:"#4299e1",500:"#3182ce",600:"#2b6cb0",700:"#2c5282",800:"#2a4365",900:"#1A365D"},cyan:{50:"#EDFDFD",100:"#C4F1F9",200:"#9DECF9",300:"#76E4F7",400:"#0BC5EA",500:"#00B5D8",600:"#00A3C4",700:"#0987A0",800:"#086F83",900:"#065666"},purple:{50:"#FAF5FF",100:"#E9D8FD",200:"#D6BCFA",300:"#B794F4",400:"#9F7AEA",500:"#805AD5",600:"#6B46C1",700:"#553C9A",800:"#44337A",900:"#322659"},pink:{50:"#FFF5F7",100:"#FED7E2",200:"#FBB6CE",300:"#F687B3",400:"#ED64A6",500:"#D53F8C",600:"#B83280",700:"#97266D",800:"#702459",900:"#521B41"},linkedin:{50:"#E8F4F9",100:"#CFEDFB",200:"#9BDAF3",300:"#68C7EC",400:"#34B3E4",500:"#00A0DC",600:"#008CC9",700:"#0077B5",800:"#005E93",900:"#004471"},facebook:{50:"#E8F4F9",100:"#D9DEE9",200:"#B7C2DA",300:"#6482C0",400:"#4267B2",500:"#385898",600:"#314E89",700:"#29487D",800:"#223B67",900:"#1E355B"},messenger:{50:"#D0E6FF",100:"#B9DAFF",200:"#A2CDFF",300:"#7AB8FF",400:"#2E90FF",500:"#0078FF",600:"#0063D1",700:"#0052AC",800:"#003C7E",900:"#002C5C"},whatsapp:{50:"#dffeec",100:"#b9f5d0",200:"#90edb3",300:"#65e495",400:"#3cdd78",500:"#22c35e",600:"#179848",700:"#0c6c33",800:"#01421c",900:"#001803"},twitter:{50:"#E5F4FD",100:"#C8E9FB",200:"#A8DCFA",300:"#83CDF7",400:"#57BBF5",500:"#1DA1F2",600:"#1A94DA",700:"#1681BF",800:"#136B9E",900:"#0D4D71"},telegram:{50:"#E3F2F9",100:"#C5E4F3",200:"#A2D4EC",300:"#7AC1E4",400:"#47A9DA",500:"#0088CC",600:"#007AB8",700:"#006BA1",800:"#005885",900:"#003F5E"}},xce=Sce,wce={none:"0",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},Cce=wce,kce={xs:"0 0 0 1px rgba(0, 0, 0, 0.05)",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",outline:"0 0 0 3px rgba(66, 153, 225, 0.6)",inner:"inset 0 2px 4px 0 rgba(0,0,0,0.06)",none:"none","dark-lg":"rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px"},_ce=kce,Ece={common:"background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",colors:"background-color, border-color, color, fill, stroke",dimensions:"width, height",position:"left, right, top, bottom",background:"background-color, background-image, background-position"},Lce={"ease-in":"cubic-bezier(0.4, 0, 1, 1)","ease-out":"cubic-bezier(0, 0, 0.2, 1)","ease-in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},Pce={"ultra-fast":"50ms",faster:"100ms",fast:"150ms",normal:"200ms",slow:"300ms",slower:"400ms","ultra-slow":"500ms"},Tce={property:Ece,easing:Lce,duration:Pce},Ace=Tce,Ice={hide:-1,auto:"auto",base:0,docked:10,dropdown:1e3,sticky:1100,banner:1200,overlay:1300,modal:1400,popover:1500,skipLink:1600,toast:1700,tooltip:1800},Rce=Ice,Oce={none:0,sm:"4px",base:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},Mce=Oce,Nce={breakpoints:bce,zIndices:Rce,radii:Cce,blur:Mce,colors:xce,...JA,sizes:YA,shadows:_ce,space:qA,borders:vce,transition:Ace},Dce={colors:{"chakra-body-text":{_light:"gray.800",_dark:"whiteAlpha.900"},"chakra-body-bg":{_light:"white",_dark:"gray.800"},"chakra-border-color":{_light:"gray.200",_dark:"whiteAlpha.300"},"chakra-placeholder-color":{_light:"gray.500",_dark:"whiteAlpha.400"}}},zce={global:{body:{fontFamily:"body",color:"chakra-body-text",bg:"chakra-body-bg",transitionProperty:"background-color",transitionDuration:"normal",lineHeight:"base"},"*::placeholder":{color:"chakra-placeholder-color"},"*, *::before, &::after":{borderColor:"chakra-border-color",wordWrap:"break-word"}}};function $ce(e){const t=typeof e;return e!=null&&(t==="object"||t==="function")&&!Array.isArray(e)}var Bce=["borders","breakpoints","colors","components","config","direction","fonts","fontSizes","fontWeights","letterSpacings","lineHeights","radii","shadows","sizes","space","styles","transition","zIndices"];function Fce(e){return $ce(e)?Bce.every(t=>Object.prototype.hasOwnProperty.call(e,t)):!1}var Vce="ltr",Wce={useSystemColorMode:!1,initialColorMode:"light",cssVarPrefix:"chakra"},rI={semanticTokens:Dce,direction:Vce,...Nce,components:mce,styles:zce,config:Wce};function jce(e,t){const n=Xn(e);C.exports.useEffect(()=>{if(t==null)return;let r=null;return r=window.setTimeout(()=>{n()},t),()=>{r&&window.clearTimeout(r)}},[t,n])}function s4(e,...t){return Hce(e)?e(...t):e}var Hce=e=>typeof e=="function";function Uce(e,t){const n=e??"bottom",o={"top-start":{ltr:"top-left",rtl:"top-right"},"top-end":{ltr:"top-right",rtl:"top-left"},"bottom-start":{ltr:"bottom-left",rtl:"bottom-right"},"bottom-end":{ltr:"bottom-right",rtl:"bottom-left"}}[n];return o?.[t]??n}var Gce=(e,t)=>e.find(n=>n.id===t);function W7(e,t){const n=oI(e,t),r=n?e[n].findIndex(o=>o.id===t):-1;return{position:n,index:r}}function oI(e,t){for(const[n,r]of Object.entries(e))if(Gce(r,t))return n}function Zce(e){const t=e.includes("right"),n=e.includes("left");let r="center";return t&&(r="flex-end"),n&&(r="flex-start"),{display:"flex",flexDirection:"column",alignItems:r}}function Kce(e){const n=e==="top"||e==="bottom"?"0 auto":void 0,r=e.includes("top")?"env(safe-area-inset-top, 0px)":void 0,o=e.includes("bottom")?"env(safe-area-inset-bottom, 0px)":void 0,i=e.includes("left")?void 0:"env(safe-area-inset-right, 0px)",s=e.includes("right")?void 0:"env(safe-area-inset-left, 0px)";return{position:"fixed",zIndex:5500,pointerEvents:"none",display:"flex",flexDirection:"column",margin:n,top:r,bottom:o,right:i,left:s}}var qce={top:[],"top-left":[],"top-right":[],"bottom-left":[],bottom:[],"bottom-right":[]},ui=Yce(qce);function Yce(e){let t=e;const n=new Set,r=o=>{t=o(t),n.forEach(i=>i())};return{getState:()=>t,subscribe:o=>(n.add(o),()=>{r(()=>e),n.delete(o)}),removeToast:(o,i)=>{r(s=>({...s,[i]:s[i].filter(l=>l.id!=o)}))},notify:(o,i)=>{const s=Xce(o,i),{position:l,id:c}=s;return r(d=>{const h=l.includes("top")?[s,...d[l]??[]]:[...d[l]??[],s];return{...d,[l]:h}}),c},update:(o,i)=>{!o||r(s=>{const l={...s},{position:c,index:d}=W7(l,o);return c&&d!==-1&&(l[c][d]={...l[c][d],...i,message:iI(i)}),l})},closeAll:({positions:o}={})=>{r(i=>(o??["bottom","bottom-right","bottom-left","top","top-left","top-right"]).reduce((c,d)=>(c[d]=i[d].map(f=>({...f,requestClose:!0})),c),{...i}))},close:o=>{r(i=>{const s=oI(i,o);return s?{...i,[s]:i[s].map(l=>l.id==o?{...l,requestClose:!0}:l)}:i})},isActive:o=>Boolean(W7(ui.getState(),o).position)}}var j7=0;function Xce(e,t={}){j7+=1;const n=t.id??j7,r=t.position??"bottom";return{id:n,message:e,position:r,duration:t.duration,onCloseComplete:t.onCloseComplete,onRequestRemove:()=>ui.removeToast(String(n),r),status:t.status,requestClose:!1,containerStyle:t.containerStyle}}var Qce=e=>{const{status:t,variant:n="solid",id:r,title:o,isClosable:i,onClose:s,description:l,icon:c}=e,d=r?{root:`toast-${r}`,title:`toast-${r}-title`,description:`toast-${r}-description`}:void 0;return X.createElement(RP,{addRole:!1,status:t,variant:n,id:d?.root,alignItems:"start",borderRadius:"md",boxShadow:"lg",paddingEnd:8,textAlign:"start",width:"auto"},v(MP,{children:c}),X.createElement(ee.div,{flex:"1",maxWidth:"100%"},o&&v(NP,{id:d?.title,children:o}),l&&v(OP,{id:d?.description,display:"block",children:l})),i&&v($m,{size:"sm",onClick:s,position:"absolute",insetEnd:1,top:1}))};function iI(e={}){const{render:t,toastComponent:n=Qce}=e;return o=>typeof t=="function"?t(o):v(n,{...o,...e})}function Jce(e,t){const n=o=>({...t,...o,position:Uce(o?.position??t?.position,e)}),r=o=>{const i=n(o),s=iI(i);return ui.notify(s,i)};return r.update=(o,i)=>{ui.update(o,n(i))},r.promise=(o,i)=>{const s=r({...i.loading,status:"loading",duration:null});o.then(l=>r.update(s,{status:"success",duration:5e3,...s4(i.success,l)})).catch(l=>r.update(s,{status:"error",duration:5e3,...s4(i.error,l)}))},r.closeAll=ui.closeAll,r.close=ui.close,r.isActive=ui.isActive,r}function aI(e){const{theme:t}=jE();return C.exports.useMemo(()=>Jce(t.direction,e),[e,t.direction])}var ede={initial:e=>{const{position:t}=e,n=["top","bottom"].includes(t)?"y":"x";let r=["top-right","bottom-right"].includes(t)?1:-1;return t==="bottom"&&(r=1),{opacity:0,[n]:r*24}},animate:{opacity:1,y:0,x:0,scale:1,transition:{duration:.4,ease:[.4,0,.2,1]}},exit:{opacity:0,scale:.85,transition:{duration:.2,ease:[.4,0,1,1]}}},sI=C.exports.memo(e=>{const{id:t,message:n,onCloseComplete:r,onRequestRemove:o,requestClose:i=!1,position:s="bottom",duration:l=5e3,containerStyle:c,motionVariants:d=ede,toastSpacing:f="0.5rem"}=e,[h,m]=C.exports.useState(l),g=yK();v0(()=>{g||r?.()},[g]),v0(()=>{m(l)},[l]);const b=()=>m(null),S=()=>m(l),_=()=>{g&&o()};C.exports.useEffect(()=>{g&&i&&o()},[g,i,o]),jce(_,h);const w=C.exports.useMemo(()=>({pointerEvents:"auto",maxWidth:560,minWidth:300,margin:f,...c}),[c,f]),x=C.exports.useMemo(()=>Zce(s),[s]);return X.createElement(xo.li,{layout:!0,className:"chakra-toast",variants:d,initial:"initial",animate:"animate",exit:"exit",onHoverStart:b,onHoverEnd:S,custom:{position:s},style:x},X.createElement(ee.div,{role:"status","aria-atomic":"true",className:"chakra-toast__inner",__css:w},s4(n,{id:t,onClose:_})))});sI.displayName="ToastComponent";var tde=e=>{const t=C.exports.useSyncExternalStore(ui.subscribe,ui.getState,ui.getState),{children:n,motionVariants:r,component:o=sI,portalProps:i}=e,l=Object.keys(t).map(c=>{const d=t[c];return v("ul",{role:"region","aria-live":"polite",id:`chakra-toast-manager-${c}`,style:Kce(c),children:v(da,{initial:!1,children:d.map(f=>v(o,{motionVariants:r,...f},f.id))})},c)});return Y(wn,{children:[n,v(tl,{...i,children:l})]})};function nde(e,t=[]){const n=Object.assign({},e);for(const r of t)r in n&&delete n[r];return n}function rde(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}var ode={exit:{scale:.85,opacity:0,transition:{opacity:{duration:.15,easings:"easeInOut"},scale:{duration:.2,easings:"easeInOut"}}},enter:{scale:1,opacity:1,transition:{opacity:{easings:"easeOut",duration:.2},scale:{duration:.2,ease:[.175,.885,.4,1.1]}}}};function Wc(...e){return function(n){e.some(r=>(r?.(n),n?.defaultPrevented))}}var l4=e=>{var t;return((t=e.current)==null?void 0:t.ownerDocument)||document},u4=e=>{var t,n;return((n=(t=e.current)==null?void 0:t.ownerDocument)==null?void 0:n.defaultView)||window};function ide(e={}){const{openDelay:t=0,closeDelay:n=0,closeOnClick:r=!0,closeOnMouseDown:o,closeOnEsc:i=!0,onOpen:s,onClose:l,placement:c,id:d,isOpen:f,defaultIsOpen:h,arrowSize:m=10,arrowShadowColor:g,arrowPadding:b,modifiers:S,isDisabled:_,gutter:w,offset:x,direction:k,...L}=e,{isOpen:A,onOpen:M,onClose:N}=wT({isOpen:f,defaultIsOpen:h,onOpen:s,onClose:l}),{referenceRef:$,getPopperProps:Z,getArrowInnerProps:j,getArrowProps:te}=xT({enabled:A,placement:c,arrowPadding:b,modifiers:S,gutter:w,offset:x,direction:k}),Le=C.exports.useId(),ge=`tooltip-${d??Le}`,de=C.exports.useRef(null),ve=C.exports.useRef(),oe=C.exports.useRef(),H=C.exports.useCallback(()=>{oe.current&&(clearTimeout(oe.current),oe.current=void 0),N()},[N]),Q=ade(de,H),q=C.exports.useCallback(()=>{if(!_&&!ve.current){Q();const pe=u4(de);ve.current=pe.setTimeout(M,t)}},[Q,_,M,t]),R=C.exports.useCallback(()=>{ve.current&&(clearTimeout(ve.current),ve.current=void 0);const pe=u4(de);oe.current=pe.setTimeout(H,n)},[n,H]),U=C.exports.useCallback(()=>{A&&r&&R()},[r,R,A]),ue=C.exports.useCallback(()=>{A&&o&&R()},[o,R,A]),fe=C.exports.useCallback(pe=>{A&&pe.key==="Escape"&&R()},[A,R]);F5(()=>l4(de),"keydown",i?fe:void 0),C.exports.useEffect(()=>()=>{clearTimeout(ve.current),clearTimeout(oe.current)},[]),F5(()=>de.current,"mouseleave",R);const be=C.exports.useCallback((pe={},_e=null)=>({...pe,ref:tn(de,_e,$),onMouseEnter:Wc(pe.onMouseEnter,q),onClick:Wc(pe.onClick,U),onMouseDown:Wc(pe.onMouseDown,ue),onFocus:Wc(pe.onFocus,q),onBlur:Wc(pe.onBlur,R),"aria-describedby":A?ge:void 0}),[q,R,ue,A,ge,U,$]),Se=C.exports.useCallback((pe={},_e=null)=>Z({...pe,style:{...pe.style,[hn.arrowSize.var]:m?`${m}px`:void 0,[hn.arrowShadowColor.var]:g}},_e),[Z,m,g]),Te=C.exports.useCallback((pe={},_e=null)=>{const ze={...pe.style,position:"relative",transformOrigin:hn.transformOrigin.varRef};return{ref:_e,...L,...pe,id:ge,role:"tooltip",style:ze}},[L,ge]);return{isOpen:A,show:q,hide:R,getTriggerProps:be,getTooltipProps:Te,getTooltipPositionerProps:Se,getArrowProps:te,getArrowInnerProps:j}}var K2="chakra-ui:close-tooltip";function ade(e,t){return C.exports.useEffect(()=>{const n=l4(e);return n.addEventListener(K2,t),()=>n.removeEventListener(K2,t)},[t,e]),()=>{const n=l4(e),r=u4(e);n.dispatchEvent(new r.CustomEvent(K2))}}var sde=ee(xo.div),Bn=le((e,t)=>{const n=mr("Tooltip",e),r=St(e),o=vm(),{children:i,label:s,shouldWrapChildren:l,"aria-label":c,hasArrow:d,bg:f,portalProps:h,background:m,backgroundColor:g,bgColor:b,...S}=r,_=m??g??f??b;if(_){n.bg=_;const $=Nj(o,"colors",_);n[hn.arrowBg.var]=$}const w=ide({...S,direction:o.direction}),x=typeof i=="string"||l;let k;if(x)k=X.createElement(ee.span,{tabIndex:0,...w.getTriggerProps()},i);else{const $=C.exports.Children.only(i);k=C.exports.cloneElement($,w.getTriggerProps($.props,$.ref))}const L=!!c,A=w.getTooltipProps({},t),M=L?nde(A,["role","id"]):A,N=rde(A,["role","id"]);return s?Y(wn,{children:[k,v(da,{children:w.isOpen&&X.createElement(tl,{...h},X.createElement(ee.div,{...w.getTooltipPositionerProps(),__css:{zIndex:n.zIndex,pointerEvents:"none"}},Y(sde,{variants:ode,...M,initial:"exit",animate:"enter",exit:"exit",__css:n,children:[s,L&&X.createElement(ee.span,{srOnly:!0,...N},c),d&&X.createElement(ee.div,{"data-popper-arrow":!0,className:"chakra-tooltip__arrow-wrapper"},X.createElement(ee.div,{"data-popper-arrow-inner":!0,className:"chakra-tooltip__arrow",__css:{bg:n.bg}}))]})))})]}):v(wn,{children:i})});Bn.displayName="Tooltip";var lde=e=>{const{children:t,colorModeManager:n,portalZIndex:r,resetCSS:o=!0,theme:i={},environment:s,cssVarsRoot:l}=e,c=v(cT,{environment:s,children:t});return v(IU,{theme:i,cssVarsRoot:l,children:Y(sE,{colorModeManager:n,options:i.config,children:[o?v(lQ,{}):v(sQ,{}),v(OU,{}),r?v(kT,{zIndex:r,children:c}):c]})})};function ude({children:e,theme:t=rI,toastOptions:n,...r}){return Y(lde,{theme:t,...r,children:[e,v(tde,{...n})]})}function cde(...e){let t=[...e],n=e[e.length-1];return Fce(n)&&t.length>1?t=t.slice(0,t.length-1):n=rI,YH(...t.map(r=>o=>tu(r)?r(o):dde(o,r)))(n)}function dde(...e){return ia({},...e,lI)}function lI(e,t,n,r){if((tu(e)||tu(t))&&Object.prototype.hasOwnProperty.call(r,n))return(...o)=>{const i=tu(e)?e(...o):e,s=tu(t)?t(...o):t;return ia({},i,s,lI)}}function Fo(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r3?t.i-4:t.i:Array.isArray(e)?1:a6(e)?2:s6(e)?3:0}function bu(e,t){return Xu(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function fde(e,t){return Xu(e)===2?e.get(t):e[t]}function uI(e,t,n){var r=Xu(e);r===2?e.set(t,n):r===3?(e.delete(t),e.add(n)):e[t]=n}function cI(e,t){return e===t?e!==0||1/e==1/t:e!=e&&t!=t}function a6(e){return yde&&e instanceof Map}function s6(e){return bde&&e instanceof Set}function Es(e){return e.o||e.t}function l6(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=fI(e);delete t[Wt];for(var n=Su(t),r=0;r1&&(e.set=e.add=e.clear=e.delete=pde),Object.freeze(e),t&&qs(e,function(n,r){return u6(r,!0)},!0)),e}function pde(){Fo(2)}function c6(e){return e==null||typeof e!="object"||Object.isFrozen(e)}function bi(e){var t=p4[e];return t||Fo(18,e),t}function hde(e,t){p4[e]||(p4[e]=t)}function c4(){return pf}function q2(e,t){t&&(bi("Patches"),e.u=[],e.s=[],e.v=t)}function L0(e){d4(e),e.p.forEach(mde),e.p=null}function d4(e){e===pf&&(pf=e.l)}function H7(e){return pf={p:[],l:pf,h:e,m:!0,_:0}}function mde(e){var t=e[Wt];t.i===0||t.i===1?t.j():t.O=!0}function Y2(e,t){t._=t.p.length;var n=t.p[0],r=e!==void 0&&e!==n;return t.h.g||bi("ES5").S(t,e,r),r?(n[Wt].P&&(L0(t),Fo(4)),ua(e)&&(e=P0(t,e),t.l||T0(t,e)),t.u&&bi("Patches").M(n[Wt].t,e,t.u,t.s)):e=P0(t,n,[]),L0(t),t.u&&t.v(t.u,t.s),e!==dI?e:void 0}function P0(e,t,n){if(c6(t))return t;var r=t[Wt];if(!r)return qs(t,function(i,s){return U7(e,r,t,i,s,n)},!0),t;if(r.A!==e)return t;if(!r.P)return T0(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var o=r.i===4||r.i===5?r.o=l6(r.k):r.o;qs(r.i===3?new Set(o):o,function(i,s){return U7(e,r,o,i,s,n)}),T0(e,o,!1),n&&e.u&&bi("Patches").R(r,n,e.u,e.s)}return r.o}function U7(e,t,n,r,o,i){if(os(o)){var s=P0(e,o,i&&t&&t.i!==3&&!bu(t.D,r)?i.concat(r):void 0);if(uI(n,r,s),!os(s))return;e.m=!1}if(ua(o)&&!c6(o)){if(!e.h.F&&e._<1)return;P0(e,o),t&&t.A.l||T0(e,o)}}function T0(e,t,n){n===void 0&&(n=!1),e.h.F&&e.m&&u6(t,n)}function X2(e,t){var n=e[Wt];return(n?Es(n):e)[t]}function G7(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function za(e){e.P||(e.P=!0,e.l&&za(e.l))}function Q2(e){e.o||(e.o=l6(e.t))}function f4(e,t,n){var r=a6(t)?bi("MapSet").N(t,n):s6(t)?bi("MapSet").T(t,n):e.g?function(o,i){var s=Array.isArray(o),l={i:s?1:0,A:i?i.A:c4(),P:!1,I:!1,D:{},l:i,t:o,k:null,o:null,j:null,C:!1},c=l,d=hf;s&&(c=[l],d=Jc);var f=Proxy.revocable(c,d),h=f.revoke,m=f.proxy;return l.k=m,l.j=h,m}(t,n):bi("ES5").J(t,n);return(n?n.A:c4()).p.push(r),r}function gde(e){return os(e)||Fo(22,e),function t(n){if(!ua(n))return n;var r,o=n[Wt],i=Xu(n);if(o){if(!o.P&&(o.i<4||!bi("ES5").K(o)))return o.t;o.I=!0,r=Z7(n,i),o.I=!1}else r=Z7(n,i);return qs(r,function(s,l){o&&fde(o.t,s)===l||uI(r,s,t(l))}),i===3?new Set(r):r}(e)}function Z7(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return l6(e)}function vde(){function e(i,s){var l=o[i];return l?l.enumerable=s:o[i]=l={configurable:!0,enumerable:s,get:function(){var c=this[Wt];return hf.get(c,i)},set:function(c){var d=this[Wt];hf.set(d,i,c)}},l}function t(i){for(var s=i.length-1;s>=0;s--){var l=i[s][Wt];if(!l.P)switch(l.i){case 5:r(l)&&za(l);break;case 4:n(l)&&za(l)}}}function n(i){for(var s=i.t,l=i.k,c=Su(l),d=c.length-1;d>=0;d--){var f=c[d];if(f!==Wt){var h=s[f];if(h===void 0&&!bu(s,f))return!0;var m=l[f],g=m&&m[Wt];if(g?g.t!==h:!cI(m,h))return!0}}var b=!!s[Wt];return c.length!==Su(s).length+(b?0:1)}function r(i){var s=i.k;if(s.length!==i.t.length)return!0;var l=Object.getOwnPropertyDescriptor(s,s.length-1);if(l&&!l.get)return!0;for(var c=0;c1?w-1:0),k=1;k1?f-1:0),m=1;m=0;o--){var i=r[o];if(i.path.length===0&&i.op==="replace"){n=i.value;break}}o>-1&&(r=r.slice(o+1));var s=bi("Patches").$;return os(n)?s(n,r):this.produce(n,function(l){return s(l,r)})},e}(),qr=new xde,pI=qr.produce;qr.produceWithPatches.bind(qr);qr.setAutoFreeze.bind(qr);qr.setUseProxies.bind(qr);qr.applyPatches.bind(qr);qr.createDraft.bind(qr);qr.finishDraft.bind(qr);function X7(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Q7(e){for(var t=1;t"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(qn(1));return n(f6)(e,t)}if(typeof e!="function")throw new Error(qn(2));var o=e,i=t,s=[],l=s,c=!1;function d(){l===s&&(l=s.slice())}function f(){if(c)throw new Error(qn(3));return i}function h(S){if(typeof S!="function")throw new Error(qn(4));if(c)throw new Error(qn(5));var _=!0;return d(),l.push(S),function(){if(!!_){if(c)throw new Error(qn(6));_=!1,d();var x=l.indexOf(S);l.splice(x,1),s=null}}}function m(S){if(!wde(S))throw new Error(qn(7));if(typeof S.type>"u")throw new Error(qn(8));if(c)throw new Error(qn(9));try{c=!0,i=o(i,S)}finally{c=!1}for(var _=s=l,w=0;w<_.length;w++){var x=_[w];x()}return S}function g(S){if(typeof S!="function")throw new Error(qn(10));o=S,m({type:A0.REPLACE})}function b(){var S,_=h;return S={subscribe:function(x){if(typeof x!="object"||x===null)throw new Error(qn(11));function k(){x.next&&x.next(f())}k();var L=_(k);return{unsubscribe:L}}},S[J7]=function(){return this},S}return m({type:A0.INIT}),r={dispatch:m,subscribe:h,getState:f,replaceReducer:g},r[J7]=b,r}function Cde(e){Object.keys(e).forEach(function(t){var n=e[t],r=n(void 0,{type:A0.INIT});if(typeof r>"u")throw new Error(qn(12));if(typeof n(void 0,{type:A0.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(qn(13))})}function hI(e){for(var t=Object.keys(e),n={},r=0;r"u")throw d&&d.type,new Error(qn(14));h[g]=_,f=f||_!==S}return f=f||i.length!==Object.keys(c).length,f?h:c}}function I0(){for(var e=arguments.length,t=new Array(e),n=0;n-1){var d=n[c];return c>0&&(n.splice(c,1),n.unshift(d)),d.value}return R0}function o(l,c){r(l)===R0&&(n.unshift({key:l,value:c}),n.length>e&&n.pop())}function i(){return n}function s(){n=[]}return{get:r,put:o,getEntries:i,clear:s}}var Lde=function(t,n){return t===n};function Pde(e){return function(n,r){if(n===null||r===null||n.length!==r.length)return!1;for(var o=n.length,i=0;i1?t-1:0),r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?efe:Jde;bI.useSyncExternalStore=zu.useSyncExternalStore!==void 0?zu.useSyncExternalStore:tfe;(function(e){e.exports=bI})(yI);var SI={exports:{}},xI={};/** + * @license React + * use-sync-external-store-shim/with-selector.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Km=C.exports,nfe=yI.exports;function rfe(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var ofe=typeof Object.is=="function"?Object.is:rfe,ife=nfe.useSyncExternalStore,afe=Km.useRef,sfe=Km.useEffect,lfe=Km.useMemo,ufe=Km.useDebugValue;xI.useSyncExternalStoreWithSelector=function(e,t,n,r,o){var i=afe(null);if(i.current===null){var s={hasValue:!1,value:null};i.current=s}else s=i.current;i=lfe(function(){function c(g){if(!d){if(d=!0,f=g,g=r(g),o!==void 0&&s.hasValue){var b=s.value;if(o(b,g))return h=b}return h=g}if(b=h,ofe(f,g))return b;var S=r(g);return o!==void 0&&o(b,S)?b:(f=g,h=S)}var d=!1,f,h,m=n===void 0?null:n;return[function(){return c(t())},m===null?void 0:function(){return c(m())}]},[t,n,r,o]);var l=ife(e,i[0],i[1]);return sfe(function(){s.hasValue=!0,s.value=l},[l]),ufe(l),l};(function(e){e.exports=xI})(SI);function cfe(e){e()}let wI=cfe;const dfe=e=>wI=e,ffe=()=>wI,is=X.createContext(null);function CI(){return C.exports.useContext(is)}const pfe=()=>{throw new Error("uSES not initialized!")};let kI=pfe;const hfe=e=>{kI=e},mfe=(e,t)=>e===t;function gfe(e=is){const t=e===is?CI:()=>C.exports.useContext(e);return function(r,o=mfe){const{store:i,subscription:s,getServerState:l}=t(),c=kI(s.addNestedSub,i.getState,l||i.getState,r,o);return C.exports.useDebugValue(c),c}}const vfe=gfe();var yfe={exports:{}},wt={};/** + * @license React + * react-is.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var m6=Symbol.for("react.element"),g6=Symbol.for("react.portal"),qm=Symbol.for("react.fragment"),Ym=Symbol.for("react.strict_mode"),Xm=Symbol.for("react.profiler"),Qm=Symbol.for("react.provider"),Jm=Symbol.for("react.context"),bfe=Symbol.for("react.server_context"),eg=Symbol.for("react.forward_ref"),tg=Symbol.for("react.suspense"),ng=Symbol.for("react.suspense_list"),rg=Symbol.for("react.memo"),og=Symbol.for("react.lazy"),Sfe=Symbol.for("react.offscreen"),_I;_I=Symbol.for("react.module.reference");function Co(e){if(typeof e=="object"&&e!==null){var t=e.$$typeof;switch(t){case m6:switch(e=e.type,e){case qm:case Xm:case Ym:case tg:case ng:return e;default:switch(e=e&&e.$$typeof,e){case bfe:case Jm:case eg:case og:case rg:case Qm:return e;default:return t}}case g6:return t}}}wt.ContextConsumer=Jm;wt.ContextProvider=Qm;wt.Element=m6;wt.ForwardRef=eg;wt.Fragment=qm;wt.Lazy=og;wt.Memo=rg;wt.Portal=g6;wt.Profiler=Xm;wt.StrictMode=Ym;wt.Suspense=tg;wt.SuspenseList=ng;wt.isAsyncMode=function(){return!1};wt.isConcurrentMode=function(){return!1};wt.isContextConsumer=function(e){return Co(e)===Jm};wt.isContextProvider=function(e){return Co(e)===Qm};wt.isElement=function(e){return typeof e=="object"&&e!==null&&e.$$typeof===m6};wt.isForwardRef=function(e){return Co(e)===eg};wt.isFragment=function(e){return Co(e)===qm};wt.isLazy=function(e){return Co(e)===og};wt.isMemo=function(e){return Co(e)===rg};wt.isPortal=function(e){return Co(e)===g6};wt.isProfiler=function(e){return Co(e)===Xm};wt.isStrictMode=function(e){return Co(e)===Ym};wt.isSuspense=function(e){return Co(e)===tg};wt.isSuspenseList=function(e){return Co(e)===ng};wt.isValidElementType=function(e){return typeof e=="string"||typeof e=="function"||e===qm||e===Xm||e===Ym||e===tg||e===ng||e===Sfe||typeof e=="object"&&e!==null&&(e.$$typeof===og||e.$$typeof===rg||e.$$typeof===Qm||e.$$typeof===Jm||e.$$typeof===eg||e.$$typeof===_I||e.getModuleId!==void 0)};wt.typeOf=Co;(function(e){e.exports=wt})(yfe);function xfe(){const e=ffe();let t=null,n=null;return{clear(){t=null,n=null},notify(){e(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){let r=[],o=t;for(;o;)r.push(o),o=o.next;return r},subscribe(r){let o=!0,i=n={callback:r,next:null,prev:n};return i.prev?i.prev.next=i:t=i,function(){!o||t===null||(o=!1,i.next?i.next.prev=i.prev:n=i.prev,i.prev?i.prev.next=i.next:t=i.next)}}}}const rC={notify(){},get:()=>[]};function wfe(e,t){let n,r=rC;function o(h){return c(),r.subscribe(h)}function i(){r.notify()}function s(){f.onStateChange&&f.onStateChange()}function l(){return Boolean(n)}function c(){n||(n=t?t.addNestedSub(s):e.subscribe(s),r=xfe())}function d(){n&&(n(),n=void 0,r.clear(),r=rC)}const f={addNestedSub:o,notifyNestedSubs:i,handleChangeWrapper:s,isSubscribed:l,trySubscribe:c,tryUnsubscribe:d,getListeners:()=>r};return f}const Cfe=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",kfe=Cfe?C.exports.useLayoutEffect:C.exports.useEffect;function _fe({store:e,context:t,children:n,serverState:r}){const o=C.exports.useMemo(()=>{const l=wfe(e);return{store:e,subscription:l,getServerState:r?()=>r:void 0}},[e,r]),i=C.exports.useMemo(()=>e.getState(),[e]);return kfe(()=>{const{subscription:l}=o;return l.onStateChange=l.notifyNestedSubs,l.trySubscribe(),i!==e.getState()&&l.notifyNestedSubs(),()=>{l.tryUnsubscribe(),l.onStateChange=void 0}},[o,i]),v((t||is).Provider,{value:o,children:n})}function EI(e=is){const t=e===is?CI:()=>C.exports.useContext(e);return function(){const{store:r}=t();return r}}const Efe=EI();function Lfe(e=is){const t=e===is?Efe:EI(e);return function(){return t().dispatch}}const Pfe=Lfe();hfe(SI.exports.useSyncExternalStoreWithSelector);dfe(Fu.exports.unstable_batchedUpdates);var v6="persist:",LI="persist/FLUSH",y6="persist/REHYDRATE",PI="persist/PAUSE",TI="persist/PERSIST",AI="persist/PURGE",II="persist/REGISTER",Tfe=-1;function S1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?S1=function(n){return typeof n}:S1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},S1(e)}function oC(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Afe(e){for(var t=1;t=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function Vfe(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var Wfe=5e3;function RI(e,t){var n=e.version!==void 0?e.version:Tfe;e.debug;var r=e.stateReconciler===void 0?Rfe:e.stateReconciler,o=e.getStoredState||Nfe,i=e.timeout!==void 0?e.timeout:Wfe,s=null,l=!1,c=!0,d=function(h){return h._persist.rehydrated&&s&&!c&&s.update(h),h};return function(f,h){var m=f||{},g=m._persist,b=Ffe(m,["_persist"]),S=b;if(h.type===TI){var _=!1,w=function($,Z){_||(h.rehydrate(e.key,$,Z),_=!0)};if(i&&setTimeout(function(){!_&&w(void 0,new Error('redux-persist: persist timed out for persist key "'.concat(e.key,'"')))},i),c=!1,s||(s=Ofe(e)),g)return Ui({},t(S,h),{_persist:g});if(typeof h.rehydrate!="function"||typeof h.register!="function")throw new Error("redux-persist: either rehydrate or register is not a function on the PERSIST action. This can happen if the action is being replayed. This is an unexplored use case, please open an issue and we will figure out a resolution.");return h.register(e.key),o(e).then(function(N){var $=e.migrate||function(Z,j){return Promise.resolve(Z)};$(N,n).then(function(Z){w(Z)},function(Z){w(void 0,Z)})},function(N){w(void 0,N)}),Ui({},t(S,h),{_persist:{version:n,rehydrated:!1}})}else{if(h.type===AI)return l=!0,h.result(zfe(e)),Ui({},t(S,h),{_persist:g});if(h.type===LI)return h.result(s&&s.flush()),Ui({},t(S,h),{_persist:g});if(h.type===PI)c=!0;else if(h.type===y6){if(l)return Ui({},S,{_persist:Ui({},g,{rehydrated:!0})});if(h.key===e.key){var x=t(S,h),k=h.payload,L=r!==!1&&k!==void 0?r(k,f,x,e):x,A=Ui({},L,{_persist:Ui({},g,{rehydrated:!0})});return d(A)}}}if(!g)return t(f,h);var M=t(S,h);return M===S?f:d(Ui({},M,{_persist:g}))}}function aC(e){return Ufe(e)||Hfe(e)||jfe()}function jfe(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function Hfe(e){if(Symbol.iterator in Object(e)||Object.prototype.toString.call(e)==="[object Arguments]")return Array.from(e)}function Ufe(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t0&&arguments[0]!==void 0?arguments[0]:OI,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case II:return m4({},t,{registry:[].concat(aC(t.registry),[n.key])});case y6:var r=t.registry.indexOf(n.key),o=aC(t.registry);return o.splice(r,1),m4({},t,{registry:o,bootstrapped:o.length===0});default:return t}};function Kfe(e,t,n){var r=n||!1,o=f6(Zfe,OI,t&&t.enhancer?t.enhancer:void 0),i=function(d){o.dispatch({type:II,key:d})},s=function(d,f,h){var m={type:y6,payload:f,err:h,key:d};e.dispatch(m),o.dispatch(m),r&&l.getState().bootstrapped&&(r(),r=!1)},l=m4({},o,{purge:function(){var d=[];return e.dispatch({type:AI,result:function(h){d.push(h)}}),Promise.all(d)},flush:function(){var d=[];return e.dispatch({type:LI,result:function(h){d.push(h)}}),Promise.all(d)},pause:function(){e.dispatch({type:PI})},persist:function(){e.dispatch({type:TI,register:i,rehydrate:s})}});return t&&t.manualPersist||l.persist(),l}var b6={},S6={};S6.__esModule=!0;S6.default=Xfe;function x1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?x1=function(n){return typeof n}:x1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},x1(e)}function ty(){}var qfe={getItem:ty,setItem:ty,removeItem:ty};function Yfe(e){if((typeof self>"u"?"undefined":x1(self))!=="object"||!(e in self))return!1;try{var t=self[e],n="redux-persist ".concat(e," test");t.setItem(n,"test"),t.getItem(n),t.removeItem(n)}catch{return!1}return!0}function Xfe(e){var t="".concat(e,"Storage");return Yfe(t)?self[t]:qfe}b6.__esModule=!0;b6.default=epe;var Qfe=Jfe(S6);function Jfe(e){return e&&e.__esModule?e:{default:e}}function epe(e){var t=(0,Qfe.default)(e);return{getItem:function(r){return new Promise(function(o,i){o(t.getItem(r))})},setItem:function(r,o){return new Promise(function(i,s){i(t.setItem(r,o))})},removeItem:function(r){return new Promise(function(o,i){o(t.removeItem(r))})}}}var x6=void 0,tpe=npe(b6);function npe(e){return e&&e.__esModule?e:{default:e}}var rpe=(0,tpe.default)("local");x6=rpe;const g4=e=>e.length===1?e[0].prompt:e.map(t=>`${t.prompt}:${t.weight}`).join(" "),ope=e=>{const r=e.split(",").map(o=>o.split(":")).map(o=>({seed:Number(o[0]),weight:Number(o[1])}));return w6(r)?r:!1},w6=e=>Boolean(typeof e=="string"?ope(e):e.length&&!e.some(t=>{const{seed:n,weight:r}=t,o=!isNaN(parseInt(n.toString(),10)),i=!isNaN(parseInt(r.toString(),10))&&r>=0&&r<=1;return!(o&&i)})),v4=e=>e.reduce((t,n,r,o)=>{const{seed:i,weight:s}=n;return t+=`${i}:${s}`,r!==o.length-1&&(t+=","),t},""),ipe=e=>e.split(",").map(r=>r.split(":")).map(r=>[parseInt(r[0]),parseFloat(r[1])]),MI={prompt:"",iterations:1,steps:50,cfgScale:7.5,height:512,width:512,sampler:"k_lms",threshold:0,perlin:0,seed:0,seamless:!1,hiresFix:!1,shouldUseInitImage:!1,img2imgStrength:.75,initialImagePath:null,maskPath:"",shouldFitToWidthHeight:!0,shouldGenerateVariations:!1,variationAmount:.1,seedWeights:"",shouldRunESRGAN:!1,upscalingLevel:4,upscalingStrength:.75,shouldRunGFPGAN:!1,gfpganStrength:.8,shouldRandomizeSeed:!0,showAdvancedOptions:!0,activeTab:0,shouldShowImageDetails:!1,shouldShowGallery:!1},ape=MI,NI=p6({name:"options",initialState:ape,reducers:{setPrompt:(e,t)=>{const n=t.payload;typeof n=="string"?e.prompt=n:e.prompt=g4(n)},setIterations:(e,t)=>{e.iterations=t.payload},setSteps:(e,t)=>{e.steps=t.payload},setCfgScale:(e,t)=>{e.cfgScale=t.payload},setThreshold:(e,t)=>{e.threshold=t.payload},setPerlin:(e,t)=>{e.perlin=t.payload},setHeight:(e,t)=>{e.height=t.payload},setWidth:(e,t)=>{e.width=t.payload},setSampler:(e,t)=>{e.sampler=t.payload},setSeed:(e,t)=>{e.seed=t.payload,e.shouldRandomizeSeed=!1},setImg2imgStrength:(e,t)=>{e.img2imgStrength=t.payload},setGfpganStrength:(e,t)=>{e.gfpganStrength=t.payload},setUpscalingLevel:(e,t)=>{e.upscalingLevel=t.payload},setUpscalingStrength:(e,t)=>{e.upscalingStrength=t.payload},setShouldUseInitImage:(e,t)=>{e.shouldUseInitImage=t.payload},setInitialImagePath:(e,t)=>{const n=t.payload;e.shouldUseInitImage=!!n,e.initialImagePath=n},setMaskPath:(e,t)=>{e.maskPath=t.payload},setSeamless:(e,t)=>{e.seamless=t.payload},setHiresFix:(e,t)=>{e.hiresFix=t.payload},setShouldFitToWidthHeight:(e,t)=>{e.shouldFitToWidthHeight=t.payload},resetSeed:e=>{e.seed=-1},setParameter:(e,t)=>{const{key:n,value:r}=t.payload,o={...e,[n]:r};return n==="seed"&&(o.shouldRandomizeSeed=!1),n==="initialImagePath"&&r===""&&(o.shouldUseInitImage=!1),o},setShouldGenerateVariations:(e,t)=>{e.shouldGenerateVariations=t.payload},setVariationAmount:(e,t)=>{e.variationAmount=t.payload},setSeedWeights:(e,t)=>{e.seedWeights=t.payload},setAllParameters:(e,t)=>{const{type:n,sampler:r,prompt:o,seed:i,variations:s,steps:l,cfg_scale:c,threshold:d,perlin:f,seamless:h,hires_fix:m,width:g,height:b,strength:S,fit:_,init_image_path:w,mask_image_path:x}=t.payload.image;n==="img2img"?(w&&(e.initialImagePath=w),x&&(e.maskPath=x),S&&(e.img2imgStrength=S),typeof _=="boolean"&&(e.shouldFitToWidthHeight=_),e.shouldUseInitImage=!0):e.shouldUseInitImage=!1,s&&s.length>0?(e.seedWeights=v4(s),e.shouldGenerateVariations=!0):e.shouldGenerateVariations=!1,i&&(e.seed=i,e.shouldRandomizeSeed=!1),o&&(e.prompt=g4(o)),r&&(e.sampler=r),l&&(e.steps=l),c&&(e.cfgScale=c),d&&(e.threshold=d),typeof d>"u"&&(e.threshold=0),f&&(e.perlin=f),typeof f>"u"&&(e.perlin=0),typeof h=="boolean"&&(e.seamless=h),typeof m=="boolean"&&(e.hiresFix=m),g&&(e.width=g),b&&(e.height=b)},resetOptionsState:e=>({...e,...MI}),setShouldRunGFPGAN:(e,t)=>{e.shouldRunGFPGAN=t.payload},setShouldRunESRGAN:(e,t)=>{e.shouldRunESRGAN=t.payload},setShouldRandomizeSeed:(e,t)=>{e.shouldRandomizeSeed=t.payload},setShowAdvancedOptions:(e,t)=>{e.showAdvancedOptions=t.payload},setActiveTab:(e,t)=>{e.activeTab=t.payload},setShouldShowImageDetails:(e,t)=>{e.shouldShowImageDetails=t.payload},setShouldShowGallery:(e,t)=>{e.shouldShowGallery=t.payload}}}),{setPrompt:DI,setIterations:spe,setSteps:zI,setCfgScale:$I,setThreshold:lpe,setPerlin:upe,setHeight:BI,setWidth:FI,setSampler:VI,setSeed:Hf,setSeamless:WI,setHiresFix:jI,setImg2imgStrength:HI,setGfpganStrength:y4,setUpscalingLevel:b4,setUpscalingStrength:S4,setShouldUseInitImage:dge,setInitialImagePath:$u,setMaskPath:x4,resetSeed:fge,resetOptionsState:pge,setShouldFitToWidthHeight:UI,setParameter:hge,setShouldGenerateVariations:cpe,setSeedWeights:GI,setVariationAmount:dpe,setAllParameters:ZI,setShouldRunGFPGAN:fpe,setShouldRunESRGAN:ppe,setShouldRandomizeSeed:hpe,setShowAdvancedOptions:mpe,setActiveTab:Zi,setShouldShowImageDetails:gpe,setShouldShowGallery:lC}=NI.actions,vpe=NI.reducer;var Jn={exports:{}};/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */(function(e,t){(function(){var n,r="4.17.21",o=200,i="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",s="Expected a function",l="Invalid `variable` option passed into `_.template`",c="__lodash_hash_undefined__",d=500,f="__lodash_placeholder__",h=1,m=2,g=4,b=1,S=2,_=1,w=2,x=4,k=8,L=16,A=32,M=64,N=128,$=256,Z=512,j=30,te="...",Le=800,me=16,ge=1,de=2,ve=3,oe=1/0,H=9007199254740991,Q=17976931348623157e292,q=0/0,R=4294967295,U=R-1,ue=R>>>1,fe=[["ary",N],["bind",_],["bindKey",w],["curry",k],["curryRight",L],["flip",Z],["partial",A],["partialRight",M],["rearg",$]],be="[object Arguments]",Se="[object Array]",Te="[object AsyncFunction]",pe="[object Boolean]",_e="[object Date]",ze="[object DOMException]",ct="[object Error]",Nt="[object Function]",Cn="[object GeneratorFunction]",xe="[object Map]",Re="[object Number]",rt="[object Null]",$e="[object Object]",Ut="[object Promise]",kn="[object Proxy]",dt="[object RegExp]",Lt="[object Set]",rn="[object String]",Xt="[object Symbol]",he="[object Undefined]",Pe="[object WeakMap]",mt="[object WeakSet]",ft="[object ArrayBuffer]",ae="[object DataView]",Ze="[object Float32Array]",At="[object Float64Array]",An="[object Int8Array]",jn="[object Int16Array]",Rr="[object Int32Array]",Go="[object Uint8Array]",Li="[object Uint8ClampedArray]",tr="[object Uint16Array]",Jr="[object Uint32Array]",fs=/\b__p \+= '';/g,sl=/\b(__p \+=) '' \+/g,lg=/(__e\(.*?\)|\b__t\)) \+\n'';/g,ec=/&(?:amp|lt|gt|quot|#39);/g,fa=/[&<>"']/g,ug=RegExp(ec.source),Pi=RegExp(fa.source),cg=/<%-([\s\S]+?)%>/g,dg=/<%([\s\S]+?)%>/g,Gf=/<%=([\s\S]+?)%>/g,fg=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,pg=/^\w*$/,ko=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,tc=/[\\^$.*+?()[\]{}|]/g,hg=RegExp(tc.source),nc=/^\s+/,mg=/\s/,gg=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,pa=/\{\n\/\* \[wrapped with (.+)\] \*/,vg=/,? & /,yg=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,bg=/[()=,{}\[\]\/\s]/,Sg=/\\(\\)?/g,xg=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Ti=/\w*$/,wg=/^[-+]0x[0-9a-f]+$/i,Cg=/^0b[01]+$/i,kg=/^\[object .+?Constructor\]$/,_g=/^0o[0-7]+$/i,Eg=/^(?:0|[1-9]\d*)$/,Lg=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ha=/($^)/,Pg=/['\n\r\u2028\u2029\\]/g,Ai="\\ud800-\\udfff",rc="\\u0300-\\u036f",Tg="\\ufe20-\\ufe2f",ll="\\u20d0-\\u20ff",oc=rc+Tg+ll,Zf="\\u2700-\\u27bf",Kf="a-z\\xdf-\\xf6\\xf8-\\xff",Ag="\\xac\\xb1\\xd7\\xf7",qf="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Ig="\\u2000-\\u206f",Rg=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Yf="A-Z\\xc0-\\xd6\\xd8-\\xde",Xf="\\ufe0e\\ufe0f",Qf=Ag+qf+Ig+Rg,ic="['\u2019]",Og="["+Ai+"]",Jf="["+Qf+"]",ul="["+oc+"]",ep="\\d+",cl="["+Zf+"]",dl="["+Kf+"]",tp="[^"+Ai+Qf+ep+Zf+Kf+Yf+"]",ac="\\ud83c[\\udffb-\\udfff]",np="(?:"+ul+"|"+ac+")",rp="[^"+Ai+"]",sc="(?:\\ud83c[\\udde6-\\uddff]){2}",lc="[\\ud800-\\udbff][\\udc00-\\udfff]",Ii="["+Yf+"]",op="\\u200d",ip="(?:"+dl+"|"+tp+")",Mg="(?:"+Ii+"|"+tp+")",fl="(?:"+ic+"(?:d|ll|m|re|s|t|ve))?",ap="(?:"+ic+"(?:D|LL|M|RE|S|T|VE))?",sp=np+"?",lp="["+Xf+"]?",pl="(?:"+op+"(?:"+[rp,sc,lc].join("|")+")"+lp+sp+")*",uc="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",cc="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",hl=lp+sp+pl,Ng="(?:"+[cl,sc,lc].join("|")+")"+hl,up="(?:"+[rp+ul+"?",ul,sc,lc,Og].join("|")+")",dc=RegExp(ic,"g"),cp=RegExp(ul,"g"),_o=RegExp(ac+"(?="+ac+")|"+up+hl,"g"),ps=RegExp([Ii+"?"+dl+"+"+fl+"(?="+[Jf,Ii,"$"].join("|")+")",Mg+"+"+ap+"(?="+[Jf,Ii+ip,"$"].join("|")+")",Ii+"?"+ip+"+"+fl,Ii+"+"+ap,cc,uc,ep,Ng].join("|"),"g"),Dg=RegExp("["+op+Ai+oc+Xf+"]"),dp=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,zg=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],fp=-1,Pt={};Pt[Ze]=Pt[At]=Pt[An]=Pt[jn]=Pt[Rr]=Pt[Go]=Pt[Li]=Pt[tr]=Pt[Jr]=!0,Pt[be]=Pt[Se]=Pt[ft]=Pt[pe]=Pt[ae]=Pt[_e]=Pt[ct]=Pt[Nt]=Pt[xe]=Pt[Re]=Pt[$e]=Pt[dt]=Pt[Lt]=Pt[rn]=Pt[Pe]=!1;var Ct={};Ct[be]=Ct[Se]=Ct[ft]=Ct[ae]=Ct[pe]=Ct[_e]=Ct[Ze]=Ct[At]=Ct[An]=Ct[jn]=Ct[Rr]=Ct[xe]=Ct[Re]=Ct[$e]=Ct[dt]=Ct[Lt]=Ct[rn]=Ct[Xt]=Ct[Go]=Ct[Li]=Ct[tr]=Ct[Jr]=!0,Ct[ct]=Ct[Nt]=Ct[Pe]=!1;var pp={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},$g={"&":"&","<":"<",">":">",'"':""","'":"'"},I={"&":"&","<":"<",">":">",""":'"',"'":"'"},z={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},G=parseFloat,we=parseInt,Ke=typeof qi=="object"&&qi&&qi.Object===Object&&qi,gt=typeof self=="object"&&self&&self.Object===Object&&self,Ve=Ke||gt||Function("return this")(),Ue=t&&!t.nodeType&&t,ot=Ue&&!0&&e&&!e.nodeType&&e,nr=ot&&ot.exports===Ue,In=nr&&Ke.process,_n=function(){try{var V=ot&&ot.require&&ot.require("util").types;return V||In&&In.binding&&In.binding("util")}catch{}}(),ml=_n&&_n.isArrayBuffer,gl=_n&&_n.isDate,fc=_n&&_n.isMap,O6=_n&&_n.isRegExp,M6=_n&&_n.isSet,N6=_n&&_n.isTypedArray;function Or(V,J,K){switch(K.length){case 0:return V.call(J);case 1:return V.call(J,K[0]);case 2:return V.call(J,K[0],K[1]);case 3:return V.call(J,K[0],K[1],K[2])}return V.apply(J,K)}function uO(V,J,K,Ce){for(var Be=-1,it=V==null?0:V.length;++Be-1}function Bg(V,J,K){for(var Ce=-1,Be=V==null?0:V.length;++Ce-1;);return K}function j6(V,J){for(var K=V.length;K--&&vl(J,V[K],0)>-1;);return K}function yO(V,J){for(var K=V.length,Ce=0;K--;)V[K]===J&&++Ce;return Ce}var bO=jg(pp),SO=jg($g);function xO(V){return"\\"+z[V]}function wO(V,J){return V==null?n:V[J]}function yl(V){return Dg.test(V)}function CO(V){return dp.test(V)}function kO(V){for(var J,K=[];!(J=V.next()).done;)K.push(J.value);return K}function Zg(V){var J=-1,K=Array(V.size);return V.forEach(function(Ce,Be){K[++J]=[Be,Ce]}),K}function H6(V,J){return function(K){return V(J(K))}}function va(V,J){for(var K=-1,Ce=V.length,Be=0,it=[];++K-1}function dM(a,u){var p=this.__data__,y=Ip(p,a);return y<0?(++this.size,p.push([a,u])):p[y][1]=u,this}Ri.prototype.clear=sM,Ri.prototype.delete=lM,Ri.prototype.get=uM,Ri.prototype.has=cM,Ri.prototype.set=dM;function Oi(a){var u=-1,p=a==null?0:a.length;for(this.clear();++u=u?a:u)),a}function ro(a,u,p,y,E,T){var O,D=u&h,W=u&m,ne=u&g;if(p&&(O=E?p(a,y,E,T):p(a)),O!==n)return O;if(!Gt(a))return a;var re=Fe(a);if(re){if(O=mN(a),!D)return vr(a,O)}else{var se=Un(a),ye=se==Nt||se==Cn;if(Ca(a))return ES(a,D);if(se==$e||se==be||ye&&!E){if(O=W||ye?{}:US(a),!D)return W?oN(a,LM(O,a)):rN(a,nS(O,a))}else{if(!Ct[se])return E?a:{};O=gN(a,se,D)}}T||(T=new Lo);var Ae=T.get(a);if(Ae)return Ae;T.set(a,O),S9(a)?a.forEach(function(Ne){O.add(ro(Ne,u,p,Ne,a,T))}):y9(a)&&a.forEach(function(Ne,qe){O.set(qe,ro(Ne,u,p,qe,a,T))});var Me=ne?W?bv:yv:W?br:En,je=re?n:Me(a);return eo(je||a,function(Ne,qe){je&&(qe=Ne,Ne=a[qe]),bc(O,qe,ro(Ne,u,p,qe,a,T))}),O}function PM(a){var u=En(a);return function(p){return rS(p,a,u)}}function rS(a,u,p){var y=p.length;if(a==null)return!y;for(a=Tt(a);y--;){var E=p[y],T=u[E],O=a[E];if(O===n&&!(E in a)||!T(O))return!1}return!0}function oS(a,u,p){if(typeof a!="function")throw new to(s);return Ec(function(){a.apply(n,p)},u)}function Sc(a,u,p,y){var E=-1,T=hp,O=!0,D=a.length,W=[],ne=u.length;if(!D)return W;p&&(u=Ft(u,Mr(p))),y?(T=Bg,O=!1):u.length>=o&&(T=pc,O=!1,u=new gs(u));e:for(;++EE?0:E+p),y=y===n||y>E?E:We(y),y<0&&(y+=E),y=p>y?0:w9(y);p0&&p(D)?u>1?Rn(D,u-1,p,y,E):ga(E,D):y||(E[E.length]=D)}return E}var ev=RS(),sS=RS(!0);function Zo(a,u){return a&&ev(a,u,En)}function tv(a,u){return a&&sS(a,u,En)}function Op(a,u){return ma(u,function(p){return $i(a[p])})}function ys(a,u){u=xa(u,a);for(var p=0,y=u.length;a!=null&&pu}function IM(a,u){return a!=null&&vt.call(a,u)}function RM(a,u){return a!=null&&u in Tt(a)}function OM(a,u,p){return a>=Hn(u,p)&&a=120&&re.length>=120)?new gs(O&&re):n}re=a[0];var se=-1,ye=D[0];e:for(;++se-1;)D!==a&&kp.call(D,W,1),kp.call(a,W,1);return a}function yS(a,u){for(var p=a?u.length:0,y=p-1;p--;){var E=u[p];if(p==y||E!==T){var T=E;zi(E)?kp.call(a,E,1):dv(a,E)}}return a}function lv(a,u){return a+Lp(Q6()*(u-a+1))}function GM(a,u,p,y){for(var E=-1,T=yn(Ep((u-a)/(p||1)),0),O=K(T);T--;)O[y?T:++E]=a,a+=p;return O}function uv(a,u){var p="";if(!a||u<1||u>H)return p;do u%2&&(p+=a),u=Lp(u/2),u&&(a+=a);while(u);return p}function Ge(a,u){return Ev(KS(a,u,Sr),a+"")}function ZM(a){return tS(Tl(a))}function KM(a,u){var p=Tl(a);return Hp(p,vs(u,0,p.length))}function Cc(a,u,p,y){if(!Gt(a))return a;u=xa(u,a);for(var E=-1,T=u.length,O=T-1,D=a;D!=null&&++EE?0:E+u),p=p>E?E:p,p<0&&(p+=E),E=u>p?0:p-u>>>0,u>>>=0;for(var T=K(E);++y>>1,O=a[T];O!==null&&!Dr(O)&&(p?O<=u:O=o){var ne=u?null:lN(a);if(ne)return gp(ne);O=!1,E=pc,W=new gs}else W=u?[]:D;e:for(;++y=y?a:oo(a,u,p)}var _S=BO||function(a){return Ve.clearTimeout(a)};function ES(a,u){if(u)return a.slice();var p=a.length,y=Z6?Z6(p):new a.constructor(p);return a.copy(y),y}function mv(a){var u=new a.constructor(a.byteLength);return new wp(u).set(new wp(a)),u}function JM(a,u){var p=u?mv(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.byteLength)}function eN(a){var u=new a.constructor(a.source,Ti.exec(a));return u.lastIndex=a.lastIndex,u}function tN(a){return yc?Tt(yc.call(a)):{}}function LS(a,u){var p=u?mv(a.buffer):a.buffer;return new a.constructor(p,a.byteOffset,a.length)}function PS(a,u){if(a!==u){var p=a!==n,y=a===null,E=a===a,T=Dr(a),O=u!==n,D=u===null,W=u===u,ne=Dr(u);if(!D&&!ne&&!T&&a>u||T&&O&&W&&!D&&!ne||y&&O&&W||!p&&W||!E)return 1;if(!y&&!T&&!ne&&a=D)return W;var ne=p[y];return W*(ne=="desc"?-1:1)}}return a.index-u.index}function TS(a,u,p,y){for(var E=-1,T=a.length,O=p.length,D=-1,W=u.length,ne=yn(T-O,0),re=K(W+ne),se=!y;++D1?p[E-1]:n,O=E>2?p[2]:n;for(T=a.length>3&&typeof T=="function"?(E--,T):n,O&&or(p[0],p[1],O)&&(T=E<3?n:T,E=1),u=Tt(u);++y-1?E[T?u[O]:O]:n}}function NS(a){return Di(function(u){var p=u.length,y=p,E=no.prototype.thru;for(a&&u.reverse();y--;){var T=u[y];if(typeof T!="function")throw new to(s);if(E&&!O&&Wp(T)=="wrapper")var O=new no([],!0)}for(y=O?y:p;++y1&&Qe.reverse(),re&&WD))return!1;var ne=T.get(a),re=T.get(u);if(ne&&re)return ne==u&&re==a;var se=-1,ye=!0,Ae=p&S?new gs:n;for(T.set(a,u),T.set(u,a);++se1?"& ":"")+u[y],u=u.join(p>2?", ":" "),a.replace(gg,`{ +/* [wrapped with `+u+`] */ +`)}function yN(a){return Fe(a)||xs(a)||!!(Y6&&a&&a[Y6])}function zi(a,u){var p=typeof a;return u=u??H,!!u&&(p=="number"||p!="symbol"&&Eg.test(a))&&a>-1&&a%1==0&&a0){if(++u>=Le)return arguments[0]}else u=0;return a.apply(n,arguments)}}function Hp(a,u){var p=-1,y=a.length,E=y-1;for(u=u===n?y:u;++p1?a[u-1]:n;return p=typeof p=="function"?(a.pop(),p):n,a9(a,p)});function s9(a){var u=P(a);return u.__chain__=!0,u}function TD(a,u){return u(a),a}function Up(a,u){return u(a)}var AD=Di(function(a){var u=a.length,p=u?a[0]:0,y=this.__wrapped__,E=function(T){return Jg(T,a)};return u>1||this.__actions__.length||!(y instanceof Ye)||!zi(p)?this.thru(E):(y=y.slice(p,+p+(u?1:0)),y.__actions__.push({func:Up,args:[E],thisArg:n}),new no(y,this.__chain__).thru(function(T){return u&&!T.length&&T.push(n),T}))});function ID(){return s9(this)}function RD(){return new no(this.value(),this.__chain__)}function OD(){this.__values__===n&&(this.__values__=x9(this.value()));var a=this.__index__>=this.__values__.length,u=a?n:this.__values__[this.__index__++];return{done:a,value:u}}function MD(){return this}function ND(a){for(var u,p=this;p instanceof Ap;){var y=e9(p);y.__index__=0,y.__values__=n,u?E.__wrapped__=y:u=y;var E=y;p=p.__wrapped__}return E.__wrapped__=a,u}function DD(){var a=this.__wrapped__;if(a instanceof Ye){var u=a;return this.__actions__.length&&(u=new Ye(this)),u=u.reverse(),u.__actions__.push({func:Up,args:[Lv],thisArg:n}),new no(u,this.__chain__)}return this.thru(Lv)}function zD(){return CS(this.__wrapped__,this.__actions__)}var $D=zp(function(a,u,p){vt.call(a,p)?++a[p]:Mi(a,p,1)});function BD(a,u,p){var y=Fe(a)?D6:TM;return p&&or(a,u,p)&&(u=n),y(a,Oe(u,3))}function FD(a,u){var p=Fe(a)?ma:aS;return p(a,Oe(u,3))}var VD=MS(t9),WD=MS(n9);function jD(a,u){return Rn(Gp(a,u),1)}function HD(a,u){return Rn(Gp(a,u),oe)}function UD(a,u,p){return p=p===n?1:We(p),Rn(Gp(a,u),p)}function l9(a,u){var p=Fe(a)?eo:ba;return p(a,Oe(u,3))}function u9(a,u){var p=Fe(a)?cO:iS;return p(a,Oe(u,3))}var GD=zp(function(a,u,p){vt.call(a,p)?a[p].push(u):Mi(a,p,[u])});function ZD(a,u,p,y){a=yr(a)?a:Tl(a),p=p&&!y?We(p):0;var E=a.length;return p<0&&(p=yn(E+p,0)),Xp(a)?p<=E&&a.indexOf(u,p)>-1:!!E&&vl(a,u,p)>-1}var KD=Ge(function(a,u,p){var y=-1,E=typeof u=="function",T=yr(a)?K(a.length):[];return ba(a,function(O){T[++y]=E?Or(u,O,p):xc(O,u,p)}),T}),qD=zp(function(a,u,p){Mi(a,p,u)});function Gp(a,u){var p=Fe(a)?Ft:fS;return p(a,Oe(u,3))}function YD(a,u,p,y){return a==null?[]:(Fe(u)||(u=u==null?[]:[u]),p=y?n:p,Fe(p)||(p=p==null?[]:[p]),gS(a,u,p))}var XD=zp(function(a,u,p){a[p?0:1].push(u)},function(){return[[],[]]});function QD(a,u,p){var y=Fe(a)?Fg:F6,E=arguments.length<3;return y(a,Oe(u,4),p,E,ba)}function JD(a,u,p){var y=Fe(a)?dO:F6,E=arguments.length<3;return y(a,Oe(u,4),p,E,iS)}function ez(a,u){var p=Fe(a)?ma:aS;return p(a,qp(Oe(u,3)))}function tz(a){var u=Fe(a)?tS:ZM;return u(a)}function nz(a,u,p){(p?or(a,u,p):u===n)?u=1:u=We(u);var y=Fe(a)?kM:KM;return y(a,u)}function rz(a){var u=Fe(a)?_M:YM;return u(a)}function oz(a){if(a==null)return 0;if(yr(a))return Xp(a)?bl(a):a.length;var u=Un(a);return u==xe||u==Lt?a.size:iv(a).length}function iz(a,u,p){var y=Fe(a)?Vg:XM;return p&&or(a,u,p)&&(u=n),y(a,Oe(u,3))}var az=Ge(function(a,u){if(a==null)return[];var p=u.length;return p>1&&or(a,u[0],u[1])?u=[]:p>2&&or(u[0],u[1],u[2])&&(u=[u[0]]),gS(a,Rn(u,1),[])}),Zp=FO||function(){return Ve.Date.now()};function sz(a,u){if(typeof u!="function")throw new to(s);return a=We(a),function(){if(--a<1)return u.apply(this,arguments)}}function c9(a,u,p){return u=p?n:u,u=a&&u==null?a.length:u,Ni(a,N,n,n,n,n,u)}function d9(a,u){var p;if(typeof u!="function")throw new to(s);return a=We(a),function(){return--a>0&&(p=u.apply(this,arguments)),a<=1&&(u=n),p}}var Tv=Ge(function(a,u,p){var y=_;if(p.length){var E=va(p,Ll(Tv));y|=A}return Ni(a,y,u,p,E)}),f9=Ge(function(a,u,p){var y=_|w;if(p.length){var E=va(p,Ll(f9));y|=A}return Ni(u,y,a,p,E)});function p9(a,u,p){u=p?n:u;var y=Ni(a,k,n,n,n,n,n,u);return y.placeholder=p9.placeholder,y}function h9(a,u,p){u=p?n:u;var y=Ni(a,L,n,n,n,n,n,u);return y.placeholder=h9.placeholder,y}function m9(a,u,p){var y,E,T,O,D,W,ne=0,re=!1,se=!1,ye=!0;if(typeof a!="function")throw new to(s);u=ao(u)||0,Gt(p)&&(re=!!p.leading,se="maxWait"in p,T=se?yn(ao(p.maxWait)||0,u):T,ye="trailing"in p?!!p.trailing:ye);function Ae(an){var To=y,Fi=E;return y=E=n,ne=an,O=a.apply(Fi,To),O}function Me(an){return ne=an,D=Ec(qe,u),re?Ae(an):O}function je(an){var To=an-W,Fi=an-ne,M9=u-To;return se?Hn(M9,T-Fi):M9}function Ne(an){var To=an-W,Fi=an-ne;return W===n||To>=u||To<0||se&&Fi>=T}function qe(){var an=Zp();if(Ne(an))return Qe(an);D=Ec(qe,je(an))}function Qe(an){return D=n,ye&&y?Ae(an):(y=E=n,O)}function zr(){D!==n&&_S(D),ne=0,y=W=E=D=n}function ir(){return D===n?O:Qe(Zp())}function $r(){var an=Zp(),To=Ne(an);if(y=arguments,E=this,W=an,To){if(D===n)return Me(W);if(se)return _S(D),D=Ec(qe,u),Ae(W)}return D===n&&(D=Ec(qe,u)),O}return $r.cancel=zr,$r.flush=ir,$r}var lz=Ge(function(a,u){return oS(a,1,u)}),uz=Ge(function(a,u,p){return oS(a,ao(u)||0,p)});function cz(a){return Ni(a,Z)}function Kp(a,u){if(typeof a!="function"||u!=null&&typeof u!="function")throw new to(s);var p=function(){var y=arguments,E=u?u.apply(this,y):y[0],T=p.cache;if(T.has(E))return T.get(E);var O=a.apply(this,y);return p.cache=T.set(E,O)||T,O};return p.cache=new(Kp.Cache||Oi),p}Kp.Cache=Oi;function qp(a){if(typeof a!="function")throw new to(s);return function(){var u=arguments;switch(u.length){case 0:return!a.call(this);case 1:return!a.call(this,u[0]);case 2:return!a.call(this,u[0],u[1]);case 3:return!a.call(this,u[0],u[1],u[2])}return!a.apply(this,u)}}function dz(a){return d9(2,a)}var fz=QM(function(a,u){u=u.length==1&&Fe(u[0])?Ft(u[0],Mr(Oe())):Ft(Rn(u,1),Mr(Oe()));var p=u.length;return Ge(function(y){for(var E=-1,T=Hn(y.length,p);++E=u}),xs=uS(function(){return arguments}())?uS:function(a){return Qt(a)&&vt.call(a,"callee")&&!q6.call(a,"callee")},Fe=K.isArray,Lz=ml?Mr(ml):NM;function yr(a){return a!=null&&Yp(a.length)&&!$i(a)}function on(a){return Qt(a)&&yr(a)}function Pz(a){return a===!0||a===!1||Qt(a)&&rr(a)==pe}var Ca=WO||Vv,Tz=gl?Mr(gl):DM;function Az(a){return Qt(a)&&a.nodeType===1&&!Lc(a)}function Iz(a){if(a==null)return!0;if(yr(a)&&(Fe(a)||typeof a=="string"||typeof a.splice=="function"||Ca(a)||Pl(a)||xs(a)))return!a.length;var u=Un(a);if(u==xe||u==Lt)return!a.size;if(_c(a))return!iv(a).length;for(var p in a)if(vt.call(a,p))return!1;return!0}function Rz(a,u){return wc(a,u)}function Oz(a,u,p){p=typeof p=="function"?p:n;var y=p?p(a,u):n;return y===n?wc(a,u,n,p):!!y}function Iv(a){if(!Qt(a))return!1;var u=rr(a);return u==ct||u==ze||typeof a.message=="string"&&typeof a.name=="string"&&!Lc(a)}function Mz(a){return typeof a=="number"&&X6(a)}function $i(a){if(!Gt(a))return!1;var u=rr(a);return u==Nt||u==Cn||u==Te||u==kn}function v9(a){return typeof a=="number"&&a==We(a)}function Yp(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=H}function Gt(a){var u=typeof a;return a!=null&&(u=="object"||u=="function")}function Qt(a){return a!=null&&typeof a=="object"}var y9=fc?Mr(fc):$M;function Nz(a,u){return a===u||ov(a,u,xv(u))}function Dz(a,u,p){return p=typeof p=="function"?p:n,ov(a,u,xv(u),p)}function zz(a){return b9(a)&&a!=+a}function $z(a){if(xN(a))throw new Be(i);return cS(a)}function Bz(a){return a===null}function Fz(a){return a==null}function b9(a){return typeof a=="number"||Qt(a)&&rr(a)==Re}function Lc(a){if(!Qt(a)||rr(a)!=$e)return!1;var u=Cp(a);if(u===null)return!0;var p=vt.call(u,"constructor")&&u.constructor;return typeof p=="function"&&p instanceof p&&bp.call(p)==DO}var Rv=O6?Mr(O6):BM;function Vz(a){return v9(a)&&a>=-H&&a<=H}var S9=M6?Mr(M6):FM;function Xp(a){return typeof a=="string"||!Fe(a)&&Qt(a)&&rr(a)==rn}function Dr(a){return typeof a=="symbol"||Qt(a)&&rr(a)==Xt}var Pl=N6?Mr(N6):VM;function Wz(a){return a===n}function jz(a){return Qt(a)&&Un(a)==Pe}function Hz(a){return Qt(a)&&rr(a)==mt}var Uz=Vp(av),Gz=Vp(function(a,u){return a<=u});function x9(a){if(!a)return[];if(yr(a))return Xp(a)?Eo(a):vr(a);if(hc&&a[hc])return kO(a[hc]());var u=Un(a),p=u==xe?Zg:u==Lt?gp:Tl;return p(a)}function Bi(a){if(!a)return a===0?a:0;if(a=ao(a),a===oe||a===-oe){var u=a<0?-1:1;return u*Q}return a===a?a:0}function We(a){var u=Bi(a),p=u%1;return u===u?p?u-p:u:0}function w9(a){return a?vs(We(a),0,R):0}function ao(a){if(typeof a=="number")return a;if(Dr(a))return q;if(Gt(a)){var u=typeof a.valueOf=="function"?a.valueOf():a;a=Gt(u)?u+"":u}if(typeof a!="string")return a===0?a:+a;a=V6(a);var p=Cg.test(a);return p||_g.test(a)?we(a.slice(2),p?2:8):wg.test(a)?q:+a}function C9(a){return Ko(a,br(a))}function Zz(a){return a?vs(We(a),-H,H):a===0?a:0}function pt(a){return a==null?"":Nr(a)}var Kz=_l(function(a,u){if(_c(u)||yr(u)){Ko(u,En(u),a);return}for(var p in u)vt.call(u,p)&&bc(a,p,u[p])}),k9=_l(function(a,u){Ko(u,br(u),a)}),Qp=_l(function(a,u,p,y){Ko(u,br(u),a,y)}),qz=_l(function(a,u,p,y){Ko(u,En(u),a,y)}),Yz=Di(Jg);function Xz(a,u){var p=kl(a);return u==null?p:nS(p,u)}var Qz=Ge(function(a,u){a=Tt(a);var p=-1,y=u.length,E=y>2?u[2]:n;for(E&&or(u[0],u[1],E)&&(y=1);++p1),T}),Ko(a,bv(a),p),y&&(p=ro(p,h|m|g,uN));for(var E=u.length;E--;)dv(p,u[E]);return p});function g$(a,u){return E9(a,qp(Oe(u)))}var v$=Di(function(a,u){return a==null?{}:HM(a,u)});function E9(a,u){if(a==null)return{};var p=Ft(bv(a),function(y){return[y]});return u=Oe(u),vS(a,p,function(y,E){return u(y,E[0])})}function y$(a,u,p){u=xa(u,a);var y=-1,E=u.length;for(E||(E=1,a=n);++yu){var y=a;a=u,u=y}if(p||a%1||u%1){var E=Q6();return Hn(a+E*(u-a+G("1e-"+((E+"").length-1))),u)}return lv(a,u)}var T$=El(function(a,u,p){return u=u.toLowerCase(),a+(p?T9(u):u)});function T9(a){return Nv(pt(a).toLowerCase())}function A9(a){return a=pt(a),a&&a.replace(Lg,bO).replace(cp,"")}function A$(a,u,p){a=pt(a),u=Nr(u);var y=a.length;p=p===n?y:vs(We(p),0,y);var E=p;return p-=u.length,p>=0&&a.slice(p,E)==u}function I$(a){return a=pt(a),a&&Pi.test(a)?a.replace(fa,SO):a}function R$(a){return a=pt(a),a&&hg.test(a)?a.replace(tc,"\\$&"):a}var O$=El(function(a,u,p){return a+(p?"-":"")+u.toLowerCase()}),M$=El(function(a,u,p){return a+(p?" ":"")+u.toLowerCase()}),N$=OS("toLowerCase");function D$(a,u,p){a=pt(a),u=We(u);var y=u?bl(a):0;if(!u||y>=u)return a;var E=(u-y)/2;return Fp(Lp(E),p)+a+Fp(Ep(E),p)}function z$(a,u,p){a=pt(a),u=We(u);var y=u?bl(a):0;return u&&y>>0,p?(a=pt(a),a&&(typeof u=="string"||u!=null&&!Rv(u))&&(u=Nr(u),!u&&yl(a))?wa(Eo(a),0,p):a.split(u,p)):[]}var H$=El(function(a,u,p){return a+(p?" ":"")+Nv(u)});function U$(a,u,p){return a=pt(a),p=p==null?0:vs(We(p),0,a.length),u=Nr(u),a.slice(p,p+u.length)==u}function G$(a,u,p){var y=P.templateSettings;p&&or(a,u,p)&&(u=n),a=pt(a),u=Qp({},u,y,FS);var E=Qp({},u.imports,y.imports,FS),T=En(E),O=Gg(E,T),D,W,ne=0,re=u.interpolate||ha,se="__p += '",ye=Kg((u.escape||ha).source+"|"+re.source+"|"+(re===Gf?xg:ha).source+"|"+(u.evaluate||ha).source+"|$","g"),Ae="//# sourceURL="+(vt.call(u,"sourceURL")?(u.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++fp+"]")+` +`;a.replace(ye,function(Ne,qe,Qe,zr,ir,$r){return Qe||(Qe=zr),se+=a.slice(ne,$r).replace(Pg,xO),qe&&(D=!0,se+=`' + +__e(`+qe+`) + +'`),ir&&(W=!0,se+=`'; +`+ir+`; +__p += '`),Qe&&(se+=`' + +((__t = (`+Qe+`)) == null ? '' : __t) + +'`),ne=$r+Ne.length,Ne}),se+=`'; +`;var Me=vt.call(u,"variable")&&u.variable;if(!Me)se=`with (obj) { +`+se+` +} +`;else if(bg.test(Me))throw new Be(l);se=(W?se.replace(fs,""):se).replace(sl,"$1").replace(lg,"$1;"),se="function("+(Me||"obj")+`) { +`+(Me?"":`obj || (obj = {}); +`)+"var __t, __p = ''"+(D?", __e = _.escape":"")+(W?`, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +`:`; +`)+se+`return __p +}`;var je=R9(function(){return it(T,Ae+"return "+se).apply(n,O)});if(je.source=se,Iv(je))throw je;return je}function Z$(a){return pt(a).toLowerCase()}function K$(a){return pt(a).toUpperCase()}function q$(a,u,p){if(a=pt(a),a&&(p||u===n))return V6(a);if(!a||!(u=Nr(u)))return a;var y=Eo(a),E=Eo(u),T=W6(y,E),O=j6(y,E)+1;return wa(y,T,O).join("")}function Y$(a,u,p){if(a=pt(a),a&&(p||u===n))return a.slice(0,U6(a)+1);if(!a||!(u=Nr(u)))return a;var y=Eo(a),E=j6(y,Eo(u))+1;return wa(y,0,E).join("")}function X$(a,u,p){if(a=pt(a),a&&(p||u===n))return a.replace(nc,"");if(!a||!(u=Nr(u)))return a;var y=Eo(a),E=W6(y,Eo(u));return wa(y,E).join("")}function Q$(a,u){var p=j,y=te;if(Gt(u)){var E="separator"in u?u.separator:E;p="length"in u?We(u.length):p,y="omission"in u?Nr(u.omission):y}a=pt(a);var T=a.length;if(yl(a)){var O=Eo(a);T=O.length}if(p>=T)return a;var D=p-bl(y);if(D<1)return y;var W=O?wa(O,0,D).join(""):a.slice(0,D);if(E===n)return W+y;if(O&&(D+=W.length-D),Rv(E)){if(a.slice(D).search(E)){var ne,re=W;for(E.global||(E=Kg(E.source,pt(Ti.exec(E))+"g")),E.lastIndex=0;ne=E.exec(re);)var se=ne.index;W=W.slice(0,se===n?D:se)}}else if(a.indexOf(Nr(E),D)!=D){var ye=W.lastIndexOf(E);ye>-1&&(W=W.slice(0,ye))}return W+y}function J$(a){return a=pt(a),a&&ug.test(a)?a.replace(ec,PO):a}var eB=El(function(a,u,p){return a+(p?" ":"")+u.toUpperCase()}),Nv=OS("toUpperCase");function I9(a,u,p){return a=pt(a),u=p?n:u,u===n?CO(a)?IO(a):hO(a):a.match(u)||[]}var R9=Ge(function(a,u){try{return Or(a,n,u)}catch(p){return Iv(p)?p:new Be(p)}}),tB=Di(function(a,u){return eo(u,function(p){p=qo(p),Mi(a,p,Tv(a[p],a))}),a});function nB(a){var u=a==null?0:a.length,p=Oe();return a=u?Ft(a,function(y){if(typeof y[1]!="function")throw new to(s);return[p(y[0]),y[1]]}):[],Ge(function(y){for(var E=-1;++EH)return[];var p=R,y=Hn(a,R);u=Oe(u),a-=R;for(var E=Ug(y,u);++p0||u<0)?new Ye(p):(a<0?p=p.takeRight(-a):a&&(p=p.drop(a)),u!==n&&(u=We(u),p=u<0?p.dropRight(-u):p.take(u-a)),p)},Ye.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Ye.prototype.toArray=function(){return this.take(R)},Zo(Ye.prototype,function(a,u){var p=/^(?:filter|find|map|reject)|While$/.test(u),y=/^(?:head|last)$/.test(u),E=P[y?"take"+(u=="last"?"Right":""):u],T=y||/^find/.test(u);!E||(P.prototype[u]=function(){var O=this.__wrapped__,D=y?[1]:arguments,W=O instanceof Ye,ne=D[0],re=W||Fe(O),se=function(qe){var Qe=E.apply(P,ga([qe],D));return y&&ye?Qe[0]:Qe};re&&p&&typeof ne=="function"&&ne.length!=1&&(W=re=!1);var ye=this.__chain__,Ae=!!this.__actions__.length,Me=T&&!ye,je=W&&!Ae;if(!T&&re){O=je?O:new Ye(this);var Ne=a.apply(O,D);return Ne.__actions__.push({func:Up,args:[se],thisArg:n}),new no(Ne,ye)}return Me&&je?a.apply(this,D):(Ne=this.thru(se),Me?y?Ne.value()[0]:Ne.value():Ne)})}),eo(["pop","push","shift","sort","splice","unshift"],function(a){var u=vp[a],p=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",y=/^(?:pop|shift)$/.test(a);P.prototype[a]=function(){var E=arguments;if(y&&!this.__chain__){var T=this.value();return u.apply(Fe(T)?T:[],E)}return this[p](function(O){return u.apply(Fe(O)?O:[],E)})}}),Zo(Ye.prototype,function(a,u){var p=P[u];if(p){var y=p.name+"";vt.call(Cl,y)||(Cl[y]=[]),Cl[y].push({name:u,func:p})}}),Cl[$p(n,w).name]=[{name:"wrapper",func:n}],Ye.prototype.clone=JO,Ye.prototype.reverse=eM,Ye.prototype.value=tM,P.prototype.at=AD,P.prototype.chain=ID,P.prototype.commit=RD,P.prototype.next=OD,P.prototype.plant=ND,P.prototype.reverse=DD,P.prototype.toJSON=P.prototype.valueOf=P.prototype.value=zD,P.prototype.first=P.prototype.head,hc&&(P.prototype[hc]=MD),P},Sl=RO();ot?((ot.exports=Sl)._=Sl,Ue._=Sl):Ve._=Sl}).call(qi)})(Jn,Jn.exports);const gf=Jn.exports,ype={currentImageUuid:"",images:[],areMoreImagesAvailable:!0},KI=p6({name:"gallery",initialState:ype,reducers:{setCurrentImage:(e,t)=>{e.currentImage=t.payload,e.currentImageUuid=t.payload.uuid},removeImage:(e,t)=>{const n=t.payload,r=e.images.filter(o=>o.uuid!==n);if(n===e.currentImageUuid){const o=e.images.findIndex(s=>s.uuid===n),i=Jn.exports.clamp(o,0,r.length-1);e.currentImage=r.length?r[i]:void 0,e.currentImageUuid=r.length?r[i].uuid:""}e.images=r},addImage:(e,t)=>{const n=t.payload,{uuid:r,mtime:o}=n;e.images.unshift(n),e.currentImageUuid=r,e.intermediateImage=void 0,e.currentImage=n,e.latest_mtime=o},setIntermediateImage:(e,t)=>{e.intermediateImage=t.payload},clearIntermediateImage:e=>{e.intermediateImage=void 0},selectNextImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(gf.inRange(r,0,t.length)){const o=t[r+1];e.currentImage=o,e.currentImageUuid=o.uuid}}},selectPrevImage:e=>{const{images:t,currentImage:n}=e;if(n){const r=t.findIndex(o=>o.uuid===n.uuid);if(gf.inRange(r,1,t.length+1)){const o=t[r-1];e.currentImage=o,e.currentImageUuid=o.uuid}}},addGalleryImages:(e,t)=>{const{images:n,areMoreImagesAvailable:r}=t.payload;if(n.length>0){if(e.images=e.images.concat(n).sort((o,i)=>i.mtime-o.mtime),!e.currentImage){const o=n[0];e.currentImage=o,e.currentImageUuid=o.uuid}e.latest_mtime=n[0].mtime,e.earliest_mtime=n[n.length-1].mtime}r!==void 0&&(e.areMoreImagesAvailable=r)}}}),{addImage:zh,clearIntermediateImage:uC,removeImage:bpe,setCurrentImage:Spe,addGalleryImages:xpe,setIntermediateImage:wpe,selectNextImage:qI,selectPrevImage:YI}=KI.actions,Cpe=KI.reducer,kpe={isConnected:!1,isProcessing:!1,log:[],shouldShowLogViewer:!1,shouldDisplayInProgress:!1,shouldDisplayGuides:!0,isGFPGANAvailable:!0,isESRGANAvailable:!0,socketId:"",shouldConfirmOnDelete:!0,openAccordions:[0],currentStep:0,totalSteps:0,currentIteration:0,totalIterations:0,currentStatus:"Disconnected",currentStatusHasSteps:!1,model:"",model_id:"",model_hash:"",app_id:"",app_version:"",hasError:!1,wasErrorSeen:!0},_pe=kpe,XI=p6({name:"system",initialState:_pe,reducers:{setShouldDisplayInProgress:(e,t)=>{e.shouldDisplayInProgress=t.payload},setIsProcessing:(e,t)=>{e.isProcessing=t.payload},setCurrentStatus:(e,t)=>{e.currentStatus=t.payload},setSystemStatus:(e,t)=>({...e,...t.payload}),errorOccurred:e=>{e.hasError=!0,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Server error",e.wasErrorSeen=!1},errorSeen:e=>{e.hasError=!1,e.wasErrorSeen=!0,e.currentStatus=e.isConnected?"Connected":"Disconnected"},addLogEntry:(e,t)=>{const{timestamp:n,message:r,level:o}=t.payload,s={timestamp:n,message:r,level:o||"info"};e.log.push(s)},setShouldShowLogViewer:(e,t)=>{e.shouldShowLogViewer=t.payload},setIsConnected:(e,t)=>{e.isConnected=t.payload,e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.hasError=!1},setSocketId:(e,t)=>{e.socketId=t.payload},setShouldConfirmOnDelete:(e,t)=>{e.shouldConfirmOnDelete=t.payload},setOpenAccordions:(e,t)=>{e.openAccordions=t.payload},setSystemConfig:(e,t)=>({...e,...t.payload}),setShouldDisplayGuides:(e,t)=>{e.shouldDisplayGuides=t.payload},processingCanceled:e=>{e.isProcessing=!1,e.currentStep=0,e.totalSteps=0,e.currentIteration=0,e.totalIterations=0,e.currentStatusHasSteps=!1,e.currentStatus="Processing canceled"}}}),{setShouldDisplayInProgress:Epe,setIsProcessing:w1,addLogEntry:sr,setShouldShowLogViewer:cC,setIsConnected:dC,setSocketId:mge,setShouldConfirmOnDelete:QI,setOpenAccordions:Lpe,setSystemStatus:Ppe,setCurrentStatus:fC,setSystemConfig:Tpe,setShouldDisplayGuides:Ape,processingCanceled:Ipe,errorOccurred:Rpe,errorSeen:JI}=XI.actions,Ope=XI.reducer,ki=Object.create(null);ki.open="0";ki.close="1";ki.ping="2";ki.pong="3";ki.message="4";ki.upgrade="5";ki.noop="6";const C1=Object.create(null);Object.keys(ki).forEach(e=>{C1[ki[e]]=e});const Mpe={type:"error",data:"parser error"},Npe=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Dpe=typeof ArrayBuffer=="function",zpe=e=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e&&e.buffer instanceof ArrayBuffer,eR=({type:e,data:t},n,r)=>Npe&&t instanceof Blob?n?r(t):pC(t,r):Dpe&&(t instanceof ArrayBuffer||zpe(t))?n?r(t):pC(new Blob([t]),r):r(ki[e]+(t||"")),pC=(e,t)=>{const n=new FileReader;return n.onload=function(){const r=n.result.split(",")[1];t("b"+r)},n.readAsDataURL(e)},hC="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ed=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let e=0;e{let t=e.length*.75,n=e.length,r,o=0,i,s,l,c;e[e.length-1]==="="&&(t--,e[e.length-2]==="="&&t--);const d=new ArrayBuffer(t),f=new Uint8Array(d);for(r=0;r>4,f[o++]=(s&15)<<4|l>>2,f[o++]=(l&3)<<6|c&63;return d},Bpe=typeof ArrayBuffer=="function",tR=(e,t)=>{if(typeof e!="string")return{type:"message",data:nR(e,t)};const n=e.charAt(0);return n==="b"?{type:"message",data:Fpe(e.substring(1),t)}:C1[n]?e.length>1?{type:C1[n],data:e.substring(1)}:{type:C1[n]}:Mpe},Fpe=(e,t)=>{if(Bpe){const n=$pe(e);return nR(n,t)}else return{base64:!0,data:e}},nR=(e,t)=>{switch(t){case"blob":return e instanceof ArrayBuffer?new Blob([e]):e;case"arraybuffer":default:return e}},rR=String.fromCharCode(30),Vpe=(e,t)=>{const n=e.length,r=new Array(n);let o=0;e.forEach((i,s)=>{eR(i,!1,l=>{r[s]=l,++o===n&&t(r.join(rR))})})},Wpe=(e,t)=>{const n=e.split(rR),r=[];for(let o=0;otypeof self<"u"?self:typeof window<"u"?window:Function("return this")())();function iR(e,...t){return t.reduce((n,r)=>(e.hasOwnProperty(r)&&(n[r]=e[r]),n),{})}const Hpe=setTimeout,Upe=clearTimeout;function ig(e,t){t.useNativeTimers?(e.setTimeoutFn=Hpe.bind(Ha),e.clearTimeoutFn=Upe.bind(Ha)):(e.setTimeoutFn=setTimeout.bind(Ha),e.clearTimeoutFn=clearTimeout.bind(Ha))}const Gpe=1.33;function Zpe(e){return typeof e=="string"?Kpe(e):Math.ceil((e.byteLength||e.size)*Gpe)}function Kpe(e){let t=0,n=0;for(let r=0,o=e.length;r=57344?n+=3:(r++,n+=4);return n}class qpe extends Error{constructor(t,n,r){super(t),this.description=n,this.context=r,this.type="TransportError"}}class aR extends gn{constructor(t){super(),this.writable=!1,ig(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,n,r){return super.emitReserved("error",new qpe(t,n,r)),this}open(){return(this.readyState==="closed"||this.readyState==="")&&(this.readyState="opening",this.doOpen()),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const n=tR(t,this.socket.binaryType);this.onPacket(n)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const sR="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),w4=64,Ype={};let mC=0,$h=0,gC;function vC(e){let t="";do t=sR[e%w4]+t,e=Math.floor(e/w4);while(e>0);return t}function lR(){const e=vC(+new Date);return e!==gC?(mC=0,gC=e):e+"."+vC(mC++)}for(;$h{this.readyState="paused",t()};if(this.polling||!this.writable){let r=0;this.polling&&(r++,this.once("pollComplete",function(){--r||n()})),this.writable||(r++,this.once("drain",function(){--r||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const n=r=>{if(this.readyState==="opening"&&r.type==="open"&&this.onOpen(),r.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(r)};Wpe(t,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,Vpe(t,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let t=this.query||{};const n=this.opts.secure?"https":"http";let r="";this.opts.timestampRequests!==!1&&(t[this.opts.timestampParam]=lR()),!this.supportsBinary&&!t.sid&&(t.b64=1),this.opts.port&&(n==="https"&&Number(this.opts.port)!==443||n==="http"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port);const o=uR(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new Si(this.uri(),t)}doWrite(t,n){const r=this.request({method:"POST",data:t});r.on("success",n),r.on("error",(o,i)=>{this.onError("xhr post error",o,i)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(n,r)=>{this.onError("xhr poll error",n,r)}),this.pollXhr=t}}class Si extends gn{constructor(t,n){super(),ig(this,n),this.opts=n,this.method=n.method||"GET",this.uri=t,this.async=n.async!==!1,this.data=n.data!==void 0?n.data:null,this.create()}create(){const t=iR(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const n=this.xhr=new dR(t);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{n.setRequestHeader("Accept","*/*")}catch{}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{n.readyState===4&&(n.status===200||n.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof n.status=="number"?n.status:0)},0))},n.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=Si.requestsCount++,Si.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=Jpe,t)try{this.xhr.abort()}catch{}typeof document<"u"&&delete Si.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}Si.requestsCount=0;Si.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",yC);else if(typeof addEventListener=="function"){const e="onpagehide"in Ha?"pagehide":"unload";addEventListener(e,yC,!1)}}function yC(){for(let e in Si.requests)Si.requests.hasOwnProperty(e)&&Si.requests[e].abort()}const nhe=(()=>typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,n)=>n(t,0))(),Bh=Ha.WebSocket||Ha.MozWebSocket,bC=!0,rhe="arraybuffer",SC=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class ohe extends aR{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),n=this.opts.protocols,r=SC?{}:iR(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=bC&&!SC?n?new Bh(t,n):new Bh(t):new Bh(t,n,r)}catch(o){return this.emitReserved("error",o)}this.ws.binaryType=this.socket.binaryType||rhe,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let n=0;n{const s={};try{bC&&this.ws.send(i)}catch{}o&&nhe(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const n=this.opts.secure?"wss":"ws";let r="";this.opts.port&&(n==="wss"&&Number(this.opts.port)!==443||n==="ws"&&Number(this.opts.port)!==80)&&(r=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=lR()),this.supportsBinary||(t.b64=1);const o=uR(t),i=this.opts.hostname.indexOf(":")!==-1;return n+"://"+(i?"["+this.opts.hostname+"]":this.opts.hostname)+r+this.opts.path+(o.length?"?"+o:"")}check(){return!!Bh}}const ihe={websocket:ohe,polling:the},ahe=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,she=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function C4(e){const t=e,n=e.indexOf("["),r=e.indexOf("]");n!=-1&&r!=-1&&(e=e.substring(0,n)+e.substring(n,r).replace(/:/g,";")+e.substring(r,e.length));let o=ahe.exec(e||""),i={},s=14;for(;s--;)i[she[s]]=o[s]||"";return n!=-1&&r!=-1&&(i.source=t,i.host=i.host.substring(1,i.host.length-1).replace(/;/g,":"),i.authority=i.authority.replace("[","").replace("]","").replace(/;/g,":"),i.ipv6uri=!0),i.pathNames=lhe(i,i.path),i.queryKey=uhe(i,i.query),i}function lhe(e,t){const n=/\/{2,9}/g,r=t.replace(n,"/").split("/");return(t.substr(0,1)=="/"||t.length===0)&&r.splice(0,1),t.substr(t.length-1,1)=="/"&&r.splice(r.length-1,1),r}function uhe(e,t){const n={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(r,o,i){o&&(n[o]=i)}),n}class $a extends gn{constructor(t,n={}){super(),t&&typeof t=="object"&&(n=t,t=null),t?(t=C4(t),n.hostname=t.host,n.secure=t.protocol==="https"||t.protocol==="wss",n.port=t.port,t.query&&(n.query=t.query)):n.host&&(n.hostname=C4(n.host).host),ig(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},n),this.opts.path=this.opts.path.replace(/\/$/,"")+"/",typeof this.opts.query=="string"&&(this.opts.query=Xpe(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&addEventListener("beforeunload",()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},!1),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const n=Object.assign({},this.opts.query);n.EIO=oR,n.transport=t,this.id&&(n.sid=this.id);const r=Object.assign({},this.opts.transportOptions[t],this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new ihe[t](r)}open(){let t;if(this.opts.rememberUpgrade&&$a.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)t="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else t=this.transports[0];this.readyState="opening";try{t=this.createTransport(t)}catch{this.transports.shift(),this.open();return}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(t){let n=this.createTransport(t),r=!1;$a.priorWebsocketSuccess=!1;const o=()=>{r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",h=>{if(!r)if(h.type==="pong"&&h.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;$a.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{r||this.readyState!=="closed"&&(f(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const m=new Error("probe error");m.transport=n.name,this.emitReserved("upgradeError",m)}}))};function i(){r||(r=!0,f(),n.close(),n=null)}const s=h=>{const m=new Error("probe error: "+h);m.transport=n.name,i(),this.emitReserved("upgradeError",m)};function l(){s("transport closed")}function c(){s("socket closed")}function d(h){n&&h.name!==n.name&&i()}const f=()=>{n.removeListener("open",o),n.removeListener("error",s),n.removeListener("close",l),this.off("close",c),this.off("upgrading",d)};n.once("open",o),n.once("error",s),n.once("close",l),this.once("close",c),this.once("upgrading",d),n.open()}onOpen(){if(this.readyState="open",$a.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade&&this.transport.pause){let t=0;const n=this.upgrades.length;for(;t{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let r=0;r0&&n>this.maxPayload)return this.writeBuffer.slice(0,r);n+=2}return this.writeBuffer}write(t,n,r){return this.sendPacket("message",t,n,r),this}send(t,n,r){return this.sendPacket("message",t,n,r),this}sendPacket(t,n,r,o){if(typeof n=="function"&&(o=n,n=void 0),typeof r=="function"&&(o=r,r=null),this.readyState==="closing"||this.readyState==="closed")return;r=r||{},r.compress=r.compress!==!1;const i={type:t,data:n,options:r};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),o&&this.once("flush",o),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),t()},r=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?r():t()}):this.upgrading?r():t()),this}onError(t){$a.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&removeEventListener("offline",this.offlineEventListener,!1),this.readyState="closed",this.id=null,this.emitReserved("close",t,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const n=[];let r=0;const o=t.length;for(;rtypeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(e):e.buffer instanceof ArrayBuffer,fR=Object.prototype.toString,phe=typeof Blob=="function"||typeof Blob<"u"&&fR.call(Blob)==="[object BlobConstructor]",hhe=typeof File=="function"||typeof File<"u"&&fR.call(File)==="[object FileConstructor]";function C6(e){return dhe&&(e instanceof ArrayBuffer||fhe(e))||phe&&e instanceof Blob||hhe&&e instanceof File}function k1(e,t){if(!e||typeof e!="object")return!1;if(Array.isArray(e)){for(let n=0,r=e.length;n=0&&e.num0;case Je.ACK:case Je.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class bhe{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const n=ghe(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const She=Object.freeze(Object.defineProperty({__proto__:null,protocol:vhe,get PacketType(){return Je},Encoder:yhe,Decoder:k6},Symbol.toStringTag,{value:"Module"}));function $o(e,t,n){return e.on(t,n),function(){e.off(t,n)}}const xhe=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class pR extends gn{constructor(t,n,r){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=n,r&&r.auth&&(this.auth=r.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[$o(t,"open",this.onopen.bind(this)),$o(t,"packet",this.onpacket.bind(this)),$o(t,"error",this.onerror.bind(this)),$o(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...n){if(xhe.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');n.unshift(t);const r={type:Je.EVENT,data:n};if(r.options={},r.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const s=this.ids++,l=n.pop();this._registerAckCallback(s,l),r.id=s}const o=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!o||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,n){const r=this.flags.timeout;if(r===void 0){this.acks[t]=n;return}const o=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let i=0;i{this.io.clearTimeoutFn(o),n.apply(this,[null,...i])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this.packet({type:Je.CONNECT,data:t})}):this.packet({type:Je.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,n)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Je.CONNECT:if(t.data&&t.data.sid){const o=t.data.sid;this.onconnect(o)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Je.EVENT:case Je.BINARY_EVENT:this.onevent(t);break;case Je.ACK:case Je.BINARY_ACK:this.onack(t);break;case Je.DISCONNECT:this.ondisconnect();break;case Je.CONNECT_ERROR:this.destroy();const r=new Error(t.data.message);r.data=t.data.data,this.emitReserved("connect_error",r);break}}onevent(t){const n=t.data||[];t.id!=null&&n.push(this.ack(t.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const r of n)r.apply(this,t)}super.emit.apply(this,t)}ack(t){const n=this;let r=!1;return function(...o){r||(r=!0,n.packet({type:Je.ACK,id:t,data:o}))}}onack(t){const n=this.acks[t.id];typeof n=="function"&&(n.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Je.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const n=this._anyListeners;for(let r=0;r0&&e.jitter<=1?e.jitter:0,this.attempts=0}Qu.prototype.duration=function(){var e=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),n=Math.floor(t*this.jitter*e);e=(Math.floor(t*10)&1)==0?e-n:e+n}return Math.min(e,this.max)|0};Qu.prototype.reset=function(){this.attempts=0};Qu.prototype.setMin=function(e){this.ms=e};Qu.prototype.setMax=function(e){this.max=e};Qu.prototype.setJitter=function(e){this.jitter=e};class E4 extends gn{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(n=t,t=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,ig(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((r=n.randomizationFactor)!==null&&r!==void 0?r:.5),this.backoff=new Qu({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=t;const o=n.parser||She;this.encoder=new o.Encoder,this.decoder=new o.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var n;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(n=this.backoff)===null||n===void 0||n.setMin(t),this)}randomizationFactor(t){var n;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(n=this.backoff)===null||n===void 0||n.setJitter(t),this)}reconnectionDelayMax(t){var n;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(n=this.backoff)===null||n===void 0||n.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new $a(this.uri,this.opts);const n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const o=$o(n,"open",function(){r.onopen(),t&&t()}),i=$o(n,"error",s=>{r.cleanup(),r._readyState="closed",this.emitReserved("error",s),t?t(s):r.maybeReconnectOnOpen()});if(this._timeout!==!1){const s=this._timeout;s===0&&o();const l=this.setTimeoutFn(()=>{o(),n.close(),n.emit("error",new Error("timeout"))},s);this.opts.autoUnref&&l.unref(),this.subs.push(function(){clearTimeout(l)})}return this.subs.push(o),this.subs.push(i),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push($o(t,"ping",this.onping.bind(this)),$o(t,"data",this.ondata.bind(this)),$o(t,"error",this.onerror.bind(this)),$o(t,"close",this.onclose.bind(this)),$o(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch{this.onclose("parse error")}}ondecoded(t){this.emitReserved("packet",t)}onerror(t){this.emitReserved("error",t)}socket(t,n){let r=this.nsps[t];return r||(r=new pR(this,t,n),this.nsps[t]=r),r}_destroy(t){const n=Object.keys(this.nsps);for(const r of n)if(this.nsps[r].active)return;this._close()}_packet(t){const n=this.encoder.encode(t);for(let r=0;rt()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(o=>{o?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",o)):t.onreconnect()}))},n);this.opts.autoUnref&&r.unref(),this.subs.push(function(){clearTimeout(r)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const jc={};function _1(e,t){typeof e=="object"&&(t=e,e=void 0),t=t||{};const n=che(e,t.path||"/socket.io"),r=n.source,o=n.id,i=n.path,s=jc[o]&&i in jc[o].nsps,l=t.forceNew||t["force new connection"]||t.multiplex===!1||s;let c;return l?c=new E4(r,t):(jc[o]||(jc[o]=new E4(r,t)),c=jc[o]),n.query&&!t.query&&(t.query=n.queryKey),c.socket(n.path,t)}Object.assign(_1,{Manager:E4,Socket:pR,io:_1,connect:_1});let Fh;const whe=new Uint8Array(16);function Che(){if(!Fh&&(Fh=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Fh))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Fh(whe)}const Nn=[];for(let e=0;e<256;++e)Nn.push((e+256).toString(16).slice(1));function khe(e,t=0){return(Nn[e[t+0]]+Nn[e[t+1]]+Nn[e[t+2]]+Nn[e[t+3]]+"-"+Nn[e[t+4]]+Nn[e[t+5]]+"-"+Nn[e[t+6]]+Nn[e[t+7]]+"-"+Nn[e[t+8]]+Nn[e[t+9]]+"-"+Nn[e[t+10]]+Nn[e[t+11]]+Nn[e[t+12]]+Nn[e[t+13]]+Nn[e[t+14]]+Nn[e[t+15]]).toLowerCase()}const _he=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),xC={randomUUID:_he};function Hc(e,t,n){if(xC.randomUUID&&!t&&!e)return xC.randomUUID();e=e||{};const r=e.random||(e.rng||Che)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let o=0;o<16;++o)t[n+o]=r[o];return t}return khe(r)}var Ehe=/d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g,Lhe=/\b(?:[A-Z]{1,3}[A-Z][TC])(?:[-+]\d{4})?|((?:Australian )?(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time)\b/g,Phe=/[^-+\dA-Z]/g;function lr(e,t,n,r){if(arguments.length===1&&typeof e=="string"&&!/\d/.test(e)&&(t=e,e=void 0),e=e||e===0?e:new Date,e instanceof Date||(e=new Date(e)),isNaN(e))throw TypeError("Invalid date");t=String(wC[t]||t||wC.default);var o=t.slice(0,4);(o==="UTC:"||o==="GMT:")&&(t=t.slice(4),n=!0,o==="GMT:"&&(r=!0));var i=function(){return n?"getUTC":"get"},s=function(){return e[i()+"Date"]()},l=function(){return e[i()+"Day"]()},c=function(){return e[i()+"Month"]()},d=function(){return e[i()+"FullYear"]()},f=function(){return e[i()+"Hours"]()},h=function(){return e[i()+"Minutes"]()},m=function(){return e[i()+"Seconds"]()},g=function(){return e[i()+"Milliseconds"]()},b=function(){return n?0:e.getTimezoneOffset()},S=function(){return The(e)},_=function(){return Ahe(e)},w={d:function(){return s()},dd:function(){return Br(s())},ddd:function(){return xr.dayNames[l()]},DDD:function(){return CC({y:d(),m:c(),d:s(),_:i(),dayName:xr.dayNames[l()],short:!0})},dddd:function(){return xr.dayNames[l()+7]},DDDD:function(){return CC({y:d(),m:c(),d:s(),_:i(),dayName:xr.dayNames[l()+7]})},m:function(){return c()+1},mm:function(){return Br(c()+1)},mmm:function(){return xr.monthNames[c()]},mmmm:function(){return xr.monthNames[c()+12]},yy:function(){return String(d()).slice(2)},yyyy:function(){return Br(d(),4)},h:function(){return f()%12||12},hh:function(){return Br(f()%12||12)},H:function(){return f()},HH:function(){return Br(f())},M:function(){return h()},MM:function(){return Br(h())},s:function(){return m()},ss:function(){return Br(m())},l:function(){return Br(g(),3)},L:function(){return Br(Math.floor(g()/10))},t:function(){return f()<12?xr.timeNames[0]:xr.timeNames[1]},tt:function(){return f()<12?xr.timeNames[2]:xr.timeNames[3]},T:function(){return f()<12?xr.timeNames[4]:xr.timeNames[5]},TT:function(){return f()<12?xr.timeNames[6]:xr.timeNames[7]},Z:function(){return r?"GMT":n?"UTC":Ihe(e)},o:function(){return(b()>0?"-":"+")+Br(Math.floor(Math.abs(b())/60)*100+Math.abs(b())%60,4)},p:function(){return(b()>0?"-":"+")+Br(Math.floor(Math.abs(b())/60),2)+":"+Br(Math.floor(Math.abs(b())%60),2)},S:function(){return["th","st","nd","rd"][s()%10>3?0:(s()%100-s()%10!=10)*s()%10]},W:function(){return S()},WW:function(){return Br(S())},N:function(){return _()}};return t.replace(Ehe,function(x){return x in w?w[x]():x.slice(1,x.length-1)})}var wC={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",paddedShortDate:"mm/dd/yyyy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},xr={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},Br=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;return String(t).padStart(n,"0")},CC=function(t){var n=t.y,r=t.m,o=t.d,i=t._,s=t.dayName,l=t.short,c=l===void 0?!1:l,d=new Date,f=new Date;f.setDate(f[i+"Date"]()-1);var h=new Date;h.setDate(h[i+"Date"]()+1);var m=function(){return d[i+"Date"]()},g=function(){return d[i+"Month"]()},b=function(){return d[i+"FullYear"]()},S=function(){return f[i+"Date"]()},_=function(){return f[i+"Month"]()},w=function(){return f[i+"FullYear"]()},x=function(){return h[i+"Date"]()},k=function(){return h[i+"Month"]()},L=function(){return h[i+"FullYear"]()};return b()===n&&g()===r&&m()===o?c?"Tdy":"Today":w()===n&&_()===r&&S()===o?c?"Ysd":"Yesterday":L()===n&&k()===r&&x()===o?c?"Tmw":"Tomorrow":s},The=function(t){var n=new Date(t.getFullYear(),t.getMonth(),t.getDate());n.setDate(n.getDate()-(n.getDay()+6)%7+3);var r=new Date(n.getFullYear(),0,4);r.setDate(r.getDate()-(r.getDay()+6)%7+3);var o=n.getTimezoneOffset()-r.getTimezoneOffset();n.setHours(n.getHours()-o);var i=(n-r)/(864e5*7);return 1+Math.floor(i)},Ahe=function(t){var n=t.getDay();return n===0&&(n=7),n},Ihe=function(t){return(String(t).match(Lhe)||[""]).pop().replace(Phe,"").replace(/GMT\+0000/g,"UTC")};const L4=fr("socketio/generateImage"),Rhe=fr("socketio/runESRGAN"),Ohe=fr("socketio/runGFPGAN"),Mhe=fr("socketio/deleteImage"),hR=fr("socketio/requestImages"),Nhe=fr("socketio/requestNewImages"),Dhe=fr("socketio/cancelProcessing"),zhe=fr("socketio/uploadInitialImage");fr("socketio/uploadMaskImage");const $he=fr("socketio/requestSystemConfig"),Bhe=e=>{const{dispatch:t,getState:n}=e;return{onConnect:()=>{try{t(dC(!0)),t(fC("Connected")),n().gallery.latest_mtime?t(Nhe()):t(hR())}catch(r){console.error(r)}},onDisconnect:()=>{try{t(dC(!1)),t(fC("Disconnected")),t(sr({timestamp:lr(new Date,"isoDateTime"),message:"Disconnected from server",level:"warning"}))}catch(r){console.error(r)}},onGenerationResult:r=>{try{const{url:o,mtime:i,metadata:s}=r,l=Hc();t(zh({uuid:l,url:o,mtime:i,metadata:s})),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Image generated: ${o}`}))}catch(o){console.error(o)}},onIntermediateResult:r=>{try{const o=Hc(),{url:i,metadata:s,mtime:l}=r;t(wpe({uuid:o,url:i,mtime:l,metadata:s})),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Intermediate image generated: ${i}`}))}catch(o){console.error(o)}},onPostprocessingResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(zh({uuid:Hc(),url:o,mtime:s,metadata:i})),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Postprocessed: ${o}`}))}catch(o){console.error(o)}},onGFPGANResult:r=>{try{const{url:o,metadata:i,mtime:s}=r;t(zh({uuid:Hc(),url:o,mtime:s,metadata:i})),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Fixed faces: ${o}`}))}catch(o){console.error(o)}},onProgressUpdate:r=>{try{t(w1(!0)),t(Ppe(r))}catch(o){console.error(o)}},onError:r=>{const{message:o,additionalData:i}=r;try{t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Server error: ${o}`,level:"error"})),t(Rpe()),t(uC())}catch(s){console.error(s)}},onGalleryImages:r=>{const{images:o,areMoreImagesAvailable:i}=r,s=o.map(l=>{const{url:c,metadata:d,mtime:f}=l;return{uuid:Hc(),url:c,mtime:f,metadata:d}});t(xpe({images:s,areMoreImagesAvailable:i})),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Loaded ${o.length} images`}))},onProcessingCanceled:()=>{t(Ipe());const{intermediateImage:r}=n().gallery;r&&(t(zh(r)),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Intermediate image saved: ${r.url}`})),t(uC())),t(sr({timestamp:lr(new Date,"isoDateTime"),message:"Processing canceled",level:"warning"}))},onImageDeleted:r=>{const{url:o,uuid:i}=r;t(bpe(i));const{initialImagePath:s,maskPath:l}=n().options;s===o&&t($u("")),l===o&&t(x4("")),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Image deleted: ${o}`}))},onInitialImageUploaded:r=>{const{url:o}=r;t($u(o)),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Initial image uploaded: ${o}`}))},onMaskImageUploaded:r=>{const{url:o}=r;t(x4(o)),t(sr({timestamp:lr(new Date,"isoDateTime"),message:`Mask image uploaded: ${o}`}))},onSystemConfig:r=>{t(Tpe(r))}}},Fhe=["ddim","plms","k_lms","k_dpm_2","k_dpm_2_a","k_euler","k_euler_a","k_heun"],Vhe=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],Whe=[64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048],jhe=[{key:"2x",value:2},{key:"4x",value:4}],_6=0,E6=4294967295,mR=(e,t)=>Math.floor(Math.random()*(t-e+1)+e),Hhe=(e,t)=>{const{prompt:n,iterations:r,steps:o,cfgScale:i,threshold:s,perlin:l,height:c,width:d,sampler:f,seed:h,seamless:m,hiresFix:g,shouldUseInitImage:b,img2imgStrength:S,initialImagePath:_,maskPath:w,shouldFitToWidthHeight:x,shouldGenerateVariations:k,variationAmount:L,seedWeights:A,shouldRunESRGAN:M,upscalingLevel:N,upscalingStrength:$,shouldRunGFPGAN:Z,gfpganStrength:j,shouldRandomizeSeed:te}=e,{shouldDisplayInProgress:Le}=t,me={prompt:n,iterations:r,steps:o,cfg_scale:i,threshold:s,perlin:l,height:c,width:d,sampler_name:f,seed:h,seamless:m,hires_fix:g,progress_images:Le};me.seed=te?mR(_6,E6):h,b&&(me.init_img=_,me.strength=S,me.fit=x,w&&(me.init_mask=w)),k?(me.variation_amount=L,A&&(me.with_variations=ipe(A))):me.variation_amount=0;let ge=!1,de=!1;return M&&(ge={level:N,strength:$}),Z&&(de={strength:j}),{generationParameters:me,esrganParameters:ge,gfpganParameters:de}};var ny=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function ry(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),function(){n(window.event)})}function gR(e,t){for(var n=t.slice(0,t.length-1),r=0;r=0;)t[n-1]+=",",t.splice(n,1),n=t.lastIndexOf("");return t}function Uhe(e,t){for(var n=e.length>=t.length?e:t,r=e.length>=t.length?t:e,o=!0,i=0;i=0&&Vt.splice(n,1),e.key&&e.key.toLowerCase()==="meta"&&Vt.splice(0,Vt.length),(t===93||t===224)&&(t=91),t in $n){$n[t]=!1;for(var r in as)as[r]===t&&(Hr[r]=!1)}}function Xhe(e){if(typeof e>"u")Object.keys(dn).forEach(function(s){return delete dn[s]});else if(Array.isArray(e))e.forEach(function(s){s.key&&oy(s)});else if(typeof e=="object")e.key&&oy(e);else if(typeof e=="string"){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?gR(as,d):[];dn[m]=dn[m].filter(function(b){var S=o?b.method===o:!0;return!(S&&b.scope===r&&Uhe(b.mods,g))})}})};function _C(e,t,n,r){if(t.element===r){var o;if(t.scope===n||t.scope==="all"){o=t.mods.length>0;for(var i in $n)Object.prototype.hasOwnProperty.call($n,i)&&(!$n[i]&&t.mods.indexOf(+i)>-1||$n[i]&&t.mods.indexOf(+i)===-1)&&(o=!1);(t.mods.length===0&&!$n[16]&&!$n[18]&&!$n[17]&&!$n[91]||o||t.shortcut==="*")&&t.method(e,t)===!1&&(e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),e.cancelBubble&&(e.cancelBubble=!0))}}}function EC(e,t){var n=dn["*"],r=e.keyCode||e.which||e.charCode;if(!!Hr.filter.call(this,e)){if((r===93||r===224)&&(r=91),Vt.indexOf(r)===-1&&r!==229&&Vt.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(b){var S=P4[b];e[b]&&Vt.indexOf(S)===-1?Vt.push(S):!e[b]&&Vt.indexOf(S)>-1?Vt.splice(Vt.indexOf(S),1):b==="metaKey"&&e[b]&&Vt.length===3&&(e.ctrlKey||e.shiftKey||e.altKey||(Vt=Vt.slice(Vt.indexOf(S))))}),r in $n){$n[r]=!0;for(var o in as)as[o]===r&&(Hr[o]=!0);if(!n)return}for(var i in $n)Object.prototype.hasOwnProperty.call($n,i)&&($n[i]=e[P4[i]]);e.getModifierState&&!(e.altKey&&!e.ctrlKey)&&e.getModifierState("AltGraph")&&(Vt.indexOf(17)===-1&&Vt.push(17),Vt.indexOf(18)===-1&&Vt.push(18),$n[17]=!0,$n[18]=!0);var s=vf();if(n)for(var l=0;l-1}function Hr(e,t,n){Vt=[];var r=vR(e),o=[],i="all",s=document,l=0,c=!1,d=!0,f="+",h=!1;for(n===void 0&&typeof t=="function"&&(n=t),Object.prototype.toString.call(t)==="[object Object]"&&(t.scope&&(i=t.scope),t.element&&(s=t.element),t.keyup&&(c=t.keyup),t.keydown!==void 0&&(d=t.keydown),t.capture!==void 0&&(h=t.capture),typeof t.splitKey=="string"&&(f=t.splitKey)),typeof t=="string"&&(i=t);l1&&(o=gR(as,e)),e=e[e.length-1],e=e==="*"?"*":ag(e),e in dn||(dn[e]=[]),dn[e].push({keyup:c,keydown:d,scope:i,mods:o,shortcut:r[l],method:n,key:r[l],splitKey:f,element:s});typeof s<"u"&&!Qhe(s)&&window&&(bR.push(s),ry(s,"keydown",function(m){EC(m,s)},h),kC||(kC=!0,ry(window,"focus",function(){Vt=[]},h)),ry(s,"keyup",function(m){EC(m,s),Yhe(m)},h))}function Jhe(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(dn).forEach(function(n){var r=dn[n].find(function(o){return o.scope===t&&o.shortcut===e});r&&r.method&&r.method()})}var iy={setScope:SR,getScope:vf,deleteScope:qhe,getPressedKeyCodes:Ghe,isPressed:Khe,filter:Zhe,trigger:Jhe,unbind:Xhe,keyMap:L6,modifier:as,modifierMap:P4};for(var ay in iy)Object.prototype.hasOwnProperty.call(iy,ay)&&(Hr[ay]=iy[ay]);if(typeof window<"u"){var e1e=window.hotkeys;Hr.noConflict=function(e){return e&&window.hotkeys===Hr&&(window.hotkeys=e1e),Hr},window.hotkeys=Hr}Hr.filter=function(){return!0};var xR=function(t,n){var r=t.target,o=r&&r.tagName;return Boolean(o&&n&&n.includes(o))},t1e=function(t){return xR(t,["INPUT","TEXTAREA","SELECT"])};function ln(e,t,n,r){n instanceof Array&&(r=n,n=void 0);var o=n||{},i=o.enableOnTags,s=o.filter,l=o.keyup,c=o.keydown,d=o.filterPreventDefault,f=d===void 0?!0:d,h=o.enabled,m=h===void 0?!0:h,g=o.enableOnContentEditable,b=g===void 0?!1:g,S=C.exports.useRef(null),_=C.exports.useCallback(function(w,x){var k,L;return s&&!s(w)?!f:t1e(w)&&!xR(w,i)||(k=w.target)!=null&&k.isContentEditable&&!b?!0:S.current===null||document.activeElement===S.current||(L=S.current)!=null&&L.contains(document.activeElement)?(t(w,x),!0):!1},r?[S,i,s].concat(r):[S,i,s]);return C.exports.useEffect(function(){if(!m){Hr.unbind(e,_);return}return l&&c!==!0&&(n.keydown=!1),Hr(e,n||{},_),function(){return Hr.unbind(e,_)}},[_,e,m]),S}Hr.isPressed;function n1e(){return Y("div",{className:"work-in-progress inpainting-work-in-progress",children:[v("h1",{children:"Inpainting"}),v("p",{children:"Inpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}function r1e(){return Y("div",{className:"work-in-progress nodes-work-in-progress",children:[v("h1",{children:"Nodes"}),v("p",{children:"A node based system for the generation of images is under development currently. Stay tuned for updates about this amazing feature."})]})}function o1e(){return Y("div",{className:"work-in-progress outpainting-work-in-progress",children:[v("h1",{children:"Outpainting"}),v("p",{children:"Outpainting is available as a part of the Invoke AI Command Line Interface. A dedicated WebUI interface will be released in the near future."})]})}const i1e=()=>Y("div",{className:"work-in-progress post-processing-work-in-progress",children:[v("h1",{children:"Post Processing"}),v("p",{children:"Invoke AI offers a wide variety of post processing features. Image Upscaling and Face Restoration are already available in the WebUI. You can access them from the Advanced Options menu of the Text To Image tab. A dedicated UI will be released soon."}),v("p",{children:"The Invoke AI Command Line Interface offers various other features including Embiggen, High Resolution Fixing and more."})]}),a1e=qu({displayName:"ImageToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{transform:"matrix(1.10943,0,0,1.10943,-206.981,-213.533)",children:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M688.533,2405.95L542.987,2405.95C349.532,2405.95 192.47,2248.89 192.47,2055.44L192.47,542.987C192.47,349.532 349.532,192.47 542.987,192.47L2527.88,192.47C2721.33,192.47 2878.4,349.532 2878.4,542.987L2878.4,1172.79L3023.94,1172.79C3217.4,1172.79 3374.46,1329.85 3374.46,1523.3C3374.46,1523.3 3374.46,3035.75 3374.46,3035.75C3374.46,3229.21 3217.4,3386.27 3023.94,3386.27L1039.05,3386.27C845.595,3386.27 688.533,3229.21 688.533,3035.75L688.533,2405.95ZM3286.96,2634.37L3286.96,1523.3C3286.96,1378.14 3169.11,1260.29 3023.94,1260.29C3023.94,1260.29 1039.05,1260.29 1039.05,1260.29C893.887,1260.29 776.033,1378.14 776.033,1523.3L776.033,2489.79L1440.94,1736.22L2385.83,2775.59L2880.71,2200.41L3286.96,2634.37ZM2622.05,1405.51C2778.5,1405.51 2905.51,1532.53 2905.51,1688.98C2905.51,1845.42 2778.5,1972.44 2622.05,1972.44C2465.6,1972.44 2338.58,1845.42 2338.58,1688.98C2338.58,1532.53 2465.6,1405.51 2622.05,1405.51ZM2790.9,1172.79L1323.86,1172.79L944.882,755.906L279.97,1509.47L279.97,542.987C279.97,397.824 397.824,279.97 542.987,279.97C542.987,279.97 2527.88,279.97 2527.88,279.97C2673.04,279.97 2790.9,397.824 2790.9,542.987L2790.9,1172.79ZM2125.98,425.197C2282.43,425.197 2409.45,552.213 2409.45,708.661C2409.45,865.11 2282.43,992.126 2125.98,992.126C1969.54,992.126 1842.52,865.11 1842.52,708.661C1842.52,552.213 1969.54,425.197 2125.98,425.197Z"})})}),s1e=qu({displayName:"InpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,768.593C3543.31,517.323 3339.31,313.324 3088.04,313.324L455.269,313.324C203.999,313.324 0,517.323 0,768.593C0,768.593 0,2774.71 0,2774.71C0,3025.98 203.999,3229.98 455.269,3229.98L3088.04,3229.98C3339.31,3229.98 3543.31,3025.98 3543.31,2774.71C3543.31,2774.71 3543.31,768.593 3543.31,768.593ZM3446.56,2252.63L3446.56,768.593C3446.56,570.718 3285.91,410.068 3088.04,410.068C3088.04,410.068 455.269,410.068 455.269,410.068C257.394,410.068 96.745,570.718 96.745,768.593L96.745,2061.49L988.344,1051.01L1326.63,1423.12C1281.74,1438.3 1227.39,1454.93 1158.26,1480.89C995.738,1541.9 944.356,1613.28 911.834,1718.7C884.979,1805.76 875.814,1922.93 811.322,2093.5C763.918,2218.87 765.18,2304.83 790.606,2364.87C817.014,2427.22 869.858,2467.73 941.71,2493.83C1023.86,2523.67 1134.43,2534.25 1242.45,2557.97C1365.72,2585.04 1455.23,2643.2 1532.76,2665.96C1587.03,2681.89 1637.04,2683.6 1686.56,2663.56C1731.54,2645.36 1777.95,2607.64 1825.43,2535.92C1874.9,2461.2 1979.98,2369.94 2102.8,2276.91L2241.64,2429.63L2739.91,1850.53C2754.47,1841.35 2767.47,1833.12 2778.66,1825.94C2832.6,1791.35 2866.82,1742.41 2884.38,1682.61L2898.06,1666.72L3446.56,2252.63ZM1680.71,2559.9C1666.7,2570.37 1652.86,2577.22 1638.81,2580.95L1610.62,2588.45L1625.61,2644.82L1653.8,2637.33C1674.48,2631.83 1695.02,2622.04 1715.64,2606.61L1739,2589.14L1704.06,2542.43L1680.71,2559.9ZM1541.62,2570.42C1524.94,2564.58 1507.63,2557.37 1489.49,2549.48L1462.75,2537.84L1439.48,2591.33L1466.22,2602.97C1485.74,2611.46 1504.38,2619.18 1522.33,2625.47L1549.86,2635.12L1569.15,2580.07L1541.62,2570.42ZM1381.21,2503.1C1363.08,2496.04 1344.17,2489.24 1324.38,2483.03L1296.55,2474.29L1279.07,2529.94L1306.9,2538.68C1325.41,2544.49 1343.09,2550.86 1360.05,2557.46L1387.23,2568.04L1408.39,2513.68L1381.21,2503.1ZM1788.46,2430.83C1773.91,2447.61 1761.19,2463.86 1750.55,2479.44L1734.09,2503.52L1782.25,2536.43L1798.71,2512.35C1808.2,2498.46 1819.56,2484 1832.53,2469.04L1851.64,2447.01L1807.57,2408.79L1788.46,2430.83ZM1262.54,2466.49C1243.17,2462.24 1223.71,2458.43 1204.35,2454.87L1175.67,2449.6L1165.12,2506.97L1193.81,2512.24C1212.52,2515.68 1231.32,2519.35 1250.03,2523.46L1278.52,2529.72L1291.03,2472.74L1262.54,2466.49ZM1089.5,2434.66C1070.28,2431.1 1051.6,2427.35 1033.72,2423.15L1005.32,2416.49L992.002,2473.28L1020.4,2479.94C1039.14,2484.34 1058.71,2488.28 1078.86,2492.02L1107.54,2497.34L1118.18,2439.99L1089.5,2434.66ZM932.182,2386.94C917.545,2378.53 904.788,2368.71 894.532,2356.8L875.504,2334.69L831.294,2372.75L850.322,2394.85C864.755,2411.62 882.513,2425.67 903.11,2437.51L928.396,2452.05L957.469,2401.48L932.182,2386.94ZM1917.04,2306.1C1901.59,2319.37 1886.77,2332.5 1872.67,2345.44L1851.18,2365.17L1890.64,2408.14L1912.12,2388.41C1925.76,2375.89 1940.1,2363.19 1955.04,2350.36L1977.17,2331.36L1939.17,2287.1L1917.04,2306.1ZM866.485,2267.79C866.715,2251.85 868.706,2234.39 872.54,2215.21L878.257,2186.61L821.055,2175.17L815.338,2203.77C810.733,2226.81 808.434,2247.8 808.158,2266.94L807.737,2296.11L866.064,2296.95L866.485,2267.79ZM2055.08,2195.63C2039.24,2207.6 2023.66,2219.55 2008.43,2231.46L1985.45,2249.43L2021.38,2295.38L2044.36,2277.42C2059.34,2265.7 2074.66,2253.95 2090.23,2242.18L2113.51,2224.61L2078.35,2178.06L2055.08,2195.63ZM2197.62,2092.3C2181.57,2103.52 2165.6,2114.82 2149.74,2126.16L2126.02,2143.12L2159.95,2190.57L2183.67,2173.61C2199.36,2162.38 2215.18,2151.21 2231.05,2140.1L2254.95,2123.38L2221.52,2075.58L2197.62,2092.3ZM905.788,2108.14C912.858,2088.7 919.236,2069.96 925.03,2051.88L933.93,2024.1L878.378,2006.3L869.478,2034.08C863.905,2051.47 857.769,2069.5 850.968,2088.2L840.998,2115.61L895.817,2135.55L905.788,2108.14ZM2342.87,1993.45C2326.76,2004.15 2310.52,2015.01 2294.22,2026L2270.04,2042.31L2302.65,2090.67L2326.83,2074.37C2343.01,2063.45 2359.14,2052.67 2375.14,2042.04L2399.44,2025.91L2367.17,1977.31L2342.87,1993.45ZM2489.92,1897.67C2473.88,1907.94 2457.46,1918.5 2440.74,1929.32L2416.26,1945.16L2447.95,1994.14L2472.44,1978.29C2489.07,1967.53 2505.41,1957.02 2521.37,1946.8L2545.93,1931.07L2514.48,1881.94L2489.92,1897.67ZM956.972,1937.49C961.849,1917.31 966.133,1898.15 970.079,1879.93L976.253,1851.43L919.241,1839.08L913.067,1867.59C909.215,1885.38 905.033,1904.08 900.271,1923.79L893.42,1952.13L950.121,1965.84L956.972,1937.49ZM2638.01,1803.95C2622.5,1813.69 2605.98,1824.08 2588.59,1835.04L2563.91,1850.59L2595.02,1899.94L2619.69,1884.38C2637.05,1873.44 2653.55,1863.08 2669.03,1853.35L2693.73,1837.84L2662.71,1788.44L2638.01,1803.95ZM2769.59,1708.14C2760.26,1721.07 2748.81,1732.54 2735.03,1742.4L2711.31,1759.37L2745.25,1806.81L2768.97,1789.84C2788.08,1776.17 2803.93,1760.22 2816.88,1742.3L2833.95,1718.65L2786.67,1684.5L2769.59,1708.14ZM995.304,1767.43C1000.24,1748.86 1005.64,1731.66 1012.23,1715.62L1023.31,1688.64L969.359,1666.47L958.273,1693.45C950.767,1711.72 944.551,1731.29 938.928,1752.44L931.436,1780.63L987.812,1795.62L995.304,1767.43ZM1071.42,1633.09C1083.85,1622.63 1098.26,1612.75 1115.07,1603.23L1140.45,1588.86L1111.71,1538.1L1086.33,1552.47C1066.11,1563.92 1048.82,1575.88 1033.86,1588.46L1011.55,1607.24L1049.11,1651.87L1071.42,1633.09ZM2804.87,1559.28C2805.5,1578.06 2804.95,1596.1 2803,1613.27L2799.72,1642.25L2857.68,1648.81L2860.97,1619.83C2863.22,1599.96 2863.9,1579.07 2863.17,1557.33L2862.2,1528.18L2803.9,1530.12L2804.87,1559.28ZM1217.5,1558.88C1236.87,1551.88 1254.98,1545.61 1271.98,1539.88L1299.62,1530.55L1280.97,1475.28L1253.33,1484.6C1235.96,1490.46 1217.45,1496.87 1197.66,1504.02L1170.23,1513.94L1190.07,1568.8L1217.5,1558.88ZM1383.15,1502.63C1403.9,1495.17 1422.61,1487.67 1439.93,1479.27L1466.18,1466.54L1440.73,1414.06L1414.48,1426.78C1398.91,1434.33 1382.06,1441.03 1363.41,1447.74L1335.96,1457.62L1355.71,1512.51L1383.15,1502.63ZM2777.41,1393.4C2782.33,1412.11 2786.73,1430.56 2790.49,1448.67L2796.42,1477.23L2853.54,1465.37L2847.6,1436.81C2843.64,1417.72 2839.01,1398.28 2833.83,1378.57L2826.41,1350.36L2770,1365.19L2777.41,1393.4ZM1541.19,1401.64C1553.52,1387.35 1565.77,1370.94 1578.31,1351.79L1594.28,1327.39L1545.48,1295.44L1529.5,1319.84C1518.52,1336.62 1507.83,1351.02 1497.03,1363.53L1477.97,1385.61L1522.14,1423.72L1541.19,1401.64ZM2725.02,1229.27C2731.61,1247.45 2738.01,1265.61 2744.12,1283.7L2753.45,1311.33L2808.72,1292.66L2799.38,1265.03C2793.13,1246.53 2786.6,1227.96 2779.85,1209.37L2769.9,1181.95L2715.07,1201.86L2725.02,1229.27ZM1636.99,1247.12C1644.26,1232.56 1651.77,1217.04 1659.58,1200.45C1660.59,1198.3 1661.61,1196.15 1662.61,1194.02L1675.08,1167.65L1622.34,1142.72L1609.88,1169.09C1608.86,1171.25 1607.83,1173.42 1606.81,1175.59C1599.2,1191.75 1591.88,1206.88 1584.8,1221.06L1571.77,1247.16L1623.96,1273.21L1636.99,1247.12ZM2251.58,766.326C2320.04,672.986 2430.48,612.355 2554.96,612.355C2762.48,612.355 2930.95,780.83 2930.95,988.344C2930.95,1087.56 2892.44,1177.85 2829.58,1245.06C2804.67,1171.95 2775.67,1097.93 2747.18,1026.98C2699.54,908.311 2654.38,849.115 2602.9,816.501C2565.59,792.868 2523.88,781.903 2471.8,777.274C2416.47,772.355 2346.53,774.829 2251.58,766.326ZM2662.3,1066.95C2669.46,1084.79 2676.66,1102.83 2683.81,1120.98L2694.51,1148.12L2748.78,1126.72L2738.08,1099.59C2730.88,1081.32 2723.64,1063.18 2716.44,1045.23L2705.58,1018.16L2651.44,1039.88L2662.3,1066.95ZM1713.81,1090.65C1723.08,1073.13 1732.27,1056.54 1741.52,1040.87L1756.33,1015.74L1706.08,986.113L1691.27,1011.24C1681.59,1027.65 1671.95,1045.03 1662.25,1063.39L1648.61,1089.17L1700.18,1116.44L1713.81,1090.65ZM2584.06,922.671C2594.47,934.345 2604.5,948.467 2614.55,965.492L2629.38,990.608L2679.62,960.949L2664.79,935.834C2652.56,915.134 2640.26,898.042 2627.6,883.849L2608.19,862.079L2564.65,900.901L2584.06,922.671ZM1805.33,949.853C1817.51,935.859 1830.16,923.259 1843.5,912.06L1865.85,893.314L1828.36,848.625L1806.01,867.372C1790.4,880.469 1775.59,895.178 1761.34,911.545L1742.18,933.541L1786.17,971.849L1805.33,949.853ZM2446.47,869.303C2466.17,870.516 2483.98,872.335 2500.35,875.649L2528.94,881.438L2540.51,824.265L2511.93,818.476C2493.13,814.67 2472.68,812.474 2450.05,811.08L2420.94,809.287L2417.35,867.51L2446.47,869.303ZM1935.15,861.305C1951.44,856.036 1968.78,851.999 1987.35,849.144L2016.18,844.713L2007.32,787.057L1978.49,791.488C1956.68,794.84 1936.32,799.616 1917.19,805.802L1889.44,814.778L1907.39,870.28L1935.15,861.305ZM2271.35,861.832C2292.28,863.33 2311.95,864.351 2330.47,865.114L2359.61,866.316L2362.01,808.032L2332.87,806.83C2314.9,806.09 2295.82,805.1 2275.51,803.648L2246.42,801.567L2242.26,859.751L2271.35,861.832ZM2097.81,844.858C2115.7,845.771 2134.46,847.337 2154.17,849.543L2183.16,852.787L2189.65,794.816L2160.66,791.572C2139.72,789.228 2119.79,787.57 2100.78,786.6L2071.65,785.114L2068.68,843.372L2097.81,844.858Z"})}),l1e=qu({displayName:"NodesIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,770.787C3543.31,515.578 3336.11,308.38 3080.9,308.38L462.407,308.38C207.197,308.38 0,515.578 0,770.787L0,2766.03C0,3021.24 207.197,3228.44 462.407,3228.44L3080.9,3228.44C3336.11,3228.44 3543.31,3021.24 3543.31,2766.03C3543.31,2766.03 3543.31,770.787 3543.31,770.787ZM3427.88,770.787L3427.88,2766.03C3427.88,2957.53 3272.4,3113.01 3080.9,3113.01C3080.9,3113.01 462.407,3113.01 462.407,3113.01C270.906,3113.01 115.431,2957.53 115.431,2766.03L115.431,770.787C115.431,579.286 270.906,423.812 462.407,423.812L3080.9,423.812C3272.4,423.812 3427.88,579.286 3427.88,770.787ZM1214.23,1130.69L1321.47,1130.69C1324.01,1130.69 1326.54,1130.53 1329.05,1130.2C1329.05,1130.2 1367.3,1125.33 1397.94,1149.8C1421.63,1168.72 1437.33,1204.3 1437.33,1265.48L1437.33,2078.74L1220.99,2078.74C1146.83,2078.74 1086.61,2138.95 1086.61,2213.12L1086.61,2762.46C1086.61,2836.63 1146.83,2896.84 1220.99,2896.84L1770.34,2896.84C1844.5,2896.84 1904.71,2836.63 1904.71,2762.46L1904.71,2213.12C1904.71,2138.95 1844.5,2078.74 1770.34,2078.74L1554,2078.74L1554,1604.84C1625.84,1658.19 1703.39,1658.1 1703.39,1658.1C1703.54,1658.1 1703.69,1658.11 1703.84,1658.11L2362.2,1658.11L2362.2,1874.44C2362.2,1948.61 2422.42,2008.82 2496.58,2008.82L3045.93,2008.82C3120.09,2008.82 3180.3,1948.61 3180.3,1874.44L3180.3,1325.1C3180.3,1250.93 3120.09,1190.72 3045.93,1190.72L2496.58,1190.72C2422.42,1190.72 2362.2,1250.93 2362.2,1325.1L2362.2,1558.97L2362.2,1541.44L1704.23,1541.44C1702.2,1541.37 1650.96,1539.37 1609.51,1499.26C1577.72,1468.49 1554,1416.47 1554,1331.69L1554,1265.48C1554,1153.86 1513.98,1093.17 1470.76,1058.64C1411.24,1011.1 1338.98,1012.58 1319.15,1014.03L1214.23,1014.03L1214.23,796.992C1214.23,722.828 1154.02,662.617 1079.85,662.617L530.507,662.617C456.343,662.617 396.131,722.828 396.131,796.992L396.131,1346.34C396.131,1420.5 456.343,1480.71 530.507,1480.71L1079.85,1480.71C1154.02,1480.71 1214.23,1420.5 1214.23,1346.34L1214.23,1130.69Z"})}),u1e=qu({displayName:"OutpaintIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M3543.31,766.352C3543.31,516.705 3340.63,314.024 3090.98,314.024L452.328,314.024C202.681,314.024 0,516.705 0,766.352L0,2776.95C0,3026.6 202.681,3229.28 452.328,3229.28C452.328,3229.28 3090.98,3229.28 3090.98,3229.28C3340.63,3229.28 3543.31,3026.6 3543.31,2776.95C3543.31,2776.95 3543.31,766.352 3543.31,766.352ZM3454.26,766.352L3454.26,2776.95C3454.26,2977.46 3291.48,3140.24 3090.98,3140.24L452.328,3140.24C251.825,3140.24 89.043,2977.46 89.043,2776.95C89.043,2776.95 89.043,766.352 89.043,766.352C89.043,565.849 251.825,403.067 452.328,403.067C452.328,403.067 3090.98,403.067 3090.98,403.067C3291.48,403.067 3454.26,565.849 3454.26,766.352ZM1294.01,2603.04L1394.01,2603.04L1394.01,2553.04L1294.01,2553.04L1294.01,2603.04ZM2494.01,2603.04L2524.53,2603.04C2541.26,2603.04 2557.62,2601.44 2573.47,2598.39L2598.02,2593.66L2588.56,2544.56L2564.01,2549.29C2551.23,2551.75 2538.03,2553.04 2524.53,2553.04L2494.01,2553.04L2494.01,2603.04ZM2344.01,2603.04L2444.01,2603.04L2444.01,2553.04L2344.01,2553.04L2344.01,2603.04ZM994.01,2603.04L1094.01,2603.04L1094.01,2553.04L994.01,2553.04L994.01,2603.04ZM1144.01,2603.04L1244.01,2603.04L1244.01,2553.04L1144.01,2553.04L1144.01,2603.04ZM2194.01,2603.04L2294.01,2603.04L2294.01,2553.04L2194.01,2553.04L2194.01,2603.04ZM2044.01,2603.04L2144.01,2603.04L2144.01,2553.04L2044.01,2553.04L2044.01,2603.04ZM1894.01,2603.04L1994.01,2603.04L1994.01,2553.04L1894.01,2553.04L1894.01,2603.04ZM1744.01,2603.04L1844.01,2603.04L1844.01,2553.04L1744.01,2553.04L1744.01,2603.04ZM1444.01,2603.04L1544.01,2603.04L1544.01,2553.04L1444.01,2553.04L1444.01,2603.04ZM1594.01,2603.04L1694.01,2603.04L1694.01,2553.04L1594.01,2553.04L1594.01,2603.04ZM864.145,2551.46C878.835,2562.5 894.741,2572 911.624,2579.74L934.352,2590.15L955.18,2544.7L932.452,2534.28C918.844,2528.05 906.024,2520.39 894.185,2511.49L874.199,2496.47L844.16,2536.44L864.145,2551.46ZM2674.44,2554.92C2689.46,2544.16 2703.28,2531.82 2715.65,2518.14L2732.42,2499.61L2695.35,2466.06L2678.58,2484.6C2668.59,2495.63 2657.44,2505.59 2645.32,2514.28L2625,2528.84L2654.12,2569.48L2674.44,2554.92ZM865.632,1911.31L1339.59,1374.15L2030.89,2134.59L2392.97,1713.77L2677.68,2017.9L2677.68,2324.93C2677.68,2424.23 2597.06,2504.85 2497.76,2504.85C2497.76,2504.85 1045.55,2504.85 1045.55,2504.85C946.251,2504.85 865.632,2424.23 865.632,2324.93L865.632,1911.31ZM771.251,2417.22C776.455,2435.14 783.552,2452.26 792.313,2468.35L804.27,2490.3L848.18,2466.39L836.223,2444.43C829.171,2431.49 823.457,2417.7 819.268,2403.28L812.297,2379.27L764.28,2393.21L771.251,2417.22ZM2770.36,2422.83C2775.83,2405.47 2779.52,2387.33 2781.2,2368.61L2783.43,2343.71L2733.64,2339.24L2731.4,2364.14C2730.05,2379.21 2727.08,2393.82 2722.67,2407.79L2715.15,2431.63L2762.84,2446.67L2770.36,2422.83ZM761.068,2236.12L761.068,2336.12L811.068,2336.12L811.068,2236.12L761.068,2236.12ZM2782.24,2291.41L2782.24,2191.41L2732.24,2191.41L2732.24,2291.41L2782.24,2291.41ZM761.068,2086.12L761.068,2186.12L811.068,2186.12L811.068,2086.12L761.068,2086.12ZM2782.24,2141.41L2782.24,2041.4L2732.24,2041.4L2732.24,2141.41L2782.24,2141.41ZM761.068,1936.12L761.068,2036.12L811.068,2036.12L811.068,1936.12L761.068,1936.12ZM2782.24,1991.4L2782.24,1891.4L2732.24,1891.4L2732.24,1991.4L2782.24,1991.4ZM761.068,1786.12L761.068,1886.12L811.068,1886.12L811.068,1786.12L761.068,1786.12ZM2782.24,1841.4L2782.24,1741.41L2732.24,1741.41L2732.24,1841.4L2782.24,1841.4ZM761.068,1636.12L761.068,1736.12L811.068,1736.12L811.068,1636.12L761.068,1636.12ZM2782.24,1691.41L2782.24,1591.41L2732.24,1591.41L2732.24,1691.41L2782.24,1691.41ZM761.068,1486.12L761.068,1586.12L811.068,1586.12L811.068,1486.12L761.068,1486.12ZM2203.72,1132.2C2318.18,1132.2 2411.11,1225.13 2411.11,1339.59C2411.11,1454.05 2318.18,1546.98 2203.72,1546.98C2089.26,1546.98 1996.33,1454.05 1996.33,1339.59C1996.33,1225.13 2089.26,1132.2 2203.72,1132.2ZM2782.24,1541.41L2782.24,1441.41L2732.24,1441.41L2732.24,1541.41L2782.24,1541.41ZM761.068,1336.12L761.068,1436.12L811.068,1436.12L811.068,1336.12L761.068,1336.12ZM2782.24,1391.41L2782.24,1291.41L2732.24,1291.41L2732.24,1391.41L2782.24,1391.41ZM761.068,1186.12L761.068,1286.12L811.068,1286.12L811.068,1186.12L761.068,1186.12ZM2732.24,1197.98L2732.24,1241.41L2782.24,1241.41L2782.24,1172.98L2781.03,1172.98C2780.06,1162.82 2778.49,1152.83 2776.36,1143.04L2771.04,1118.62L2722.18,1129.24L2727.5,1153.67C2730.61,1167.95 2732.24,1182.78 2732.24,1197.98ZM804.386,1055C794.186,1070.26 785.572,1086.67 778.777,1103.99L769.647,1127.26L816.194,1145.52L825.324,1122.25C830.797,1108.3 837.738,1095.08 845.955,1082.79L859.848,1062L818.279,1034.21L804.386,1055ZM2730.5,1043.14C2719.39,1028.39 2706.73,1014.86 2692.77,1002.81L2673.84,986.48L2641.17,1024.34L2660.1,1040.67C2671.37,1050.39 2681.59,1061.31 2690.56,1073.22L2705.6,1093.19L2745.54,1063.11L2730.5,1043.14ZM933.266,954.821C915.698,961.006 898.998,969.041 883.402,978.694L862.144,991.851L888.457,1034.37L909.715,1021.21C922.275,1013.44 935.723,1006.96 949.871,1001.98L973.452,993.681L956.848,946.518L933.266,954.821ZM2596.18,950.378C2578.71,945.327 2560.49,942.072 2541.72,940.832L2516.78,939.183L2513.48,989.074L2538.43,990.723C2553.54,991.722 2568.22,994.341 2582.28,998.409L2606.3,1005.36L2620.19,957.325L2596.18,950.378ZM2165.09,940.265L2065.09,940.265L2065.09,990.265L2165.09,990.265L2165.09,940.265ZM2015.09,940.265L1915.09,940.265L1915.09,990.265L2015.09,990.265L2015.09,940.265ZM1115.08,940.265L1015.08,940.265L1015.08,990.265L1115.08,990.265L1115.08,940.265ZM1865.08,940.265L1765.08,940.265L1765.08,990.265L1865.08,990.265L1865.08,940.265ZM1265.08,940.265L1165.08,940.265L1165.08,990.265L1265.08,990.265L1265.08,940.265ZM1415.08,940.265L1315.08,940.265L1315.08,990.265L1415.08,990.265L1415.08,940.265ZM1565.08,940.265L1465.08,940.265L1465.08,990.265L1565.08,990.265L1565.08,940.265ZM1715.08,940.265L1615.08,940.265L1615.08,990.265L1715.08,990.265L1715.08,940.265ZM2465.09,940.265L2365.09,940.265L2365.09,990.265L2465.09,990.265L2465.09,940.265ZM2315.09,940.265L2215.09,940.265L2215.09,990.265L2315.09,990.265L2315.09,940.265Z"})}),c1e=qu({displayName:"PostprocessingIcon",viewBox:"0 0 3543 3543",path:v("path",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",d:"M709.477,1596.53L992.591,1275.66L2239.09,2646.81L2891.95,1888.03L3427.88,2460.51L3427.88,994.78C3427.88,954.66 3421.05,916.122 3408.5,880.254L3521.9,855.419C3535.8,899.386 3543.31,946.214 3543.31,994.78L3543.31,2990.02C3543.31,3245.23 3336.11,3452.43 3080.9,3452.43C3080.9,3452.43 462.407,3452.43 462.407,3452.43C207.197,3452.43 -0,3245.23 -0,2990.02L-0,994.78C-0,739.571 207.197,532.373 462.407,532.373L505.419,532.373L504.644,532.546L807.104,600.085C820.223,601.729 832.422,607.722 841.77,617.116C850.131,625.517 855.784,636.21 858.055,647.804L462.407,647.804C270.906,647.804 115.431,803.279 115.431,994.78L115.431,2075.73L-0,2101.5L115.431,2127.28L115.431,2269.78L220.47,2150.73L482.345,2209.21C503.267,2211.83 522.722,2221.39 537.63,2236.37C552.538,2251.35 562.049,2270.9 564.657,2291.93L671.84,2776.17L779.022,2291.93C781.631,2270.9 791.141,2251.35 806.05,2236.37C820.958,2221.39 840.413,2211.83 861.334,2209.21L1353.15,2101.5L861.334,1993.8C840.413,1991.18 820.958,1981.62 806.05,1966.64C791.141,1951.66 781.631,1932.11 779.022,1911.08L709.477,1596.53ZM671.84,1573.09L725.556,2006.07C726.863,2016.61 731.63,2026.4 739.101,2033.91C746.573,2041.42 756.323,2046.21 766.808,2047.53L1197.68,2101.5L766.808,2155.48C756.323,2156.8 746.573,2161.59 739.101,2169.09C731.63,2176.6 726.863,2186.4 725.556,2196.94L671.84,2629.92L618.124,2196.94C616.817,2186.4 612.05,2176.6 604.579,2169.09C597.107,2161.59 587.357,2156.8 576.872,2155.48L146.001,2101.5L576.872,2047.53C587.357,2046.21 597.107,2041.42 604.579,2033.91C612.05,2026.4 616.817,2016.61 618.124,2006.07L671.84,1573.09ZM609.035,1710.36L564.657,1911.08C562.049,1932.11 552.538,1951.66 537.63,1966.64C522.722,1981.62 503.267,1991.18 482.345,1993.8L328.665,2028.11L609.035,1710.36ZM2297.12,938.615L2451.12,973.003C2480.59,976.695 2507.99,990.158 2528.99,1011.26C2549.99,1032.37 2563.39,1059.9 2567.07,1089.52L2672.73,1566.9C2634.5,1580.11 2593.44,1587.29 2550.72,1587.29C2344.33,1587.29 2176.77,1419.73 2176.77,1213.34C2176.77,1104.78 2223.13,1006.96 2297.12,938.615ZM2718.05,76.925L2793.72,686.847C2795.56,701.69 2802.27,715.491 2812.8,726.068C2823.32,736.644 2837.06,743.391 2851.83,745.242L3458.78,821.28L2851.83,897.318C2837.06,899.168 2823.32,905.916 2812.8,916.492C2802.27,927.068 2795.56,940.87 2793.72,955.712L2718.05,1565.63L2642.38,955.712C2640.54,940.87 2633.83,927.068 2623.3,916.492C2612.78,905.916 2599.04,899.168 2584.27,897.318L1977.32,821.28L2584.27,745.242C2599.04,743.391 2612.78,736.644 2623.3,726.068C2633.83,715.491 2640.54,701.69 2642.38,686.847L2718.05,76.925ZM2883.68,1043.06C2909.88,1094.13 2924.67,1152.02 2924.67,1213.34C2924.67,1335.4 2866.06,1443.88 2775.49,1512.14L2869.03,1089.52C2871.07,1073.15 2876.07,1057.42 2883.68,1043.06ZM925.928,201.2L959.611,472.704C960.431,479.311 963.42,485.455 968.105,490.163C972.79,494.871 978.904,497.875 985.479,498.698L1255.66,532.546L985.479,566.395C978.904,567.218 972.79,570.222 968.105,574.93C963.42,579.638 960.431,585.781 959.611,592.388L925.928,863.893L892.245,592.388C891.425,585.781 888.436,579.638 883.751,574.93C879.066,570.222 872.952,567.218 866.378,566.395L596.195,532.546L866.378,498.698C872.952,497.875 879.066,494.871 883.751,490.163C888.436,485.455 891.425,479.311 892.245,472.704L925.928,201.2ZM2864.47,532.373L3080.9,532.373C3258.7,532.373 3413.2,632.945 3490.58,780.281L3319.31,742.773C3257.14,683.925 3173.2,647.804 3080.9,647.804L2927.07,647.804C2919.95,642.994 2913.25,637.473 2907.11,631.298C2886.11,610.194 2872.71,582.655 2869.03,553.04L2864.47,532.373ZM1352.36,532.373L2571.64,532.373L2567.07,553.04C2563.39,582.655 2549.99,610.194 2528.99,631.298C2522.85,637.473 2516.16,642.994 2509.03,647.804L993.801,647.804C996.072,636.21 1001.73,625.517 1010.09,617.116C1019.43,607.722 1031.63,601.729 1044.75,600.085L1353.15,532.546L1352.36,532.373Z"})}),d1e=qu({displayName:"TextToImageIcon",viewBox:"0 0 3543 3543",path:v("g",{fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd",transform:"matrix(1.11667,0,0,1.1066,-231.131,-213.062)",children:v("path",{d:"M2209.59,1137.35L2209.59,1098.17C2177.13,1108.99 2125.74,1121.91 2055.41,1136.94C2054.77,1137.08 2054.14,1137.21 2053.49,1137.35L1662.79,1137.35C1687.75,1101.98 1720.8,1074.35 1761.93,1054.44C1808.52,1031.9 1875.69,1012.22 1963.45,995.386C2081.86,973.146 2163.91,952.409 2209.59,933.174L2209.59,907.929C2209.59,859.241 2197.57,824.529 2173.53,803.792C2149.48,783.054 2104.1,772.686 2037.38,772.686C1992.3,772.686 1957.14,781.552 1931.89,799.284C1906.64,817.015 1886.21,848.121 1870.58,892.601L1640.67,851.127C1666.51,758.56 1710.99,690.037 1774.11,645.557C1837.22,601.077 1930.99,578.837 2055.41,578.837C2168.42,578.837 2252.57,592.211 2307.87,618.959C2363.17,645.707 2402.09,679.668 2424.63,720.842C2447.17,762.016 2458.44,837.602 2458.44,947.6L2456.7,1137.35L3021.34,1137.35C3214.79,1137.35 3371.86,1294.41 3371.86,1487.87C3371.86,1487.87 3371.86,3000.32 3371.86,3000.32C3371.86,3193.78 3214.79,3350.84 3021.34,3350.84C3021.34,3350.84 1036.45,3350.84 1036.45,3350.84C842.991,3350.84 685.93,3193.78 685.93,3000.32L685.93,1487.87C685.93,1400.21 718.174,1320.03 771.448,1258.54L772.123,1257.76L607.408,1257.76L498.311,1558L215.202,1558L730.028,236.22L1012.24,236.22L1373.06,1137.35L2209.59,1137.35ZM3284.36,2598.93L3284.36,1487.87C3284.36,1342.71 3166.5,1224.85 3021.34,1224.85C3021.34,1224.85 1036.45,1224.85 1036.45,1224.85C891.284,1224.85 773.43,1342.71 773.43,1487.87L773.43,2454.35L1438.34,1700.79L2383.22,2740.16L2878.11,2164.98L3284.36,2598.93ZM2619.44,1370.08C2775.89,1370.08 2902.91,1497.1 2902.91,1653.54C2902.91,1809.99 2775.89,1937.01 2619.44,1937.01C2462.99,1937.01 2335.98,1809.99 2335.98,1653.54C2335.98,1497.1 2462.99,1370.08 2619.44,1370.08ZM772.877,1256.89L772.849,1256.93L773.167,1256.57L772.877,1256.89ZM773.634,1256.04L773.563,1256.12L773.985,1255.64L773.634,1256.04ZM774.394,1255.18L774.276,1255.31L774.746,1254.78L774.394,1255.18ZM775.157,1254.32L774.988,1254.51L775.493,1253.95L775.157,1254.32ZM775.923,1253.47L775.698,1253.72L776.237,1253.12L775.923,1253.47ZM776.691,1252.62L776.403,1252.94L776.979,1252.3L776.691,1252.62ZM777.462,1251.77L777.098,1252.17L777.723,1251.49L777.462,1251.77ZM925.081,1155.44C868.026,1174.57 817.508,1207.99 777.775,1251.43C817.511,1207.99 868.031,1174.57 925.081,1155.44ZM925.646,1155.25L925.108,1155.43L926.103,1155.1L925.646,1155.25ZM935.286,1152.2C932.214,1153.12 929.159,1154.09 926.13,1155.09C929.165,1154.09 932.219,1153.12 935.286,1152.2ZM935.716,1152.07L935.384,1152.17L936.292,1151.89L935.716,1152.07ZM936.843,1151.73L936.451,1151.85L937.327,1151.59L936.843,1151.73ZM937.972,1151.4L937.514,1151.53L938.377,1151.28L937.972,1151.4ZM939.102,1151.07L938.57,1151.22L939.438,1150.97L939.102,1151.07ZM940.233,1150.74L939.613,1150.92L940.505,1150.67L940.233,1150.74ZM946.659,1148.98C944.639,1149.51 942.626,1150.07 940.626,1150.63C942.631,1150.06 944.642,1149.51 946.659,1148.98ZM947.056,1148.87L946.829,1148.93L947.659,1148.71L947.056,1148.87ZM948.198,1148.57L947.919,1148.65L948.705,1148.44L948.198,1148.57ZM949.342,1148.28L949.008,1148.37L949.771,1148.17L949.342,1148.28ZM950.488,1147.99L950.096,1148.09L950.848,1147.9L950.488,1147.99ZM951.635,1147.7L951.182,1147.81L951.932,1147.63L951.635,1147.7ZM952.783,1147.42L952.262,1147.55L953.022,1147.36L952.783,1147.42ZM953.933,1147.14L953.327,1147.28L954.115,1147.09L953.933,1147.14ZM958.213,1146.13C956.927,1146.42 955.644,1146.73 954.354,1147.04C955.637,1146.73 956.923,1146.43 958.213,1146.13ZM958.547,1146.06L958.409,1146.09L959.174,1145.91L958.547,1146.06ZM959.704,1145.79L959.517,1145.84L960.229,1145.68L959.704,1145.79ZM960.863,1145.54L960.626,1145.59L961.311,1145.44L960.863,1145.54ZM962.023,1145.28L961.736,1145.35L962.406,1145.2L962.023,1145.28ZM963.184,1145.03L962.846,1145.11L963.508,1144.97L963.184,1145.03ZM964.347,1144.79L963.956,1144.87L964.615,1144.73L964.347,1144.79ZM965.511,1144.55L965.066,1144.64L965.725,1144.5L965.511,1144.55ZM966.677,1144.31L966.172,1144.41L966.838,1144.28L966.677,1144.31ZM967.844,1144.08L967.269,1144.19L967.953,1144.05L967.844,1144.08ZM970.183,1143.62C969.793,1143.69 969.403,1143.77 969.013,1143.85L969.055,1143.84C969.413,1143.77 969.771,1143.7 970.129,1143.63L970.183,1143.62ZM971.354,1143.4L971.245,1143.42L971.882,1143.3L971.354,1143.4ZM972.526,1143.18L972.37,1143.21L972.987,1143.09L972.526,1143.18ZM973.7,1142.96L973.496,1143L974.103,1142.89L973.7,1142.96ZM974.876,1142.75L974.624,1142.8L975.225,1142.69L974.876,1142.75ZM976.052,1142.55L975.754,1142.6L976.349,1142.49L976.052,1142.55ZM977.23,1142.34L976.885,1142.4L977.476,1142.3L977.23,1142.34ZM978.41,1142.14L978.019,1142.21L978.605,1142.11L978.41,1142.14ZM979.59,1141.95L979.156,1142.02L979.736,1141.92L979.59,1141.95ZM980.772,1141.76L980.299,1141.83L980.868,1141.74L980.772,1141.76ZM981.955,1141.57L981.464,1141.65L982.002,1141.56L981.955,1141.57ZM983.14,1141.39L983.1,1141.39L983.605,1141.32L983.14,1141.39ZM984.326,1141.21L984.239,1141.22L984.778,1141.14L984.326,1141.21ZM985.513,1141.03L985.379,1141.05L985.928,1140.97L985.513,1141.03ZM986.702,1140.86L986.521,1140.89L987.073,1140.81L986.702,1140.86ZM987.891,1140.69L987.665,1140.73L988.218,1140.65L987.891,1140.69ZM989.082,1140.53L988.811,1140.57L989.363,1140.49L989.082,1140.53ZM990.275,1140.37L989.96,1140.41L990.508,1140.34L990.275,1140.37ZM991.468,1140.22L991.113,1140.26L991.654,1140.19L991.468,1140.22ZM992.663,1140.07L992.273,1140.12L992.8,1140.05L992.663,1140.07ZM993.859,1139.92L993.447,1139.97L993.948,1139.91L993.859,1139.92ZM995.056,1139.78L994.671,1139.82L995.097,1139.77L995.056,1139.78ZM996.255,1139.64L996.23,1139.64L996.578,1139.6L996.255,1139.64ZM997.454,1139.5L997.383,1139.51L997.852,1139.46L997.454,1139.5ZM998.655,1139.37L998.537,1139.38L999.041,1139.33L998.655,1139.37ZM999.857,1139.24L999.693,1139.26L1000.21,1139.21L999.857,1139.24ZM1001.06,1139.12L1000.85,1139.14L1001.38,1139.09L1001.06,1139.12ZM1002.26,1139L1002.01,1139.03L1002.54,1138.98L1002.26,1139ZM1003.47,1138.89L1003.18,1138.91L1003.7,1138.87L1003.47,1138.89ZM1004.68,1138.78L1004.34,1138.81L1004.86,1138.76L1004.68,1138.78ZM1005.89,1138.67L1005.52,1138.7L1006.02,1138.66L1005.89,1138.67ZM1007.1,1138.57L1006.71,1138.6L1007.18,1138.56L1007.1,1138.57ZM1008.31,1138.47L1007.96,1138.5L1008.35,1138.46L1008.31,1138.47ZM1009.52,1138.37L1009.5,1138.38L1009.72,1138.36L1009.52,1138.37ZM1010.73,1138.28L1010.67,1138.29L1011.1,1138.26L1010.73,1138.28ZM1011.94,1138.2L1011.84,1138.2L1012.32,1138.17L1011.94,1138.2ZM1013.16,1138.12L1013,1138.13L1013.51,1138.09L1013.16,1138.12ZM1014.37,1138.04L1014.17,1138.05L1014.69,1138.02L1014.37,1138.04ZM1015.59,1137.96L1015.35,1137.98L1015.86,1137.95L1015.59,1137.96ZM1016.81,1137.89L1016.52,1137.91L1017.04,1137.88L1016.81,1137.89ZM1018.03,1137.83L1017.7,1137.85L1018.21,1137.82L1018.03,1137.83ZM1019.25,1137.77L1018.89,1137.79L1019.39,1137.76L1019.25,1137.77ZM1020.47,1137.71L1020.1,1137.73L1020.56,1137.71L1020.47,1137.71ZM1021.69,1137.66L1021.36,1137.67L1021.74,1137.66L1021.69,1137.66ZM1022.92,1137.61L1022.91,1137.61L1023.02,1137.61L1022.92,1137.61ZM1024.14,1137.57L1024.09,1137.57L1024.49,1137.55L1024.14,1137.57ZM1025.37,1137.52L1025.27,1137.53L1025.74,1137.51L1025.37,1137.52ZM1026.6,1137.49L1026.45,1137.49L1026.94,1137.48L1026.6,1137.49ZM1027.82,1137.46L1027.63,1137.46L1028.14,1137.45L1027.82,1137.46ZM1029.05,1137.43L1028.81,1137.43L1029.33,1137.42L1029.05,1137.43ZM1030.28,1137.41L1030,1137.41L1030.52,1137.4L1030.28,1137.41ZM1031.51,1137.39L1031.19,1137.39L1031.7,1137.38L1031.51,1137.39ZM1032.75,1137.37L1032.39,1137.38L1032.89,1137.37L1032.75,1137.37ZM1033.98,1137.36L1033.61,1137.36L1034.07,1137.36L1033.98,1137.36ZM1035.21,1137.35L1034.87,1137.36L1035.26,1137.35L1035.21,1137.35ZM1050.1,1035.06L867.977,544.575L689.455,1035.06L1050.1,1035.06Z"})})});var Vo=(e=>(e[e.PROMPT=0]="PROMPT",e[e.GALLERY=1]="GALLERY",e[e.OTHER=2]="OTHER",e[e.SEED=3]="SEED",e[e.VARIATIONS=4]="VARIATIONS",e[e.UPSCALE=5]="UPSCALE",e[e.FACE_CORRECTION=6]="FACE_CORRECTION",e[e.IMAGE_TO_IMAGE=7]="IMAGE_TO_IMAGE",e))(Vo||{});const f1e={[0]:{text:"This field will take all prompt text, including both content and stylistic terms. While weights can be included in the prompt, standard CLI Commands/parameters will not work.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[1]:{text:"As new invocations are generated, files from the output directory will be displayed here. Generations have additional options to configure new generations.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[2]:{text:"These options will enable alternative processing modes for Invoke. Seamless tiling will work to generate repeating patterns in the output. High Resolution Optimization performs a two-step generation cycle, and should be used at higher resolutions when you desire a more coherent image/composition. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[3]:{text:"Seed values provide an initial set of noise which guide the denoising process, and can be randomized or populated with a seed from a previous invocation. The Threshold feature can be used to mitigate undesirable outcomes at higher CFG values (try between 0-10), and Perlin can be used to add Perlin noise into the denoising process - Both serve to add variation to your outputs. ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[4]:{text:"Try a variation with an amount of between 0 and 1 to change the output image for the set seed - Interesting variations on the seed are found between 0.1 and 0.3.",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[5]:{text:"Using ESRGAN you can increase the output resolution without requiring a higher width/height in the initial generation.",href:"link/to/docs/feature1.html",guideImage:"asset/path.gif"},[6]:{text:"Using GFPGAN, Face Correction will attempt to identify faces in outputs, and correct any defects/abnormalities. Higher values will apply a stronger corrective pressure on outputs, resulting in more appealing faces (with less respect for accuracy of the original subject).",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"},[7]:{text:"ImageToImage allows the upload of an initial image, which InvokeAI will use to guide the generation process, along with a prompt. A lower value for this setting will more closely resemble the original image. Values between 0-1 are accepted, and a range of .25-.75 is recommended ",href:"link/to/docs/feature3.html",guideImage:"asset/path.gif"}},al=e=>{const{label:t,isDisabled:n=!1,fontSize:r="md",size:o="md",width:i="auto",...s}=e;return v(cs,{isDisabled:n,width:i,children:Y(Rt,{justifyContent:"space-between",alignItems:"center",children:[t&&v(el,{fontSize:r,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",children:t}),v(Hm,{size:o,className:"switch-button",...s})]})})};function wR(){const e=ke(o=>o.system.isGFPGANAvailable),t=ke(o=>o.options.shouldRunGFPGAN),n=He();return Y(Rt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Restore Face"}),v(al,{isDisabled:!e,isChecked:t,onChange:o=>n(fpe(o.target.checked))})]})}const LC=/^-?(0\.)?\.?$/,Ei=e=>{const{label:t,styleClass:n,isDisabled:r=!1,showStepper:o=!0,fontSize:i="1rem",size:s="sm",width:l,textAlign:c,isInvalid:d,value:f,onChange:h,min:m,max:g,isInteger:b=!0,...S}=e,[_,w]=C.exports.useState(String(f));C.exports.useEffect(()=>{!_.match(LC)&&f!==Number(_)&&w(String(f))},[f,_]);const x=L=>{w(L),L.match(LC)||h(b?Math.floor(Number(L)):Number(L))},k=L=>{const A=gf.clamp(b?Math.floor(Number(L.target.value)):Number(L.target.value),m,g);w(String(A)),h(A)};return Y(cs,{isDisabled:r,isInvalid:d,className:`number-input ${n}`,children:[t&&v(el,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"number-input-label",children:t}),Y(hA,{size:s,...S,className:"number-input-field",value:_,keepWithinRange:!0,clampValueOnBlur:!1,onChange:x,onBlur:k,children:[v(mA,{fontSize:i,className:"number-input-entry",width:l,textAlign:c}),Y("div",{className:"number-input-stepper",style:o?{display:"block"}:{display:"none"},children:[v(yA,{className:"number-input-stepper-button"}),v(vA,{className:"number-input-stepper-button"})]})]})]})},p1e=er(e=>e.options,e=>({gfpganStrength:e.gfpganStrength}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),h1e=er(e=>e.system,e=>({isGFPGANAvailable:e.isGFPGANAvailable}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),P6=()=>{const e=He(),{gfpganStrength:t}=ke(p1e),{isGFPGANAvailable:n}=ke(h1e);return v(Rt,{direction:"column",gap:2,children:v(Ei,{isDisabled:!n,label:"Strength",step:.05,min:0,max:1,onChange:o=>e(y4(o)),value:t,width:"90px",isInteger:!1})})};function m1e(){const e=He(),t=ke(r=>r.options.shouldFitToWidthHeight);return v(al,{label:"Fit Initial Image To Output Size",isChecked:t,onChange:r=>e(UI(r.target.checked))})}function g1e(e){const{label:t="Strength",styleClass:n}=e,r=ke(s=>s.options.img2imgStrength),o=He();return v(Ei,{label:t,step:.01,min:.01,max:.99,onChange:s=>o(HI(s)),value:r,width:"90px",isInteger:!1,styleClass:n})}function v1e(){const e=He(),t=ke(r=>r.options.shouldRandomizeSeed);return v(al,{label:"Randomize Seed",isChecked:t,onChange:r=>e(hpe(r.target.checked))})}function y1e(){const e=ke(i=>i.options.seed),t=ke(i=>i.options.shouldRandomizeSeed),n=ke(i=>i.options.shouldGenerateVariations),r=He(),o=i=>r(Hf(i));return v(Ei,{label:"Seed",step:1,precision:0,flexGrow:1,min:_6,max:E6,isDisabled:t,isInvalid:e<0&&n,onChange:o,value:e,width:"10rem"})}function b1e(){const e=He(),t=ke(r=>r.options.shouldRandomizeSeed);return v(wi,{size:"sm",isDisabled:t,onClick:()=>e(Hf(mR(_6,E6))),children:v("p",{children:"Shuffle"})})}function S1e(){const e=He(),t=ke(r=>r.options.threshold);return v(Ei,{label:"Threshold",min:0,max:1e3,step:.1,onChange:r=>e(lpe(r)),value:t,isInteger:!1})}function x1e(){const e=He(),t=ke(r=>r.options.perlin);return v(Ei,{label:"Perlin Noise",min:0,max:1,step:.05,onChange:r=>e(upe(r)),value:t,isInteger:!1})}const CR=()=>Y(Rt,{gap:2,direction:"column",children:[v(v1e,{}),Y(Rt,{gap:2,children:[v(y1e,{}),v(b1e,{})]}),v(Rt,{gap:2,children:v(S1e,{})}),v(Rt,{gap:2,children:v(x1e,{})})]});function kR(){const e=ke(o=>o.system.isESRGANAvailable),t=ke(o=>o.options.shouldRunESRGAN),n=He();return Y(Rt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Upscale"}),v(al,{isDisabled:!e,isChecked:t,onChange:o=>n(ppe(o.target.checked))})]})}const sg=e=>{const{label:t,isDisabled:n,validValues:r,size:o="sm",fontSize:i="md",styleClass:s,...l}=e;return Y(cs,{isDisabled:n,className:`iai-select ${s}`,children:[v(el,{fontSize:i,marginBottom:1,flexGrow:2,whiteSpace:"nowrap",className:"iai-select-label",children:t}),v(wA,{fontSize:i,size:o,...l,className:"iai-select-picker",children:r.map(c=>typeof c=="string"||typeof c=="number"?v("option",{value:c,className:"iai-select-option",children:c},c):v("option",{value:c.value,children:c.key},c.value))})]})},w1e=er(e=>e.options,e=>({upscalingLevel:e.upscalingLevel,upscalingStrength:e.upscalingStrength}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),C1e=er(e=>e.system,e=>({isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),T6=()=>{const e=He(),{upscalingLevel:t,upscalingStrength:n}=ke(w1e),{isESRGANAvailable:r}=ke(C1e);return Y("div",{className:"upscale-options",children:[v(sg,{isDisabled:!r,label:"Scale",value:t,onChange:s=>e(b4(Number(s.target.value))),validValues:jhe}),v(Ei,{isDisabled:!r,label:"Strength",step:.05,min:0,max:1,onChange:s=>e(S4(s)),value:n,isInteger:!1})]})};function k1e(){const e=ke(r=>r.options.shouldGenerateVariations),t=He();return v(al,{isChecked:e,width:"auto",onChange:r=>t(cpe(r.target.checked))})}function _R(){return Y(Rt,{justifyContent:"space-between",alignItems:"center",width:"100%",mr:2,children:[v("p",{children:"Variations"}),v(k1e,{})]})}function _1e(e){const{label:t,styleClass:n,isDisabled:r=!1,fontSize:o="1rem",width:i,isInvalid:s,...l}=e;return Y(cs,{className:`input ${n}`,isInvalid:s,isDisabled:r,flexGrow:1,children:[v(el,{fontSize:o,marginBottom:1,whiteSpace:"nowrap",className:"input-label",children:t}),v(C3,{...l,className:"input-entry",size:"sm",width:i})]})}function E1e(){const e=ke(o=>o.options.seedWeights),t=ke(o=>o.options.shouldGenerateVariations),n=He(),r=o=>n(GI(o.target.value));return v(_1e,{label:"Seed Weights",value:e,isInvalid:t&&!(w6(e)||e===""),isDisabled:!t,onChange:r})}function L1e(){const e=ke(o=>o.options.variationAmount),t=ke(o=>o.options.shouldGenerateVariations),n=He();return v(Ei,{label:"Variation Amount",value:e,step:.01,min:0,max:1,isDisabled:!t,onChange:o=>n(dpe(o)),isInteger:!1})}const ER=()=>Y(Rt,{gap:2,direction:"column",children:[v(L1e,{}),v(E1e,{})]});function LR(){const e=ke(r=>r.options.showAdvancedOptions),t=He();return Y("div",{className:"advanced_options_checker",children:[v("input",{type:"checkbox",name:"advanced_options",id:"",onChange:r=>t(mpe(r.target.checked)),checked:e}),v("label",{htmlFor:"advanced_options",children:"Advanced Options"})]})}function P1e(){const e=He(),t=ke(r=>r.options.cfgScale);return v(Ei,{label:"CFG Scale",step:.5,min:1,max:30,onChange:r=>e($I(r)),value:t,width:A6,fontSize:Ju,styleClass:"main-option-block",textAlign:"center",isInteger:!1})}function T1e(){const e=ke(r=>r.options.height),t=He();return v(sg,{label:"Height",value:e,flexGrow:1,onChange:r=>t(BI(Number(r.target.value))),validValues:Whe,fontSize:Ju,styleClass:"main-option-block"})}function A1e(){const e=He(),t=ke(r=>r.options.iterations);return v(Ei,{label:"Images",step:1,min:1,max:9999,onChange:r=>e(spe(r)),value:t,width:A6,fontSize:Ju,styleClass:"main-option-block",textAlign:"center"})}function I1e(){const e=ke(r=>r.options.sampler),t=He();return v(sg,{label:"Sampler",value:e,onChange:r=>t(VI(r.target.value)),validValues:Fhe,fontSize:Ju,styleClass:"main-option-block"})}function R1e(){const e=He(),t=ke(r=>r.options.steps);return v(Ei,{label:"Steps",min:1,max:9999,step:1,onChange:r=>e(zI(r)),value:t,width:A6,fontSize:Ju,styleClass:"main-option-block",textAlign:"center"})}function O1e(){const e=ke(r=>r.options.width),t=He();return v(sg,{label:"Width",value:e,flexGrow:1,onChange:r=>t(FI(Number(r.target.value))),validValues:Vhe,fontSize:Ju,styleClass:"main-option-block"})}const Ju="0.9rem",A6="auto";function PR(){return v("div",{className:"main-options",children:Y("div",{className:"main-options-list",children:[Y("div",{className:"main-options-row",children:[v(A1e,{}),v(R1e,{}),v(P1e,{})]}),Y("div",{className:"main-options-row",children:[v(O1e,{}),v(T1e,{}),v(I1e,{})]})]})})}var TR={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},PC=X.createContext&&X.createContext(TR),Ja=globalThis&&globalThis.__assign||function(){return Ja=Object.assign||function(e){for(var t,n=1,r=arguments.length;ne.system,e=>e.shouldDisplayGuides),G1e=({children:e,feature:t})=>{const n=ke(U1e),{text:r}=f1e[t];return n?Y(X3,{trigger:"hover",children:[v(t6,{children:v(yo,{children:e})}),Y(e6,{className:"guide-popover-content",maxWidth:"400px",onClick:o=>o.preventDefault(),cursor:"initial",children:[v(Q3,{className:"guide-popover-arrow"}),v("div",{className:"guide-popover-guide-content",children:r})]})]}):v(wn,{})},Z1e=le(({feature:e,icon:t=IR},n)=>v(G1e,{feature:e,children:v(yo,{ref:n,children:v(Bm,{as:t})})}));function K1e(e){const{header:t,feature:n,options:r}=e;return Y(PP,{className:"advanced-settings-item",children:[v("h2",{children:Y(EP,{className:"advanced-settings-header",children:[t,v(Z1e,{feature:n}),v(LP,{})]})}),v(TP,{className:"advanced-settings-panel",children:r})]})}const OR=e=>{const{accordionInfo:t}=e,n=ke(s=>s.system.openAccordions),r=He();return v(AP,{defaultIndex:n,allowMultiple:!0,reduceMotion:!0,onChange:s=>r(Lpe(s)),className:"advanced-settings",children:(()=>{const s=[];return t&&Object.keys(t).forEach(l=>{s.push(v(K1e,{header:t[l].header,feature:t[l].feature,options:t[l].options},l))}),s})()})},q1e=()=>{const e=He(),t=ke(r=>r.options.hiresFix);return v(Rt,{gap:2,direction:"column",children:v(al,{label:"High Res Optimization",fontSize:"md",isChecked:t,onChange:r=>e(jI(r.target.checked))})})},Y1e=()=>{const e=He(),t=ke(r=>r.options.seamless);return v(Rt,{gap:2,direction:"column",children:v(al,{label:"Seamless tiling",fontSize:"md",isChecked:t,onChange:r=>e(WI(r.target.checked))})})},MR=()=>Y(Rt,{gap:2,direction:"column",children:[v(Y1e,{}),v(q1e,{})]}),td=e=>{const{label:t,tooltip:n="",size:r="sm",...o}=e;return v(Bn,{label:n,children:v(wi,{size:r,...o,children:t})})},AC=er(e=>e.options,e=>({prompt:e.prompt,shouldGenerateVariations:e.shouldGenerateVariations,seedWeights:e.seedWeights,maskPath:e.maskPath,initialImagePath:e.initialImagePath,seed:e.seed,activeTab:e.activeTab}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),I6=er(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),NR=()=>{const{prompt:e}=ke(AC),{shouldGenerateVariations:t,seedWeights:n,maskPath:r,initialImagePath:o,seed:i,activeTab:s}=ke(AC),{isProcessing:l,isConnected:c}=ke(I6);return C.exports.useMemo(()=>!(!e||Boolean(e.match(/^[\s\r\n]+$/))||e&&!o&&s===1||r&&!o||l||!c||t&&(!(w6(n)||n==="")||i===-1)),[e,r,o,l,c,t,n,i,s])};function X1e(){const e=He(),t=NR();return v(td,{label:"Invoke","aria-label":"Invoke",type:"submit",isDisabled:!t,onClick:()=>{e(L4())},className:"invoke-btn"})}const Ts=e=>{const{tooltip:t="",tooltipPlacement:n="bottom",onClick:r,...o}=e;return v(Bn,{label:t,hasArrow:!0,placement:n,children:v(pn,{...o,cursor:r?"pointer":"unset",onClick:r})})};function Q1e(){const e=He(),{isProcessing:t,isConnected:n}=ke(I6),r=()=>e(Dhe());return ln("shift+x",()=>{(n||t)&&r()},[n,t]),v(Ts,{icon:v(H1e,{}),tooltip:"Cancel","aria-label":"Cancel",isDisabled:!n||!t,onClick:r,className:"cancel-btn"})}const DR=()=>Y("div",{className:"process-buttons",children:[v(X1e,{}),v(Q1e,{})]}),J1e=er(e=>e.options,e=>({prompt:e.prompt}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),zR=()=>{const e=C.exports.useRef(null),{prompt:t}=ke(J1e),{isProcessing:n}=ke(I6),r=He(),o=NR(),i=l=>{r(DI(l.target.value))};ln("ctrl+enter",()=>{o&&r(L4())},[o]),ln("alt+a",()=>{e.current?.focus()},[]);const s=l=>{l.key==="Enter"&&l.shiftKey===!1&&o&&(l.preventDefault(),r(L4()))};return v("div",{className:"prompt-bar",children:v(cs,{isInvalid:t.length===0||Boolean(t.match(/^[\s\r\n]+$/)),isDisabled:n,children:v(IA,{id:"prompt",name:"prompt",placeholder:"I'm dreaming of...",size:"lg",value:t,onChange:i,onKeyDown:s,resize:"vertical",height:30,ref:e})})})};function e0e(){const e=ke(n=>n.options.showAdvancedOptions),t={seed:{header:v(yo,{flex:"1",textAlign:"left",children:"Seed"}),feature:Vo.SEED,options:v(CR,{})},variations:{header:v(_R,{}),feature:Vo.VARIATIONS,options:v(ER,{})},face_restore:{header:v(wR,{}),feature:Vo.FACE_CORRECTION,options:v(P6,{})},upscale:{header:v(kR,{}),feature:Vo.UPSCALE,options:v(T6,{})},other:{header:v(yo,{flex:"1",textAlign:"left",children:"Other"}),feature:Vo.OTHER,options:v(MR,{})}};return Y("div",{className:"image-to-image-panel",children:[v(zR,{}),v(DR,{}),v(PR,{}),v(g1e,{label:"Image To Image Strength",styleClass:"main-option-block image-to-image-strength-main-option"}),v(m1e,{}),v(LR,{}),e?v(OR,{accordionInfo:t}):null]})}function t0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"}}]})(e)}function n0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 496 512"},child:[{tag:"path",attr:{d:"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"}}]})(e)}function r0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 320 512"},child:[{tag:"path",attr:{d:"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"}}]})(e)}function o0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"}}]})(e)}function i0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 256 512"},child:[{tag:"path",attr:{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"}}]})(e)}function a0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"}}]})(e)}function s0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 640 512"},child:[{tag:"path",attr:{d:"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"}}]})(e)}function l0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"}}]})(e)}function u0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"}}]})(e)}function c0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"}}]})(e)}function d0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"}}]})(e)}function f0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"}}]})(e)}function p0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z"}}]})(e)}function h0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}}]})(e)}function m0e(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"}}]})(e)}var g0e=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Uf(e,t){var n=v0e(e);if(typeof n.path!="string"){var r=e.webkitRelativePath;Object.defineProperty(n,"path",{value:typeof t=="string"?t:typeof r=="string"&&r.length>0?r:e.name,writable:!1,configurable:!1,enumerable:!0})}return n}function v0e(e){var t=e.name,n=t&&t.lastIndexOf(".")!==-1;if(n&&!e.type){var r=t.split(".").pop().toLowerCase(),o=g0e.get(r);o&&Object.defineProperty(e,"type",{value:o,writable:!1,configurable:!1,enumerable:!0})}return e}var y0e=[".DS_Store","Thumbs.db"];function b0e(e){return Uu(this,void 0,void 0,function(){return Gu(this,function(t){return M0(e)&&S0e(e.dataTransfer)?[2,k0e(e.dataTransfer,e.type)]:x0e(e)?[2,w0e(e)]:Array.isArray(e)&&e.every(function(n){return"getFile"in n&&typeof n.getFile=="function"})?[2,C0e(e)]:[2,[]]})})}function S0e(e){return M0(e)}function x0e(e){return M0(e)&&M0(e.target)}function M0(e){return typeof e=="object"&&e!==null}function w0e(e){return T4(e.target.files).map(function(t){return Uf(t)})}function C0e(e){return Uu(this,void 0,void 0,function(){var t;return Gu(this,function(n){switch(n.label){case 0:return[4,Promise.all(e.map(function(r){return r.getFile()}))];case 1:return t=n.sent(),[2,t.map(function(r){return Uf(r)})]}})})}function k0e(e,t){return Uu(this,void 0,void 0,function(){var n,r;return Gu(this,function(o){switch(o.label){case 0:return e.items?(n=T4(e.items).filter(function(i){return i.kind==="file"}),t!=="drop"?[2,n]:[4,Promise.all(n.map(_0e))]):[3,2];case 1:return r=o.sent(),[2,IC($R(r))];case 2:return[2,IC(T4(e.files).map(function(i){return Uf(i)}))]}})})}function IC(e){return e.filter(function(t){return y0e.indexOf(t.name)===-1})}function T4(e){if(e===null)return[];for(var t=[],n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nn)return[!1,DC(n)];if(e.sizen)return[!1,DC(n)]}return[!0,null]}function As(e){return e!=null}function V0e(e){var t=e.files,n=e.accept,r=e.minSize,o=e.maxSize,i=e.multiple,s=e.maxFiles,l=e.validator;return!i&&t.length>1||i&&s>=1&&t.length>s?!1:t.every(function(c){var d=WR(c,n),f=yf(d,1),h=f[0],m=jR(c,r,o),g=yf(m,1),b=g[0],S=l?l(c):null;return h&&b&&!S})}function N0(e){return typeof e.isPropagationStopped=="function"?e.isPropagationStopped():typeof e.cancelBubble<"u"?e.cancelBubble:!1}function Wh(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,function(t){return t==="Files"||t==="application/x-moz-file"}):!!e.target&&!!e.target.files}function $C(e){e.preventDefault()}function W0e(e){return e.indexOf("MSIE")!==-1||e.indexOf("Trident/")!==-1}function j0e(e){return e.indexOf("Edge/")!==-1}function H0e(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:window.navigator.userAgent;return W0e(e)||j0e(e)}function ti(){for(var e=arguments.length,t=new Array(e),n=0;n1?o-1:0),s=1;se.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function sme(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}var R6=C.exports.forwardRef(function(e,t){var n=e.children,r=D0(e,Y0e),o=KR(r),i=o.open,s=D0(o,X0e);return C.exports.useImperativeHandle(t,function(){return{open:i}},[i]),v(C.exports.Fragment,{children:n(Zt(Zt({},s),{},{open:i}))})});R6.displayName="Dropzone";var ZR={disabled:!1,getFilesFromEvent:b0e,maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};R6.defaultProps=ZR;R6.propTypes={children:kt.exports.func,accept:kt.exports.objectOf(kt.exports.arrayOf(kt.exports.string)),multiple:kt.exports.bool,preventDropOnDocument:kt.exports.bool,noClick:kt.exports.bool,noKeyboard:kt.exports.bool,noDrag:kt.exports.bool,noDragEventsBubbling:kt.exports.bool,minSize:kt.exports.number,maxSize:kt.exports.number,maxFiles:kt.exports.number,disabled:kt.exports.bool,getFilesFromEvent:kt.exports.func,onFileDialogCancel:kt.exports.func,onFileDialogOpen:kt.exports.func,useFsAccessApi:kt.exports.bool,autoFocus:kt.exports.bool,onDragEnter:kt.exports.func,onDragLeave:kt.exports.func,onDragOver:kt.exports.func,onDrop:kt.exports.func,onDropAccepted:kt.exports.func,onDropRejected:kt.exports.func,onError:kt.exports.func,validator:kt.exports.func};var O4={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function KR(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},t=Zt(Zt({},ZR),e),n=t.accept,r=t.disabled,o=t.getFilesFromEvent,i=t.maxSize,s=t.minSize,l=t.multiple,c=t.maxFiles,d=t.onDragEnter,f=t.onDragLeave,h=t.onDragOver,m=t.onDrop,g=t.onDropAccepted,b=t.onDropRejected,S=t.onFileDialogCancel,_=t.onFileDialogOpen,w=t.useFsAccessApi,x=t.autoFocus,k=t.preventDropOnDocument,L=t.noClick,A=t.noKeyboard,M=t.noDrag,N=t.noDragEventsBubbling,$=t.onError,Z=t.validator,j=C.exports.useMemo(function(){return Z0e(n)},[n]),te=C.exports.useMemo(function(){return G0e(n)},[n]),Le=C.exports.useMemo(function(){return typeof _=="function"?_:FC},[_]),me=C.exports.useMemo(function(){return typeof S=="function"?S:FC},[S]),ge=C.exports.useRef(null),de=C.exports.useRef(null),ve=C.exports.useReducer(lme,O4),oe=sy(ve,2),H=oe[0],Q=oe[1],q=H.isFocused,R=H.isFileDialogActive,U=C.exports.useRef(typeof window<"u"&&window.isSecureContext&&w&&U0e()),ue=function(){!U.current&&R&&setTimeout(function(){if(de.current){var Pe=de.current.files;Pe.length||(Q({type:"closeDialog"}),me())}},300)};C.exports.useEffect(function(){return window.addEventListener("focus",ue,!1),function(){window.removeEventListener("focus",ue,!1)}},[de,R,me,U]);var fe=C.exports.useRef([]),be=function(Pe){ge.current&&ge.current.contains(Pe.target)||(Pe.preventDefault(),fe.current=[])};C.exports.useEffect(function(){return k&&(document.addEventListener("dragover",$C,!1),document.addEventListener("drop",be,!1)),function(){k&&(document.removeEventListener("dragover",$C),document.removeEventListener("drop",be))}},[ge,k]),C.exports.useEffect(function(){return!r&&x&&ge.current&&ge.current.focus(),function(){}},[ge,x,r]);var Se=C.exports.useCallback(function(he){$?$(he):console.error(he)},[$]),Te=C.exports.useCallback(function(he){he.preventDefault(),he.persist(),dt(he),fe.current=[].concat(eme(fe.current),[he.target]),Wh(he)&&Promise.resolve(o(he)).then(function(Pe){if(!(N0(he)&&!N)){var mt=Pe.length,ft=mt>0&&V0e({files:Pe,accept:j,minSize:s,maxSize:i,multiple:l,maxFiles:c,validator:Z}),ae=mt>0&&!ft;Q({isDragAccept:ft,isDragReject:ae,isDragActive:!0,type:"setDraggedFiles"}),d&&d(he)}}).catch(function(Pe){return Se(Pe)})},[o,d,Se,N,j,s,i,l,c,Z]),pe=C.exports.useCallback(function(he){he.preventDefault(),he.persist(),dt(he);var Pe=Wh(he);if(Pe&&he.dataTransfer)try{he.dataTransfer.dropEffect="copy"}catch{}return Pe&&h&&h(he),!1},[h,N]),_e=C.exports.useCallback(function(he){he.preventDefault(),he.persist(),dt(he);var Pe=fe.current.filter(function(ft){return ge.current&&ge.current.contains(ft)}),mt=Pe.indexOf(he.target);mt!==-1&&Pe.splice(mt,1),fe.current=Pe,!(Pe.length>0)&&(Q({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Wh(he)&&f&&f(he))},[ge,f,N]),ze=C.exports.useCallback(function(he,Pe){var mt=[],ft=[];he.forEach(function(ae){var Ze=WR(ae,j),At=sy(Ze,2),An=At[0],jn=At[1],Rr=jR(ae,s,i),Go=sy(Rr,2),Li=Go[0],tr=Go[1],Jr=Z?Z(ae):null;if(An&&Li&&!Jr)mt.push(ae);else{var fs=[jn,tr];Jr&&(fs=fs.concat(Jr)),ft.push({file:ae,errors:fs.filter(function(sl){return sl})})}}),(!l&&mt.length>1||l&&c>=1&&mt.length>c)&&(mt.forEach(function(ae){ft.push({file:ae,errors:[F0e]})}),mt.splice(0)),Q({acceptedFiles:mt,fileRejections:ft,type:"setFiles"}),m&&m(mt,ft,Pe),ft.length>0&&b&&b(ft,Pe),mt.length>0&&g&&g(mt,Pe)},[Q,l,j,s,i,c,m,g,b,Z]),ct=C.exports.useCallback(function(he){he.preventDefault(),he.persist(),dt(he),fe.current=[],Wh(he)&&Promise.resolve(o(he)).then(function(Pe){N0(he)&&!N||ze(Pe,he)}).catch(function(Pe){return Se(Pe)}),Q({type:"reset"})},[o,ze,Se,N]),Nt=C.exports.useCallback(function(){if(U.current){Q({type:"openDialog"}),Le();var he={multiple:l,types:te};window.showOpenFilePicker(he).then(function(Pe){return o(Pe)}).then(function(Pe){ze(Pe,null),Q({type:"closeDialog"})}).catch(function(Pe){K0e(Pe)?(me(Pe),Q({type:"closeDialog"})):q0e(Pe)?(U.current=!1,de.current?(de.current.value=null,de.current.click()):Se(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no was provided."))):Se(Pe)});return}de.current&&(Q({type:"openDialog"}),Le(),de.current.value=null,de.current.click())},[Q,Le,me,w,ze,Se,te,l]),Cn=C.exports.useCallback(function(he){!ge.current||!ge.current.isEqualNode(he.target)||(he.key===" "||he.key==="Enter"||he.keyCode===32||he.keyCode===13)&&(he.preventDefault(),Nt())},[ge,Nt]),xe=C.exports.useCallback(function(){Q({type:"focus"})},[]),Re=C.exports.useCallback(function(){Q({type:"blur"})},[]),rt=C.exports.useCallback(function(){L||(H0e()?setTimeout(Nt,0):Nt())},[L,Nt]),$e=function(Pe){return r?null:Pe},Ut=function(Pe){return A?null:$e(Pe)},kn=function(Pe){return M?null:$e(Pe)},dt=function(Pe){N&&Pe.stopPropagation()},Lt=C.exports.useMemo(function(){return function(){var he=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Pe=he.refKey,mt=Pe===void 0?"ref":Pe,ft=he.role,ae=he.onKeyDown,Ze=he.onFocus,At=he.onBlur,An=he.onClick,jn=he.onDragEnter,Rr=he.onDragOver,Go=he.onDragLeave,Li=he.onDrop,tr=D0(he,Q0e);return Zt(Zt(R4({onKeyDown:Ut(ti(ae,Cn)),onFocus:Ut(ti(Ze,xe)),onBlur:Ut(ti(At,Re)),onClick:$e(ti(An,rt)),onDragEnter:kn(ti(jn,Te)),onDragOver:kn(ti(Rr,pe)),onDragLeave:kn(ti(Go,_e)),onDrop:kn(ti(Li,ct)),role:typeof ft=="string"&&ft!==""?ft:"presentation"},mt,ge),!r&&!A?{tabIndex:0}:{}),tr)}},[ge,Cn,xe,Re,rt,Te,pe,_e,ct,A,M,r]),rn=C.exports.useCallback(function(he){he.stopPropagation()},[]),Xt=C.exports.useMemo(function(){return function(){var he=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Pe=he.refKey,mt=Pe===void 0?"ref":Pe,ft=he.onChange,ae=he.onClick,Ze=D0(he,J0e),At=R4({accept:j,multiple:l,type:"file",style:{display:"none"},onChange:$e(ti(ft,ct)),onClick:$e(ti(ae,rn)),tabIndex:-1},mt,de);return Zt(Zt({},At),Ze)}},[de,n,l,ct,r]);return Zt(Zt({},H),{},{isFocused:q&&!r,getRootProps:Lt,getInputProps:Xt,rootRef:ge,inputRef:de,open:$e(Nt)})}function lme(e,t){switch(t.type){case"focus":return Zt(Zt({},e),{},{isFocused:!0});case"blur":return Zt(Zt({},e),{},{isFocused:!1});case"openDialog":return Zt(Zt({},O4),{},{isFileDialogActive:!0});case"closeDialog":return Zt(Zt({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return Zt(Zt({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return Zt(Zt({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return Zt({},O4);default:return e}}function FC(){}const ume=({children:e,fileAcceptedCallback:t,fileRejectionCallback:n,styleClass:r})=>{const o=C.exports.useCallback((d,f)=>{f.forEach(h=>{n(h)}),d.forEach(h=>{t(h)})},[t,n]),{getRootProps:i,getInputProps:s,open:l}=KR({onDrop:o,accept:{"image/jpeg":[".jpg",".jpeg",".png"]}}),c=d=>{d.stopPropagation(),l()};return Y(yo,{...i(),flexGrow:3,className:`${r}`,children:[v("input",{...s({multiple:!1})}),C.exports.cloneElement(e,{onClick:c})]})};function cme(e){const{label:t,icon:n,dispatcher:r,styleClass:o,onMouseOver:i,OnMouseout:s}=e,l=aI(),c=He(),d=C.exports.useCallback(h=>c(r(h)),[c,r]),f=C.exports.useCallback(h=>{const m=h.errors.reduce((g,b)=>g+` +`+b.message,"");l({title:"Upload failed",description:m,status:"error",isClosable:!0})},[l]);return v(ume,{fileAcceptedCallback:d,fileRejectionCallback:f,styleClass:o,children:v(wi,{size:"sm",fontSize:"md",fontWeight:"normal",onMouseOver:i,onMouseOut:s,leftIcon:n,width:"100%",children:t||null})})}const dme=er(e=>e.system,e=>e.shouldConfirmOnDelete),qR=C.exports.forwardRef(({image:e,children:t},n)=>{const{isOpen:r,onOpen:o,onClose:i}=y0(),s=He(),l=ke(dme),c=C.exports.useRef(null),d=m=>{m.stopPropagation(),l?o():f()},f=()=>{s(Mhe(e)),i()};ln("del",()=>{l?o():f()},[e,l]);const h=m=>s(QI(!m.target.checked));return Y(wn,{children:[C.exports.cloneElement(t,{onClick:d,ref:n}),v(Ine,{isOpen:r,leastDestructiveRef:c,onClose:i,children:v(uf,{children:Y(Rne,{children:[v(K3,{fontSize:"lg",fontWeight:"bold",children:"Delete image"}),v(w0,{children:Y(Rt,{direction:"column",gap:5,children:[v(Wr,{children:"Are you sure? You can't undo this action afterwards."}),v(cs,{children:Y(Rt,{alignItems:"center",children:[v(el,{mb:0,children:"Don't ask me again"}),v(Hm,{checked:!l,onChange:h})]})})]})}),Y(Z3,{children:[v(wi,{ref:c,onClick:i,children:"Cancel"}),v(wi,{colorScheme:"red",onClick:f,ml:3,children:"Delete"})]})]})})})]})}),VC=({title:e="Popup",styleClass:t,delay:n=50,popoverOptions:r,actionButton:o,children:i})=>Y(X3,{trigger:"hover",closeDelay:n,children:[v(t6,{children:v(yo,{children:i})}),Y(e6,{className:`popover-content ${t}`,children:[v(Q3,{className:"popover-arrow"}),v(bA,{className:"popover-header",children:e}),Y("div",{className:"popover-options",children:[r||null,o]})]})]}),fme=er(e=>e.system,e=>({isProcessing:e.isProcessing,isConnected:e.isConnected,isGFPGANAvailable:e.isGFPGANAvailable,isESRGANAvailable:e.isESRGANAvailable}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),YR=({image:e})=>{const t=He(),n=ke(w=>w.options.shouldShowImageDetails),r=aI(),o=ke(w=>w.gallery.intermediateImage),i=ke(w=>w.options.upscalingLevel),s=ke(w=>w.options.gfpganStrength),{isProcessing:l,isConnected:c,isGFPGANAvailable:d,isESRGANAvailable:f}=ke(fme),h=()=>{t($u(e.url)),t(Zi(1))};ln("shift+i",()=>{e?(h(),r({title:"Sent To Image To Image",status:"success",duration:2500,isClosable:!0})):r({title:"No Image Loaded",description:"No image found to send to image to image module.",status:"error",duration:2500,isClosable:!0})},[e]);const m=()=>t(ZI(e.metadata));ln("a",()=>{["txt2img","img2img"].includes(e?.metadata?.image?.type)?(m(),r({title:"Parameters Set",status:"success",duration:2500,isClosable:!0})):r({title:"Parameters Not Set",description:"No metadata found for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const g=()=>t(Hf(e.metadata.image.seed));ln("s",()=>{e?.metadata?.image?.seed?(g(),r({title:"Seed Set",status:"success",duration:2500,isClosable:!0})):r({title:"Seed Not Set",description:"Could not find seed for this image.",status:"error",duration:2500,isClosable:!0})},[e]);const b=()=>t(Rhe(e));ln("u",()=>{f&&Boolean(!o)&&c&&!l&&i?b():r({title:"Upscaling Failed",status:"error",duration:2500,isClosable:!0})},[e,f,o,c,l,i]);const S=()=>t(Ohe(e));ln("r",()=>{d&&Boolean(!o)&&c&&!l&&s?S():r({title:"Face Restoration Failed",status:"error",duration:2500,isClosable:!0})},[e,d,o,c,l,s]);const _=()=>t(gpe(!n));return ln("i",()=>{e?_():r({title:"Failed to load metadata",status:"error",duration:2500,isClosable:!0})},[e,n]),Y("div",{className:"current-image-options",children:[v(Ts,{icon:v(W1e,{}),tooltip:"Send To Image To Image","aria-label":"Send To Image To Image",onClick:h}),v(td,{label:"Use All",isDisabled:!["txt2img","img2img"].includes(e?.metadata?.image?.type),onClick:m}),v(td,{label:"Use Seed",isDisabled:!e?.metadata?.image?.seed,onClick:g}),v(VC,{title:"Restore Faces",popoverOptions:v(P6,{}),actionButton:v(td,{label:"Restore Faces",isDisabled:!d||Boolean(o)||!(c&&!l)||!s,onClick:S}),children:v(Ts,{icon:v(z1e,{}),"aria-label":"Restore Faces"})}),v(VC,{title:"Upscale",styleClass:"upscale-popover",popoverOptions:v(T6,{}),actionButton:v(td,{label:"Upscale Image",isDisabled:!f||Boolean(o)||!(c&&!l)||!i,onClick:b}),children:v(Ts,{icon:v(F1e,{}),"aria-label":"Upscale"})}),v(Ts,{icon:v($1e,{}),tooltip:"Details","aria-label":"Details",onClick:_}),v(qR,{image:e,children:v(Ts,{icon:v(D1e,{}),tooltip:"Delete Image","aria-label":"Delete Image",isDisabled:Boolean(o)})})]})},pme=er(e=>e.gallery,e=>{const t=e.images.findIndex(r=>r.uuid===e?.currentImage?.uuid),n=e.images.length;return{isOnFirstImage:t===0,isOnLastImage:!isNaN(t)&&t===n-1}},{memoizeOptions:{resultEqualityCheck:gf.isEqual}});function XR(e){const{imageToDisplay:t}=e,n=He(),{isOnFirstImage:r,isOnLastImage:o}=ke(pme),i=ke(m=>m.options.shouldShowImageDetails),[s,l]=C.exports.useState(!1),c=()=>{l(!0)},d=()=>{l(!1)},f=()=>{n(YI())},h=()=>{n(qI())};return Y("div",{className:"current-image-preview",children:[v(Mm,{src:t.url,fit:"contain",maxWidth:"100%",maxHeight:"100%"}),!i&&Y("div",{className:"current-image-next-prev-buttons",children:[v("div",{className:"next-prev-button-trigger-area prev-button-trigger-area",onMouseOver:c,onMouseOut:d,children:s&&!r&&v(pn,{"aria-label":"Previous image",icon:v(o0e,{className:"next-prev-button"}),variant:"unstyled",onClick:f})}),v("div",{className:"next-prev-button-trigger-area next-button-trigger-area",onMouseOver:c,onMouseOut:d,children:s&&!o&&v(pn,{"aria-label":"Next image",icon:v(i0e,{className:"next-prev-button"}),variant:"unstyled",onClick:h})})]})]})}var WC={path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"currentColor",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]}),viewBox:"0 0 24 24"},QR=le((e,t)=>{const{as:n,viewBox:r,color:o="currentColor",focusable:i=!1,children:s,className:l,__css:c,...d}=e,f=_t("chakra-icon",l),h={w:"1em",h:"1em",display:"inline-block",lineHeight:"1em",flexShrink:0,color:o,...c},m={ref:t,focusable:i,className:f,__css:h},g=r??WC.viewBox;if(n&&typeof n!="string")return X.createElement(ee.svg,{as:n,...m,...d});const b=s??WC.path;return X.createElement(ee.svg,{verticalAlign:"middle",viewBox:g,...m,...d},b)});QR.displayName="Icon";function Ie(e){const{viewBox:t="0 0 24 24",d:n,displayName:r,defaultProps:o={}}=e,i=C.exports.Children.toArray(e.path),s=le((l,c)=>v(QR,{ref:c,viewBox:t,...o,...l,children:i.length?i:v("path",{fill:"currentColor",d:n})}));return s.displayName=r,s}Ie({d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",displayName:"CopyIcon"});Ie({d:"M23.384,21.619,16.855,15.09a9.284,9.284,0,1,0-1.768,1.768l6.529,6.529a1.266,1.266,0,0,0,1.768,0A1.251,1.251,0,0,0,23.384,21.619ZM2.75,9.5a6.75,6.75,0,1,1,6.75,6.75A6.758,6.758,0,0,1,2.75,9.5Z",displayName:"SearchIcon"});Ie({d:"M23.414,20.591l-4.645-4.645a10.256,10.256,0,1,0-2.828,2.829l4.645,4.644a2.025,2.025,0,0,0,2.828,0A2,2,0,0,0,23.414,20.591ZM10.25,3.005A7.25,7.25,0,1,1,3,10.255,7.258,7.258,0,0,1,10.25,3.005Z",displayName:"Search2Icon"});Ie({d:"M21.4,13.7C20.6,13.9,19.8,14,19,14c-5,0-9-4-9-9c0-0.8,0.1-1.6,0.3-2.4c0.1-0.3,0-0.7-0.3-1 c-0.3-0.3-0.6-0.4-1-0.3C4.3,2.7,1,7.1,1,12c0,6.1,4.9,11,11,11c4.9,0,9.3-3.3,10.6-8.1c0.1-0.3,0-0.7-0.3-1 C22.1,13.7,21.7,13.6,21.4,13.7z",displayName:"MoonIcon"});Ie({displayName:"SunIcon",path:Y("g",{strokeLinejoin:"round",strokeLinecap:"round",strokeWidth:"2",fill:"none",stroke:"currentColor",children:[v("circle",{cx:"12",cy:"12",r:"5"}),v("path",{d:"M12 1v2"}),v("path",{d:"M12 21v2"}),v("path",{d:"M4.22 4.22l1.42 1.42"}),v("path",{d:"M18.36 18.36l1.42 1.42"}),v("path",{d:"M1 12h2"}),v("path",{d:"M21 12h2"}),v("path",{d:"M4.22 19.78l1.42-1.42"}),v("path",{d:"M18.36 5.64l1.42-1.42"})]})});Ie({d:"M0,12a1.5,1.5,0,0,0,1.5,1.5h8.75a.25.25,0,0,1,.25.25V22.5a1.5,1.5,0,0,0,3,0V13.75a.25.25,0,0,1,.25-.25H22.5a1.5,1.5,0,0,0,0-3H13.75a.25.25,0,0,1-.25-.25V1.5a1.5,1.5,0,0,0-3,0v8.75a.25.25,0,0,1-.25.25H1.5A1.5,1.5,0,0,0,0,12Z",displayName:"AddIcon"});Ie({displayName:"SmallAddIcon",viewBox:"0 0 20 20",path:v("path",{fill:"currentColor",d:"M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z",fillRule:"evenodd"})});Ie({viewBox:"0 0 14 14",d:"M14,7.77 L14,6.17 L12.06,5.53 L11.61,4.44 L12.49,2.6 L11.36,1.47 L9.55,2.38 L8.46,1.93 L7.77,0.01 L6.17,0.01 L5.54,1.95 L4.43,2.4 L2.59,1.52 L1.46,2.65 L2.37,4.46 L1.92,5.55 L0,6.23 L0,7.82 L1.94,8.46 L2.39,9.55 L1.51,11.39 L2.64,12.52 L4.45,11.61 L5.54,12.06 L6.23,13.98 L7.82,13.98 L8.45,12.04 L9.56,11.59 L11.4,12.47 L12.53,11.34 L11.61,9.53 L12.08,8.44 L14,7.75 L14,7.77 Z M7,10 C5.34,10 4,8.66 4,7 C4,5.34 5.34,4 7,4 C8.66,4 10,5.34 10,7 C10,8.66 8.66,10 7,10 Z",displayName:"SettingsIcon"});Ie({displayName:"CheckCircleIcon",d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z"});Ie({d:"M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z",displayName:"LockIcon"});Ie({d:"M19.5,9.5h-.75V6.75A6.751,6.751,0,0,0,5.533,4.811a1.25,1.25,0,1,0,2.395.717A4.251,4.251,0,0,1,16.25,6.75V9a.5.5,0,0,1-.5.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5Z",displayName:"UnlockIcon"});Ie({displayName:"ViewIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M23.432,10.524C20.787,7.614,16.4,4.538,12,4.6,7.6,4.537,3.213,7.615.568,10.524a2.211,2.211,0,0,0,0,2.948C3.182,16.351,7.507,19.4,11.839,19.4h.308c4.347,0,8.671-3.049,11.288-5.929A2.21,2.21,0,0,0,23.432,10.524ZM7.4,12A4.6,4.6,0,1,1,12,16.6,4.6,4.6,0,0,1,7.4,12Z"}),v("circle",{cx:"12",cy:"12",r:"2"})]})});Ie({displayName:"ViewOffIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M23.2,10.549a20.954,20.954,0,0,0-4.3-3.6l4-3.995a1,1,0,1,0-1.414-1.414l-.018.018a.737.737,0,0,1-.173.291l-19.5,19.5c-.008.007-.018.009-.026.017a1,1,0,0,0,1.631,1.088l4.146-4.146a11.26,11.26,0,0,0,4.31.939h.3c4.256,0,8.489-2.984,11.051-5.8A2.171,2.171,0,0,0,23.2,10.549ZM16.313,13.27a4.581,4.581,0,0,1-3,3.028,4.3,4.3,0,0,1-3.1-.19.253.253,0,0,1-.068-.407l5.56-5.559a.252.252,0,0,1,.407.067A4.3,4.3,0,0,1,16.313,13.27Z"}),v("path",{d:"M7.615,13.4a.244.244,0,0,0,.061-.24A4.315,4.315,0,0,1,7.5,12,4.5,4.5,0,0,1,12,7.5a4.276,4.276,0,0,1,1.16.173.244.244,0,0,0,.24-.062l1.941-1.942a.254.254,0,0,0-.1-.421A10.413,10.413,0,0,0,12,4.75C7.7,4.692,3.4,7.7.813,10.549a2.15,2.15,0,0,0-.007,2.9,21.209,21.209,0,0,0,3.438,3.03.256.256,0,0,0,.326-.029Z"})]})});Ie({d:"M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",displayName:"DownloadIcon",viewBox:"0 0 14 14"});Ie({displayName:"DeleteIcon",path:v("g",{fill:"currentColor",children:v("path",{d:"M19.452 7.5H4.547a.5.5 0 00-.5.545l1.287 14.136A2 2 0 007.326 24h9.347a2 2 0 001.992-1.819L19.95 8.045a.5.5 0 00-.129-.382.5.5 0 00-.369-.163zm-9.2 13a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zm5 0a.75.75 0 01-1.5 0v-9a.75.75 0 011.5 0zM22 4h-4.75a.25.25 0 01-.25-.25V2.5A2.5 2.5 0 0014.5 0h-5A2.5 2.5 0 007 2.5v1.25a.25.25 0 01-.25.25H2a1 1 0 000 2h20a1 1 0 000-2zM9 3.75V2.5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v1.25a.25.25 0 01-.25.25h-5.5A.25.25 0 019 3.75z"})})});Ie({displayName:"RepeatIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M10.319,4.936a7.239,7.239,0,0,1,7.1,2.252,1.25,1.25,0,1,0,1.872-1.657A9.737,9.737,0,0,0,9.743,2.5,10.269,10.269,0,0,0,2.378,9.61a.249.249,0,0,1-.271.178l-1.033-.13A.491.491,0,0,0,.6,9.877a.5.5,0,0,0-.019.526l2.476,4.342a.5.5,0,0,0,.373.248.43.43,0,0,0,.062,0,.5.5,0,0,0,.359-.152l3.477-3.593a.5.5,0,0,0-.3-.844L5.15,10.172a.25.25,0,0,1-.2-.333A7.7,7.7,0,0,1,10.319,4.936Z"}),v("path",{d:"M23.406,14.1a.5.5,0,0,0,.015-.526l-2.5-4.329A.5.5,0,0,0,20.546,9a.489.489,0,0,0-.421.151l-3.456,3.614a.5.5,0,0,0,.3.842l1.848.221a.249.249,0,0,1,.183.117.253.253,0,0,1,.023.216,7.688,7.688,0,0,1-5.369,4.9,7.243,7.243,0,0,1-7.1-2.253,1.25,1.25,0,1,0-1.872,1.656,9.74,9.74,0,0,0,9.549,3.03,10.261,10.261,0,0,0,7.369-7.12.251.251,0,0,1,.27-.179l1.058.127a.422.422,0,0,0,.06,0A.5.5,0,0,0,23.406,14.1Z"})]})});Ie({displayName:"RepeatClockIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M12.965,6a1,1,0,0,0-1,1v5.5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2h-3.75a.25.25,0,0,1-.25-.25V7A1,1,0,0,0,12.965,6Z"}),v("path",{d:"M12.567,1.258A10.822,10.822,0,0,0,2.818,8.4a.25.25,0,0,1-.271.163L.858,8.309a.514.514,0,0,0-.485.213.5.5,0,0,0-.021.53l2.679,4.7a.5.5,0,0,0,.786.107l3.77-3.746a.5.5,0,0,0-.279-.85L5.593,9.007a.25.25,0,0,1-.192-.35,8.259,8.259,0,1,1,7.866,11.59,1.25,1.25,0,0,0,.045,2.5h.047a10.751,10.751,0,1,0-.792-21.487Z"})]})});Ie({displayName:"EditIcon",path:Y("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),v("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]})});Ie({d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",displayName:"ChevronLeftIcon"});Ie({d:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",displayName:"ChevronRightIcon"});Ie({displayName:"ChevronDownIcon",d:"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"});Ie({d:"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z",displayName:"ChevronUpIcon"});Ie({d:"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z",displayName:"ArrowBackIcon"});Ie({d:"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z",displayName:"ArrowForwardIcon"});Ie({d:"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z",displayName:"ArrowUpIcon"});Ie({viewBox:"0 0 16 16",d:"M11.891 9.992a1 1 0 1 1 1.416 1.415l-4.3 4.3a1 1 0 0 1-1.414 0l-4.3-4.3A1 1 0 0 1 4.71 9.992l3.59 3.591 3.591-3.591zm0-3.984L8.3 2.417 4.709 6.008a1 1 0 0 1-1.416-1.415l4.3-4.3a1 1 0 0 1 1.414 0l4.3 4.3a1 1 0 1 1-1.416 1.415z",displayName:"ArrowUpDownIcon"});Ie({d:"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z",displayName:"ArrowDownIcon"});var JR=Ie({displayName:"ExternalLinkIcon",path:Y("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),v("path",{d:"M15 3h6v6"}),v("path",{d:"M10 14L21 3"})]})});Ie({displayName:"LinkIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M10.458,18.374,7.721,21.11a2.853,2.853,0,0,1-3.942,0l-.892-.891a2.787,2.787,0,0,1,0-3.941l5.8-5.8a2.789,2.789,0,0,1,3.942,0l.893.892A1,1,0,0,0,14.94,9.952l-.893-.892a4.791,4.791,0,0,0-6.771,0l-5.8,5.8a4.787,4.787,0,0,0,0,6.77l.892.891a4.785,4.785,0,0,0,6.771,0l2.736-2.735a1,1,0,1,0-1.414-1.415Z"}),v("path",{d:"M22.526,2.363l-.892-.892a4.8,4.8,0,0,0-6.77,0l-2.905,2.9a1,1,0,0,0,1.414,1.414l2.9-2.9a2.79,2.79,0,0,1,3.941,0l.893.893a2.786,2.786,0,0,1,0,3.942l-5.8,5.8a2.769,2.769,0,0,1-1.971.817h0a2.766,2.766,0,0,1-1.969-.816,1,1,0,1,0-1.415,1.412,4.751,4.751,0,0,0,3.384,1.4h0a4.752,4.752,0,0,0,3.385-1.4l5.8-5.8a4.786,4.786,0,0,0,0-6.771Z"})]})});Ie({displayName:"PlusSquareIcon",path:Y("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeWidth:"2",children:[v("rect",{height:"18",width:"18",rx:"2",ry:"2",x:"3",y:"3"}),v("path",{d:"M12 8v8"}),v("path",{d:"M8 12h8"})]})});Ie({displayName:"CalendarIcon",viewBox:"0 0 14 14",d:"M10.8889,5.5 L3.11111,5.5 L3.11111,7.05556 L10.8889,7.05556 L10.8889,5.5 Z M12.4444,1.05556 L11.6667,1.05556 L11.6667,0 L10.1111,0 L10.1111,1.05556 L3.88889,1.05556 L3.88889,0 L2.33333,0 L2.33333,1.05556 L1.55556,1.05556 C0.692222,1.05556 0.00777777,1.75556 0.00777777,2.61111 L0,12.5 C0,13.3556 0.692222,14 1.55556,14 L12.4444,14 C13.3,14 14,13.3556 14,12.5 L14,2.61111 C14,1.75556 13.3,1.05556 12.4444,1.05556 Z M12.4444,12.5 L1.55556,12.5 L1.55556,3.94444 L12.4444,3.94444 L12.4444,12.5 Z M8.55556,8.61111 L3.11111,8.61111 L3.11111,10.1667 L8.55556,10.1667 L8.55556,8.61111 Z"});Ie({d:"M0.913134,0.920639 C1.49851,0.331726 2.29348,0 3.12342,0 L10.8766,0 C11.7065,0 12.5015,0.331725 13.0869,0.920639 C13.6721,1.50939 14,2.30689 14,3.13746 L14,8.12943 C13.9962,8.51443 13.9059,8.97125 13.7629,9.32852 C13.6128,9.683 13.3552,10.0709 13.0869,10.3462 C12.813,10.6163 12.4265,10.8761 12.0734,11.0274 C11.7172,11.1716 11.2607,11.263 10.8766,11.2669 L10.1234,11.2669 L10.1234,12.5676 L10.1209,12.5676 C10.1204,12.793 10.0633,13.0791 9.97807,13.262 C9.8627,13.466 9.61158,13.7198 9.40818,13.8382 L9.40824,13.8383 C9.4077,13.8386 9.40716,13.8388 9.40661,13.8391 C9.40621,13.8393 9.4058,13.8396 9.40539,13.8398 L9.40535,13.8397 C9.22958,13.9254 8.94505,13.9951 8.75059,14 L8.74789,14 C8.35724,13.9963 7.98473,13.8383 7.71035,13.5617 L5.39553,11.2669 L3.12342,11.2669 C2.29348,11.2669 1.49851,10.9352 0.913134,10.3462 C0.644826,10.0709 0.387187,9.683 0.23711,9.32852 C0.0941235,8.97125 0.00379528,8.51443 0,8.12943 L0,3.13746 C0,2.30689 0.327915,1.50939 0.913134,0.920639 Z M3.12342,1.59494 C2.71959,1.59494 2.33133,1.75628 2.04431,2.04503 C1.75713,2.33395 1.59494,2.72681 1.59494,3.13746 L1.59494,8.12943 C1.59114,8.35901 1.62114,8.51076 1.71193,8.72129 C1.79563,8.9346 1.88065,9.06264 2.04431,9.22185 C2.33133,9.5106 2.71959,9.67195 3.12342,9.67195 L5.72383,9.67195 C5.93413,9.67195 6.13592,9.75502 6.28527,9.90308 L8.52848,12.1269 L8.52848,10.4694 C8.52848,10.029 8.88552,9.67195 9.32595,9.67195 L10.8766,9.67195 C11.1034,9.67583 11.2517,9.64614 11.4599,9.55518 C11.6712,9.47132 11.7976,9.38635 11.9557,9.22185 C12.1193,9.06264 12.2044,8.9346 12.2881,8.72129 C12.3789,8.51076 12.4089,8.35901 12.4051,8.12943 L12.4051,3.13746 C12.4051,2.72681 12.2429,2.33394 11.9557,2.04503 C11.6687,1.75628 11.2804,1.59494 10.8766,1.59494 L3.12342,1.59494 Z",displayName:"ChatIcon",viewBox:"0 0 14 14"});Ie({displayName:"TimeIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z"}),v("path",{d:"M17.134,15.81,12.5,11.561V6.5a1,1,0,0,0-2,0V12a1,1,0,0,0,.324.738l4.959,4.545a1.01,1.01,0,0,0,1.413-.061A1,1,0,0,0,17.134,15.81Z"})]})});Ie({displayName:"ArrowRightIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M13.584,12a2.643,2.643,0,0,1-.775,1.875L3.268,23.416a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L.768,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,13.584,12Z"}),v("path",{d:"M23.75,12a2.643,2.643,0,0,1-.775,1.875l-9.541,9.541a1.768,1.768,0,0,1-2.5-2.5l8.739-8.739a.25.25,0,0,0,0-.354L10.934,3.084a1.768,1.768,0,0,1,2.5-2.5l9.541,9.541A2.643,2.643,0,0,1,23.75,12Z"})]})});Ie({displayName:"ArrowLeftIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M10.416,12a2.643,2.643,0,0,1,.775-1.875L20.732.584a1.768,1.768,0,0,1,2.5,2.5l-8.739,8.739a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5l-9.541-9.541A2.643,2.643,0,0,1,10.416,12Z"}),v("path",{d:"M.25,12a2.643,2.643,0,0,1,.775-1.875L10.566.584a1.768,1.768,0,0,1,2.5,2.5L4.327,11.823a.25.25,0,0,0,0,.354l8.739,8.739a1.768,1.768,0,0,1-2.5,2.5L1.025,13.875A2.643,2.643,0,0,1,.25,12Z"})]})});Ie({displayName:"AtSignIcon",d:"M12,.5A11.634,11.634,0,0,0,.262,12,11.634,11.634,0,0,0,12,23.5a11.836,11.836,0,0,0,6.624-2,1.25,1.25,0,1,0-1.393-2.076A9.34,9.34,0,0,1,12,21a9.132,9.132,0,0,1-9.238-9A9.132,9.132,0,0,1,12,3a9.132,9.132,0,0,1,9.238,9v.891a1.943,1.943,0,0,1-3.884,0V12A5.355,5.355,0,1,0,12,17.261a5.376,5.376,0,0,0,3.861-1.634,4.438,4.438,0,0,0,7.877-2.736V12A11.634,11.634,0,0,0,12,.5Zm0,14.261A2.763,2.763,0,1,1,14.854,12,2.812,2.812,0,0,1,12,14.761Z"});Ie({displayName:"AttachmentIcon",d:"M21.843,3.455a6.961,6.961,0,0,0-9.846,0L1.619,13.832a5.128,5.128,0,0,0,7.252,7.252L17.3,12.653A3.293,3.293,0,1,0,12.646,8L7.457,13.184A1,1,0,1,0,8.871,14.6L14.06,9.409a1.294,1.294,0,0,1,1.829,1.83L7.457,19.67a3.128,3.128,0,0,1-4.424-4.424L13.411,4.869a4.962,4.962,0,1,1,7.018,7.018L12.646,19.67a1,1,0,1,0,1.414,1.414L21.843,13.3a6.96,6.96,0,0,0,0-9.846Z"});Ie({displayName:"UpDownIcon",viewBox:"-1 -1 9 11",d:"M 3.5 0L 3.98809 -0.569442L 3.5 -0.987808L 3.01191 -0.569442L 3.5 0ZM 3.5 9L 3.01191 9.56944L 3.5 9.98781L 3.98809 9.56944L 3.5 9ZM 0.488094 3.56944L 3.98809 0.569442L 3.01191 -0.569442L -0.488094 2.43056L 0.488094 3.56944ZM 3.01191 0.569442L 6.51191 3.56944L 7.48809 2.43056L 3.98809 -0.569442L 3.01191 0.569442ZM -0.488094 6.56944L 3.01191 9.56944L 3.98809 8.43056L 0.488094 5.43056L -0.488094 6.56944ZM 3.98809 9.56944L 7.48809 6.56944L 6.51191 5.43056L 3.01191 8.43056L 3.98809 9.56944Z"});Ie({d:"M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z",displayName:"StarIcon"});Ie({displayName:"EmailIcon",path:Y("g",{fill:"currentColor",children:[v("path",{d:"M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z"}),v("path",{d:"M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z"})]})});Ie({d:"M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z",displayName:"PhoneIcon",viewBox:"0 0 14 14"});Ie({viewBox:"0 0 10 10",d:"M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z",displayName:"DragHandleIcon"});Ie({displayName:"SpinnerIcon",path:Y(wn,{children:[v("defs",{children:Y("linearGradient",{x1:"28.154%",y1:"63.74%",x2:"74.629%",y2:"17.783%",id:"a",children:[v("stop",{stopColor:"currentColor",offset:"0%"}),v("stop",{stopColor:"#fff",stopOpacity:"0",offset:"100%"})]})}),Y("g",{transform:"translate(2)",fill:"none",children:[v("circle",{stroke:"url(#a)",strokeWidth:"4",cx:"10",cy:"12",r:"10"}),v("path",{d:"M10 2C4.477 2 0 6.477 0 12",stroke:"currentColor",strokeWidth:"4"}),v("rect",{fill:"currentColor",x:"8",width:"4",height:"4",rx:"8"})]})]})});Ie({displayName:"CloseIcon",d:"M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"});Ie({displayName:"SmallCloseIcon",viewBox:"0 0 16 16",path:v("path",{d:"M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 0 0-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 0 0 1.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 0 0 .71-1.71L9.41 8z",fillRule:"evenodd",fill:"currentColor"})});Ie({d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z",displayName:"NotAllowedIcon"});Ie({d:"M21,5H3C2.621,5,2.275,5.214,2.105,5.553C1.937,5.892,1.973,6.297,2.2,6.6l9,12 c0.188,0.252,0.485,0.4,0.8,0.4s0.611-0.148,0.8-0.4l9-12c0.228-0.303,0.264-0.708,0.095-1.047C21.725,5.214,21.379,5,21,5z",displayName:"TriangleDownIcon"});Ie({d:"M12.8,5.4c-0.377-0.504-1.223-0.504-1.6,0l-9,12c-0.228,0.303-0.264,0.708-0.095,1.047 C2.275,18.786,2.621,19,3,19h18c0.379,0,0.725-0.214,0.895-0.553c0.169-0.339,0.133-0.744-0.095-1.047L12.8,5.4z",displayName:"TriangleUpIcon"});Ie({displayName:"InfoOutlineIcon",path:Y("g",{fill:"currentColor",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"2",children:[v("circle",{cx:"12",cy:"12",fill:"none",r:"11",stroke:"currentColor"}),v("line",{fill:"none",x1:"11.959",x2:"11.959",y1:"11",y2:"17"}),v("circle",{cx:"11.959",cy:"7",r:"1",stroke:"none"})]})});Ie({displayName:"BellIcon",d:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"});Ie({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z"});Ie({d:"M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z",displayName:"QuestionIcon"});Ie({displayName:"QuestionOutlineIcon",path:Y("g",{stroke:"currentColor",strokeWidth:"1.5",children:[v("path",{strokeLinecap:"round",fill:"none",d:"M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25"}),v("path",{fill:"none",strokeLinecap:"round",d:"M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0"}),v("circle",{fill:"none",strokeMiterlimit:"10",cx:"12",cy:"12",r:"11.25"})]})});Ie({d:"M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",displayName:"WarningIcon"});Ie({displayName:"WarningTwoIcon",d:"M23.119,20,13.772,2.15h0a2,2,0,0,0-3.543,0L.881,20a2,2,0,0,0,1.772,2.928H21.347A2,2,0,0,0,23.119,20ZM11,8.423a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Zm1.05,11.51h-.028a1.528,1.528,0,0,1-1.522-1.47,1.476,1.476,0,0,1,1.448-1.53h.028A1.527,1.527,0,0,1,13.5,18.4,1.475,1.475,0,0,1,12.05,19.933Z"});Ie({viewBox:"0 0 14 14",path:v("g",{fill:"currentColor",children:v("polygon",{points:"5.5 11.9993304 14 3.49933039 12.5 2 5.5 8.99933039 1.5 4.9968652 0 6.49933039"})})});Ie({displayName:"MinusIcon",path:v("g",{fill:"currentColor",children:v("rect",{height:"4",width:"20",x:"2",y:"10"})})});Ie({displayName:"HamburgerIcon",viewBox:"0 0 24 24",d:"M 3 5 A 1.0001 1.0001 0 1 0 3 7 L 21 7 A 1.0001 1.0001 0 1 0 21 5 L 3 5 z M 3 11 A 1.0001 1.0001 0 1 0 3 13 L 21 13 A 1.0001 1.0001 0 1 0 21 11 L 3 11 z M 3 17 A 1.0001 1.0001 0 1 0 3 19 L 21 19 A 1.0001 1.0001 0 1 0 21 17 L 3 17 z"});function eO(e){return Et({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M245.09 327.74v-37.32c57.07 0 84.51 13.47 108.58 38.68 5.4 5.65 15 1.32 14.29-6.43-5.45-61.45-34.14-117.09-122.87-117.09v-37.32a8.32 8.32 0 00-14.05-6L146.58 242a8.2 8.2 0 000 11.94L231 333.71a8.32 8.32 0 0014.09-5.97z"}},{tag:"path",attr:{fill:"none",strokeMiterlimit:"10",strokeWidth:"32",d:"M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"}}]})(e)}const Jt=({label:e,value:t,onClick:n,isLink:r,labelPosition:o})=>Y(Rt,{gap:2,children:[n&&v(Bn,{label:`Recall ${e}`,children:v(pn,{"aria-label":"Use this parameter",icon:v(eO,{}),size:"xs",variant:"ghost",fontSize:20,onClick:n})}),Y(Rt,{direction:o?"column":"row",children:[Y(Wr,{fontWeight:"semibold",whiteSpace:"pre-wrap",pr:2,children:[e,":"]}),r?Y(mu,{href:t.toString(),isExternal:!0,wordBreak:"break-all",children:[t.toString()," ",v(JR,{mx:"2px"})]}):v(Wr,{overflowY:"scroll",wordBreak:"break-all",children:t.toString()})]})]}),hme=(e,t)=>e.image.uuid===t.image.uuid,tO=C.exports.memo(({image:e,styleClass:t})=>{const n=He(),r=e?.metadata?.image||{},{type:o,postprocessing:i,sampler:s,prompt:l,seed:c,variations:d,steps:f,cfg_scale:h,seamless:m,hires_fix:g,width:b,height:S,strength:_,fit:w,init_image_path:x,mask_image_path:k,orig_path:L,scale:A}=r,M=JSON.stringify(r,null,2);return v("div",{className:`image-metadata-viewer ${t}`,children:Y(Rt,{gap:1,direction:"column",width:"100%",children:[Y(Rt,{gap:2,children:[v(Wr,{fontWeight:"semibold",children:"File:"}),Y(mu,{href:e.url,isExternal:!0,children:[e.url,v(JR,{mx:"2px"})]})]}),Object.keys(r).length>0?Y(wn,{children:[o&&v(Jt,{label:"Generation type",value:o}),["esrgan","gfpgan"].includes(o)&&v(Jt,{label:"Original image",value:L}),o==="gfpgan"&&_!==void 0&&v(Jt,{label:"Fix faces strength",value:_,onClick:()=>n(y4(_))}),o==="esrgan"&&A!==void 0&&v(Jt,{label:"Upscaling scale",value:A,onClick:()=>n(b4(A))}),o==="esrgan"&&_!==void 0&&v(Jt,{label:"Upscaling strength",value:_,onClick:()=>n(S4(_))}),l&&v(Jt,{label:"Prompt",labelPosition:"top",value:g4(l),onClick:()=>n(DI(l))}),c!==void 0&&v(Jt,{label:"Seed",value:c,onClick:()=>n(Hf(c))}),s&&v(Jt,{label:"Sampler",value:s,onClick:()=>n(VI(s))}),f&&v(Jt,{label:"Steps",value:f,onClick:()=>n(zI(f))}),h!==void 0&&v(Jt,{label:"CFG scale",value:h,onClick:()=>n($I(h))}),d&&d.length>0&&v(Jt,{label:"Seed-weight pairs",value:v4(d),onClick:()=>n(GI(v4(d)))}),m&&v(Jt,{label:"Seamless",value:m,onClick:()=>n(WI(m))}),g&&v(Jt,{label:"High Resolution Optimization",value:g,onClick:()=>n(jI(g))}),b&&v(Jt,{label:"Width",value:b,onClick:()=>n(FI(b))}),S&&v(Jt,{label:"Height",value:S,onClick:()=>n(BI(S))}),x&&v(Jt,{label:"Initial image",value:x,isLink:!0,onClick:()=>n($u(x))}),k&&v(Jt,{label:"Mask image",value:k,isLink:!0,onClick:()=>n(x4(k))}),o==="img2img"&&_&&v(Jt,{label:"Image to image strength",value:_,onClick:()=>n(HI(_))}),w&&v(Jt,{label:"Image to image fit",value:w,onClick:()=>n(UI(w))}),i&&i.length>0&&Y(wn,{children:[v(_3,{size:"sm",children:"Postprocessing"}),i.map((N,$)=>{if(N.type==="esrgan"){const{scale:Z,strength:j}=N;return Y(Rt,{pl:"2rem",gap:1,direction:"column",children:[v(Wr,{size:"md",children:`${$+1}: Upscale (ESRGAN)`}),v(Jt,{label:"Scale",value:Z,onClick:()=>n(b4(Z))}),v(Jt,{label:"Strength",value:j,onClick:()=>n(S4(j))})]},$)}else if(N.type==="gfpgan"){const{strength:Z}=N;return Y(Rt,{pl:"2rem",gap:1,direction:"column",children:[v(Wr,{size:"md",children:`${$+1}: Face restoration (GFPGAN)`}),v(Jt,{label:"Strength",value:Z,onClick:()=>n(y4(Z))})]},$)}})]}),Y(Rt,{gap:2,direction:"column",children:[Y(Rt,{gap:2,children:[v(Bn,{label:"Copy metadata JSON",children:v(pn,{"aria-label":"Copy metadata JSON",icon:v(l0e,{}),size:"xs",variant:"ghost",fontSize:14,onClick:()=>navigator.clipboard.writeText(M)})}),v(Wr,{fontWeight:"semibold",children:"Metadata JSON:"})]}),v("div",{className:"image-json-viewer",children:v("pre",{children:M})})]})]}):v(nT,{width:"100%",pt:10,children:v(Wr,{fontSize:"lg",fontWeight:"semibold",children:"No metadata available"})})]})})},hme);function jC(){const e=ke(r=>r.options.initialImagePath),t=He();return Y("div",{className:"init-image-preview",children:[Y("div",{className:"init-image-preview-header",children:[v("h1",{children:"Initial Image"}),v(pn,{isDisabled:!e,size:"sm","aria-label":"Reset Initial Image",onClick:r=>{r.stopPropagation(),t($u(null))},icon:v(RR,{})})]}),e&&v("div",{className:"init-image-image",children:v(Mm,{fit:"contain",src:e,rounded:"md"})})]})}function mme(){const e=ke(i=>i.options.initialImagePath),{currentImage:t,intermediateImage:n}=ke(i=>i.gallery),r=ke(i=>i.options.shouldShowImageDetails),o=n||t;return v("div",{className:"image-to-image-display",style:o?{gridAutoRows:"max-content auto"}:{gridAutoRows:"auto"},children:e?v(wn,{children:o?Y(wn,{children:[v(YR,{image:o}),Y("div",{className:"image-to-image-dual-preview-container",children:[Y("div",{className:"image-to-image-dual-preview",children:[v(jC,{}),v("div",{className:"image-to-image-current-image-display",children:v(XR,{imageToDisplay:o})})]}),r&&v(tO,{image:o,styleClass:"img2img-metadata"})]})]}):v("div",{className:"image-to-image-single-preview",children:v(jC,{})})}):v("div",{className:"upload-image",children:v(cme,{label:"Upload or Drop Image Here",icon:v(m0e,{}),styleClass:"image-to-image-upload-btn",dispatcher:zhe})})})}var gme=globalThis&&globalThis.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,o){r.__proto__=o}||function(r,o){for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(r[i]=o[i])},e(t,n)};return function(t,n){e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),cn=globalThis&&globalThis.__assign||function(){return cn=Object.assign||function(e){for(var t,n=1,r=arguments.length;n"u"?void 0:Number(r),maxHeight:typeof o>"u"?void 0:Number(o),minWidth:typeof i>"u"?void 0:Number(i),minHeight:typeof s>"u"?void 0:Number(s)}},Cme=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],KC="__resizable_base__",nO=function(e){bme(t,e);function t(n){var r=e.call(this,n)||this;return r.ratio=1,r.resizable=null,r.parentLeft=0,r.parentTop=0,r.resizableLeft=0,r.resizableRight=0,r.resizableTop=0,r.resizableBottom=0,r.targetLeft=0,r.targetTop=0,r.appendBase=function(){if(!r.resizable||!r.window)return null;var o=r.parentNode;if(!o)return null;var i=r.window.document.createElement("div");return i.style.width="100%",i.style.height="100%",i.style.position="absolute",i.style.transform="scale(0, 0)",i.style.left="0",i.style.flex="0 0 100%",i.classList?i.classList.add(KC):i.className+=KC,o.appendChild(i),i},r.removeBase=function(o){var i=r.parentNode;!i||i.removeChild(o)},r.ref=function(o){o&&(r.resizable=o)},r.state={isResizing:!1,width:typeof(r.propsSize&&r.propsSize.width)>"u"?"auto":r.propsSize&&r.propsSize.width,height:typeof(r.propsSize&&r.propsSize.height)>"u"?"auto":r.propsSize&&r.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},r.onResizeStart=r.onResizeStart.bind(r),r.onMouseMove=r.onMouseMove.bind(r),r.onMouseUp=r.onMouseUp.bind(r),r}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||Sme},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,r=0;if(this.resizable&&this.window){var o=this.resizable.offsetWidth,i=this.resizable.offsetHeight,s=this.resizable.style.position;s!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:o,r=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:i,this.resizable.style.position=s}return{width:n,height:r}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,r=this.props.size,o=function(l){if(typeof n.state[l]>"u"||n.state[l]==="auto")return"auto";if(n.propsSize&&n.propsSize[l]&&n.propsSize[l].toString().endsWith("%")){if(n.state[l].toString().endsWith("%"))return n.state[l].toString();var c=n.getParentSize(),d=Number(n.state[l].toString().replace("px","")),f=d/c[l]*100;return f+"%"}return ly(n.state[l])},i=r&&typeof r.width<"u"&&!this.state.isResizing?ly(r.width):o("width"),s=r&&typeof r.height<"u"&&!this.state.isResizing?ly(r.height):o("height");return{width:i,height:s}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var n=this.appendBase();if(!n)return{width:0,height:0};var r=!1,o=this.parentNode.style.flexWrap;o!=="wrap"&&(r=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var i={width:n.offsetWidth,height:n.offsetHeight};return r&&(this.parentNode.style.flexWrap=o),this.removeBase(n),i},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var n=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:n.flexBasis!=="auto"?n.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(n,r){var o=this.propsSize&&this.propsSize[r];return this.state[r]==="auto"&&this.state.original[r]===n&&(typeof o>"u"||o==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,r){var o=this.props.boundsByDirection,i=this.state.direction,s=o&&Bl("left",i),l=o&&Bl("top",i),c,d;if(this.props.bounds==="parent"){var f=this.parentNode;f&&(c=s?this.resizableRight-this.parentLeft:f.offsetWidth+(this.parentLeft-this.resizableLeft),d=l?this.resizableBottom-this.parentTop:f.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(c=s?this.resizableRight:this.window.innerWidth-this.resizableLeft,d=l?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(c=s?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),d=l?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return c&&Number.isFinite(c)&&(n=n&&n"u"?10:i.width,h=typeof o.width>"u"||o.width<0?n:o.width,m=typeof i.height>"u"?10:i.height,g=typeof o.height>"u"||o.height<0?r:o.height,b=c||0,S=d||0;if(l){var _=(m-b)*this.ratio+S,w=(g-b)*this.ratio+S,x=(f-S)/this.ratio+b,k=(h-S)/this.ratio+b,L=Math.max(f,_),A=Math.min(h,w),M=Math.max(m,x),N=Math.min(g,k);n=Hh(n,L,A),r=Hh(r,M,N)}else n=Hh(n,f,h),r=Hh(r,m,g);return{newWidth:n,newHeight:r}},t.prototype.setBoundingClientRect=function(){if(this.props.bounds==="parent"){var n=this.parentNode;if(n){var r=n.getBoundingClientRect();this.parentLeft=r.left,this.parentTop=r.top}}if(this.props.bounds&&typeof this.props.bounds!="string"){var o=this.props.bounds.getBoundingClientRect();this.targetLeft=o.left,this.targetTop=o.top}if(this.resizable){var i=this.resizable.getBoundingClientRect(),s=i.left,l=i.top,c=i.right,d=i.bottom;this.resizableLeft=s,this.resizableRight=c,this.resizableTop=l,this.resizableBottom=d}},t.prototype.onResizeStart=function(n,r){if(!(!this.resizable||!this.window)){var o=0,i=0;if(n.nativeEvent&&xme(n.nativeEvent)?(o=n.nativeEvent.clientX,i=n.nativeEvent.clientY):n.nativeEvent&&Uh(n.nativeEvent)&&(o=n.nativeEvent.touches[0].clientX,i=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var s=this.props.onResizeStart(n,r,this.resizable);if(s===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var l,c=this.window.getComputedStyle(this.resizable);if(c.flexBasis!=="auto"){var d=this.parentNode;if(d){var f=this.window.getComputedStyle(d).flexDirection;this.flexDir=f.startsWith("row")?"row":"column",l=c.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var h={original:{x:o,y:i,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:oi(oi({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:r,flexBasis:l};this.setState(h)}},t.prototype.onMouseMove=function(n){var r=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&Uh(n))try{n.preventDefault(),n.stopPropagation()}catch{}var o=this.props,i=o.maxWidth,s=o.maxHeight,l=o.minWidth,c=o.minHeight,d=Uh(n)?n.touches[0].clientX:n.clientX,f=Uh(n)?n.touches[0].clientY:n.clientY,h=this.state,m=h.direction,g=h.original,b=h.width,S=h.height,_=this.getParentSize(),w=wme(_,this.window.innerWidth,this.window.innerHeight,i,s,l,c);i=w.maxWidth,s=w.maxHeight,l=w.minWidth,c=w.minHeight;var x=this.calculateNewSizeFromDirection(d,f),k=x.newHeight,L=x.newWidth,A=this.calculateNewMaxFromBoundary(i,s);this.props.snap&&this.props.snap.x&&(L=ZC(L,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(k=ZC(k,this.props.snap.y,this.props.snapGap));var M=this.calculateNewSizeFromAspectRatio(L,k,{width:A.maxWidth,height:A.maxHeight},{width:l,height:c});if(L=M.newWidth,k=M.newHeight,this.props.grid){var N=GC(L,this.props.grid[0]),$=GC(k,this.props.grid[1]),Z=this.props.snapGap||0;L=Z===0||Math.abs(N-L)<=Z?N:L,k=Z===0||Math.abs($-k)<=Z?$:k}var j={width:L-g.width,height:k-g.height};if(b&&typeof b=="string"){if(b.endsWith("%")){var te=L/_.width*100;L=te+"%"}else if(b.endsWith("vw")){var Le=L/this.window.innerWidth*100;L=Le+"vw"}else if(b.endsWith("vh")){var me=L/this.window.innerHeight*100;L=me+"vh"}}if(S&&typeof S=="string"){if(S.endsWith("%")){var te=k/_.height*100;k=te+"%"}else if(S.endsWith("vw")){var Le=k/this.window.innerWidth*100;k=Le+"vw"}else if(S.endsWith("vh")){var me=k/this.window.innerHeight*100;k=me+"vh"}}var ge={width:this.createSizeForCssProperty(L,"width"),height:this.createSizeForCssProperty(k,"height")};this.flexDir==="row"?ge.flexBasis=ge.width:this.flexDir==="column"&&(ge.flexBasis=ge.height),Fu.exports.flushSync(function(){r.setState(ge)}),this.props.onResize&&this.props.onResize(n,m,this.resizable,j)}},t.prototype.onMouseUp=function(n){var r=this.state,o=r.isResizing,i=r.direction,s=r.original;if(!(!o||!this.resizable)){var l={width:this.size.width-s.width,height:this.size.height-s.height};this.props.onResizeStop&&this.props.onResizeStop(n,i,this.resizable,l),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:oi(oi({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){this.setState({width:n.width,height:n.height})},t.prototype.renderResizer=function(){var n=this,r=this.props,o=r.enable,i=r.handleStyles,s=r.handleClasses,l=r.handleWrapperStyle,c=r.handleWrapperClass,d=r.handleComponent;if(!o)return null;var f=Object.keys(o).map(function(h){return o[h]!==!1?v(yme,{direction:h,onResizeStart:n.onResizeStart,replaceStyles:i&&i[h],className:s&&s[h],children:d&&d[h]?d[h]:null},h):null});return v("div",{className:c,style:l,children:f})},t.prototype.render=function(){var n=this,r=Object.keys(this.props).reduce(function(s,l){return Cme.indexOf(l)!==-1||(s[l]=n.props[l]),s},{}),o=oi(oi(oi({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(o.flexBasis=this.state.flexBasis);var i=this.props.as||"div";return Y(i,{...oi({ref:this.ref,style:o,className:this.props.className},r),children:[this.state.isResizing&&v("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]})},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(C.exports.PureComponent);function kme(e,t){if(e==null)return{};var n=_me(e,t),r,o;if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o=0)&&(!Object.prototype.propertyIsEnumerable.call(e,r)||(n[r]=e[r]))}return n}function _me(e,t){if(e==null)return{};var n={},r=Object.keys(e),o,i;for(i=0;i=0)&&(n[o]=e[o]);return n}function qC(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Uc(e){for(var t=1;t{this.reCalculateColumnCount()})}reCalculateColumnCount(){const t=window&&window.innerWidth||1/0;let n=this.props.breakpointCols;typeof n!="object"&&(n={default:parseInt(n)||uy});let r=1/0,o=n.default||uy;for(let i in n){const s=parseInt(i);s>0&&t<=s&&s"u"&&(s="my-masonry-grid_column"));const l=Uc(Uc(Uc({},t),n),{},{style:Uc(Uc({},n.style),{},{width:i}),className:s});return o.map((c,d)=>C.exports.createElement("div",{...l,key:d},c))}logDeprecated(t){console.error("[Masonry]",t)}render(){const t=this.props,{children:n,breakpointCols:r,columnClassName:o,columnAttrs:i,column:s,className:l}=t,c=kme(t,["children","breakpointCols","columnClassName","columnAttrs","column","className"]);let d=l;return typeof l!="string"&&(this.logDeprecated('The property "className" requires a string'),typeof l>"u"&&(d="my-masonry-grid")),v("div",{...c,className:d,children:this.renderColumns()})}}rO.defaultProps=Lme;const Pme=(e,t)=>e.image.uuid===t.image.uuid&&e.isSelected===t.isSelected,Tme=C.exports.memo(e=>{const[t,n]=C.exports.useState(!1),r=He(),o=ke(_=>_.options.activeTab),{image:i,isSelected:s}=e,{url:l,uuid:c,metadata:d}=i,f=()=>n(!0),h=()=>n(!1),m=_=>{_.stopPropagation(),r(ZI(d))},g=_=>{_.stopPropagation(),r(Hf(i.metadata.image.seed))},b=_=>{_.stopPropagation(),r($u(i.url)),o!==1&&r(Zi(1))};return Y(yo,{position:"relative",className:"hoverable-image",onMouseOver:f,onMouseOut:h,children:[v(Mm,{objectFit:"cover",rounded:"md",src:l,loading:"lazy",className:"hoverable-image-image"}),v("div",{className:"hoverable-image-content",onClick:()=>r(Spe(i)),children:s&&v(Bm,{width:"50%",height:"50%",as:a0e,className:"hoverable-image-check"})}),t&&Y("div",{className:"hoverable-image-icons",children:[v(Bn,{label:"Delete image",hasArrow:!0,children:v(qR,{image:i,children:v(pn,{colorScheme:"red","aria-label":"Delete image",icon:v(h0e,{}),size:"xs",variant:"imageHoverIconButton",fontSize:14})})}),["txt2img","img2img"].includes(i?.metadata?.image?.type)&&v(Bn,{label:"Use All Parameters",hasArrow:!0,children:v(pn,{"aria-label":"Use All Parameters",icon:v(eO,{}),size:"xs",fontSize:18,variant:"imageHoverIconButton",onClickCapture:m})}),i?.metadata?.image?.seed!==void 0&&v(Bn,{label:"Use Seed",hasArrow:!0,children:v(pn,{"aria-label":"Use Seed",icon:v(f0e,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:g})}),v(Bn,{label:"Send To Image To Image",hasArrow:!0,children:v(pn,{"aria-label":"Send To Image To Image",icon:v(u0e,{}),size:"xs",fontSize:16,variant:"imageHoverIconButton",onClickCapture:b})})]})]},c)},Pme);function oO(){const{images:e,currentImageUuid:t,areMoreImagesAvailable:n}=ke(m=>m.gallery),r=ke(m=>m.options.shouldShowGallery),o=ke(m=>m.options.activeTab),i=He(),[s,l]=C.exports.useState(),c=m=>{l(Math.floor((window.innerWidth-m.x)/120))},d=()=>{i(lC(!r))},f=()=>{i(lC(!1))},h=()=>{i(hR())};return ln("g",()=>{d()},[r]),ln("left",()=>{i(YI())},[]),ln("right",()=>{i(qI())},[]),Y("div",{className:"image-gallery-area",children:[!r&&v(Ts,{tooltip:"Show Gallery",tooltipPlacement:"top","aria-label":"Show Gallery",onClick:d,className:"image-gallery-popup-btn",children:v(TC,{})}),r&&Y(nO,{defaultSize:{width:"300",height:"100%"},minWidth:"300",maxWidth:o==1?"300":"600",className:"image-gallery-popup",onResize:c,children:[Y("div",{className:"image-gallery-header",children:[v("h1",{children:"Your Invocations"}),v(pn,{size:"sm","aria-label":"Close Gallery",onClick:f,className:"image-gallery-close-btn",icon:v(RR,{})})]}),Y("div",{className:"image-gallery-container",children:[e.length?v(rO,{className:"masonry-grid",columnClassName:"masonry-grid_column",breakpointCols:s,children:e.map(m=>{const{uuid:g}=m;return v(Tme,{image:m,isSelected:t===g},g)})}):Y("div",{className:"image-gallery-container-placeholder",children:[v(TC,{}),v("p",{children:"No Images In Gallery"})]}),v(wi,{onClick:h,isDisabled:!n,className:"image-gallery-load-more-btn",children:n?"Load More":"All Images Loaded"})]})]})]})}function Ame(){const e=ke(t=>t.options.shouldShowGallery);return Y("div",{className:"image-to-image-workarea",children:[v(e0e,{}),Y("div",{className:"image-to-image-display-area",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(mme,{}),v(oO,{})]})]})}function Ime(){const e=ke(n=>n.options.showAdvancedOptions),t={seed:{header:v(yo,{flex:"1",textAlign:"left",children:"Seed"}),feature:Vo.SEED,options:v(CR,{})},variations:{header:v(_R,{}),feature:Vo.VARIATIONS,options:v(ER,{})},face_restore:{header:v(wR,{}),feature:Vo.FACE_CORRECTION,options:v(P6,{})},upscale:{header:v(kR,{}),feature:Vo.UPSCALE,options:v(T6,{})},other:{header:v(yo,{flex:"1",textAlign:"left",children:"Other"}),feature:Vo.OTHER,options:v(MR,{})}};return Y("div",{className:"text-to-image-panel",children:[v(zR,{}),v(DR,{}),v(PR,{}),v(LR,{}),e?v(OR,{accordionInfo:t}):null]})}const Rme=()=>{const{currentImage:e,intermediateImage:t}=ke(o=>o.gallery),n=ke(o=>o.options.shouldShowImageDetails),r=t||e;return r?Y("div",{className:"current-image-display",children:[v("div",{className:"current-image-tools",children:v(YR,{image:r})}),v(XR,{imageToDisplay:r}),n&&v(tO,{image:r,styleClass:"current-image-metadata"})]}):v("div",{className:"current-image-display-placeholder",children:v(j1e,{})})};function Ome(){const e=ke(t=>t.options.shouldShowGallery);return Y("div",{className:"text-to-image-workarea",children:[v(Ime,{}),Y("div",{className:"text-to-image-display",style:e?{gridTemplateColumns:"auto max-content"}:{gridTemplateColumns:"auto"},children:[v(Rme,{}),v(oO,{})]})]})}const Vl={txt2img:{title:v(d1e,{fill:"black",boxSize:"2.5rem"}),panel:v(Ome,{}),tooltip:"Text To Image"},img2img:{title:v(a1e,{fill:"black",boxSize:"2.5rem"}),panel:v(Ame,{}),tooltip:"Image To Image"},inpainting:{title:v(s1e,{fill:"black",boxSize:"2.5rem"}),panel:v(n1e,{}),tooltip:"Inpainting"},outpainting:{title:v(u1e,{fill:"black",boxSize:"2.5rem"}),panel:v(o1e,{}),tooltip:"Outpainting"},nodes:{title:v(l1e,{fill:"black",boxSize:"2.5rem"}),panel:v(r1e,{}),tooltip:"Nodes"},postprocess:{title:v(c1e,{fill:"black",boxSize:"2.5rem"}),panel:v(i1e,{}),tooltip:"Post Processing"}},Mme=gf.map(Vl,(e,t)=>t);function Nme(){const e=ke(o=>o.options.activeTab),t=He();ln("1",()=>{t(Zi(0))}),ln("2",()=>{t(Zi(1))}),ln("3",()=>{t(Zi(2))}),ln("4",()=>{t(Zi(3))}),ln("5",()=>{t(Zi(4))}),ln("6",()=>{t(Zi(5))});const n=()=>{const o=[];return Object.keys(Vl).forEach(i=>{o.push(v(Bn,{hasArrow:!0,label:Vl[i].tooltip,placement:"right",children:v(AA,{children:Vl[i].title})},i))}),o},r=()=>{const o=[];return Object.keys(Vl).forEach(i=>{o.push(v(PA,{className:"app-tabs-panel",children:Vl[i].panel},i))}),o};return Y(LA,{isLazy:!0,className:"app-tabs",variant:"unstyled",defaultIndex:e,index:e,onChange:o=>{t(Zi(o))},children:[v("div",{className:"app-tabs-list",children:n()}),v(TA,{className:"app-tabs-panels",children:r()})]})}const Dme=(e,t)=>{const{dispatch:n,getState:r}=e;return{emitGenerateImage:()=>{n(w1(!0));const o={...r().options};Mme[o.activeTab]==="txt2img"&&(o.shouldUseInitImage=!1);const{generationParameters:i,esrganParameters:s,gfpganParameters:l}=Hhe(o,r().system);t.emit("generateImage",i,s,l),n(sr({timestamp:lr(new Date,"isoDateTime"),message:`Image generation requested: ${JSON.stringify({...i,...s,...l})}`}))},emitRunESRGAN:o=>{n(w1(!0));const{upscalingLevel:i,upscalingStrength:s}=r().options,l={upscale:[i,s]};t.emit("runPostprocessing",o,{type:"esrgan",...l}),n(sr({timestamp:lr(new Date,"isoDateTime"),message:`ESRGAN upscale requested: ${JSON.stringify({file:o.url,...l})}`}))},emitRunGFPGAN:o=>{n(w1(!0));const{gfpganStrength:i}=r().options,s={facetool_strength:i};t.emit("runPostprocessing",o,{type:"gfpgan",...s}),n(sr({timestamp:lr(new Date,"isoDateTime"),message:`GFPGAN fix faces requested: ${JSON.stringify({file:o.url,...s})}`}))},emitDeleteImage:o=>{const{url:i,uuid:s}=o;t.emit("deleteImage",i,s)},emitRequestImages:()=>{const{earliest_mtime:o}=r().gallery;t.emit("requestImages",o)},emitRequestNewImages:()=>{const{latest_mtime:o}=r().gallery;t.emit("requestLatestImages",o)},emitCancelProcessing:()=>{t.emit("cancel")},emitUploadInitialImage:o=>{t.emit("uploadInitialImage",o,o.name)},emitUploadMaskImage:o=>{t.emit("uploadMaskImage",o,o.name)},emitRequestSystemConfig:()=>{t.emit("requestSystemConfig")}}},zme=()=>{const{hostname:e,port:t}=new URL(window.location.href),n=_1(`http://${e}:${t}`,{timeout:6e4});let r=!1;return i=>s=>l=>{const{onConnect:c,onDisconnect:d,onError:f,onPostprocessingResult:h,onGenerationResult:m,onIntermediateResult:g,onProgressUpdate:b,onGalleryImages:S,onProcessingCanceled:_,onImageDeleted:w,onInitialImageUploaded:x,onMaskImageUploaded:k,onSystemConfig:L}=Bhe(i),{emitGenerateImage:A,emitRunESRGAN:M,emitRunGFPGAN:N,emitDeleteImage:$,emitRequestImages:Z,emitRequestNewImages:j,emitCancelProcessing:te,emitUploadInitialImage:Le,emitUploadMaskImage:me,emitRequestSystemConfig:ge}=Dme(i,n);switch(r||(n.on("connect",()=>c()),n.on("disconnect",()=>d()),n.on("error",de=>f(de)),n.on("generationResult",de=>m(de)),n.on("postprocessingResult",de=>h(de)),n.on("intermediateResult",de=>g(de)),n.on("progressUpdate",de=>b(de)),n.on("galleryImages",de=>S(de)),n.on("processingCanceled",()=>{_()}),n.on("imageDeleted",de=>{w(de)}),n.on("initialImageUploaded",de=>{x(de)}),n.on("maskImageUploaded",de=>{k(de)}),n.on("systemConfig",de=>{L(de)}),r=!0),l.type){case"socketio/generateImage":{A();break}case"socketio/runESRGAN":{M(l.payload);break}case"socketio/runGFPGAN":{N(l.payload);break}case"socketio/deleteImage":{$(l.payload);break}case"socketio/requestImages":{Z();break}case"socketio/requestNewImages":{j();break}case"socketio/cancelProcessing":{te();break}case"socketio/uploadInitialImage":{Le(l.payload);break}case"socketio/uploadMaskImage":{me(l.payload);break}case"socketio/requestSystemConfig":{ge();break}}s(l)}},$me={key:"root",storage:x6,blacklist:["gallery","system"]},Bme={key:"system",storage:x6,blacklist:["isConnected","isProcessing","currentStep","socketId","isESRGANAvailable","isGFPGANAvailable","currentStep","totalSteps","currentIteration","totalIterations","currentStatus"]},Fme=hI({options:vpe,gallery:Cpe,system:RI(Bme,Ope)}),Vme=RI($me,Fme),iO=jde({reducer:Vme,middleware:e=>e({serializableCheck:!1}).concat(zme())}),He=Pfe,ke=vfe;function E1(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?E1=function(n){return typeof n}:E1=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},E1(e)}function Wme(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function YC(e,t){for(var n=0;n({textColor:e.colorMode==="dark"?"gray.800":"gray.100"})},Accordion:{baseStyle:e=>({button:{fontWeight:"bold",_hover:{bgColor:e.colorMode==="dark"?"rgba(255,255,255,0.05)":"rgba(0,0,0,0.05)"}},panel:{paddingBottom:2}})},FormLabel:{baseStyle:{fontWeight:"light"}},Button:{variants:{imageHoverIconButton:e=>({bg:e.colorMode==="dark"?"blackAlpha.700":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.700":"blackAlpha.700",_hover:{bg:e.colorMode==="dark"?"blackAlpha.800":"whiteAlpha.800",color:e.colorMode==="dark"?"whiteAlpha.900":"blackAlpha.900"}})}}}}),sO=()=>v(Rt,{width:"100vw",height:"100vh",alignItems:"center",justifyContent:"center",children:v(Rm,{thickness:"2px",speed:"1s",emptyColor:"gray.200",color:"gray.400",size:"xl"})}),Gme=er(e=>e.system,e=>({isProcessing:e.isProcessing,currentStep:e.currentStep,totalSteps:e.totalSteps,currentStatusHasSteps:e.currentStatusHasSteps}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),Zme=()=>{const{isProcessing:e,currentStep:t,totalSteps:n,currentStatusHasSteps:r}=ke(Gme),o=t?Math.round(t*100/n):0;return v(SA,{height:"4px",value:o,isIndeterminate:e&&!r,className:"progress-bar"})},Kme="/assets/logo.13003d72.png";function qme(e){const{title:t,hotkey:n,description:r}=e;return Y("div",{className:"hotkey-modal-item",children:[Y("div",{className:"hotkey-info",children:[v("p",{className:"hotkey-title",children:t}),r&&v("p",{className:"hotkey-description",children:r})]}),v("div",{className:"hotkey-key",children:n})]})}function Yme({children:e}){const{isOpen:t,onOpen:n,onClose:r}=y0(),o=[{title:"Invoke",desc:"Generate an image",hotkey:"Ctrl+Enter"},{title:"Cancel",desc:"Cancel image generation",hotkey:"Shift+X"},{title:"Toggle Gallery",desc:"Open and close the gallery drawer",hotkey:"G"},{title:"Set Seed",desc:"Use the seed of the current image",hotkey:"S"},{title:"Set Parameters",desc:"Use all parameters of the current image",hotkey:"A"},{title:"Restore Faces",desc:"Restore the current image",hotkey:"R"},{title:"Upscale",desc:"Upscale the current image",hotkey:"U"},{title:"Show Info",desc:"Show metadata info of the current image",hotkey:"I"},{title:"Send To Image To Image",desc:"Send the current image to Image to Image module",hotkey:"Shift+I"},{title:"Delete Image",desc:"Delete the current image",hotkey:"Del"},{title:"Focus Prompt",desc:"Focus the prompt input area",hotkey:"Alt+A"},{title:"Previous Image",desc:"Display the previous image in the gallery",hotkey:"Arrow left"},{title:"Next Image",desc:"Display the next image in the gallery",hotkey:"Arrow right"},{title:"Change Tabs",desc:"Switch to another workspace",hotkey:"1-6"},{title:"Theme Toggle",desc:"Switch between dark and light modes",hotkey:"Shift+D"},{title:"Console Toggle",desc:"Open and close console",hotkey:"`"}],i=()=>{const s=[];return o.forEach((l,c)=>{s.push(v(qme,{title:l.title,description:l.desc,hotkey:l.hotkey},c))}),s};return Y(wn,{children:[C.exports.cloneElement(e,{onClick:n}),Y(Nu,{isOpen:t,onClose:r,children:[v(uf,{}),Y(lf,{className:"hotkeys-modal",children:[v(G3,{}),v("h1",{children:"Keyboard Shorcuts"}),v("div",{className:"hotkeys-modal-items",children:i()})]})]})]})}function cy({settingTitle:e,isChecked:t,dispatcher:n}){const r=He();return Y(cs,{className:"settings-modal-item",children:[v(el,{marginBottom:1,children:e}),v(Hm,{isChecked:t,onChange:o=>r(n(o.target.checked))})]})}const Xme=er(e=>e.system,e=>{const{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}=e;return{shouldDisplayInProgress:t,shouldConfirmOnDelete:n,shouldDisplayGuides:r}},{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),Qme=({children:e})=>{const{isOpen:t,onOpen:n,onClose:r}=y0(),{isOpen:o,onOpen:i,onClose:s}=y0(),{shouldDisplayInProgress:l,shouldConfirmOnDelete:c,shouldDisplayGuides:d}=ke(Xme),f=()=>{lO.purge().then(()=>{r(),i()})};return Y(wn,{children:[C.exports.cloneElement(e,{onClick:n}),Y(Nu,{isOpen:t,onClose:r,children:[v(uf,{}),Y(lf,{className:"settings-modal",children:[v(K3,{className:"settings-modal-header",children:"Settings"}),v(G3,{}),Y(w0,{className:"settings-modal-content",children:[Y("div",{className:"settings-modal-items",children:[v(cy,{settingTitle:"Display In-Progress Images (slower)",isChecked:l,dispatcher:Epe}),v(cy,{settingTitle:"Confirm on Delete",isChecked:c,dispatcher:QI}),v(cy,{settingTitle:"Display Help Icons",isChecked:d,dispatcher:Ape})]}),Y("div",{className:"settings-modal-reset",children:[v(_3,{size:"md",children:"Reset Web UI"}),v(Wr,{children:"Resetting the web UI only resets the browser's local cache of your images and remembered settings. It does not delete any images from disk."}),v(Wr,{children:"If images aren't showing up in the gallery or something else isn't working, please try resetting before submitting an issue on GitHub."}),v(wi,{colorScheme:"red",onClick:f,children:"Reset Web UI"})]})]}),v(Z3,{children:v(wi,{onClick:r,children:"Close"})})]})]}),Y(Nu,{closeOnOverlayClick:!1,isOpen:o,onClose:s,isCentered:!0,children:[v(uf,{bg:"blackAlpha.300",backdropFilter:"blur(40px)"}),v(lf,{children:v(w0,{pb:6,pt:6,children:v(Rt,{justifyContent:"center",children:v(Wr,{fontSize:"lg",children:"Web UI has been reset. Refresh the page to reload."})})})})]})]})},Jme=er(e=>e.system,e=>({isConnected:e.isConnected,isProcessing:e.isProcessing,currentIteration:e.currentIteration,totalIterations:e.totalIterations,currentStatus:e.currentStatus,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),ege=()=>{const{isConnected:e,isProcessing:t,currentIteration:n,totalIterations:r,currentStatus:o,hasError:i,wasErrorSeen:s}=ke(Jme),l=He();let c;e&&!i?c="status-good":c="status-bad";let d=o;return["generating","preparing","saving image","restoring faces","upscaling"].includes(d.toLowerCase())&&(c="status-working"),d&&t&&r>1&&(d+=` (${n}/${r})`),v(Bn,{label:i&&!s?"Click to clear, check logs for details":void 0,children:v(Wr,{cursor:i&&!s?"pointer":"initial",onClick:()=>{(i||!s)&&l(JI())},className:`status ${c}`,children:d})})},tge=()=>{const{colorMode:e,toggleColorMode:t}=Ib();ln("shift+d",()=>{t()},[e,t]);const n=e=="light"?v(d0e,{}):v(p0e,{}),r=e=="light"?18:20;return Y("div",{className:"site-header",children:[Y("div",{className:"site-header-left-side",children:[v("img",{src:Kme,alt:"invoke-ai-logo"}),Y("h1",{children:["invoke ",v("strong",{children:"ai"})]})]}),Y("div",{className:"site-header-right-side",children:[v(ege,{}),v(Qme,{children:v(pn,{"aria-label":"Settings",variant:"link",fontSize:24,size:"sm",icon:v(B1e,{})})}),v(Yme,{children:v(pn,{"aria-label":"Hotkeys",variant:"link",fontSize:24,size:"sm",icon:v(V1e,{})})}),v(Bn,{hasArrow:!0,label:"Report Bug",placement:"bottom",children:v(pn,{"aria-label":"Link to Github Issues",variant:"link",fontSize:23,size:"sm",icon:v(mu,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI/issues",children:v(IR,{})})})}),v(Bn,{hasArrow:!0,label:"Github",placement:"bottom",children:v(pn,{"aria-label":"Link to Github Repo",variant:"link",fontSize:20,size:"sm",icon:v(mu,{isExternal:!0,href:"http://github.com/invoke-ai/InvokeAI",children:v(n0e,{})})})}),v(Bn,{hasArrow:!0,label:"Discord",placement:"bottom",children:v(pn,{"aria-label":"Link to Discord Server",variant:"link",fontSize:20,size:"sm",icon:v(mu,{isExternal:!0,href:"https://discord.gg/ZmtBAhwWhy",children:v(t0e,{})})})}),v(Bn,{hasArrow:!0,label:"Theme",placement:"bottom",children:v(pn,{"aria-label":"Toggle Dark Mode",onClick:t,variant:"link",size:"sm",fontSize:r,icon:n})})]})]})},nge=er(e=>e.system,e=>e.log,{memoizeOptions:{resultEqualityCheck:(e,t)=>e.length===t.length}}),rge=er(e=>e.system,e=>({shouldShowLogViewer:e.shouldShowLogViewer,hasError:e.hasError,wasErrorSeen:e.wasErrorSeen}),{memoizeOptions:{resultEqualityCheck:Jn.exports.isEqual}}),oge=()=>{const e=He(),t=ke(nge),{shouldShowLogViewer:n,hasError:r,wasErrorSeen:o}=ke(rge),[i,s]=C.exports.useState(!0),l=C.exports.useRef(null);C.exports.useLayoutEffect(()=>{l.current!==null&&i&&(l.current.scrollTop=l.current.scrollHeight)},[i,t,n]);const c=()=>{e(JI()),e(cC(!n))};return ln("`",()=>{e(cC(!n))},[n]),Y(wn,{children:[n&&v(nO,{defaultSize:{width:"100%",height:200},style:{display:"flex",position:"fixed",left:0,bottom:0},maxHeight:"90vh",children:v("div",{className:"console",ref:l,children:t.map((d,f)=>{const{timestamp:h,message:m,level:g}=d;return Y("div",{className:`console-entry console-${g}-color`,children:[Y("p",{className:"console-timestamp",children:[h,":"]}),v("p",{className:"console-message",children:m})]},f)})})}),n&&v(Bn,{hasArrow:!0,label:i?"Autoscroll On":"Autoscroll Off",children:v(pn,{className:`console-autoscroll-icon-button ${i&&"autoscroll-enabled"}`,size:"sm","aria-label":"Toggle autoscroll",variant:"solid",icon:v(r0e,{}),onClick:()=>s(!i)})}),v(Bn,{hasArrow:!0,label:n?"Hide Console":"Show Console",children:v(pn,{className:`console-toggle-icon-button ${(r||!o)&&"error-seen"}`,size:"sm",position:"fixed",variant:"solid","aria-label":"Toggle Log Viewer",icon:n?v(c0e,{}):v(s0e,{}),onClick:c})})]})};function ige(){async function e(n=""){return await fetch(n,{method:"GET",cache:"no-cache"})}const t=()=>{const n=document.location;e(n+"/flaskwebgui-keep-server-alive").then(o=>o)};(!{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV||{BASE_URL:"/",MODE:"production",DEV:!1,PROD:!0}.NODE_ENV==="production")&&document.addEventListener("DOMContentLoaded",()=>{t(),setInterval(t,3e3)})}ige();const age=()=>{const e=He(),[t,n]=C.exports.useState(!1);return C.exports.useEffect(()=>{e($he()),n(!0)},[e]),t?Y("div",{className:"App",children:[v(Zme,{}),Y("div",{className:"app-content",children:[v(tge,{}),v(Nme,{})]}),v("div",{className:"app-console",children:v(oge,{})})]}):v(sO,{})};const lO=Kfe(iO);dy.createRoot(document.getElementById("root")).render(v(X.StrictMode,{children:v(_fe,{store:iO,children:v(aO,{loading:v(sO,{}),persistor:lO,children:Y(ude,{theme:XC,children:[v(yW,{initialColorMode:XC.config.initialColorMode}),v(age,{})]})})})})); diff --git a/frontend/dist/index.html b/frontend/dist/index.html index a3e9419025..c4d806c49e 100644 --- a/frontend/dist/index.html +++ b/frontend/dist/index.html @@ -6,7 +6,7 @@ InvokeAI - A Stable Diffusion Toolkit - + diff --git a/frontend/src/app/socketio/emitters.ts b/frontend/src/app/socketio/emitters.ts index dc4671bd50..c54a0637be 100644 --- a/frontend/src/app/socketio/emitters.ts +++ b/frontend/src/app/socketio/emitters.ts @@ -76,7 +76,7 @@ const makeSocketIOEmitters = ( const { gfpganStrength } = getState().options; const gfpganParameters = { - gfpgan_strength: gfpganStrength, + facetool_strength: gfpganStrength, }; socketio.emit('runPostprocessing', imageToProcess, { type: 'gfpgan', diff --git a/frontend/src/common/util/parameterTranslation.ts b/frontend/src/common/util/parameterTranslation.ts index 08f24b6394..082912851d 100644 --- a/frontend/src/common/util/parameterTranslation.ts +++ b/frontend/src/common/util/parameterTranslation.ts @@ -129,7 +129,7 @@ export const backendToFrontendParameters = (parameters: { progress_images, variation_amount, with_variations, - gfpgan_strength, + facetool_strength, upscale, init_img, init_mask, @@ -154,9 +154,9 @@ export const backendToFrontendParameters = (parameters: { } } - if (gfpgan_strength > 0) { + if (facetool_strength > 0) { options.shouldRunGFPGAN = true; - options.gfpganStrength = gfpgan_strength; + options.gfpganStrength = facetool_strength; } if (upscale) { diff --git a/ldm/generate.py b/ldm/generate.py index 1b3ff6b9ba..55a461013a 100644 --- a/ldm/generate.py +++ b/ldm/generate.py @@ -251,7 +251,7 @@ class Generate: embiggen_tiles = None, # these are specific to GFPGAN/ESRGAN facetool = None, - gfpgan_strength = 0, + facetool_strength = 0, codeformer_fidelity = None, save_original = False, upscale = None, @@ -274,7 +274,7 @@ class Generate: hires_fix // whether the Hires Fix should be applied during generation init_img // path to an initial image strength // strength for noising/unnoising init_img. 0.0 preserves image exactly, 1.0 replaces it completely - gfpgan_strength // strength for GFPGAN. 0.0 preserves image exactly, 1.0 replaces it completely + facetool_strength // strength for GFPGAN/CodeFormer. 0.0 preserves image exactly, 1.0 replaces it completely ddim_eta // image randomness (eta=0.0 means the same seed always produces the same image) step_callback // a function or method that will be called each step image_callback // a function or method that will be called each time an image is generated @@ -417,11 +417,11 @@ class Generate: reference_image_path = init_color, image_callback = image_callback) - if upscale is not None or gfpgan_strength > 0: + if upscale is not None or facetool_strength > 0: self.upscale_and_reconstruct(results, upscale = upscale, facetool = facetool, - strength = gfpgan_strength, + strength = facetool_strength, codeformer_fidelity = codeformer_fidelity, save_original = save_original, image_callback = image_callback) @@ -464,7 +464,7 @@ class Generate: self, image_path, tool = 'gfpgan', # one of 'upscale', 'gfpgan', 'codeformer', 'outpaint', or 'embiggen' - gfpgan_strength = 0.0, + facetool_strength = 0.0, codeformer_fidelity = 0.75, upscale = None, out_direction = None, @@ -511,11 +511,11 @@ class Generate: facetool = 'codeformer' elif tool == 'upscale': facetool = 'gfpgan' # but won't be run - gfpgan_strength = 0 + facetool_strength = 0 return self.upscale_and_reconstruct( [[image,seed]], facetool = facetool, - strength = gfpgan_strength, + strength = facetool_strength, codeformer_fidelity = codeformer_fidelity, save_original = save_original, upscale = upscale, diff --git a/ldm/invoke/args.py b/ldm/invoke/args.py index 5dbe885d2d..dbac8208ea 100644 --- a/ldm/invoke/args.py +++ b/ldm/invoke/args.py @@ -242,9 +242,15 @@ class Args(object): else: switches.append(f'-A {a["sampler_name"]}') - # gfpgan-specific parameters - if a['gfpgan_strength']: + # facetool-specific parameters + if a['facetool']: + switches.append(f'-ft {a["facetool"]}') + if a['facetool_strength']: + switches.append(f'-G {a["facetool_strength"]}') + elif a['gfpgan_strength']: switches.append(f'-G {a["gfpgan_strength"]}') + if a['codeformer_fidelity']: + switches.append(f'-cf {a["codeformer_fidelity"]}') if a['outcrop']: switches.append(f'-c {" ".join([str(u) for u in a["outcrop"]])}') @@ -699,6 +705,7 @@ class Args(object): ) postprocessing_group.add_argument( '-G', + '--facetool_strength', '--gfpgan_strength', type=float, help='The strength at which to apply the face restoration to the result.', diff --git a/ldm/invoke/readline.py b/ldm/invoke/readline.py index 7975ec5643..a96921f4cd 100644 --- a/ldm/invoke/readline.py +++ b/ldm/invoke/readline.py @@ -42,7 +42,9 @@ COMMANDS = ( '--embedding_path', '--device', '--grid','-g', - '--gfpgan_strength','-G', + '--facetool','-ft', + '--facetool_strength','-G', + '--codeformer_fidelity','-cf', '--upscale','-U', '-save_orig','--save_original', '--skip_normalize','-x', diff --git a/ldm/invoke/server.py b/ldm/invoke/server.py index 269f24650b..c1acde5cd5 100644 --- a/ldm/invoke/server.py +++ b/ldm/invoke/server.py @@ -31,7 +31,7 @@ def build_opt(post_data, seed, gfpgan_model_exists): setattr(opt, 'embiggen', None) setattr(opt, 'embiggen_tiles', None) - setattr(opt, 'gfpgan_strength', float(post_data['gfpgan_strength']) if gfpgan_model_exists else 0) + setattr(opt, 'facetool_strength', float(post_data['facetool_strength']) if gfpgan_model_exists else 0) setattr(opt, 'upscale', [int(post_data['upscale_level']), float(post_data['upscale_strength'])] if post_data['upscale_level'] != '' else None) setattr(opt, 'progress_images', 'progress_images' in post_data) setattr(opt, 'seed', None if int(post_data['seed']) == -1 else int(post_data['seed'])) @@ -197,7 +197,7 @@ class DreamServer(BaseHTTPRequestHandler): ) + '\n',"utf-8")) # control state of the "postprocessing..." message - upscaling_requested = opt.upscale or opt.gfpgan_strength > 0 + upscaling_requested = opt.upscale or opt.facetool_strength > 0 nonlocal images_generated # NB: Is this bad python style? It is typical usage in a perl closure. nonlocal images_upscaled # NB: Is this bad python style? It is typical usage in a perl closure. if upscaled: diff --git a/scripts/invoke.py b/scripts/invoke.py index 3752680d4b..68563546f3 100644 --- a/scripts/invoke.py +++ b/scripts/invoke.py @@ -400,7 +400,7 @@ def do_postprocess (gen, opt, callback): file_path = os.path.join(opt.outdir,file_path) tool=None - if opt.gfpgan_strength > 0: + if opt.facetool_strength > 0: tool = opt.facetool elif opt.embiggen: tool = 'embiggen' @@ -416,7 +416,7 @@ def do_postprocess (gen, opt, callback): gen.apply_postprocessor( image_path = file_path, tool = tool, - gfpgan_strength = opt.gfpgan_strength, + facetool_strength = opt.facetool_strength, codeformer_fidelity = opt.codeformer_fidelity, save_original = opt.save_original, upscale = opt.upscale, diff --git a/server/models.py b/server/models.py index f4bc6fe57d..ef7d211a1b 100644 --- a/server/models.py +++ b/server/models.py @@ -42,7 +42,7 @@ class DreamBase(): # GFPGAN enable_gfpgan: bool - gfpgan_strength: float = 0 + facetool_strength: float = 0 # Upscale enable_upscale: bool @@ -98,7 +98,7 @@ class DreamBase(): # GFPGAN self.enable_gfpgan = 'enable_gfpgan' in j and bool(j.get('enable_gfpgan')) if self.enable_gfpgan: - self.gfpgan_strength = float(j.get('gfpgan_strength')) + self.facetool_strength = float(j.get('facetool_strength')) # Upscale self.enable_upscale = 'enable_upscale' in j and bool(j.get('enable_upscale')) diff --git a/server/services.py b/server/services.py index ae492860e9..cd97520ebf 100644 --- a/server/services.py +++ b/server/services.py @@ -334,11 +334,11 @@ class GeneratorService: # TODO: Support no generation (just upscaling/gfpgan) upscale = None if not jobRequest.enable_upscale else jobRequest.upscale - gfpgan_strength = 0 if not jobRequest.enable_gfpgan else jobRequest.gfpgan_strength + facetool_strength = 0 if not jobRequest.enable_gfpgan else jobRequest.facetool_strength if not jobRequest.enable_generate: # If not generating, check if we're upscaling or running gfpgan - if not upscale and not gfpgan_strength: + if not upscale and not facetool_strength: # Invalid settings (TODO: Add message to help user) raise CanceledException() @@ -347,7 +347,7 @@ class GeneratorService: self.__model.upscale_and_reconstruct( image_list = [[image,0]], upscale = upscale, - strength = gfpgan_strength, + strength = facetool_strength, save_original = False, image_callback = lambda image, seed, upscaled=False: self.__on_image_result(jobRequest, image, seed, upscaled)) @@ -371,7 +371,7 @@ class GeneratorService: steps = jobRequest.steps, variation_amount = jobRequest.variation_amount, with_variations = jobRequest.with_variations, - gfpgan_strength = gfpgan_strength, + facetool_strength = facetool_strength, upscale = upscale, sampler_name = jobRequest.sampler_name, seamless = jobRequest.seamless, diff --git a/static/dream_web/index.html b/static/dream_web/index.html index 8edad24f4e..2b753f9fb7 100644 --- a/static/dream_web/index.html +++ b/static/dream_web/index.html @@ -144,8 +144,8 @@ - - + +
diff --git a/static/legacy_web/index.html b/static/legacy_web/index.html index 890430be6c..1f5c3dc9f8 100644 --- a/static/legacy_web/index.html +++ b/static/legacy_web/index.html @@ -100,8 +100,8 @@
Post-processing options
- - + +